我使用以下代码在论文开头制作了图表、表格和首字母缩略词的列表(逐字取自我的大学提供的模板)。
这会生成与我预期完全一致的图表、表格和首字母缩略词列表。但是,在生成的 PDF 中,表格列表之后,短语“表格列表”会单独出现在空白页的顶部。同样,在首字母缩略词列表之后,单词“首字母缩略词”会单独出现在空白页的顶部。在我插入任何表格或首字母缩略词之前,我以为这些只是占位符,然而,即使在格式正确的列表之后,它们仍会继续出现。
我很感激任何关于如何纠正这个问题的建议!
编辑:删除 hyperref 包似乎可以解决表格列表的问题,但不能解决首字母缩略词的问题。
编辑:添加了工作示例
\documentclass[a4paper,oneside,11pt]{book}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[acronym]{glossaries}
\usepackage{tabularx}
%\usepackage[hidelinks]{hyperref}
\title{Thesis Problem \\ PhD Thesis}
\author{A N Other}
\newacronym{ipcc}{IPCC}{Intergovernmental Panel on Climate Change}
\makeglossaries
\begin{document}
\maketitle
% Declaration
\topskip0pt
\vspace*{\fill}
\noindent
\begin{quote}
\centering
This thesis is the result of the author...... \\[5pt]
\end{quote}
\vspace*{\fill}
\tableofcontents
\addcontentsline{toc}{chapter}{List of Figures}
\listoffigures
\addcontentsline{toc}{chapter}{List of Tables}
\listoftables
\addcontentsline{toc}{chapter}{List of Acronyms}
\printglossaries
\mainmatter
\chapter{Introduction}
The \acrfull{ipcc} is an international body comprising 195 member states.
\begin{table}[!t]
\caption{Merits of Plan A vs B}
\label{table:Merits}
\centering
\begin{tabularx}{\textwidth}{ |X|X| }
\hline\hline
Plan A & Plan B \\
\hline
\begin{itemize}
\item Higher cost
\end{itemize}
& \begin{itemize}
\item Lower cost
\end{itemize} \\
\hline \hline
\end{tabularx}
\end{table}
\begin{figure}[!t]\centering
\includegraphics[width=14.5cm]{image.png}
\caption{Annotated image.}\label{fig:image}
\end{figure}
\end{document}