
Estou usando o arquivo de relatório para minha tese. Antes de cada capítulo começar, quero usar uma página contendo o seguinte no meio, sem numeração de página, mas o número da página deve continuar na próxima página. Da mesma forma, para cada capítulo.
CAPÍTULO i INTRODUÇÃO
Responder1
Uma opção é combinar pacotes fancyhdr
e titlesec
:
\documentclass{book}
\usepackage{lipsum,titlesec,fancyhdr}
% Redefine the plain page style, which is used for the chapter page
\fancypagestyle{plain}{%
\fancyhf{}%
\renewcommand{\headrulewidth}{0pt}% Line at the header invisible
\renewcommand{\footrulewidth}{0pt}% Line at the footer invisible
}
% use titlesec to adjust the chapter page layout and insert a \clearpage
\titleformat{\chapter}[display]% remove [display] to get everything on the same line
{\normalfont\Large\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Large}%
% change \Large to \LARGE or whatever you prefer
[\clearpage\ignorespaces]%
\begin{document}
\chapter{Another day in paradise}
\lipsum[1-2]
\end{document}