在两个 tex 文档中使用变量

在两个 tex 文档中使用变量

我有一个名为“main”和其他名称“other”的文件,我想要在主文件中输入数据,这些数据将由外部处理,例如:

文件 main.tex

\documentclass{report}
\def\name#1

\begin{document}
\name{Andrey}
\input{other} 

\end{document}

文件 other.tex

my name is \textbf{\name}

输出内容为:

我的名字是安德烈

所有这些都是为了用此代码制作标题

相关内容