I changed my chapter layout using the package "titlesec". Logically, the new layout impacts the heading of the table of contents and the bibliography as both are classified as "chapters". Is there a way I could set up the layout of these two to default book class layout? Thanks, Jiri
Asked
Active
Viewed 910 times
1
1 Answers
2
You can use this
\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}
touhami
- 19,520
\documentclass{...}and ending with\end{document}. – yo' Mar 22 '15 at 20:31