如何使用 documentclass{scrbook} 來變更目錄頁碼的對齊方式?

如何使用 documentclass{scrbook} 來變更目錄頁碼的對齊方式?

我正在使用找到的模板,現在我想更改目錄。我正在使用以下文檔類。

\documentclass[oneside,11pt,a4paper,footinclude=true,headinclude=true,cleardoublepage=empty]{scrbook}

關於 TOC 的內容如下:

\pdfbookmark[1]{\contentsname}{tableofcontents}

\setcounter{tocdepth}{2} % <-- 2 includes up to subsections in the ToC
\setcounter{secnumdepth}{3} % <-- 3 numbers up to subsubsections
\tableofcontents 

結果是: 總有機碳

如何讓頁面右側的頁碼對齊?如何刪除部分(簡介和概念設計)的頁碼?

先致謝!

答案1

按照 Johannes_B 在評論中的建議,使用dottedtoc套件選項classicthesis來對齊頁面右側的頁碼。

Packageclassicthesis使用packagetocloft來格式化TOC。所以你可以添加類似的東西

\renewcommand{\cftpartpagefont}{\phantom} 

刪除目錄中各部分的頁碼。或者更好 - 正如 @PhilipPirrip 在評論中所建議的 -

\cftpagenumbersoff{part}

相關內容