
Estoy usando un archivo de informe para mi tesis. Antes de que comience cada capítulo, quiero usar una página que contenga lo siguiente en el medio sin numeración de páginas, pero el número de página debe continuar en la página siguiente. De manera similar, para cada capítulo.
CAPÍTULO i INTRODUCCIÓN
Respuesta1
Una opción es combinar paquetes fancyhdr
y 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}