将多个章节(单独的文件)合并为一份报告

将多个章节(单独的文件)合并为一份报告

我正在写我最后一年的论文。我被要求分部分写我的报告。首先,我写了介绍章节。不,我已经完成了文献调查。这两篇都是作为两篇单独的文章(文档类)写的。这两个 tex 文件位于不同的目录中,并且都有自己的参考书目。所有 bibtex 文件都保存在一个公共文件夹中

Report
   >intro
       >introduction.tex
   >lit-review
       >literature-review.tex
   >refs
       >refgroup1.bib
       >refgroup2.bib

现在我想将这两篇文章合并为一个文档的两个章节,以生成一份报告草稿,随着我的研究进展,我将通过添加新的部分来进一步扩展该报告。参考文献应显示在整篇报告的末尾。

有人能指导我吗?谢谢

答案1

使用允许分章节的大型文档类别,如书籍、报告或回忆录。在第一章中包含介绍文本(文档部分,而不是序言),在第二章中包含文献综述文本。

使用multibib或者chapterbib用于管理单独书目的包。

答案2

我建议看看(优秀)套餐经典论文

答案3

我发现了一个非常有用的 pdf,其中包含一些示例。 这是链接(这是我下载示例的链接,如果它不再起作用,我很抱歉)

此 pdf 提供了将文档分成多个文件的一些示例。我使用了相反的方法,并使其按照我想要的方式工作。

这是我使用的乳胶代码

\documentclass[10pt,a4paper,final]{report}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{hyperref}
%This is for removing coloured boxes around the links and internal references. I don't like those boxes%
\hypersetup{
    colorlinks=false,
    pdfborder={0 0 0},
}

\begin{document}

\include{./titlepage} % including my cover page

\pagenumbering{roman}
\tableofcontents
%---- I commented these since my document doesn't need them yet-----%
%\listoffigures
%\listoftables

%\chapter*{Acknowledgements}
%\begin{abstract}
%\end{abstract}

\pagenumbering{arabic}
\include{./intro/introduction}
\include{./lit-review/literature-review}
\bibliographystyle{IEEEtran}
\bibliography{./relative/path/to/my/bibtexfiles}
\end{document}

包含文件中不能包含\begin{document}\end{document}标签。最好也不要包含任何格式化代码。否则它们可能会相互覆盖并产生意外结果。

编译包含上述代码的文件足以产生正确的结果。首先使用 pdflatex 进行编译,然后使用 bibtex 进行编译,再使用 pdflatex 进行编译两次。

这是我的 titlepage.tex

% the start of the tex file
\begin{titlepage} 

\begin{center}
 %----  Title page content -----%
\end{center}

\end{titlepage}
% end of file

这就是我的introduction.tex的样子

% the start of the .tex file
\chapter{Introduction} 

\section{Section heading}

\subsection{sub section heading}

% end of file

这会生成一个带有封面的 pdf 文档,然后是两个章节,整个参考书目放在文档的末尾。

答案4

你可能想看看这篇文章:

方程式数字混乱

祝你的论文顺利完成。

相关内容