-
Notifications
You must be signed in to change notification settings - Fork 0
/
abstract-main.tex
89 lines (69 loc) · 3.62 KB
/
abstract-main.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
82
83
84
85
86
87
88
89
%% TimmLiTeX
%% Version: v0.9.1
%% Last modified: 2024-02-16 09:32:26
\documentclass[
12pt,a4paper
]{article}
\input{basic-text-settings}
\usepackage[left=25mm, right=25mm, top=25mm, bottom=25mm, noheadfoot]{geometry}
\pagenumbering{gobble}
\PassOptionsToPackage{maxbibnames=1,maxcitenames=1,firstinits=true}{biblatex}
\RequirePackage{xspace}
\defbibenvironment{bibliography}{\noindent}{\unspace}{\xspace$\bullet$\xspace}
\makeatletter
\renewcommand\maketitle{
~\vspace{-1.1cm}\newline
{\raggedright
\renewcommand{\baselinestretch}{1.2}\selectfont
{\bfseries\large\@title}\\[2ex]
{\large\@author}\\[2ex]
}
}
\makeatother
%==============================
% Optional packages & settings
%------------------------------
% \input{TLmacros}
%==============================
% Title
%------------------------------
\author{Max Mustermann (Affiliation)}
\title{Title}
%==============================
% Document start
%------------------------------
\begin{document}
\maketitle
\paragraph{Blindtext}
\lipsum
\paragraph{Citation example}
The following is a alist of available cite commands. See \url{https://ctan.space-pro.be/tex-archive/macros/latex/contrib/biblatex/doc/biblatex.pdf#subsection.3.9} for a more detailed description.
\begin{itemize}
\item \verb=\nocite= \nocite{Bech:63}
\item \verb=\fullcite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \fullcite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\textcite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \textcite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\parencite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \parencite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\parencite*[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \parencite*[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\smartcite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \smartcite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\footcite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \footcite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\footfullcite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \footfullcite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\supercite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \supercite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\footcitetext[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \footcitetext[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\autocite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \autocite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\cite[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \cite[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\cite*[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \cite*[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\citeauthor[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \citeauthor[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\citeauthor*[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \citeauthor*[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\citeurl[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \citeurl[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\citetitle[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \citetitle[<prenote>][<postnote>]{Nallapati:etal:16}
\item \verb=\citeyear[<prenote>][<postnote>]{Nallapati:etal:16}= \newline \citeyear[<prenote>][<postnote>]{Nallapati:etal:16}
\end{itemize}
References are stored in \texttt{references.bib}.
\paragraph{References}
{\tiny
\printbibliography[heading=none]
}
\end{document}
%------------------------------
% Document end
%==============================