目前,新零件的公告页面包含零件编号和名称。
是否可以删除该页面,同时保留其余部分?(目录中的行,或涉及零件编号的可能计数器等)
\documentclass[oneside]{scrbook}
\begin{document}
\tableofcontents
\part{Algebra}
\chapter{Chap 1}
\part{Analysis}
\chapter{Chap 1}
\end{document}
答案1
您只需更新即可\part
执行与 ToC 相关的内容插入:
\documentclass[oneside]{scrbook}
% Update \part to not print anything within the document body, except elements within the ToC
\renewcommand{\part}[1]{%
\cleardoublepage
\refstepcounter{part}%
\addcontentsline{toc}{part}{\protect\numberline{\thepart}#1}%
}%
\begin{document}
\tableofcontents
\part{Algebra}
\chapter{Chap 1}
\part{Analysis}
\chapter{Chap 1}
\end{document}
必须使用 来\cleardoublepage
确保您与任何后续 保持一致\chapter
。