Classicthesis:目录中的章节标题不是小写字母

Classicthesis:目录中的章节标题不是小写字母

我对模板的理解classicthesis是,目录中的章节标题排版为小写字母,就像这里的简介章节(取自 classicthesis 手册):

在此处输入图片描述

但是,当我尝试这样做时,我的章节标题不是小写字母。以下是 MWE:

\documentclass[%
    twoside, openright, titlepage, numbers=noenddot,%
    cleardoublepage=empty,%
    abstractoff,%
    BCOR=5.5mm, paper=a5, fontsize=10pt,
]{scrreprt}

\PassOptionsToPackage{%
  dottedtoc,%
  eulerchapternumbers,
  floatperchapter, pdfspacing,%
  beramono,%
  a5paper,%
}{classicthesis}
\usepackage{classicthesis}


\begin{document}

% TOC
\pdfbookmark[1]{\contentsname}{tableofcontents}
\setcounter{tocdepth}{2} % <-- 2 includes up to subsections in the ToC
\setcounter{secnumdepth}{3} % <-- 3 numbers up to subsubsections
\manualmark%
\markboth{\spacedlowsmallcaps{\contentsname}}{\spacedlowsmallcaps{\contentsname}}
\tableofcontents

\chapter{Chapter 1}
\section{Section 1}
\subsection{Subsection 1.1}

\chapter{Chapter 2}
\section{Section 2}

\end{document}

渲染结果为

在此处输入图片描述

我想让目录中的章节标题以小写字母显示。如何实现?

编辑1 我下载了示例classicthesis-book.tex我从官方包中关联)。同样的问题也发生。

编辑2 我正在 Overleaf 上编译这个,但我也在本地尝试过,结果相同。

答案1

作为乌尔丽克·菲舍尔指出,这个问题的答案在这个帖子,因此您应该使用它。

不过,我也找到了一种解决方法,就是\renewcommand{\cftsecfont}{\scshape}在序言中(classicthesis加载后)。请注意,这有点“黑客行为”,我强烈建议按照 Ulrike Fischer 的建议去做。

相关内容