一页多表与大虾

发布于 2024-08-23 14:20:44 字数 140 浏览 14 评论 0原文

我正在使用 prawn 生成 pdf,一切都运行良好,但现在我遇到了一些问题。 当我将多个表格放在一页上时,它们只是放在彼此之上而不是放在彼此之下。 这是正常行为吗?我该怎么办?

顺便说一句,我添加了关于最正常行为的表格:)

谢谢!

I'm using prawn for pdf generation and everything works quite well, but now I'm having a bit of a problem.
When I put multiple tables on one page, they just get put over each other and not under each other.
Is this normal behaviour and what can I do about it?

I add the tables on the most normal behaviour btw :)

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜爱纠缠 2024-08-30 14:20:44

您使用 Prawn 创建 PDF 文档的代码是什么?

如果没有它,我猜测您需要使用“边界框”来分隔文档中的不同部分/表格。每个边界框都是内容渲染的区域,新的边界框或文本将在其下方渲染。请参阅 bounding_box() 文档 或示例以下:

> pdf.bounding_box([100,500], :width => 100, :height => 300) do
>   pdf.text "This text will flow in a very narrow box starting" +
>     "from [100,500]. The pointer will then be moved to [100,200]" +
>     "and return to the margin_box"
> end

What is the code you're using to create the PDF document with Prawn?

Without that, I'm guessing that you need to use 'bounding boxes' to seperate the different sections / tables in your document. Each bounding box is an area for content rendering, and new bounding boxes or text is rendered below that. See bounding_box() documentation or the example below:

> pdf.bounding_box([100,500], :width => 100, :height => 300) do
>   pdf.text "This text will flow in a very narrow box starting" +
>     "from [100,500]. The pointer will then be moved to [100,200]" +
>     "and return to the margin_box"
> end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文