使用 python 中的 pdflatex 进行编译时评估 LastPage

使用 python 中的 pdflatex 进行编译时评估 LastPage

实际上不确定这是否属于这里或者属于 stackoverflow......

我有一个可以生成报告的 Python 脚本

p = Popen(['pdflatex', 'rendered.tex', '-job-name', 'out', '-output-directory', tmp_dir], cwd='static/latex')
p.communicate()

到目前为止,它运行良好,我唯一的问题是,由于它只编译一次,包LastPage中的引用lastpage没有被评估,所以我得到了??。有没有办法在pdflatex从控制台编译时对引用进行评估?

相关内容