From ed5ef2e19658f21349cff3445fd65825277afe1b Mon Sep 17 00:00:00 2001
From: Mohammad Akhlaghi <mohammad@akhlaghi.org>
Date: Sun, 15 Sep 2019 01:57:29 +0100
Subject: BibLaTeX configured to only print initials of given names

Until now, we weren't explicitly asking for BibLaTeX to build the citations
with only initial of the author's given names. Therefore when one BibTeX
entry had a full given name and another had only initials, this would also
be reflected in the paper's bibliography.

With this commit, the `giveninits=true' option is given to BibLaTeX to
always only print the initial character of an author's given name.
---
 tex/src/preamble-biblatex.tex | 1 +
 1 file changed, 1 insertion(+)

(limited to 'tex/src')

diff --git a/tex/src/preamble-biblatex.tex b/tex/src/preamble-biblatex.tex
index 71ee71e..0a21b73 100644
--- a/tex/src/preamble-biblatex.tex
+++ b/tex/src/preamble-biblatex.tex
@@ -64,6 +64,7 @@
     hyperref=true,
     maxcitenames=2,
     mincitenames=1,
+    giveninits=true,
     style=authoryear,
     uniquelist=false,
     backend=biber,natbib]{biblatex}
-- 
cgit v1.2.1