
%\subsubsection{Math}
%
%The well known Pythagorean theorem \(x^2 + y^2 = z^2\) was proved to be
%invalid for other exponents. Something else is
%\(\forall x \in X, \quad \exists y \leq ε\). And display math:
%
%\[
%	\int_a^b x^2  \mathrm{d} x
%\]
%
%\subsubsection{Code}
%
%This is some very trivial python code:
%
%\begin{lstlisting}[language=Python]
%def backwards(string):
%    return string[::-1]
%
%def is_palindrome(string):
%    if string == backwards(string): return True
%
%A <- www >>= B  # This is a comment
%\end{lstlisting}
%
%\section{Tables}
%
%\begin{table}[ht]
%\begin{tabular}{@{}lllll@{}}
%\toprule
%Value & Something & Other & T & F \\ \midrule
%1     & 2         & 3     & a & b \\
%4     & 5         & 6     & c & d \\
%7     & 8         & 9     & e & f \\ \bottomrule
%\end{tabular}
%\caption{A table}
%\end{table}
%
%If your table is too big to fit on one page, you can also use the longtable environment:
%
%\begin{longtable}{@{}llllll@{}}
%\toprule
%written     & burn        & orange   & share      & quick       & slowly    \\* \midrule
%\endhead
%%
%\bottomrule
%\endfoot
%%
%\endlastfoot
%%
%stronger    & slightly    & fat      & new        & enemy       & represent \\
%development & deal        & putting  & supper     & greatly     & thy       \\
%nice        & suddenly    & origin   & age        & almost      & tone      \\
%managed     & highest     & function & pig        & include     & fly       \\
%phrae      & could       & just     & giant      & over        & horn      \\
%separate    & obtain      & mail     & apart      & pole        & origin    \\
%toy         & please      & vast     & cowboy     & bean        & birthday  \\
%say         & region      & couple   & how        & screen      & dust      \\
%nest        & surface     & fence    & at         & related     & child     \\
%stared      & horn        & farmer   & mighty     & raise       & vessels   \\
%did         & forgot      & twice    & number     & advice      & also      \\
%daughter    & suit        & far      & image      & arrangement & funny     \\
%bad         & bar         & poem     & themselves & safe        & skin      \\
%curve       & comfortable & identity & composed   & attack      & some      \\
%long        & signal      & certain  & bring      & seems       & baby      \\
%system      & leaving     & myself   & aware      & himself     & except    \\
%smell       & combination & courage  & victory    & telephone   & white     \\
%interior    & balance     & helpful  & former     & drove       & general   \\
%freedom     & noun        & wall     & outline    & other       & park      \\
%nice        & suddenly    & origin   & age        & almost      & tone      \\
%managed     & highest     & function & pig        & include     & fly       \\
%phrase      & could       & just     & giant      & over        & horn      \\
%separate    & obtain      & mail     & apart      & pole        & origin    \\
%toy         & please      & vast     & cowboy     & bean        & birthday  \\
%say         & region      & couple   & how        & screen      & dust      \\
%nest        & surface     & fence    & at         & related     & child     \\
%stared      & horn        & farmer   & mighty     & raise       & vessels   \\
%development & deal        & putting  & supper     & greatly     & thy       \\
%nice        & suddenly    & origin   & age        & almost      & tone      \\
%managed     & highest     & function & pig        & include     & fly       \\
%did         & forgot      & twice    & number     & advice      & also      \\
%daughter    & suit        & far      & image      & arrangement & funny     \\
%bad         & bar         & poem     & themselves & safe        & skin      \\
%curve       & comfortable & identity & composed   & attack      & some      \\
%long        & signal      & certain  & bring      & seems       & baby      \\
%system      & leaving     & myself   & aware      & himself     & except    \\
%smell       & combination & courage  & victory    & telephone   & white     \\
%development & deal        & putting  & supper     & greatly     & thy       \\
%nice        & suddenly    & origin   & age        & almost      & tone      \\
%managed     & highest     & function & pig        & include     & fly       \\
%kitchen     & tin         & motion   & song       & buffalo     & tune      \\* \bottomrule
%\caption{A very large table}
%\end{longtable}