如果章节标题中包含数学,则 classicthesis 中的数学字距调整不正确

如果章节标题中包含数学,则 classicthesis 中的数学字距调整不正确

classicthesis给出的示例包一样米德

仅有的在其中一个章节标题中添加一些数学符号,并在正文中添加一些数学符号(如下所示)。当章节标题中包含数学符号时,该章节标题页的整个文本中的数学字距会很差。如何纠正?

查看差异:

用数学来计算: 在此处输入图片描述

正文内容应为: 在此处输入图片描述

\documentclass[]{scrreprt}

\PassOptionsToPackage{
pdfspacing,
                     subfig,beramono,eulermath,parts}{classicthesis}                                        

\PassOptionsToPackage{fleqn}{amsmath}        
    \usepackage{amsmath}
\usepackage{xspace} % to get the spacing after macros right  
\usepackage{subfig}  
\usepackage{classicthesis} 

\begin{document}

\chapter{Some math in the title $X^2$}\label{ch:introduction}

Bad kerning $\{X_n\}_{n\geq 0}$ and errors while referring to 
\begin{equation}
 a\cdot 0 = 0 \label{wow} 
\end{equation}
in another chapter-title.
\appendix

\chapter{Proof of formula \ref{wow}}\label{ch:second}

%*******************************************************
\end{document}
% ********************************************************************

导致更多问题的解决方案

我可以评论pdfspacing并去掉错误的字距。但是这会与我已有的章节标题中的引用相冲突,而且无法修改(某些附录部分中的超链接)。因此,我想避免阻止pdfspacing加载。

相关内容