我正在使用 PHP 生成 Word 文档,如何进行分页符?
我正在使用 PHP 生成 Word 文档(带有 ms-word 标题的 HTML),有没有办法进行分页?
现在我正在写很多
直到页面发生变化,但这还远远不能令人满意。
I'm generating a word document with PHP (HTML with ms-word header), is there a way make a page break ?
Right now I'm witing a lot of <p> </p>
until the page changes, but that's far from satisfying.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有测试过它是否有效,但你可以尝试:
I've not tested to see if it works, but you could try:
分页符在 HTML 中没有任何意义。标记应该在下一页上的文本更优雅,比如
标题
. Then, in MS Word, create a style named "H2", and set it to "Page-break before" (Format/Paragraph/Line and Page Breaks).
A page-break has no meaning in HTML. It's more elegant to mark up the text which should be on the next page with, let's say
Header
. Then, in MS Word, create a style named "H2", and set it to "Page-break before" (Format/Paragraph/Line and Page Breaks).