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
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.
biblatex zotero
New contributor
|
show 2 more comments
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.
biblatex zotero
New contributor
Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, likeauthor = {{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
|
show 2 more comments
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.
biblatex zotero
New contributor
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.
biblatex zotero
biblatex zotero
New contributor
New contributor
edited 20 hours ago
JouleV
4,91111139
4,91111139
New contributor
asked yesterday
snoky5313snoky5313
12
12
New contributor
New contributor
Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, likeauthor = {{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
|
show 2 more comments
Welcome to TeX.SX! For corporate authors, you need to protect it with an extra pair of braces, likeauthor = {{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
|
show 2 more comments
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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