-
Notifications
You must be signed in to change notification settings - Fork 6
/
rendering-biblatex.tex
59 lines (48 loc) · 1.73 KB
/
rendering-biblatex.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
\documentclass[acmtog,natbib=false,screen,review=false]{acmart}
%% A few style hacks to remove ACM-specific stuff
\setcopyright{none}
\settopmatter{printacmref=false, printccs=false, printfolios=false}
\renewcommand{\footnotetextcopyrightpermission}[1]{}
\renewcommand{\footnotetextauthorsaddresses}[1]{}
\fancyfoot[R,L]{}
\fancypagestyle{firstpagestyle}{}
\fancyhead[LO,RE]{}
\fancyhead[LE,RO]{\thepage}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textgreek}
%======================================================================
% Bibliography setup
%======================================================================
\RequirePackage[
sorting=nyvt,
% sorting=none,
sortcites=true,
backend=biber,
natbib=true,
% style=numeric-comp,
style=ACM-Reference-Format,
giveninits=false,
maxbibnames=150,
defernumbers=true,
]{biblatex} % load the package
\addbibresource{strings-full.bib}
\addbibresource{rendering-biblatex.bib}
\renewcommand*{\bibfont}{\footnotesize}
\setlength{\biblabelsep}{\labelsep}
% ----------------------------------------------------------------------
\begin{document}
\title{Rendering Bibliography \textsc{Bib}\LaTeX}
\maketitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Bibliography
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\citet{Abraham:2010:Noninvasive}
\nocite{*}
\printbibliography
% \printbibliography[type=article,title={Journal Articles}]
% \printbibliography[type=inproceedings,title={Conference Papers}]
% \printbibliography[type=book,title={Books}]
% \printbibliography[type=thesis,title={Theses}]
% \printbibliography[nottype=thesis,nottype=book,nottype=inproceedings,nottype=article,title={Everything Else}]
\end{document}