34 lines
575 B
TeX
34 lines
575 B
TeX
%!TEX TS-program = xelatex
|
|
\documentclass[english]{kfureprt}
|
|
\usepackage{lipsum}
|
|
|
|
\author{Christian Clason}
|
|
\title{A nice report}
|
|
\subtitle{On an interesting topic}
|
|
|
|
\begin{document}
|
|
\maketitle
|
|
|
|
\tableofcontents
|
|
|
|
\newpage
|
|
|
|
\section{A first section}
|
|
|
|
\textbf{A first section.}
|
|
|
|
This is a good section! \emph{Very} good. \textbf{Very, \emph{very}}, good!
|
|
|
|
\lipsum[1-10]
|
|
|
|
\newpage
|
|
|
|
\section{A second section}
|
|
|
|
On a new page, for good measure. With some $\alpha$-class mathematics! Like so:
|
|
\begin{equation*}
|
|
F(1) - F(0) = \int_0^1 f(x)\,dx.
|
|
\end{equation*}
|
|
|
|
|
|
\end{document}
|