自定义 classicthesis 的目录(页码)

自定义 classicthesis 的目录(页码)

我在用经典论文作为研究报告的模板。我想自定义目录。下面是另一个目录的屏幕截图,看起来与我想要完成的类似:

目录示例

我更喜欢右侧的页码点之间,就像在目录的屏幕截图中一样。 - 我找到了经典论文样式FrontBackmatter/Contents.tex。但是,我看不出如何自定义它?!

\refstepcounter{dummy}
\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
\automark[section]{chapter}
\renewcommand{\chaptermark}[1]{\markboth{\spacedlowsmallcaps{#1}}{\spacedlowsmallcaps{#1}}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\enspace\spacedlowsmallcaps{#1}}}

答案1

调用时添加dottedtoc到选项中classicthesis

\usepackage[...,dottedtoc]{classicthesis}

其中...代表您当前正在使用的选项。

答案2

对于 Classicthesis 版本 4.6,在 classicthesis-config.tex 文件中更改为,其中dottedtoc=false代表当前传递的选项。true\PassOptionsToPackage{...}{classicthesis}...

相关内容