词汇表标题比其他部分标题具有更多空间

词汇表标题比其他部分标题具有更多空间

我正在使用词汇表包来管理我的论文中的首字母缩略词。

除了词汇表标题和其他章节标题之间有一些额外的空间外,一切正常。

我删除了代码,但问题仍然存在:

\documentclass[12pt,a4paper]{article}

\usepackage[left=3.0cm,top=2.0cm,right=2.0cm,bottom=2.0cm]{geometry}

\usepackage[
nonumberlist,
nopostdot,
nogroupskip,
acronym,
toc,
section]
{glossaries}

\makeglossaries

\begin{document}

\newacronym{usd}{US-\$}{United States Dollar}

\glsaddall\printglossary[type=\acronymtype,title={List of Abbreviations},toctitle={List of Abbreviations}]

\pagebreak

\section{Introduction}

\end{document}

我在 Mac 上使用 TeXShop 并使用 pdflatexmk 进行编译。

提前非常感谢您!

最好的帕特里克

答案1

\glsaddall正在添加垂直空间。如果您在其他页面上使用此命令,则部分标题会正确显示:

\documentclass[12pt,a4paper]{article}

\usepackage[left=3.0cm,top=2.0cm,right=2.0cm,bottom=2.0cm]{geometry}

\usepackage[
nonumberlist,
nopostdot,
nogroupskip,
acronym,
toc,
nomain,
section]
{glossaries}

\makeglossaries
\newacronym{usd}{US-\$}{United States Dollar}

\begin{document}

  something
  \glsaddall\clearpage

  \printglossary[type=\acronymtype,title={List of Abbreviations},toctitle={List of Abbreviations}]

  \clearpage
  \section{Introduction}

\end{document}

正确定位的章节标题

相关内容