-
Notifications
You must be signed in to change notification settings - Fork 5
/
template_latex.tex
46 lines (34 loc) · 1014 Bytes
/
template_latex.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
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[x11names]{xcolor}
\usepackage{amsmath}
\usepackage{geometry}
\usepackage{hyperref}
\hypersetup{
breaklinks = true,
colorlinks = true,
urlcolor = DeepSkyBlue3,
pdfpagemode={UseOutlines}
}
\usepackage[backend=bibtex, style=numeric-comp, sorting=none, firstinits=true, defernumbers=true]{biblatex}
% adapted from biblatex.def
\renewbibmacro*{author}{%
\ifboolexpr{ test {\ifuseauthor} and not test {\ifnameundef{author}} }
{\printnames{author}%
\iffieldundef{authortype}
{}
{\setunit{\addspace}%
\usebibmacro{authorstrg}}}
{}}
\DeclareFieldFormat{authortype}{\mkbibparens{#1}}
\addbibresource{ADD_BIBTEX_HERE}
\DeclareRobustCommand{\CC}{\hbox{C\hspace{-0.1ex}\protect\raisebox{0.4ex}{\protect\scalebox{0.67}{++}}}}
\title{List of publications}
\begin{document}
\maketitle
\nocite{*}
%\cite{ATLAS:2015nsi}
\renewbibmacro{in:}{}
\printbibliography[heading=none]
\end{document}