Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96171
License: OTHER
1
% !TEX encoding = UTF-8 Unicode
2
\documentclass{report}
3
4
\title{FKR Collection}
5
\author{Michael Müller}
6
\date{\today}
7
8
% big font for sections
9
\usepackage{sectsty}
10
\sectionfont{\LARGE}
11
12
\usepackage{graphicx}
13
\usepackage{wrapfig}
14
\usepackage{caption}
15
\usepackage{subcaption}
16
\usepackage{listings}
17
\usepackage{hyperref}
18
19
% \begin{comment} ... \end{comment{}
20
\usepackage{verbatim}
21
22
\setlength{\parskip}{0pt}
23
24
\makeatletter
25
\renewcommand{\paragraph}{
26
\@startsection{paragraph}{4}
27
{\z@}{1.25ex \@plus 1ex \@minus .2ex}{-1em}
28
{\normalfont\normalsize\bfseries}
29
}
30
\makeatother
31
32
\usepackage[
33
sorting=none,
34
minbibnames=8,
35
maxbibnames=9,
36
block=space,
37
backend=biber
38
]{biblatex}
39
\bibliography{publications}
40
41
42
\usepackage{parskip}
43
44
\usepackage{lipsum}
45
46
\begin{document}
47
48
\newpage
49
50
\maketitle
51
52
\newpage
53
54
\renewcommand{\contentsname}{Table of Content}
55
\tableofcontents
56
57
58
%=================
59
\include{sections/introduction}
60
\include{sections/nulla-ullamcorper}
61
\include{sections/nulla-ullamcorper}
62
63
% we use input to include the conclusion, in order to
64
% get the bibliography and conclusion on the same page
65
\input{sections/conclusion}
66
67
68
%=================
69
\section{Bibliography}
70
\label{bib}
71
72
% \nocite is used to display all references from publications.bib -- even
73
% if they were not cited.
74
\nocite{*}
75
76
\printbibliography[heading=none]
77
78
\end{document}
79
80