目次の付録が適切に整列されている

目次の付録が適切に整列されている

私は LYX で classicthesis を操作しています。番号なしの章の付録を、ToC の残りの部分と適切に揃えるにはどうすればよいでしょうか。また、番号なしのタイトルには、ページを示すドットがありません。適切に揃えてドットを配置するにはどうすればよいでしょうか。

\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?}

ToC の外観

答え1

KOMA スクリプトに基づく非常に基本的な設定を前提とすると、addchap番号なしの章と目次のエントリを取得できます。番号なしのエントリすべてをインデントすることは、小さなスイッチ 1 つで簡単に実行できます。

章のエントリにドットを追加するのも同様に簡単ですが、残念ながらKOMA と互換性のないパッケージがロードされるため、ドキュメント化されたインターフェイスが壊れます。章のエントリにドットを追加するにclassicthesisは、 のものを使用する必要があります。tocloft

guandiClassicthesisTocStuff

\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}

関連情報