我的问题:我需要使用ruby prawn gem在pdf中并排放置两张表。
到目前为止我做了什么:
column_box([0, cursor], :columns => 2, :width => bounds.width) do
table(tdy_order_stats, :header=> true) do
row(0).style font_style: :bold # header style
end
table(tdy_order_types, :header=> true) do
row(0).style font_style: :bold # header style
end
end
备注:在上面的代码“tdy_order_stats”和“tdy_order_types”是两个ruby数组。如果我有很多数组元素(超过30个),它将转到另一个列,但第二个表在第一个完成后开始。
问题:在我的数组中,我只有3-4个元素。如何在pdf中并排制作它们?
table 1 table 2
-------------------- --------------------
-------------------- --------------------
-------------------- --------------------
-------------------- --------------------