我创建了.tex
以 开头的每个章节文件 ( ) \chapter{chapter name}
,然后尝试将所有文件包含在一个最终文档中以创建一个.pdf
文件。在 pdf 输出中,我看到除一章外,所有其他章节都包含在内。它甚至不将其识别为章节。它既不在正文中\tableofcontents
也不在正文中。这是我的最小代码。有人能帮帮我吗?我也参考了其他类似的问题,但都没有帮助。
\documentclass[12pt, a4paper, twoside]{report}
\usepackage[total={6in, 8in}, margin=1in]{geometry}
\renewcommand{\baselinestretch}{1.5}
\usepackage{multibib}
\usepackage[version=4]{mhchem}
\usepackage{apalike}
\begin{document}
\include{Abstract}
\tableofcontents
\listoffigures
\include{Chapter 1}
\include{Chapter 2}
.
.
.
\include{Summary}
\bibliographystyle{apalike}
\bibliography{References}
\end{document}