在 Windows 中编译多个 LaTeX 文件
我有一个包含许多 LaTeX 文件的文件夹,这些文件都使用相同的自定义 LaTeX 类。现在我想重新编译所有这些 LaTeX 文件。它们排列在单独的文件夹中,其主文件名称与文件夹相同,例如,foo0001/foo0001.tex
、foo0002/foo0002.tex
。有没有办法使用 Windows bat
脚本来编译/构建所有这些文档?
I have a folder with many LaTeX files that all use the same custom LaTeX class. Now I want to recompile all of these LaTeX files. They are aranged in separate folders with the same name for the main files as the folder, e.g., foo0001/foo0001.tex
, foo0002/foo0002.tex
. Is there a way, using a Windows bat
script, to compile/build all these documents?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,你可以循环遍历它们:
如果当前路径是相关的(LaTeX 是否拾取相对于当前目录而不是相对于源文件的相对资源?),那么你可以先进入目录,编译,然后退出目录再次:
Well, you could just loop over them:
If the current path is relevant (does LaTeX pick up relative resources relative to the current directory instead of relative to the source file?) then you can first enter the directory, compile, and exit the directory again: