biblatex citation includes given name, how can I get rid of it? The Next CEO of Stack...
Find the majority element, which appears more than half the time
Could a dragon use its wings to swim?
Oldie but Goldie
Upgrading From a 9 Speed Sora Derailleur?
How to pronounce fünf in 45
My boss doesn't want me to have a side project
Man transported from Alternate World into ours by a Neutrino Detector
Is it possible to create a QR code using text?
Does Germany produce more waste than the US?
How can I prove that a state of equilibrium is unstable?
"Eavesdropping" vs "Listen in on"
Why does the freezing point matter when picking cooler ice packs?
Shortening a title without changing its meaning
What happens if you break a law in another country outside of that country?
Is there a rule of thumb for determining the amount one should accept for a settlement offer?
What difference does it make matching a word with/without a trailing whitespace?
What did the word "leisure" mean in late 18th Century usage?
Calculating discount not working
What is the difference between 'contrib' and 'non-free' packages repositories?
How did scripture get the name bible?
Can you teleport closer to a creature you are Frightened of?
Free fall ellipse or parabola?
Prodigo = pro + ago?
Planeswalker Ability and Death Timing
biblatex citation includes given name, how can I get rid of it?
The Next CEO of Stack Overflowbiblatex, authoryear style: In-text citations display first name initials for certain bibliography entriesShow only the last two year digits in Biblatex citationElsevier style citation for biblatexCitation style in biblatex: (1) get rid of first names; (2) remove comma before yearbibLaTeX authoryear citation style with unknown yearbiblatex messing up citation entry with lots of authorsOne cite crash allHow to sort references by year if they have the same authorHow can I get rid off this language “english”?Get the bibliography style of Kelley's book General topology using bibtexPresentation References — no-title footnotes, allowing arXiv
I have following literature in my .bib
file:
@inproceedings{lang2017earth,
title={Earth observation for humanitarian assistance},
author={Lang, Stefan and Schoepfer, Elisabeth and Zeil, Peter and Riedler, Barbara},
booktitle={GI Forum--J Geogr Inf Sci},
volume={1},
pages={157--165},
year={2017}
}
When I try to cite it with parencite{}
or with citet{}
it always appears with the name of the author in the .pdf file:
(Stefan Lang, Schoepfer, et al., 2017)
I want to get rid off the "Stefan"
same here
@article{lang2015earth,
title={Earth Observation for Humanitarian Operations},
author={Lang, Stefan and F{"u}reder, Petra},
journal={GI_Forum},
volume={2015},
pages={384--390},
year={2015},
publisher={Verlag der {"O}sterreichischen Akademie der Wissenschaften}
}
I cite it with citet{...}
and it appears like this in the .pdf:
Stefan Lang and Füreder (2015)
and again "Stefan" appears!
What can I do against this, because all the other citations work perfectly except of these two.
biblatex
New contributor
add a comment |
I have following literature in my .bib
file:
@inproceedings{lang2017earth,
title={Earth observation for humanitarian assistance},
author={Lang, Stefan and Schoepfer, Elisabeth and Zeil, Peter and Riedler, Barbara},
booktitle={GI Forum--J Geogr Inf Sci},
volume={1},
pages={157--165},
year={2017}
}
When I try to cite it with parencite{}
or with citet{}
it always appears with the name of the author in the .pdf file:
(Stefan Lang, Schoepfer, et al., 2017)
I want to get rid off the "Stefan"
same here
@article{lang2015earth,
title={Earth Observation for Humanitarian Operations},
author={Lang, Stefan and F{"u}reder, Petra},
journal={GI_Forum},
volume={2015},
pages={384--390},
year={2015},
publisher={Verlag der {"O}sterreichischen Akademie der Wissenschaften}
}
I cite it with citet{...}
and it appears like this in the .pdf:
Stefan Lang and Füreder (2015)
and again "Stefan" appears!
What can I do against this, because all the other citations work perfectly except of these two.
biblatex
New contributor
1
Is there another author called Lang in your bibliography?biblatex
has a feature to disambiguate ambiguous family names which means that it may add a given name initial or write out the entire given name to avoid confusion as to which "Lang" is meant. See tex.stackexchange.com/q/134535/35864
– moewe
26 mins ago
Note that for the purposes of theuniquename
disambiguationKnuth, Donald
,Knuth, Donald E.
andKnuth, D. E.
are three different people andbiblatex
would try to disambiguate them accordingly. So it may well be that you don't have another Lang in the usual meaning of the word, but just another form of the same Lang's name, e.g.Lang, Stefan
andLang, S.
orLang, Stefan R.
or ...
– moewe
9 mins ago
add a comment |
I have following literature in my .bib
file:
@inproceedings{lang2017earth,
title={Earth observation for humanitarian assistance},
author={Lang, Stefan and Schoepfer, Elisabeth and Zeil, Peter and Riedler, Barbara},
booktitle={GI Forum--J Geogr Inf Sci},
volume={1},
pages={157--165},
year={2017}
}
When I try to cite it with parencite{}
or with citet{}
it always appears with the name of the author in the .pdf file:
(Stefan Lang, Schoepfer, et al., 2017)
I want to get rid off the "Stefan"
same here
@article{lang2015earth,
title={Earth Observation for Humanitarian Operations},
author={Lang, Stefan and F{"u}reder, Petra},
journal={GI_Forum},
volume={2015},
pages={384--390},
year={2015},
publisher={Verlag der {"O}sterreichischen Akademie der Wissenschaften}
}
I cite it with citet{...}
and it appears like this in the .pdf:
Stefan Lang and Füreder (2015)
and again "Stefan" appears!
What can I do against this, because all the other citations work perfectly except of these two.
biblatex
New contributor
I have following literature in my .bib
file:
@inproceedings{lang2017earth,
title={Earth observation for humanitarian assistance},
author={Lang, Stefan and Schoepfer, Elisabeth and Zeil, Peter and Riedler, Barbara},
booktitle={GI Forum--J Geogr Inf Sci},
volume={1},
pages={157--165},
year={2017}
}
When I try to cite it with parencite{}
or with citet{}
it always appears with the name of the author in the .pdf file:
(Stefan Lang, Schoepfer, et al., 2017)
I want to get rid off the "Stefan"
same here
@article{lang2015earth,
title={Earth Observation for Humanitarian Operations},
author={Lang, Stefan and F{"u}reder, Petra},
journal={GI_Forum},
volume={2015},
pages={384--390},
year={2015},
publisher={Verlag der {"O}sterreichischen Akademie der Wissenschaften}
}
I cite it with citet{...}
and it appears like this in the .pdf:
Stefan Lang and Füreder (2015)
and again "Stefan" appears!
What can I do against this, because all the other citations work perfectly except of these two.
biblatex
biblatex
New contributor
New contributor
edited 16 mins ago
moewe
95.8k10116359
95.8k10116359
New contributor
asked 32 mins ago
StefanieStefanie
1
1
New contributor
New contributor
1
Is there another author called Lang in your bibliography?biblatex
has a feature to disambiguate ambiguous family names which means that it may add a given name initial or write out the entire given name to avoid confusion as to which "Lang" is meant. See tex.stackexchange.com/q/134535/35864
– moewe
26 mins ago
Note that for the purposes of theuniquename
disambiguationKnuth, Donald
,Knuth, Donald E.
andKnuth, D. E.
are three different people andbiblatex
would try to disambiguate them accordingly. So it may well be that you don't have another Lang in the usual meaning of the word, but just another form of the same Lang's name, e.g.Lang, Stefan
andLang, S.
orLang, Stefan R.
or ...
– moewe
9 mins ago
add a comment |
1
Is there another author called Lang in your bibliography?biblatex
has a feature to disambiguate ambiguous family names which means that it may add a given name initial or write out the entire given name to avoid confusion as to which "Lang" is meant. See tex.stackexchange.com/q/134535/35864
– moewe
26 mins ago
Note that for the purposes of theuniquename
disambiguationKnuth, Donald
,Knuth, Donald E.
andKnuth, D. E.
are three different people andbiblatex
would try to disambiguate them accordingly. So it may well be that you don't have another Lang in the usual meaning of the word, but just another form of the same Lang's name, e.g.Lang, Stefan
andLang, S.
orLang, Stefan R.
or ...
– moewe
9 mins ago
1
1
Is there another author called Lang in your bibliography?
biblatex
has a feature to disambiguate ambiguous family names which means that it may add a given name initial or write out the entire given name to avoid confusion as to which "Lang" is meant. See tex.stackexchange.com/q/134535/35864– moewe
26 mins ago
Is there another author called Lang in your bibliography?
biblatex
has a feature to disambiguate ambiguous family names which means that it may add a given name initial or write out the entire given name to avoid confusion as to which "Lang" is meant. See tex.stackexchange.com/q/134535/35864– moewe
26 mins ago
Note that for the purposes of the
uniquename
disambiguation Knuth, Donald
, Knuth, Donald E.
and Knuth, D. E.
are three different people and biblatex
would try to disambiguate them accordingly. So it may well be that you don't have another Lang in the usual meaning of the word, but just another form of the same Lang's name, e.g. Lang, Stefan
and Lang, S.
or Lang, Stefan R.
or ...– moewe
9 mins ago
Note that for the purposes of the
uniquename
disambiguation Knuth, Donald
, Knuth, Donald E.
and Knuth, D. E.
are three different people and biblatex
would try to disambiguate them accordingly. So it may well be that you don't have another Lang in the usual meaning of the word, but just another form of the same Lang's name, e.g. Lang, Stefan
and Lang, S.
or Lang, Stefan R.
or ...– moewe
9 mins ago
add a comment |
0
active
oldest
votes
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
});
}
});
Stefanie 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%2f482705%2fbiblatex-citation-includes-given-name-how-can-i-get-rid-of-it%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
Stefanie is a new contributor. Be nice, and check out our Code of Conduct.
Stefanie is a new contributor. Be nice, and check out our Code of Conduct.
Stefanie is a new contributor. Be nice, and check out our Code of Conduct.
Stefanie 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%2f482705%2fbiblatex-citation-includes-given-name-how-can-i-get-rid-of-it%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
1
Is there another author called Lang in your bibliography?
biblatex
has a feature to disambiguate ambiguous family names which means that it may add a given name initial or write out the entire given name to avoid confusion as to which "Lang" is meant. See tex.stackexchange.com/q/134535/35864– moewe
26 mins ago
Note that for the purposes of the
uniquename
disambiguationKnuth, Donald
,Knuth, Donald E.
andKnuth, D. E.
are three different people andbiblatex
would try to disambiguate them accordingly. So it may well be that you don't have another Lang in the usual meaning of the word, but just another form of the same Lang's name, e.g.Lang, Stefan
andLang, S.
orLang, Stefan R.
or ...– moewe
9 mins ago