エビで column_box を使用しています。うまく機能しますが、フッターの下部で使用しているbounding_boxと重なっています。
境界ボックスの高さを調整せずに、重複しないようにするにはどうすればよいですか?
高さを調整したくない理由について詳しく説明できますが、この質問には関係ないと思います。これが私のコードです:
def test_section
column_box([0,cursor], :columns => 2, :width => 396) do
text ("This is text" * 10 + "This is too\n") * 25
stroke_color (50,0,50,0)
stroke_bounds
end
bounding_box [margin_box.left, margin_box.bottom + 72], :width => bounds.width, :height => 72 do
font "Helvetica" do
stroke_color (0,0,100,0)
stroke_bounds
text "And here's a sexy footer", :size => 16
end
end
end
ありがとう、アンソニー