将命令行参数传递给 LaTeX 文档

发布于 2024-08-17 06:40:51 字数 779 浏览 6 评论 0原文

我有一个 LaTeX 文件,“myfile.tex”,有时在代码中间有一个带有 LaTeX 宏的 ASCII 文件 必须输入“macrofile.tex”,例如通过“\input{macrofile}”命令。实际上,有不止一个“宏文件”,所以每次我都必须编辑“myfile”并更改“宏文件”的名称。我可以避免 使用 \typein 命令编辑部分,但是,我仍然需要从键盘输入名称。有什么方法可以从命令行执行此操作吗?因此,总而言之,“myfile.tex”看起来像:

\documentclass{article}
........................
.......................
.......................
\begin{document}
.......................
......................
.......................
.......................
........................
.......................
\input{macrofile1} OR {macrofile2} OR {macrofile3} ETC...
.......................
......................
......................
....................
.....................
\end{document}

我可以将“macrofile”的名称作为参数传递给“myfile.tex”吗?

谢谢

约翰

I have a LaTeX file, 'myfile.tex' say, that sometime in the middle of the code an ASCII file with LaTeX macros
has to be input, 'macrofile.tex, say, through an '\input{macrofile}' command. Actually, there are more than one 'macrofiles', so every time I have to edit 'myfile' and change the name of 'macrofile'. I can avoid the
edit part by using a \typein command, yet, I'd still have to enter the name from the keyboard. Is there any way to do that from the command line? So, to summarize, 'myfile.tex' looks like:

\documentclass{article}
........................
.......................
.......................
\begin{document}
.......................
......................
.......................
.......................
........................
.......................
\input{macrofile1} OR {macrofile2} OR {macrofile3} ETC...
.......................
......................
......................
....................
.....................
\end{document}

Can I pass the name of 'macrofile' as an argument to 'myfile.tex'?

Thanks

John

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌生 2024-08-24 06:40:51

是的,类似这样的事情:

latex "\def\myvar{info-to-pass} \input{<filename>}"

你应该这样做。然后您可以在文档中使用 \myvar。

\input{...} 指定 latex 命令的文件名。

Yup, something like:

latex "\def\myvar{info-to-pass} \input{<filename>}"

should do you. You can then use \myvar in your document.

The \input{...} specifies the filename for the latex command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文