Biblatex with biber splits long name to first and last nameUsing a 'corporate author' in the “author”...

School performs periodic password audits. Is my password compromised?

An Undercover Army

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

function only contains jump discontinuity but is not piecewise continuous

Is there a math equivalent to the conditional ternary operator?

How to disable or uninstall iTunes under High Sierra without disabling SIP

Specific Chinese carabiner QA?

Wardrobe above a wall with fuse boxes

Find maximum of the output from reduce

Are there other characters in the Star Wars universe who had damaged bodies and needed to wear an outfit like Darth Vader?

Being asked to review a paper in conference one has submitted to

“I had a flat in the centre of town, but I didn’t like living there, so …”

The need of reserving one's ability in job interviews

How can I conditionally format my HTML table?

Is there a way to find out the age of climbing ropes?

Can a space-faring robot still function over a billion years?

How do you say “my friend is throwing a party, do you wanna come?” in german

Quitting employee has privileged access to critical information

PTIJ: Mordechai mourning

How do I deal with being envious of my own players?

How can I handle a player who pre-plans arguments about my rulings on RAW?

Did Amazon pay $0 in taxes last year?

When was drinking water recognized as crucial in marathon running?

Was it really inappropriate to write a pull request for the company I interviewed with?



Biblatex with biber splits long name to first and last name


Using a 'corporate author' in the “author” field of a bibliographic entry (spelling out the name in full)Combining numeric citation with non-numeric style in BibLaTeXbiblatex: the last-name first-name separator authortitleBiblatex entries with last names first and year after authorsBiblatex-chicago: fullcite flips first and last namebiblatex (authoryear-ibid): all names last-first & name separatorbiblatex messing up citation entry with lots of authorsCiting (author, journalabbr., year) neededGet last name first in biblatex using numeric styletextcite{}: separate last and first nameCustom biblatex cite command with first name last name (year)Bibliography 3 authors last name, first name, last name, first name and first name last name













0















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.



enter image description here



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.



enter image description here



This would be the right order, I managed this with that extra pair of {} braces.



enter image description here










share|improve this question









New contributor




snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, like author = {{Hessische Verwaltung für Bodenmanagement und Geoinformation}},.

    – gusbrs
    yesterday











  • Thanks for your answer. That's what I also found in other posts, but as I mentioned, that's not an option for my auto generated and updated bib-file with Zotero. Adding the extra braces in Zotero causing an error.

    – snoky5313
    yesterday











  • Well, I don't know how to tell Zotero to do that, as I don't use it. But that is what is required from the side of biblatex. (And of BibTeX, for that matter).

    – gusbrs
    yesterday






  • 2





    Are you entering the author in single field mode in Zotero? There should only be one field visible when entering a corporate author, not two fields for given and family name.

    – David Purton
    yesterday








  • 3





    forums.zotero.org/discussion/3275/entering-corporate-authors, forums.zotero.org/discussion/19721/… for the .bib side the standard reference is 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 zotero.org/support/kb/item_types_and_fields under 'author' and zotero.org/support/getting_stuff_into_your_library under 'names'.

    – moewe
    yesterday


















0















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.



enter image description here



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.



enter image description here



This would be the right order, I managed this with that extra pair of {} braces.



enter image description here










share|improve this question









New contributor




snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, like author = {{Hessische Verwaltung für Bodenmanagement und Geoinformation}},.

    – gusbrs
    yesterday











  • Thanks for your answer. That's what I also found in other posts, but as I mentioned, that's not an option for my auto generated and updated bib-file with Zotero. Adding the extra braces in Zotero causing an error.

    – snoky5313
    yesterday











  • Well, I don't know how to tell Zotero to do that, as I don't use it. But that is what is required from the side of biblatex. (And of BibTeX, for that matter).

    – gusbrs
    yesterday






  • 2





    Are you entering the author in single field mode in Zotero? There should only be one field visible when entering a corporate author, not two fields for given and family name.

    – David Purton
    yesterday








  • 3





    forums.zotero.org/discussion/3275/entering-corporate-authors, forums.zotero.org/discussion/19721/… for the .bib side the standard reference is 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 zotero.org/support/kb/item_types_and_fields under 'author' and zotero.org/support/getting_stuff_into_your_library under 'names'.

    – moewe
    yesterday
















0












0








0








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.



enter image description here



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.



enter image description here



This would be the right order, I managed this with that extra pair of {} braces.



enter image description here










share|improve this question









New contributor




snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












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.



enter image description here



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.



enter image description here



This would be the right order, I managed this with that extra pair of {} braces.



enter image description here







biblatex zotero






share|improve this question









New contributor




snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 20 hours ago









JouleV

4,91111139




4,91111139






New contributor




snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked yesterday









snoky5313snoky5313

12




12




New contributor




snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






snoky5313 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, like author = {{Hessische Verwaltung für Bodenmanagement und Geoinformation}},.

    – gusbrs
    yesterday











  • Thanks for your answer. That's what I also found in other posts, but as I mentioned, that's not an option for my auto generated and updated bib-file with Zotero. Adding the extra braces in Zotero causing an error.

    – snoky5313
    yesterday











  • Well, I don't know how to tell Zotero to do that, as I don't use it. But that is what is required from the side of biblatex. (And of BibTeX, for that matter).

    – gusbrs
    yesterday






  • 2





    Are you entering the author in single field mode in Zotero? There should only be one field visible when entering a corporate author, not two fields for given and family name.

    – David Purton
    yesterday








  • 3





    forums.zotero.org/discussion/3275/entering-corporate-authors, forums.zotero.org/discussion/19721/… for the .bib side the standard reference is 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 zotero.org/support/kb/item_types_and_fields under 'author' and zotero.org/support/getting_stuff_into_your_library under 'names'.

    – moewe
    yesterday





















  • Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, like author = {{Hessische Verwaltung für Bodenmanagement und Geoinformation}},.

    – gusbrs
    yesterday











  • Thanks for your answer. That's what I also found in other posts, but as I mentioned, that's not an option for my auto generated and updated bib-file with Zotero. Adding the extra braces in Zotero causing an error.

    – snoky5313
    yesterday











  • Well, I don't know how to tell Zotero to do that, as I don't use it. But that is what is required from the side of biblatex. (And of BibTeX, for that matter).

    – gusbrs
    yesterday






  • 2





    Are you entering the author in single field mode in Zotero? There should only be one field visible when entering a corporate author, not two fields for given and family name.

    – David Purton
    yesterday








  • 3





    forums.zotero.org/discussion/3275/entering-corporate-authors, forums.zotero.org/discussion/19721/… for the .bib side the standard reference is 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 zotero.org/support/kb/item_types_and_fields under 'author' and zotero.org/support/getting_stuff_into_your_library under 'names'.

    – moewe
    yesterday



















Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, like author = {{Hessische Verwaltung für Bodenmanagement und Geoinformation}},.

– gusbrs
yesterday





Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, like author = {{Hessische Verwaltung für Bodenmanagement und Geoinformation}},.

– gusbrs
yesterday













Thanks for your answer. That's what I also found in other posts, but as I mentioned, that's not an option for my auto generated and updated bib-file with Zotero. Adding the extra braces in Zotero causing an error.

– snoky5313
yesterday





Thanks for your answer. That's what I also found in other posts, but as I mentioned, that's not an option for my auto generated and updated bib-file with Zotero. Adding the extra braces in Zotero causing an error.

– snoky5313
yesterday













Well, I don't know how to tell Zotero to do that, as I don't use it. But that is what is required from the side of biblatex. (And of BibTeX, for that matter).

– gusbrs
yesterday





Well, I don't know how to tell Zotero to do that, as I don't use it. But that is what is required from the side of biblatex. (And of BibTeX, for that matter).

– gusbrs
yesterday




2




2





Are you entering the author in single field mode in Zotero? There should only be one field visible when entering a corporate author, not two fields for given and family name.

– David Purton
yesterday







Are you entering the author in single field mode in Zotero? There should only be one field visible when entering a corporate author, not two fields for given and family name.

– David Purton
yesterday






3




3





forums.zotero.org/discussion/3275/entering-corporate-authors, forums.zotero.org/discussion/19721/… for the .bib side the standard reference is 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 zotero.org/support/kb/item_types_and_fields under 'author' and zotero.org/support/getting_stuff_into_your_library under 'names'.

– moewe
yesterday







forums.zotero.org/discussion/3275/entering-corporate-authors, forums.zotero.org/discussion/19721/… for the .bib side the standard reference is 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 zotero.org/support/kb/item_types_and_fields under 'author' and zotero.org/support/getting_stuff_into_your_library under 'names'.

– moewe
yesterday












0






active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






snoky5313 is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477949%2fbiblatex-with-biber-splits-long-name-to-first-and-last-name%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








snoky5313 is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















snoky5313 is a new contributor. Be nice, and check out our Code of Conduct.













snoky5313 is a new contributor. Be nice, and check out our Code of Conduct.












snoky5313 is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477949%2fbiblatex-with-biber-splits-long-name-to-first-and-last-name%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...