\documentclass[presentation, pnum,
               nonavbar, scientific]{polyout}
%\documentclass[printable, pnum,
%               scientific]{polyout}
%\documentclass[article, tocpageref,
%               twoside, scientific]{polyout}

\title{Polyout simple referenced 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.1}

\begin{document}

\frame{
	\maketitle
}

\begin{abstract}
\par This document shows a basic example with parts.
Parts are referenced in this example.
\end{abstract}

\tableofcontents

%---------------------------------------------------
% Parts overview
%---------------------------------------------------
\partsoverview{
	\frame[label=outline1]{
		\parttitle[part1]{Part 1}
	}
	
	\frame[label=outline2]{
		\parttitle[part2]{Part 2}
	}
}

%---------------------------------------------------
% Part 1 content
%---------------------------------------------------
\part{Part 1}{Description of first part}{part1}{outline1}

\frame{
	\frametitle{Part 1 frame}
	
	\par This is a referenced part.
	You can place your text here
}

%---------------------------------------------------
% Part 2 content
%---------------------------------------------------
\part{Part 2}{Description of second part}{part2}{outline2}

\frame{
	\frametitle{Part 2 frame}
	
	\par This is another referenced part.
	You can place your text here again
}

\end{document}
