4

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}

Stefan Kottwitz
  • 231,401
dot dot
  • 143

1 Answers1

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: enter image description here

And text page: enter image description here

m0nhawk
  • 9,664