自訂目錄

自訂目錄

我需要中間不左邊的章節號碼和頁碼。也是藍色或是一切都需要黑色,可能嗎?

我需要中間不左邊的章節號碼和頁碼。也是藍色或是一切都需要黑色,可能嗎?

答案1

我從圖像中獲取的所有資訊:居中的標題,左側的章節號(如果有),然後是右側的標題和頁碼。

卡馬爾托克

\documentclass{report}
\usepackage[indentunnumbered]{unnumberedtotoc}%https://en.wikibooks.org/wiki/LaTeX/Document_Structure#Section_numbering
\usepackage{etoolbox}
\tracingpatches
\makeatletter
\patchcmd{\@makechapterhead}{\raggedright}{\centering}{}{}
\patchcmd{\@makeschapterhead}{\raggedright}{\centering}{}{}
\makeatother
\begin{document}
\tableofcontents
\chapter{Wombat}
\addchap{Capybara}
\chapter{An insanely long chapter title that nobody will ever
read entirely Duck}
\end{document}

相關內容