add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

28
pages.zh/common/pdfjam.md Normal file
View File

@@ -0,0 +1,28 @@
# pdfjam
> LaTeX pdfpages 包的 shell 前端,用于混合 PDF 文件。
> 更多信息:<https://github.com/rrthomas/pdfjam>。
- 合并两个或更多PDF 文件:
`pdfjam {{path/to/file1.pdf}} {{path/to/file2.pdf}} --outfile {{path/to/output_file.pdf}}`
- 合并每个文件的第一页:
`pdfjam {{files...}} 1 --outfile {{path/to/output_file.pdf}}`
- 从两个 PDF 文件中合并子范围:
`pdfjam {{path/to/file1.pdf 3-5,1}} {{path/to/file2.pdf 4-6}} --outfile {{path/to/output_file.pdf}}`
- 用扫描的签名在 A4 页面上签名(对于其他格式,请调整 delta 到高度):
`pdfjam {{path/to/file.pdf}} {{path/to/signature}} --fitpaper true --outfile {{path/to/signed.pdf}} --nup "{{1x2}}" --delta "{{0 -842pt}}"`
- 将输入文件的页面排列成一个华丽的 2x2 网格:
`pdfjam {{path/to/file.pdf}} --nup {{2x2}} --suffix {{4up}} --preamble '{{\usepackage{fancyhdr} \pagestyle{fancy}}}'`
- 反转每个给定文件中页面的顺序并连接它们:
`pdfjam {{files...}} {{last-1}} --suffix {{reversed}}`