I am doing a research work and I googled half an hour and found nothing about this. Is there some way to get a title page (without any style) for every chapter?
I think the "without style" thing is done with \thispagestyle{empty}
Asked
Active
Viewed 4,066 times
4
Stefan Kottwitz
- 231,401
dot dot
- 143
1 Answers
4
Something like this with the help of titlesec package:
\documentclass[oneside]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{lipsum}
\usepackage{titlesec}
\titleclass{\chapter}{page}
\assignpagestyle{\chapter}{empty}
\titleformat{\chapter}
[display]
{\centering\Huge\bfseries}
{\chaptername\ \thechapter}
{0pt}
{\huge}
[\clearpage]
\begin{document}
\chapter{First}
\lipsum[10-20]
\chapter{Second}
\lipsum[10-20]
\end{document}
Additional formatting can be done via modifying the \titleformat options, see #3.1 in titlesec package manual.
And the result:
Chapter page:

And text page:

m0nhawk
- 9,664
bookdocument style? – m0nhawk Jan 07 '13 at 18:56\thispagestyle{empty}\cleardoublepagedirectly after\chapter{…}should do, what you want. If yes, there are ways for automatic application of these macros … – Speravir Jan 12 '13 at 21:46