如何将现有的 LaTeX 文件作为论文附录的章节?

如何将现有的 LaTeX 文件作为论文附录的章节?

我将在附录下有两章,如下图所示。

在此处输入图片描述

\include{appendices/appendices}在我的总体 LaTeX 文件中使用它来引用我的附录 LaTeX 文件。

在附录 LaTeX 中,我有以下内容:

在此处输入图片描述

我只想把这些章节变成论文。我有一套完整的文件和每篇论文的 LaTeX 文件。我想直接把它带进来,但不确定怎么做。

答案1

要做到这一点,可以使用“子文件”包。在您的主.tex文件中(我将称之为thesis.tex),您可以使用类似以下内容:

\documentclass[a4paper]{book}
\usepackage{subfiles}
\usepackage{lipsum}
\usepackage{graphicx}

\begin{document}
    \tableofcontents

    \chapter{Conclusions and Outlook}
    \lipsum[1-5]

    \subfile{appendices/appendices}
    % Revert graphicspath to normal (it is modified in appendices.tex)
    \graphicspath{{./}}
\end{document}

然后appendices/appendices.tex你就会有类似这样的事情:

% The 'magic' comment below allows you to compile the appendices.tex on itself.
% Else, your editor might always compile the thesis.tex instead.
% !TeX root=appendices.tex

\documentclass[../../thesis]{subfiles}

\begin{document}
    \graphicspath{{appendices/images/}}
    \appendix
    \chapter{Paper 1}
    \lipsum[6-8]

    \chapter{Paper 2}
    \lipsum[9-11]
\end{document}

自动地,您在 序言中所做的所有定义thesis.tex将在您的 中可用appendices.tex

这个答案对你有帮助吗?:)

相关内容