如何使用 OOXML 设置首页、偶数页和奇数页的不同页面属性?
有没有办法使用 Open XML SDK 为第一页(甚至奇数页)设置不同的页面大小、方向和边距。我知道如何为第一页、偶数页和奇数页设置不同的页眉和页脚,但我不知道如何设置不同的第一偶数页和奇数页属性(大小、边距、方向)。
问候。
Is there a way, using Open XML SDK, to set different page size, orientation and margins for the first, even an odd pages. I know how to set different headers and footers for the first, even, and odd pages but I can't figure out how to set different first even and odd page properties (size, margin, orientation) .
Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。这些属性在节级别设置,并且 sectPr 元素附加到特定段落。它们适用于该部分中的所有内容(例如,不仅仅是奇数页)。
您当然可以通过将特定页面分成一个部分来设置特定页面的页面属性,但这需要在前后进行硬编码的分页符/分节符。
You can't. Those properties are set at the section level, and sectPr elements are attached to specific paragraphs. They apply to everything in the section (not just odd pages for example).
You can of course set page properties for specific pages, by making a section out of them, but this requires hard coded page breaks / section breaks before and after.