我怎样才能使目录中的点在同一位置结束?

我怎样才能使目录中的点在同一位置结束?

在我的目录中,一些点填充与其他行的结束位置不同。是什么原因造成的?我该如何使点填充统一?以下屏幕截图中的红色椭圆突出显示了该问题:

目录中有额外的点

编辑:看起来页码“101”比其他页码略窄,刚好留出足够的空间来容纳一个额外的点。这可能是原因,但我仍然不知道如何解决这个问题。

编辑2:下面是最小工作示例。文档类位于https://github.com/wannesm/adsphd/blob/master/adsphd.cls,而且很长——对于给您带来的不便,我们深表歉意。

\documentclass{adsphd}

\begin{document}

\mainmatter % Arabic page numbering

\tableofcontents

\setcounter{page}{98}
\chapter{Numerical solution of bivariate and polyanalytic polynomial systems}
\section{Introduction}\clearpage
\section{Notation and preliminaries}\clearpage
\section{Solving systems of bivariate and polyanalytic polynomials}\clearpage
\subsection{The polynomial eigenvalue problem}\clearpage
\subsection{Balancing the system and its associated pencil}\clearpage
\subsubsection{Balancing the bivariate system}\clearpage
\subsubsection{Balancing the polyanalytic system}\clearpage
\subsubsection{Balancing the pencil}\clearpage
\section{Numerical experiments}\clearpage
\section{Conclusion}\cleardoublepage

\end{document}

答案1

这是 的问题microtype。使用

\microtypesetup{protrusion=false}
\tableofcontents
\microtypesetup{protrusion=true}

用于目录。

相关内容