完美合并多个文件

完美合并多个文件

我对 Latex 还不是很熟悉,想创建一个特殊的论文摘要文档。我想创建大量文件,每个文件都包含一篇技术论文的摘要,然后将它们合并为一个文件。

摘要文件将包含以下内容:

\papertitle{The Paper Title}
\dateread{January 1, 2013}
\begin{summary}
 Technical summary here $for fun$.
\end{summary}
\cite{halespiles2008}

主文件会提取其中几个字段,并使用自定义命令很好地显示它们(我正在考虑使用类似这样的循环遍历文件,但无论如何)。

输入这样的文件并仅显示其标题和摘要并确保其引用最终出现在参考部分的最合适的命令是什么?

答案1

您可以使用

\newcommand\papertitle[1]{\item[#1]}
\newcommand\dateread[1]{}
\newenvironment{summary}{}{}
% leave \cite as is, or perhaps make it locally \nocite, depending

\begin{description}
    \input{file1}  
    \input{file2}
     ...
\end{description}

相关内容