Skip to content

Instantly share code, notes, and snippets.

@csokol
Created April 16, 2012 20:31
Show Gist options
  • Save csokol/2401319 to your computer and use it in GitHub Desktop.
Save csokol/2401319 to your computer and use it in GitHub Desktop.
book with parts
\documentstyle[11pt]{book}
\newenvironment{tubainapart}
{
\hrule
\Huge\bf \begin{center}
}
{
\end{center}
\hrule
}
\begin{document}
\tableofcontents
\cleardoublepage
\addcontentsline{toc}{part}{Titulo da parte 1}
\thispagestyle{empty}
\begin{tubainapart}Titulo da parte 1\end{tubainapart}
\chapter{capitulo 1}
\section{blablabla}
\chapter{capitulo 2}
\section{blablabla}
\chapter{capitulo 3}
\section{blablabla}
\cleardoublepage
\addcontentsline{toc}{part}{Titulo da parte 2}
\thispagestyle{empty}
\begin{tubainapart}Titulo da parte 2\end{tubainapart}
\chapter{capitulo 4}
\section{blablabla}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment