在 Windows 中编译多个 LaTeX 文件

发布于 2024-09-08 03:40:13 字数 216 浏览 3 评论 0原文

我有一个包含许多 LaTeX 文件的文件夹,这些文件都使用相同的自定义 LaTeX 类。现在我想重新编译所有这些 LaTeX 文件。它们排列在单独的文件夹中,其主文件名称与文件夹相同,例如,foo0001/foo0001.texfoo0002/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡笑忘祈一世凡恋 2024-09-15 03:40:13

好吧,你可以循环遍历它们:

for /r %%x in (*.tex) do pdflatex "%%x"

如果当前路径是相关的(LaTeX 是否拾取相对于当前目录而不是相对于源文件的相对资源?),那么你可以先进入目录,编译,然后退出目录再次:

for /r %%T in (*.tex) do (
  pushd "%%~dpT"
  pdflatex "%%~nxT"
  popd
)

Well, you could just loop over them:

for /r %%x in (*.tex) do pdflatex "%%x"

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:

for /r %%T in (*.tex) do (
  pushd "%%~dpT"
  pdflatex "%%~nxT"
  popd
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文