我很好奇是否可以将整个单独的文件作为内联命令插入到 LaTeX 文档中。例如,我有以下 LaTeX 代码:
\begin{Verbatim}[frame=single]
%Want to insert all the text from another file here
\end{Verbatim}
因此,当显示%想要插入...时,我想将另一个文件(在同一目录中)的所有文本插入到文档中,.tex
以便另一个文件中的文本出现在.tex
文档的一个框中。
我希望这很清楚,如果不清楚的话,我会在评论中澄清。
答案1
此问题已在以下链接中得到解答:
答案2
你可以尝试以下\input
命令:
\begin{Verbatim}[frame=single]
\input ANOTHER_FILE.tex
\end{Verbatim}