\documentclass[presentation, pnum,
               nonavbar, scientific]{polyout}
%\documentclass[printable, pnum,
%               scientific]{polyout}
%\documentclass[article, tocpageref,
%               twoside, scientific]{polyout}

\title{Polyout simple parts example}
\stitle{How to deal with parts}
\author{Nathana\"el Cottin}
\keywords{polyout, parts}
\contact{contact@ncottin.net}
\website{http://www.ncottin.net}
\version{0.0.4}

\begin{document}

\frame{
	\maketitle
}

\begin{abstract}
\par This document shows a basic example with parts.
Parts are not referenced in this example.
\end{abstract}

\tableofcontents

%---------------------------------------------------
% Parts overview
%---------------------------------------------------
\partsoverview{
	\frame{
		\parttitle{Part 1}
	}
	
	\frame{
		\parttitle{Part 2}
	}
}

%---------------------------------------------------
% Part 1 content
%---------------------------------------------------
\part{Part 1}{Description of first part}{}{}

\frame{
	\frametitle{Part 1 frame}
	
	\par This is a non-referenced part.
	You can place your text here
}

%---------------------------------------------------
% Part 2 content
%---------------------------------------------------
\part{Part 2}{Description of second part}{}{}

\frame{
	\frametitle{Part 2 frame}
	
	\par This is another non-referenced part.
	You can place your text here again
}

\end{document}
