我用来pandoc
简单地从 markdown 文件编译 pdf 文件:
pandoc markdown.md -o output.pdf
但是这会导致 PDF 出现大量空白。有没有办法更改输出的布局,还是必须通过文件来更改tex
?
喜欢:
pandoc markdown.md -o output.tex
# edit margins of the output.tex;
# then:
pandoc markdown.tex -o output.pdf
答案1
正如记录在案的pandoc 手册,你可以在 markdown 文件的 YAML 标头中指定边距:
---
geometry: margin=30mm
...
或者您可以在命令行上将该值作为变量传递:
pandoc markdown.md -V geometry:margin=1in -o output.tex