目录中的章节水平对齐

目录中的章节水平对齐

我想用 Latex 重现这个 TOC 样式,

在此处输入图片描述

但我不知道如何使用 titletoc 来做到这一点,我尝试将章节格式对齐,但都只导致错误,所以,我没有任何类型的 MWE...

简历中:

布局如下:

PAGE NUMBER

CHAPTER NUMBER
CHAPTER TITLE

并将所有这些排列成行,就像一张桌子一样。

编辑:

最大能量值(??)

\documentclass{book}
\usepackage{titletoc}

\begin{document}
\chapter{one}
\chapter{two}
\chapter{three}
\chapter{four}
\chapter{five}
\chapter{six}
\chapter{seven}
\end{document}

答案1

在此处输入图片描述

\documentclass{book}

\makeatletter
\renewcommand\l@chapter[2]{%
\noindent\parbox[t]{.3333\linewidth}{\centering
{\Huge\bfseries #2\par}%
\smallskip
\def\numberline##1{%
\large ##1\par
\normalsize
\par}
#1\par
\bigskip}\hfill}
\makeatother

\begin{document}

\tableofcontents
\chapter{one}
\chapter{two}
\chapter{three}
\chapter{four}
\chapter{five}
\chapter{six}
\chapter{seven}
\end{document}

相关内容