Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download

📚 The CoCalc Library - books, templates and other resources

Views: 96174
License: OTHER
1
\documentclass[a4paper, twocolumn]{article}
2
3
% font handling
4
\usepackage{fontspec}
5
6
% uncomment (or change) if you don't have this particular font installed
7
\setmainfont{Palatino Linotype}
8
9
% for setting the linespace (\setstretch)
10
\usepackage{setspace}
11
12
% distance between the columns
13
\setlength{\columnsep}{1cm}
14
15
% for compactitem
16
\usepackage{paralist}
17
18
% for comments
19
\usepackage{verbatim}
20
21
\usepackage[
22
sorting=none,
23
minbibnames=8,
24
maxbibnames=9,
25
block=space,
26
backend=biber
27
]{biblatex}
28
\bibliography{bibliography}
29
30
\usepackage{lipsum}
31
32
\begin{document}
33
34
%=============================
35
\input{misc/title}
36
{
37
\setstretch{1.1}
38
\input{misc/abstract}
39
}
40
\newpage
41
42
%=============================
43
\input{sections/introduction}
44
\input{sections/concept}
45
\input{sections/conclusion}
46
47
\section{References}
48
% the \nocite command leads to the whole bibliography
49
% being displayed (without any \cite commands necessary).
50
% remove this command in order to get the "normal" behavior.
51
\nocite{*}
52
\printbibliography[heading=none]
53
54
\end{document}
55
56