我正在 LYX 中使用 classicthesis。如何将未编号章节附录与目录的其余部分正确对齐?此外,未编号标题是没有点来指示页面的标题。我如何才能将点对齐?
\chapter*{Appendix: Is there Economic Growth dependence on fossil-fuel Consumption?:
Nonlinear deterministic convergence analysis.}
\addcontentsline{toc}{chapter}{Appendix: Is there Economic Growth dependence on fossil-fuel Consumption?: Nonlinear deterministic convergence analysis}
\chaptermark{Dependence on fossil-fuel Consumption?}
答案1
假设我们有一个基于 KOMA 脚本的基本设置,我们可以用它addchap
来获取未编号的章节以及目录中的条目。只需一个小小的开关,就可以轻松缩进所有这些未编号的条目。
向章节条目添加点同样容易,但不幸的是,classicthesis
加载与 KOMA 不兼容的包会破坏文档接口。我们必须使用来自的内容tocloft
来获取章节条目的点。
\documentclass[headinclude=true,footinclude=true]{scrreprt}
\usepackage[dottedtoc]{classicthesis}
\KOMAoptions{toc=indentunnumbered,
chapterentrydots=true%<---- This works if KOMA is not overridden
}
\renewcommand{\cftchapleader}{\cftdotfill{\cftchapdotsep}}
\renewcommand{\cftchapdotsep}{\cftdotsep}
\hypersetup{hidelinks}
\begin{document}
\tableofcontents
\chapter{Rock and Roll Racoon}
\section{defining the dance}
\appendix
\addchap{Rumba Rhinoceros}
\end{document}