I'm new to LaTeX but I feel like I understand it quite well.
Though everything has been going fine, I'm having problems with my bibliography.
I'm using biblatex (biber).
At the moment I am writing my thesis and it's a couple of months until submission, but I'd like to get it right from the start so I don't have to stress when the submission is closing in.
My problem:
I want my references to look like it's "harvard-style" and I read somewhere that the closest to the harvard-style is "style=authoryear-icomp". And everything seems just fine, except that the names of the authors are not arranged as I want them to. It seems like LaTeX isn't registering the names as first/lastnames.
An example from the bibliography:
Lastname, Firstname (20XX). "Some title of something"....
There are no problems with just one author. But adding more authors creates problems, as such;
Lastname, Firstname, Firstname2, Lastname2, and Firstname3, Lastname3 (20XX). "Title..."...
What I want is:
Lastname, Firstname, Lastname2, Firstname2, and Lastname3, Firstname3 (20XX)....
This is the important parts of my project:
Code: Select all
\usepackage[
backend=biber,
style=authoryear-icomp,
sorting=nyt
]{biblatex}
\addbibresource{sample.bib}
\usepackage{csquotes}
\printbibliography[heading=bibintoc, title={Bibliography}]
Code: Select all
@book{barn,
title={The linguistics of the latin language},
author={Barney, R.},
isbn={},
year={2011},
publisher={},
location=""
}
@article{barn2,
author="Barney, K. and Smith, E. and Barney, R.",
title="The fascination of Latin",
journal="The Latin Journal",
volume="22",
year="2014",
month="Feb"
}