-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMinimal-REP.tex
81 lines (60 loc) · 1.69 KB
/
Minimal-REP.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
\documentclass[11pt, a4paper]{article}
\usepackage{minimal/stylesheet}
\institution{Institution}
\project{Project}
\title{Title of the report}
\author{Fabio Matti}
\supervisor{Supervisor}
\date{\today}
\begin{document}
\maketitle
\section{Test section}
\label{sec:label}
This is just a \emph{test} section.
\subsection{Gauss-Bonnet Theorem}
\label{subsec:gauss-bonnet}
We now state a very remarkable result from differential
geometry \citep{article2021}:
\begin{block}{Gauss-Bonnet Theorem}
Suppose $S$ is a regular surface with Euler characteristic $\chi$.
It then holds that
\begin{equation}
\int_S K~dA = 2\pi\chi + \sum_i \phi_i
\label{equ:gauss-bonnet}
\end{equation}
\end{block}
\subsubsection{Consequences}
\label{subsubsec:gauss-bonnet}
This theorem implies the following consequences:
\begin{itemize}
\item The sphere has a total curvature of $4\pi$.
\item A plane has identical zero curvature.
\end{itemize}
\subsection{Floats}
\label{subsec:floats}
\hyperref[fig:test]{Figure \ref*{fig:test}} and \hyperref[tab:test]{Table \ref*{tab:test}}
show samples of the theme.
\begin{table}[h]
\caption{Neatly formatted table}
\label{tab:test}
\centering
\renewcommand{\arraystretch}{1.2}
\begin{tabular}{@{}lcc@{}}
\toprule
Name & Age & Height \\
\midrule
Fabio Matti & 22 & 181 \\
\bottomrule
\end{tabular}
\end{table}
\begin{figure}[h]
\centering
\begin{tikzpicture}
\fill[lightblue] (0, 0) circle (0.5);
\fill[darkblue] (0.5, 1) circle (1);
\end{tikzpicture}
\caption{Beautiful modern art}
\label{fig:test}
\end{figure}
\bibliography{biblio.bib}
\end{document}