1

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):

enter image description here

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

enter image description here

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.

kafman
  • 115
  • 1
    Have you seen all the incompatibility warnings in the log file? Maybe you should not combine scrreprt with classicthesis. However, the problem does also occur with report. – Schweinebacke Oct 20 '23 at 11:23
  • @Schweinebacke I looked at the ClassicThesis.tex that can be downloaded as part of the official package, where they also use scrreprt, 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
  • @UlrikeFischer yes, thanks a lot!! I would have never found that post with the keywords I was using. – kafman Oct 20 '23 at 12:38
  • 1
    @UlrikeFischer I would recommend adding that as an answer so it can get marked as such. Currently, mine is marked, and I feel as if I am hogging reputation that rightfully belongs to you. – BrightBulb123 Oct 20 '23 at 12:39
  • Happy to change the accepted mark to a future answer from @UlrikeFischer. – kafman Oct 20 '23 at 12:40
  • 2
    @BrightBulb123 I voted to close this here as duplicate, that is the recommended way to handle that. And don't worry about my reputation, I'm rich enough. – Ulrike Fischer Oct 20 '23 at 12:47

1 Answers1

1

As Ulrike Fischer has pointed out, this is answered in this post, so you should use this.

However, I've also found a workaround by putting \renewcommand{\cftsecfont}{\scshape} in the preamble (after classicthesis has been loaded). Beware, this is a bit "hacky" and I would strongly recommend doing what Ulrike Fischer sugggests.