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.
我正在使用 shell 脚本修改许多 pdf,并希望创建一个脚本,将页码(X 格式的 1)与文件名文本一起添加到目录中 PDF 的底部。
我尝试使用这种格式的 pdfjam:
pdfjam --pagenumbering true
但它没有说取消定义页码
任何其他建议如何做到这一点?我可以安装其他工具,但希望这一切都在一个 shell 脚本中。
谢谢
tl;博士:pdfjam --pagecommand '' input.pdf
pdfjam --pagecommand '' input.pdf
默认情况下,pdfjam 将以下 LaTeX 命令添加到每个页面:\thispagestyle{empty}. 通过将命令更改为空命令,将使用默认plain页面样式,该样式由底部的页码组成。当然,您可能想要使用其他样式或布局选项来以不同的方式定位页码。
\thispagestyle{empty}
plain