I'm writing my thesis and I'm stucked with a problem with BibLaTeX. The sorting of the bibliography entries is functional. BUT the author-field is separated automatically to first- and surname, although there is no extra separation in my .bib file. You can see it, when you are activate the firstinit option of the BibLaTeX package or in the picture below.
I found an answer, where I have to put an extra pair of {} braces around the authors name. But that's not a practical solution because my .bib file is generated and updated by Zotero. Given extra {} braces to the name in Zotero are causing an error while compiling.
I would appreciate your help! Combining different bibstyle and citeystyle, like it's mentioned here, doesn't solve the problem.
Here is an example of my code:
\documentclass{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[
backend=biber,
citestyle=numeric,
sorting=anyvt,
labelnumber=true,
%firstinits=true,
block=nbpar,
]{biblatex}
\usepackage{filecontents}
% % % % Beispiele Literatur
\begin{filecontents}{sources.bib}
@online{hessischeverwaltungBegriffeETRS,
title = {Begriffe - ETRS},
url = {http://sapos.hvbg.hessen.de/term.php#ETRS89},
urldate = {2019-03-02},
author = {Hessische Verwaltung für Bodenmanagement und Geoinformation}
}
@online{lglnOpenDataPortale,
title = {Open Data Portale | Geodatenportal Niedersachsen},
url = {http://www.geodaten.niedersachsen.de/startseite/gdini/open_data_portale/open-data-136000.html},
urldate = {2019-02-23},
author = {Landesamt für Geoinformation und Landesvermessung Niedersachsen (LGLN)}
}
@online{openknowledgefoundationOpenDatabaseLicense2009,
title = {Open Database License (ODbL) v1.0},
url = {https://opendatacommons.org/licenses/odbl/1-0/},
urldate = {2019-03-05},
date = {2009-06-25},
author = {Open Knowledge Foundation}
}
\end{filecontents}
\bibliography{sources.bib}
\begin{document}
\begin{minipage}{\textwidth}
\autocite{lglnOpenDataPortale,hessischeverwaltungBegriffeETRS,openknowledgefoundationOpenDatabaseLicense2009}.
\printbibliography
\end{minipage}
\end{document}
This is the result – wrong order depending on the first letter.
This would be the right order, I managed this with that extra pair of {} braces.







author = {{Hessische Verwaltung für Bodenmanagement und Geoinformation}},. – gusbrs Mar 06 '19 at 00:54but if anybody has a solution, you can also try so share it ;)
– snoky5313 Mar 06 '19 at 01:14.bibside the standard reference is https://tex.stackexchange.com/q/10808/35864. I can get the braces to work automatically if I switch the author field to 'single field mode' and just input the name there. See also https://www.zotero.org/support/kb/item_types_and_fields under 'author' and https://www.zotero.org/support/getting_stuff_into_your_library under 'names'. – moewe Mar 06 '19 at 05:25So thank's a lot to all of you and for your helpful advices!
– snoky5313 Mar 06 '19 at 20:25