Biblatex with biber splits long name to first and last nameCombining numeric citation with non-numeric style...
Dystopian novel where telepathic humans live under a dome
A bug in Excel? Conditional formatting for marking duplicates also highlights unique value
If a set is open, does that imply that it has no boundary points?
Is divide-by-zero a security vulnerability?
Is there any relevance to Thor getting his hair cut other than comedic value?
Graphing random points on the XY-plane
What happened to QGIS 2.x LTR?
Second-rate spelling
Wrap all numerics in JSON with quotes
Make me a metasequence
Why is it "take a leak?"
Detect if page is on experience editor Sitecore 9 via Javascript?
Are there any other Chaos-worshipping races?
What am I? I am in theaters and computer programs
A right or the right?
How do I deal with being jealous of my own players?
Impact on website analytics caused by accessibility issues
Where is the fallacy here?
Is there a full canon version of Tyrion's jackass/honeycomb joke?
What Does the Heart In Gyms Mean?
What type of postprocessing gives the effect of people standing out
Can a space-faring robot still function over a billion years?
Is the withholding of funding notice allowed?
What is this waxed root vegetable?
Biblatex with biber splits long name to first and last name
Combining numeric citation with non-numeric style in BibLaTeXbiblatex messing up citation entry with lots of authorsBibLateX/Biber is incorrectly sorting entries with hyphens in their respective author's last nameCiting (author, journalabbr., year) neededbiblatex: in bibliography, first author's last name comes first, other author's last names come secondtextcite{}: separate last and first nameCustom biblatex cite command with first name last name (year)Natbib agsm - Remove comma between last name and first name & swap last and first nameSorting biblatex bibliography by last name beginning with “Al-”Bibliography 3 authors last name, first name, last name, first name and first name last nameSlightly modify style in biblatex
Good evening,
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 ist 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 {} brackets around the authors name. But that's not a practical solution because my bib-file is generated and updated by Zotero. Given {} brackets 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 {}.

biblatex bibliographies sorting
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.
add a comment |
Good evening,
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 ist 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 {} brackets around the authors name. But that's not a practical solution because my bib-file is generated and updated by Zotero. Given {} brackets 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 {}.

biblatex bibliographies sorting
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.
add a comment |
Good evening,
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 ist 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 {} brackets around the authors name. But that's not a practical solution because my bib-file is generated and updated by Zotero. Given {} brackets 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 {}.

biblatex bibliographies sorting
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.
Good evening,
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 ist 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 {} brackets around the authors name. But that's not a practical solution because my bib-file is generated and updated by Zotero. Given {} brackets 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 {}.

biblatex bibliographies sorting
biblatex bibliographies sorting
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.
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 3 mins ago
snoky5313snoky5313
1
1
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.
add a comment |
add a comment |
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