Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 DDX 向 PDF 文档添加页眉、页脚和分页。如果可能的话,我希望每个文件的第一页的标题为空白,然后为其余页面设置标题。
我查看了文档,但找不到这样做的方法。这似乎是一个常用的功能,所以我猜一定有某种方法可以实现它。
(来自评论)
您可能可以通过使用多个<PDF>标签来实现此效果:一个用于第一页,另一个用于 pages 2-N,带有嵌套<Header>标签。
<PDF>
2-N
<Header>
IE :
<PDF pages="1" src="c:/path/someFile.pdf"> ... </PDF> <PDF pages="2-last" src="c:/path/someFile.pdf"> <Header...> </PDF>