I’m writing a latex script (in overleaf) and I need the references in text to appear using citep
, but at the same time, I want the References (bibliography{bibliography}
) to follow the imported .bib file. Now, if I use bibliographystyle{unsrtnat}
, I get the order of appearances as in .tex file, but this doesn’t work for me. If I use bibliographystyle{plainnat}
, it seems to work somewhat, but there are croatian letters (which I had to write as v{z} instead of ž etc.) and some accented letters which throws everything off (e.g. surname starting with accented A is the last on the list???).
I figure I can sort the issue using Jabref, and then just print the references as the appear in .bib file, but I can’t seem to figure how? Using bibtex
and printbibliography
just times out overleaf…
Any help? Thanks!
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{currvita}
usepackage{lmodern}
usepackage[round]{natbib}
nocite{*}
bibliographystyle{plainnat}
bibliography{bibliography.bib}
N.B. – nocite{*}
because I need references which do not appear in the main .tex file