My understanding of the classicthesis template is that the chapter titles in the TOC are typeset as small capitals like the Introduction chapter here (taken from the classicthesis manual):
However, when I try this, my chapter titles are not small capitals. Here is an 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}
which renders as
I would like to have the chapter titles as small capitals in the TOC. How can I achieve that?
Edit 1
I downloaded the example classicthesis-book.tex from the official package (link). The same problem happens.
Edit 2 I'm compiling this on Overleaf, but I also tried this locally with the same result.


logfile? Maybe you should not combinescrreprtwithclassicthesis. However, the problem does also occur withreport. – Schweinebacke Oct 20 '23 at 11:23ClassicThesis.texthat can be downloaded as part of the official package, where they also usescrreprt, so I somehow assumed this would be compatible. I also copied one of their examples (classicthesis-book.tex) and the same problem happens. – kafman Oct 20 '23 at 11:59