classicthesis + pdfspacing --> 章节标题中的脚注存在问题

classicthesis + pdfspacing --> 章节标题中的脚注存在问题

我遇到了线

我现在想使用pdfspacing,但这似乎与我在章节标题中定义脚注的方式不兼容。

参见此示例。如果没有pdfspacing,它可以编译通过,但如果有 ,则不能:

\documentclass[12pt,
               a4paper,
               footinclude=true,
               headinclude=true,
               titlepages,
               %draft
               ]{scrbook}

\usepackage[pdfspacing,
            linedheaders,
            eulermath,
            eulerchapternumbers,
            parts,
            floatperchapter]{classicthesis} 


\begin{document}
\tableofcontents

\cleardoublepage\part{Introduction and Background}

\chapter[Chapter Title]
    {Chapter Title\hspace{1.5pt}\protect\footnotemark}
    \chaptermark{Chapter Title}
    \label{ch:chaptertile}

\footnotetext{this chapter has been published as: XYZ}

\end{document}

答案1

让人误\spacedallcaps以为它没有做一些特别的事情:

\chapter[Chapter Title]
    {Chapter Title\mbox{\protect\footnotemark}}
    \chaptermark{Chapter Title}
    \label{ch:chaptertile}

\footnotetext{this chapter has been published as: XYZ}

相关内容