我正在尝试使用没有零件编号的零件。最初我的解决方案是使用
\part*{Overture}
而不是
\part{Overture}
在正文中哪个可以正常工作
问题是目录中此条目的字体发生了变化。那么,如何才能拥有未编号的章节而不破坏目录的格式?
这是 MWE
\documentclass[10pt,twoside,openright, titlepage, fleqn, headinclude, footinclude, BCOR5mm, numbers=noenddot, cleardoublepage=empty, captions=tableheading]{scrbook}
\usepackage[parts, linedheaders, pdfspacing, eulermath, beramono, eulerchapternumbers, dottedtoc]{classicthesis}
\begin{document}
\tableofcontents
\part*{Overture}
\part{Dislocations}
\end{document}
答案1
似乎该\part*
命令不接受短标题和长标题,就像\part[short title]{long title}
一样。Classicthesis 会更改命令中的短标题,\part
以便将其排版spacedlowsmallcaps
在目录中。一种解决方法是使用\part*{\hspace{1em} \textls[80]{\scshape{overture}}}
。