如何将章节布局设置为默认?

如何将章节布局设置为默认?

我使用“titlesec”包更改了章节布局。从逻辑上讲,新布局会影响目录标题和参考书目,因为两者都被归类为“章节”。有没有办法将这两个布局设置为默认的书籍类布局?谢谢,Jiri

答案1

你可以使用这个

\documentclass{book}
\usepackage{titlesec}

\newcommand{\fncchap}{%
\titleformat{\chapter}...}

\newcommand{\oldchap}{%
\titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}
\titlespacing*{\chapter} {0pt}{50pt}{40pt}}

\begin{document}

\oldchap
\tableofcontents

\fncchap
\chapter{Test}


\oldchap
....

\end{document}

相关内容