我正在尝试使用 scons 来构建乳胶文档。特别是,我想让 scons 调用一个 python 程序,该程序生成一个文件,该文件包含一个表,该表是 \input{} 到主文档中。我查看了 scons 文档,但我并不清楚我需要做什么。
我希望实现的基本上是您使用此 makefile 将获得的结果:
document.pdf: table.tex
pdflatex document.tex
table.tex:
python table_generator.py
我如何在 scons 中表达这一点?