Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132931 views
License: OTHER
1
\documentclass[hyperref={pdfpagelabels=false},usepdftitle=false]{beamer}
2
\usepackage{../templates/myStyle}
3
4
\begin{document}
5
\selectlanguage{english}
6
7
\title{\titleText}
8
\subtitle{Bachelor's thesis of Martin Thoma}
9
\author{\tutor}
10
\date{5th of June, 2014}
11
%\subject{Programmieren}
12
13
\frame{\titlepage}
14
15
\frame{
16
\frametitle{Contents}
17
\setcounter{tocdepth}{1}
18
\tableofcontents
19
\setcounter{tocdepth}{2}
20
}
21
22
%\AtBeginSection[]{
23
% \InsertToC[sections={\thesection}] % shows only subsubsections of one subsection
24
%}
25
26
\section{What is my Bachelor's thesis about?}
27
\input{introduction}
28
29
\section{write-math.com}
30
\input{write-math}
31
32
\section{Preprocessing and Features}
33
\input{preprocessing}
34
\input{features}
35
36
\section{Neural Nets}
37
\input{neural-nets}
38
39
\section{What will I do next?}
40
\input{will-do}
41
42
\section*{End}
43
\subsection{End}
44
\input{sources}
45
\framedgraphic{Thanks for Your Attention!}{../images/xi.png}
46
47
\end{document}
48
49