我需要将部分标题拆分如下ToC
:
第一部分
部分标题
我正在使用这个titletoc
软件包。章节看起来很容易,但我不知道如何对零件进行操作。有什么建议吗?
答案1
这是我的一个旧例子,我对其进行了修改以满足您的需要(也可能包含一些您不想要的功能,但它们很容易删除):
\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage[newparttoc,explicit, clearempty]{titlesec}%
\usepackage{titletoc}
\usepackage{chngcntr}
\usepackage{fmtcount}
\counterwithin*{chapter}{part}
\def\partname{Part}
\renewcommand\thepart{\NUMBERstring{part}}%
\titleformat{\part}[display]{\bfseries\filcenter}{\huge\partname~\thepart}{20pt}{\Huge #1}[\thispagestyle{empty}]%
\titlecontents{part}[0em]{\large\bfseries\protect\addvspace{25pt}\titlerule\addvspace{1.5ex}}%
{\partname~\thecontentslabel \endgraf}{}%
{\hfill\contentspage}[\addvspace{1ex}\titlerule\addvspace{1ex}]%
\begin{document}
\tableofcontents
\part{A First Part}
\chapter{Chapter the First}
\section{Section 1.1}
\section{Section 1.2}
\chapter{Chapter the Second}
\section{Section 2.1}
\section{Section 2.2}
\part{Another Part} \label{part-2}
\chapter{Chapter the First}
\section{Section 1.1}
\section{Section 1.2}
\chapter{Chapter the Second}
\section{Section 2.1}
\section{Section 2.2}
\end{document}