Set limit to one author when using “et al.” in biblatex
In the header of my document I set the maximal author names to 2:
usepackage[style=authoryear-icomp, maxbibnames=9, maxcitenames=2, backend=biber]{biblatex}
Now, when I cite texts with two authors, LaTeX gives me the following:
(Author_A/ Author_B 2012: 232)
When I have three authors or more, LaTeX makes it:
(Author_A/ Author_B et al. 2012: 232)
But I want LaTeX to just name the first author if there are more than two authors ... like this:
(Author_A et al. 2012: 232)
Any tips on how to achieve this ?
biblatex author-number
add a comment |
In the header of my document I set the maximal author names to 2:
usepackage[style=authoryear-icomp, maxbibnames=9, maxcitenames=2, backend=biber]{biblatex}
Now, when I cite texts with two authors, LaTeX gives me the following:
(Author_A/ Author_B 2012: 232)
When I have three authors or more, LaTeX makes it:
(Author_A/ Author_B et al. 2012: 232)
But I want LaTeX to just name the first author if there are more than two authors ... like this:
(Author_A et al. 2012: 232)
Any tips on how to achieve this ?
biblatex author-number
add a comment |
In the header of my document I set the maximal author names to 2:
usepackage[style=authoryear-icomp, maxbibnames=9, maxcitenames=2, backend=biber]{biblatex}
Now, when I cite texts with two authors, LaTeX gives me the following:
(Author_A/ Author_B 2012: 232)
When I have three authors or more, LaTeX makes it:
(Author_A/ Author_B et al. 2012: 232)
But I want LaTeX to just name the first author if there are more than two authors ... like this:
(Author_A et al. 2012: 232)
Any tips on how to achieve this ?
biblatex author-number
In the header of my document I set the maximal author names to 2:
usepackage[style=authoryear-icomp, maxbibnames=9, maxcitenames=2, backend=biber]{biblatex}
Now, when I cite texts with two authors, LaTeX gives me the following:
(Author_A/ Author_B 2012: 232)
When I have three authors or more, LaTeX makes it:
(Author_A/ Author_B et al. 2012: 232)
But I want LaTeX to just name the first author if there are more than two authors ... like this:
(Author_A et al. 2012: 232)
Any tips on how to achieve this ?
biblatex author-number
biblatex author-number
edited Feb 7 '13 at 10:44
lockstep
192k53593723
192k53593723
asked Aug 27 '12 at 16:08
Carry WhiteCarry White
453156
453156
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
By default biblatex
will truncate name lists exceeding maxcitenames
to one author plus "et al." (mincitenames=1
). However, biblatex
will (also by default) not truncate if doing so would cause ambiguous citation keys, which I suspect is the case in your document. Compare the output of the following two examples:
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
printbibliography
end{document}
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
If you only want one author in citation keys under all circumstances, use the option uniquelist=false
. (Note that this may lead readers to the false conclusion that "Author et al." refers to the same author team.)
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,uniquelist=false,
backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
1
That was just the Information I needed. Thanx a lot!
– Carry White
Aug 27 '12 at 18:11
add a comment |
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
});
}
});
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%2f69028%2fset-limit-to-one-author-when-using-et-al-in-biblatex%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
By default biblatex
will truncate name lists exceeding maxcitenames
to one author plus "et al." (mincitenames=1
). However, biblatex
will (also by default) not truncate if doing so would cause ambiguous citation keys, which I suspect is the case in your document. Compare the output of the following two examples:
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
printbibliography
end{document}
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
If you only want one author in citation keys under all circumstances, use the option uniquelist=false
. (Note that this may lead readers to the false conclusion that "Author et al." refers to the same author team.)
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,uniquelist=false,
backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
1
That was just the Information I needed. Thanx a lot!
– Carry White
Aug 27 '12 at 18:11
add a comment |
By default biblatex
will truncate name lists exceeding maxcitenames
to one author plus "et al." (mincitenames=1
). However, biblatex
will (also by default) not truncate if doing so would cause ambiguous citation keys, which I suspect is the case in your document. Compare the output of the following two examples:
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
printbibliography
end{document}
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
If you only want one author in citation keys under all circumstances, use the option uniquelist=false
. (Note that this may lead readers to the false conclusion that "Author et al." refers to the same author team.)
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,uniquelist=false,
backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
1
That was just the Information I needed. Thanx a lot!
– Carry White
Aug 27 '12 at 18:11
add a comment |
By default biblatex
will truncate name lists exceeding maxcitenames
to one author plus "et al." (mincitenames=1
). However, biblatex
will (also by default) not truncate if doing so would cause ambiguous citation keys, which I suspect is the case in your document. Compare the output of the following two examples:
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
printbibliography
end{document}
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
If you only want one author in citation keys under all circumstances, use the option uniquelist=false
. (Note that this may lead readers to the false conclusion that "Author et al." refers to the same author team.)
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,uniquelist=false,
backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
By default biblatex
will truncate name lists exceeding maxcitenames
to one author plus "et al." (mincitenames=1
). However, biblatex
will (also by default) not truncate if doing so would cause ambiguous citation keys, which I suspect is the case in your document. Compare the output of the following two examples:
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
printbibliography
end{document}
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
If you only want one author in citation keys under all circumstances, use the option uniquelist=false
. (Note that this may lead readers to the false conclusion that "Author et al." refers to the same author team.)
documentclass{article}
usepackage[style=authoryear-icomp,maxbibnames=9,maxcitenames=2,uniquelist=false,
backend=biber]{biblatex}
usepackage{filecontents}
begin{filecontents}{jobname.bib}
@misc{ABC01,
author = {Author, A. and Buthor, B. and C},
year = {2001},
title = {Alpha},
}
@misc{ADE01,
author = {Author, A. and Duthor, D. and E},
year = {2001},
title = {And now for something completely different},
}
end{filecontents}
addbibresource{jobname.bib}
begin{document}
Some text autocite{ABC01}.
Some text autocite{ADE01}.
printbibliography
end{document}
edited Aug 29 '12 at 11:14
answered Aug 27 '12 at 16:23
locksteplockstep
192k53593723
192k53593723
1
That was just the Information I needed. Thanx a lot!
– Carry White
Aug 27 '12 at 18:11
add a comment |
1
That was just the Information I needed. Thanx a lot!
– Carry White
Aug 27 '12 at 18:11
1
1
That was just the Information I needed. Thanx a lot!
– Carry White
Aug 27 '12 at 18:11
That was just the Information I needed. Thanx a lot!
– Carry White
Aug 27 '12 at 18:11
add a comment |
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%2f69028%2fset-limit-to-one-author-when-using-et-al-in-biblatex%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