我在Debian 10和Ubuntu20.04中安装了pandoc。当我运行pandoc时,它使用不同的几何驱动程序。
# Debian 10
*geometry* driver: auto-detecting
*geometry* detected driver: xetex
# Ubuntu 20.04
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex有没有办法强迫pandoc使用pdftex作为几何驱动程序?xetex似乎给我带来了一些问题。
发布于 2020-12-14 16:10:27
这似乎可以使用这样的-V参数来完成:
pandoc -V geometry:driver=pdftex -s test.md -o test.pdfhttps://stackoverflow.com/questions/65292208
复制相似问题