LaTeX 文档目录中的页码错误

LaTeX 文档目录中的页码错误

我正在用 LaTeX 写论文。一切都很顺利,直到我决定将我的一些出版物插入到 LaTeX 论文文档中。

错误是在目录中,仅在我将论文以 PDF 文档形式呈现的章节中显示了错误的页码,LaTeX 将 PDF 视为只有一页(PDF 文件超过 6 页)。

例如,论文 X 从第 20 页开始,共 6 页,下一篇论文应该从第 27 页开始,但在目录中,它显示为 21!。

我应该注意到,整个文档的页码是正确的,错误只是在目录中。

这是我的主要 tex 文档的代码:

\documentclass[a4paper,11pt,twoside]{ThesisStyle}
\usepackage{pdfpages}
\include{formatAndDefs}
\begin{document}
\include{TitlePage}
\dominitoc
\pagenumbering{roman}
\section*{Acknowledgments}
\cleardoublepage
\tableofcontents
\mainmatter
\include{Chapter1}
\include{chapter2}
\include{Chapter3}
\include{Chapter4}
\appendix
\include{Appendix1}
\bibliographystyle{ThesisStyle}
\bibliography{Thesis}
\printnomenclature
\cleardoublepage
\begin{vcenterpage}
\noindent\rule[2pt]{\textwidth}{0.5pt}
{\large\textbf{Abstract:}}
{\large\textbf{Keywords:}}
\noindent\rule[2pt]{\textwidth}{0.5pt}
\end{vcenterpage}
\end{document}

在第三章中我添加了pdf文档:

\chapter{List of Publications}
\label{chap:intro}
\minitoc
\newpage
\section{paper 1 title}
\newpage
\includepdf[pages={-}]{paper1.pdf}
\section{paper 2 title}
\newpage
\includepdf[pages={-}]{paper2.pdf}
... etc

错误可能出在哪里?(注意:我是 LaTeX 新手。)

相关内容