相同的 main.tex 但使用动态名称编译 pdf 并在其他文件中使用变量

相同的 main.tex 但使用动态名称编译 pdf 并在其他文件中使用变量

我使用 Texmaker。

当 main.tex 创建许多不同的 pdf 输出时,这是可能的。

我想在“pdfoutputname.tex”中定义输出 pdf 名称的变量

然后将此变量用于 main.tex

main.tex 中的最少代码

\documentclass{article}
\usepackage{pgffor}
\input{pdfoutputname.tex}
\pgfmathsetmacro{\FileoutputVariableNull}{\FileoutputVariable[0]}

\begin{document}
Hello \\
File name pdf is \FileoutputVariableNull
\end{document}

在“pdfoutputname.tex”中

\def\FileoutputVariable{{"AAA","BBB"}}

想要的结果:main.tex 创建 AAA.pdf,而不是 main.pdf 如果有人有其他想法,请分享。提前感谢

相关内容