我希望 pdflatex 只运行
pdflatex 'current_file'.tex
然后编译位于另一个目录中的 main.tex。因此,为了使我的相对路径正常工作,我必须使用更改目录命令,例如“cd”。
当我说
pdflatex 'current_file'.tex && cd home/tex/ && pdflatex main
然而,在 Kile 中这不起作用。这是否可行,因为我可以配置纯 Pdflatex 命令。是否可以在其参数中添加类似更改目录的内容,以便:
pdflatex -synctex=1 -interaction=nonstopmode 'change directory command' file
?
答案1
您可以设置-output-directory
pdflatex 的参数,如下所示:
pdflatex -synctex=1 -interaction=nonstopmode -output-directory='/path/to the/new/' '/path/to the/new/file.tex'