forked from sieversMartin/DH_Benelux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabstract-template.tex
79 lines (72 loc) · 3.21 KB
/
abstract-template.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
% !TeX program = xelatex
% !TeX TXS-program:bibliography = txs:///biber
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Copyright (C) 2016 by Martin Sievers
% --------------------------------------------------------------------
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License (LPPL), either
% version 1.3c of this license or (at your option) any later
% version. The latest version of this license is in the file:
%
% http://www.latex-project.org/lppl.txt
%
% This work is "maintained" (as per LPPL maintenance status) by
% Martin Sievers <[email protected]>.
%
% This work consists of the files dhbenelux.sty and abstract-template.tex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This is a template to meet the requirements for submitting an
% abstract for the DH Benelux 2016. It was set-up by imitating the
% original docx file.
%
% Please note, that you need the font ``Calibri''. For platforms other
% than MS Windows, please check e.g.
% www.makeuseof.com/tag/how-to-install-microsoft-core-fonts-in-ubuntu-linux/
% or www.pcworld.com/article/2863497/how-to-install-microsoft-fonts-in-linux-office-suites.html
%
% By default the biblatex package is used in conjenction with biber.
% Therefore you have to call ``xelatex'', then ''biber'' and then
% ``xelatex'' again (maybe twice)
%
% If you have any comments or questions, please let me know.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,12pt]{article}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Load style file for DH Benelux
%%% Available options:
%%% - electronic: create a document using hyperref with colors (default)
%%% - print: do not use colored links
%%% - biblatex: load biblatex package with backend biber (default)
%%% - nobiblatex: do not load biblatex -> user has to provide it own
%%% thebibliography environment, e.g. with bst+bibtex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[biblatex]{dhbenelux}
% Default: biblatex+biber
\addbibresource{YOURFILE.bib} %%%<--- ENTER your .bib file here
% Otherwise provide your own thebibliography environment or use bst
% files together with bibtex
%
\begin{document}
\title{Title of Your Paper in Title Case}
\author{Author name 1}{Affil}{[email protected]}
\author{Author name 2}{Affil}{[email protected]}
%\author{Author name 3}{Affil}{[email protected]}
%\author{Author name 4}{Affil}{[email protected]}
%\author{Author name 5}{Affil}{[email protected]}
%\author{Author name 6}{Affil}{[email protected]}
%\author{Author name 7}{Affil}{[email protected]}
\maketitle
Please enter your text.
\begin{figure}
Place graphic here
\caption{Fractal island construction}
\label{fig:fractal_island_construction}
\end{figure}
Please enter other text here. Use \parencite{key}, \cite{key} or \textcite{key} for references to your BibTeX database.
%%% Outputs bibliography (for default biblatex usage)
%%% You can use \bibliographystyle and \bibliography here instead if you want.
\printbibliography
\end{document}