How to display first 6 and last author in reference list, using apa styleAPA Style: publisher as authorExtra...
Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?
Need help identifying/translating a plaque in Tangier, Morocco
Information to fellow intern about hiring?
How to deal with fear of taking dependencies
Why airport relocation isn't done gradually?
What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?
Is there a way to make member function NOT callable from constructor?
How can I plot a Farey diagram?
Are objects structures and/or vice versa?
extract characters between two commas?
COUNT(*) or MAX(id) - which is faster?
Is domain driven design an anti-SQL pattern?
Does a dangling wire really electrocute me if I'm standing in water?
How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?
If a centaur druid Wild Shapes into a Giant Elk, do their Charge features stack?
Why do UK politicians seemingly ignore opinion polls on Brexit?
Typesetting a double Over Dot on top of a symbol
Is it wise to focus on putting odd beats on left when playing double bass drums?
Pristine Bit Checking
aging parents with no investments
Can the Produce Flame cantrip be used to grapple, or as an unarmed strike, in the right circumstances?
Why is the design of haulage companies so “special”?
Where to refill my bottle in India?
Extreme, but not acceptable situation and I can't start the work tomorrow morning
How to display first 6 and last author in reference list, using apa style
APA Style: publisher as authorExtra author appearing in biblatex-apa (as if two publications with the same first author appeared in the same year)How to change the apacite bibliography style to list all authorsbiblatex-apa and fullcite* --> year of ambiguous citationBold labels and more with custom bibtex bst and author-yearBiblatex IEEE extra comma before and: author1, author2, and author3Wrong alphabetical order in .bbl fileAPA Style Document Won't CompileHow to present full acronym of authors' last names in citations in biblatex's alphabetical styleModifying in-text citation and bibliography with biblatex/biber (apa-style)
This questions regards the Bibliography/Reference List at the end of the document NOT the in-text citation.
I want to use apa-good.bst as my bibliography style. Some of my references have way more than 7 authors. Following the guidelines for APA style citations, the first 6 authors should be listed followed by "..." and then the last author. After intense googling I did not find a sufficient solution. My plan would be to modify the FUNCTION {format.names} but my coding knowledge in LaTeX is quite bad. I only managed to enter the part, where it reduces the total author list to 7 authors.
It now reads:
FUNCTION {format.names}
{ 'bibinfo :=
duplicate$ empty$ 'skip$ {
's :=
"" 't :=
#1 'nameptr :=
s num.names$ 'numnames :=
numnames 'namesleft :=
{ namesleft #0 > }
{ s nameptr
"{vv~}{ll}{, f.}{, jj}"
format.name$
bibinfo bibinfo.check
't :=
nameptr #1 >
{
nameptr #7
#1 + =
numnames #7
> and
{ "others" 't :=
#1 'namesleft := }
'skip$
if$
namesleft #1 >
{ ", " * t * }
{
"," *
s nameptr "{ll}" format.name$ duplicate$ "others" =
{ 't := }
{ pop$ }
if$
t "others" =
{
" " * bbl.etal *
}
{
"&"
space.word * t *
}
if$
}
if$
}
't
if$
nameptr #1 + 'nameptr :=
namesleft #1 - 'namesleft :=
} while$
} if$
}
This reduces the authors list to max 7 authors but instead the "Author 6, ..., Author 70" it gives "Author 6, et. al".
Do you have an idea how, respectively where to change the Function to match the guidelines? [APA-style 6thedition, 7or more authors1
Thank you for your time and ideas,
Lucy
bibtex natbib apa-style
New contributor
add a comment |
This questions regards the Bibliography/Reference List at the end of the document NOT the in-text citation.
I want to use apa-good.bst as my bibliography style. Some of my references have way more than 7 authors. Following the guidelines for APA style citations, the first 6 authors should be listed followed by "..." and then the last author. After intense googling I did not find a sufficient solution. My plan would be to modify the FUNCTION {format.names} but my coding knowledge in LaTeX is quite bad. I only managed to enter the part, where it reduces the total author list to 7 authors.
It now reads:
FUNCTION {format.names}
{ 'bibinfo :=
duplicate$ empty$ 'skip$ {
's :=
"" 't :=
#1 'nameptr :=
s num.names$ 'numnames :=
numnames 'namesleft :=
{ namesleft #0 > }
{ s nameptr
"{vv~}{ll}{, f.}{, jj}"
format.name$
bibinfo bibinfo.check
't :=
nameptr #1 >
{
nameptr #7
#1 + =
numnames #7
> and
{ "others" 't :=
#1 'namesleft := }
'skip$
if$
namesleft #1 >
{ ", " * t * }
{
"," *
s nameptr "{ll}" format.name$ duplicate$ "others" =
{ 't := }
{ pop$ }
if$
t "others" =
{
" " * bbl.etal *
}
{
"&"
space.word * t *
}
if$
}
if$
}
't
if$
nameptr #1 + 'nameptr :=
namesleft #1 - 'namesleft :=
} while$
} if$
}
This reduces the authors list to max 7 authors but instead the "Author 6, ..., Author 70" it gives "Author 6, et. al".
Do you have an idea how, respectively where to change the Function to match the guidelines? [APA-style 6thedition, 7or more authors1
Thank you for your time and ideas,
Lucy
bibtex natbib apa-style
New contributor
Doesn't actually answer your question, but could you move tobiblatex
?biblatex-apa
supports this out of the box.
– David Purton
17 hours ago
Also where can we findapa-good.bst
? It does not appear to be in CTAN.
– David Purton
17 hours ago
Dear David, thank you for your pompt response. I will look into biblatex, does it also support citep{} and is the ciation in text also following the apa-style guidelines? (all authors for one or two,First Author et. al. for 3 and more authors) in the in-text-citations? regarding the apa-good.bst file, I got it from here github.com/unaguil/thesis-latex/blob/master/Latex/StyleBST/…
– Lucy
17 hours ago
As far as I knowbiblatex-apa
has been written to adhere to the requirements of APA very closely.biblatex
is much more flexible thannatbib
and the output ofbiblatex-apa
should be superior to anybst
file.biblatex
usesparencite
andtextcite
in place ofcitep
andcitet
, but the latter can be used with anatbib
compatibility option tobiblatex
. Note that you can not load thenatbib
package withbiblatex
. They are incompatible.
– David Purton
16 hours ago
Thank you for all this input David, I tried a little but have the feeling I have to read myself a little into the whole biblatex mechanic to proper use it. since I have a lot of chapters and hundreds of citations I would have to replace the shortcuts in all chapters, so I will have to see if I have the time to explore the biblatex option. But still, thanks a lot!
– Lucy
15 hours ago
add a comment |
This questions regards the Bibliography/Reference List at the end of the document NOT the in-text citation.
I want to use apa-good.bst as my bibliography style. Some of my references have way more than 7 authors. Following the guidelines for APA style citations, the first 6 authors should be listed followed by "..." and then the last author. After intense googling I did not find a sufficient solution. My plan would be to modify the FUNCTION {format.names} but my coding knowledge in LaTeX is quite bad. I only managed to enter the part, where it reduces the total author list to 7 authors.
It now reads:
FUNCTION {format.names}
{ 'bibinfo :=
duplicate$ empty$ 'skip$ {
's :=
"" 't :=
#1 'nameptr :=
s num.names$ 'numnames :=
numnames 'namesleft :=
{ namesleft #0 > }
{ s nameptr
"{vv~}{ll}{, f.}{, jj}"
format.name$
bibinfo bibinfo.check
't :=
nameptr #1 >
{
nameptr #7
#1 + =
numnames #7
> and
{ "others" 't :=
#1 'namesleft := }
'skip$
if$
namesleft #1 >
{ ", " * t * }
{
"," *
s nameptr "{ll}" format.name$ duplicate$ "others" =
{ 't := }
{ pop$ }
if$
t "others" =
{
" " * bbl.etal *
}
{
"&"
space.word * t *
}
if$
}
if$
}
't
if$
nameptr #1 + 'nameptr :=
namesleft #1 - 'namesleft :=
} while$
} if$
}
This reduces the authors list to max 7 authors but instead the "Author 6, ..., Author 70" it gives "Author 6, et. al".
Do you have an idea how, respectively where to change the Function to match the guidelines? [APA-style 6thedition, 7or more authors1
Thank you for your time and ideas,
Lucy
bibtex natbib apa-style
New contributor
This questions regards the Bibliography/Reference List at the end of the document NOT the in-text citation.
I want to use apa-good.bst as my bibliography style. Some of my references have way more than 7 authors. Following the guidelines for APA style citations, the first 6 authors should be listed followed by "..." and then the last author. After intense googling I did not find a sufficient solution. My plan would be to modify the FUNCTION {format.names} but my coding knowledge in LaTeX is quite bad. I only managed to enter the part, where it reduces the total author list to 7 authors.
It now reads:
FUNCTION {format.names}
{ 'bibinfo :=
duplicate$ empty$ 'skip$ {
's :=
"" 't :=
#1 'nameptr :=
s num.names$ 'numnames :=
numnames 'namesleft :=
{ namesleft #0 > }
{ s nameptr
"{vv~}{ll}{, f.}{, jj}"
format.name$
bibinfo bibinfo.check
't :=
nameptr #1 >
{
nameptr #7
#1 + =
numnames #7
> and
{ "others" 't :=
#1 'namesleft := }
'skip$
if$
namesleft #1 >
{ ", " * t * }
{
"," *
s nameptr "{ll}" format.name$ duplicate$ "others" =
{ 't := }
{ pop$ }
if$
t "others" =
{
" " * bbl.etal *
}
{
"&"
space.word * t *
}
if$
}
if$
}
't
if$
nameptr #1 + 'nameptr :=
namesleft #1 - 'namesleft :=
} while$
} if$
}
This reduces the authors list to max 7 authors but instead the "Author 6, ..., Author 70" it gives "Author 6, et. al".
Do you have an idea how, respectively where to change the Function to match the guidelines? [APA-style 6thedition, 7or more authors1
Thank you for your time and ideas,
Lucy
bibtex natbib apa-style
bibtex natbib apa-style
New contributor
New contributor
New contributor
asked 17 hours ago
LucyLucy
132
132
New contributor
New contributor
Doesn't actually answer your question, but could you move tobiblatex
?biblatex-apa
supports this out of the box.
– David Purton
17 hours ago
Also where can we findapa-good.bst
? It does not appear to be in CTAN.
– David Purton
17 hours ago
Dear David, thank you for your pompt response. I will look into biblatex, does it also support citep{} and is the ciation in text also following the apa-style guidelines? (all authors for one or two,First Author et. al. for 3 and more authors) in the in-text-citations? regarding the apa-good.bst file, I got it from here github.com/unaguil/thesis-latex/blob/master/Latex/StyleBST/…
– Lucy
17 hours ago
As far as I knowbiblatex-apa
has been written to adhere to the requirements of APA very closely.biblatex
is much more flexible thannatbib
and the output ofbiblatex-apa
should be superior to anybst
file.biblatex
usesparencite
andtextcite
in place ofcitep
andcitet
, but the latter can be used with anatbib
compatibility option tobiblatex
. Note that you can not load thenatbib
package withbiblatex
. They are incompatible.
– David Purton
16 hours ago
Thank you for all this input David, I tried a little but have the feeling I have to read myself a little into the whole biblatex mechanic to proper use it. since I have a lot of chapters and hundreds of citations I would have to replace the shortcuts in all chapters, so I will have to see if I have the time to explore the biblatex option. But still, thanks a lot!
– Lucy
15 hours ago
add a comment |
Doesn't actually answer your question, but could you move tobiblatex
?biblatex-apa
supports this out of the box.
– David Purton
17 hours ago
Also where can we findapa-good.bst
? It does not appear to be in CTAN.
– David Purton
17 hours ago
Dear David, thank you for your pompt response. I will look into biblatex, does it also support citep{} and is the ciation in text also following the apa-style guidelines? (all authors for one or two,First Author et. al. for 3 and more authors) in the in-text-citations? regarding the apa-good.bst file, I got it from here github.com/unaguil/thesis-latex/blob/master/Latex/StyleBST/…
– Lucy
17 hours ago
As far as I knowbiblatex-apa
has been written to adhere to the requirements of APA very closely.biblatex
is much more flexible thannatbib
and the output ofbiblatex-apa
should be superior to anybst
file.biblatex
usesparencite
andtextcite
in place ofcitep
andcitet
, but the latter can be used with anatbib
compatibility option tobiblatex
. Note that you can not load thenatbib
package withbiblatex
. They are incompatible.
– David Purton
16 hours ago
Thank you for all this input David, I tried a little but have the feeling I have to read myself a little into the whole biblatex mechanic to proper use it. since I have a lot of chapters and hundreds of citations I would have to replace the shortcuts in all chapters, so I will have to see if I have the time to explore the biblatex option. But still, thanks a lot!
– Lucy
15 hours ago
Doesn't actually answer your question, but could you move to
biblatex
? biblatex-apa
supports this out of the box.– David Purton
17 hours ago
Doesn't actually answer your question, but could you move to
biblatex
? biblatex-apa
supports this out of the box.– David Purton
17 hours ago
Also where can we find
apa-good.bst
? It does not appear to be in CTAN.– David Purton
17 hours ago
Also where can we find
apa-good.bst
? It does not appear to be in CTAN.– David Purton
17 hours ago
Dear David, thank you for your pompt response. I will look into biblatex, does it also support citep{} and is the ciation in text also following the apa-style guidelines? (all authors for one or two,First Author et. al. for 3 and more authors) in the in-text-citations? regarding the apa-good.bst file, I got it from here github.com/unaguil/thesis-latex/blob/master/Latex/StyleBST/…
– Lucy
17 hours ago
Dear David, thank you for your pompt response. I will look into biblatex, does it also support citep{} and is the ciation in text also following the apa-style guidelines? (all authors for one or two,First Author et. al. for 3 and more authors) in the in-text-citations? regarding the apa-good.bst file, I got it from here github.com/unaguil/thesis-latex/blob/master/Latex/StyleBST/…
– Lucy
17 hours ago
As far as I know
biblatex-apa
has been written to adhere to the requirements of APA very closely. biblatex
is much more flexible than natbib
and the output of biblatex-apa
should be superior to any bst
file. biblatex
uses parencite
and textcite
in place of citep
and citet
, but the latter can be used with a natbib
compatibility option to biblatex
. Note that you can not load the natbib
package with biblatex
. They are incompatible.– David Purton
16 hours ago
As far as I know
biblatex-apa
has been written to adhere to the requirements of APA very closely. biblatex
is much more flexible than natbib
and the output of biblatex-apa
should be superior to any bst
file. biblatex
uses parencite
and textcite
in place of citep
and citet
, but the latter can be used with a natbib
compatibility option to biblatex
. Note that you can not load the natbib
package with biblatex
. They are incompatible.– David Purton
16 hours ago
Thank you for all this input David, I tried a little but have the feeling I have to read myself a little into the whole biblatex mechanic to proper use it. since I have a lot of chapters and hundreds of citations I would have to replace the shortcuts in all chapters, so I will have to see if I have the time to explore the biblatex option. But still, thanks a lot!
– Lucy
15 hours ago
Thank you for all this input David, I tried a little but have the feeling I have to read myself a little into the whole biblatex mechanic to proper use it. since I have a lot of chapters and hundreds of citations I would have to replace the shortcuts in all chapters, so I will have to see if I have the time to explore the biblatex option. But still, thanks a lot!
– Lucy
15 hours ago
add a comment |
1 Answer
1
active
oldest
votes
I wouldn't perform the equivalent of reinventing the wheel by hacking the apa-good
bibliography style. Instead, I'd use apacite
LaTeX package and the apacite
bibliography style. They jointly implement exactly what you're looking for in terms of typesetting bibliographic entries with eight or more authors/editors.
If you want to be able to use the natbib-style citation commands, such as citet
and citep
, simply load the apacite
package with the option natbibapa
.
RequirePackage{filecontents}
begin{filecontents}{mybib.bib}
@misc{abc...xyz:3001,
author = "A and B and C and D and E and F and G and X and Y and Z",
title = "Thoughts",
year = 3001,
}
end{filecontents}
documentclass{article}
usepackage{apacite}
bibliographystyle{apacite}
begin{document}
nocite{*}
bibliography{mybib}
end{document}
Dear Mico, thank you very much for this hint. I changed to usepackage[natbibapa]{apacite} and YES it solves the issue for my Reference list/Bibliography at the end of document. BUT unfortunately I now have the issue with the in text citations, where no "et al." is displayed for more than two authors. If you are experienced with apacite, do you maybe know a solution for that out of your head? Cheers, Lucy
– Lucy
15 hours ago
@Lucy -- The current APA formatting guidelines for citation call-outs to bib entries with between 3 and 5 authors state that (a) the first time a piece is cited, the citation call-out should list all authors and (b) from the second citation call-out onward, the "first-surname et al" truncation convention should be used. Separately, If an entry has more than 5 authors, even the very first citation call-out will use the truncation convention.
– Mico
12 hours ago
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
});
}
});
Lucy 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%2f483768%2fhow-to-display-first-6-and-last-author-in-reference-list-using-apa-style%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
I wouldn't perform the equivalent of reinventing the wheel by hacking the apa-good
bibliography style. Instead, I'd use apacite
LaTeX package and the apacite
bibliography style. They jointly implement exactly what you're looking for in terms of typesetting bibliographic entries with eight or more authors/editors.
If you want to be able to use the natbib-style citation commands, such as citet
and citep
, simply load the apacite
package with the option natbibapa
.
RequirePackage{filecontents}
begin{filecontents}{mybib.bib}
@misc{abc...xyz:3001,
author = "A and B and C and D and E and F and G and X and Y and Z",
title = "Thoughts",
year = 3001,
}
end{filecontents}
documentclass{article}
usepackage{apacite}
bibliographystyle{apacite}
begin{document}
nocite{*}
bibliography{mybib}
end{document}
Dear Mico, thank you very much for this hint. I changed to usepackage[natbibapa]{apacite} and YES it solves the issue for my Reference list/Bibliography at the end of document. BUT unfortunately I now have the issue with the in text citations, where no "et al." is displayed for more than two authors. If you are experienced with apacite, do you maybe know a solution for that out of your head? Cheers, Lucy
– Lucy
15 hours ago
@Lucy -- The current APA formatting guidelines for citation call-outs to bib entries with between 3 and 5 authors state that (a) the first time a piece is cited, the citation call-out should list all authors and (b) from the second citation call-out onward, the "first-surname et al" truncation convention should be used. Separately, If an entry has more than 5 authors, even the very first citation call-out will use the truncation convention.
– Mico
12 hours ago
add a comment |
I wouldn't perform the equivalent of reinventing the wheel by hacking the apa-good
bibliography style. Instead, I'd use apacite
LaTeX package and the apacite
bibliography style. They jointly implement exactly what you're looking for in terms of typesetting bibliographic entries with eight or more authors/editors.
If you want to be able to use the natbib-style citation commands, such as citet
and citep
, simply load the apacite
package with the option natbibapa
.
RequirePackage{filecontents}
begin{filecontents}{mybib.bib}
@misc{abc...xyz:3001,
author = "A and B and C and D and E and F and G and X and Y and Z",
title = "Thoughts",
year = 3001,
}
end{filecontents}
documentclass{article}
usepackage{apacite}
bibliographystyle{apacite}
begin{document}
nocite{*}
bibliography{mybib}
end{document}
Dear Mico, thank you very much for this hint. I changed to usepackage[natbibapa]{apacite} and YES it solves the issue for my Reference list/Bibliography at the end of document. BUT unfortunately I now have the issue with the in text citations, where no "et al." is displayed for more than two authors. If you are experienced with apacite, do you maybe know a solution for that out of your head? Cheers, Lucy
– Lucy
15 hours ago
@Lucy -- The current APA formatting guidelines for citation call-outs to bib entries with between 3 and 5 authors state that (a) the first time a piece is cited, the citation call-out should list all authors and (b) from the second citation call-out onward, the "first-surname et al" truncation convention should be used. Separately, If an entry has more than 5 authors, even the very first citation call-out will use the truncation convention.
– Mico
12 hours ago
add a comment |
I wouldn't perform the equivalent of reinventing the wheel by hacking the apa-good
bibliography style. Instead, I'd use apacite
LaTeX package and the apacite
bibliography style. They jointly implement exactly what you're looking for in terms of typesetting bibliographic entries with eight or more authors/editors.
If you want to be able to use the natbib-style citation commands, such as citet
and citep
, simply load the apacite
package with the option natbibapa
.
RequirePackage{filecontents}
begin{filecontents}{mybib.bib}
@misc{abc...xyz:3001,
author = "A and B and C and D and E and F and G and X and Y and Z",
title = "Thoughts",
year = 3001,
}
end{filecontents}
documentclass{article}
usepackage{apacite}
bibliographystyle{apacite}
begin{document}
nocite{*}
bibliography{mybib}
end{document}
I wouldn't perform the equivalent of reinventing the wheel by hacking the apa-good
bibliography style. Instead, I'd use apacite
LaTeX package and the apacite
bibliography style. They jointly implement exactly what you're looking for in terms of typesetting bibliographic entries with eight or more authors/editors.
If you want to be able to use the natbib-style citation commands, such as citet
and citep
, simply load the apacite
package with the option natbibapa
.
RequirePackage{filecontents}
begin{filecontents}{mybib.bib}
@misc{abc...xyz:3001,
author = "A and B and C and D and E and F and G and X and Y and Z",
title = "Thoughts",
year = 3001,
}
end{filecontents}
documentclass{article}
usepackage{apacite}
bibliographystyle{apacite}
begin{document}
nocite{*}
bibliography{mybib}
end{document}
answered 16 hours ago
MicoMico
286k32390779
286k32390779
Dear Mico, thank you very much for this hint. I changed to usepackage[natbibapa]{apacite} and YES it solves the issue for my Reference list/Bibliography at the end of document. BUT unfortunately I now have the issue with the in text citations, where no "et al." is displayed for more than two authors. If you are experienced with apacite, do you maybe know a solution for that out of your head? Cheers, Lucy
– Lucy
15 hours ago
@Lucy -- The current APA formatting guidelines for citation call-outs to bib entries with between 3 and 5 authors state that (a) the first time a piece is cited, the citation call-out should list all authors and (b) from the second citation call-out onward, the "first-surname et al" truncation convention should be used. Separately, If an entry has more than 5 authors, even the very first citation call-out will use the truncation convention.
– Mico
12 hours ago
add a comment |
Dear Mico, thank you very much for this hint. I changed to usepackage[natbibapa]{apacite} and YES it solves the issue for my Reference list/Bibliography at the end of document. BUT unfortunately I now have the issue with the in text citations, where no "et al." is displayed for more than two authors. If you are experienced with apacite, do you maybe know a solution for that out of your head? Cheers, Lucy
– Lucy
15 hours ago
@Lucy -- The current APA formatting guidelines for citation call-outs to bib entries with between 3 and 5 authors state that (a) the first time a piece is cited, the citation call-out should list all authors and (b) from the second citation call-out onward, the "first-surname et al" truncation convention should be used. Separately, If an entry has more than 5 authors, even the very first citation call-out will use the truncation convention.
– Mico
12 hours ago
Dear Mico, thank you very much for this hint. I changed to usepackage[natbibapa]{apacite} and YES it solves the issue for my Reference list/Bibliography at the end of document. BUT unfortunately I now have the issue with the in text citations, where no "et al." is displayed for more than two authors. If you are experienced with apacite, do you maybe know a solution for that out of your head? Cheers, Lucy
– Lucy
15 hours ago
Dear Mico, thank you very much for this hint. I changed to usepackage[natbibapa]{apacite} and YES it solves the issue for my Reference list/Bibliography at the end of document. BUT unfortunately I now have the issue with the in text citations, where no "et al." is displayed for more than two authors. If you are experienced with apacite, do you maybe know a solution for that out of your head? Cheers, Lucy
– Lucy
15 hours ago
@Lucy -- The current APA formatting guidelines for citation call-outs to bib entries with between 3 and 5 authors state that (a) the first time a piece is cited, the citation call-out should list all authors and (b) from the second citation call-out onward, the "first-surname et al" truncation convention should be used. Separately, If an entry has more than 5 authors, even the very first citation call-out will use the truncation convention.
– Mico
12 hours ago
@Lucy -- The current APA formatting guidelines for citation call-outs to bib entries with between 3 and 5 authors state that (a) the first time a piece is cited, the citation call-out should list all authors and (b) from the second citation call-out onward, the "first-surname et al" truncation convention should be used. Separately, If an entry has more than 5 authors, even the very first citation call-out will use the truncation convention.
– Mico
12 hours ago
add a comment |
Lucy is a new contributor. Be nice, and check out our Code of Conduct.
Lucy is a new contributor. Be nice, and check out our Code of Conduct.
Lucy is a new contributor. Be nice, and check out our Code of Conduct.
Lucy 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%2f483768%2fhow-to-display-first-6-and-last-author-in-reference-list-using-apa-style%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
Doesn't actually answer your question, but could you move to
biblatex
?biblatex-apa
supports this out of the box.– David Purton
17 hours ago
Also where can we find
apa-good.bst
? It does not appear to be in CTAN.– David Purton
17 hours ago
Dear David, thank you for your pompt response. I will look into biblatex, does it also support citep{} and is the ciation in text also following the apa-style guidelines? (all authors for one or two,First Author et. al. for 3 and more authors) in the in-text-citations? regarding the apa-good.bst file, I got it from here github.com/unaguil/thesis-latex/blob/master/Latex/StyleBST/…
– Lucy
17 hours ago
As far as I know
biblatex-apa
has been written to adhere to the requirements of APA very closely.biblatex
is much more flexible thannatbib
and the output ofbiblatex-apa
should be superior to anybst
file.biblatex
usesparencite
andtextcite
in place ofcitep
andcitet
, but the latter can be used with anatbib
compatibility option tobiblatex
. Note that you can not load thenatbib
package withbiblatex
. They are incompatible.– David Purton
16 hours ago
Thank you for all this input David, I tried a little but have the feeling I have to read myself a little into the whole biblatex mechanic to proper use it. since I have a lot of chapters and hundreds of citations I would have to replace the shortcuts in all chapters, so I will have to see if I have the time to explore the biblatex option. But still, thanks a lot!
– Lucy
15 hours ago