classicthesis 中缺少章节编号

classicthesis 中缺少章节编号

一旦我包含了该classicthesis包,所有部分(和子部分)的编号都会消失。最小工作示例:

\documentclass{report}
\usepackage{classicthesis}
\setcounter{secnumdepth}{3}
\begin{document}
    \chapter{a chapter with a number}
    \section{a section that should have a label}
    \section*{a section that should not have a label}
    \section{another section}
    \subsection{a subsection}
\end{document}

在输出中,没有任何部分具有前导编号(但章节有)。

我正在使用 classicthesis 的最新版本 (v4.2)来自CTAN。文档类似乎没有什么区别;我尝试了 KOMA 和“经典”类。

我在 Ubuntu 上使用 texlive,并且已经重新安装了所有内容。日志中没有出现任何错误或警告。但无论如何也想不出为什么数字会被隐藏。

答案1

Christian Hupfer 的建议起了作用 - 我手动用以下命令覆盖了 texlive 文件夹中的 titlesec 包来自 CTAN 的版本,现在一切都按预期进行。

相关内容