apalike bibliography changes to numbers suddenlyDisplaying BibTeX item in References without labelCreate and...
How should I solve this integral with changing parameters?
Can one live in the U.S. and not use a credit card?
Strange opamp's output impedance in spice
How exactly does an Ethernet collision happen in the cable, since nodes use different circuits for Tx and Rx?
Logistic regression BIC: what's the right N?
How to install round brake pads
Does the US political system, in principle, allow for a no-party system?
(Codewars) Linked Lists-Sorted Insert
Why is there an extra space when I type "ls" on the Desktop?
Having the player face themselves after the mid-game
Do Paladin Auras of Differing Oaths Stack?
How do you make a gun that shoots melee weapons and/or swords?
Computation logic of Partway in TikZ
Is it appropriate to ask a former professor to order a book for me through an inter-library loan?
Cycles on the torus
Create chunks from an array
How can a demon take control of a human body during REM sleep?
Did Amazon pay $0 in taxes last year?
What does the Digital Threat scope actually do?
What is this tube in a jet engine's air intake?
Yet another question on sums of the reciprocals of the primes
Was it really inappropriate to write a pull request for the company I interviewed with?
Writing text next to a table
How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?
apalike bibliography changes to numbers suddenly
Displaying BibTeX item in References without labelCreate and set the bibliographyHow to include 2 bibliographies with natbib and TeXlipseUsing apalike and natbib in Lyx with author abbreviation as indexUnsuccessful attempts at sorting the bibliography alphabetically [natbib,plainnat,citep]independent bibliographies in one documentProblem with bibliography section header and font sizeCitation aliases in BeamerInserting Bibliography from Endnote to Overleaf
I am using natbib package in my project, which has documentclass{report}, and I am using apalike style for my bibliography. I am currently using v2.overleaf to write my document. Everything was working so far, but now when I add any more references in my document's .bib file, the citations in my document change from author, date (I mostly used citep(something), they change to numbers. It looks like there is a limit on the number of references.
I cannot seem to find what the problem is, but here is some info:
I have used 48 references so far, and adding the 49th lead to this problem (I have no idea if this is related or not)
my .bib file now has 541 lines.
I wonder if anyone has faced this problem before.
I appreciate any help guys :)
documentclass[letterpaper,12pt]{report}
usepackage[round]{natbib}
begin{document}
some text here citep{citation48}
some other text citep{citation49}
bibliographystyle{apalike}
{footnotesize
bibliography{library.bib}}
end{document}
Before
After
bibliographies bibtex natbib apa-style
|
show 2 more comments
I am using natbib package in my project, which has documentclass{report}, and I am using apalike style for my bibliography. I am currently using v2.overleaf to write my document. Everything was working so far, but now when I add any more references in my document's .bib file, the citations in my document change from author, date (I mostly used citep(something), they change to numbers. It looks like there is a limit on the number of references.
I cannot seem to find what the problem is, but here is some info:
I have used 48 references so far, and adding the 49th lead to this problem (I have no idea if this is related or not)
my .bib file now has 541 lines.
I wonder if anyone has faced this problem before.
I appreciate any help guys :)
documentclass[letterpaper,12pt]{report}
usepackage[round]{natbib}
begin{document}
some text here citep{citation48}
some other text citep{citation49}
bibliographystyle{apalike}
{footnotesize
bibliography{library.bib}}
end{document}
Before
After
bibliographies bibtex natbib apa-style
1
Adding references to the.bib
file shouldn't affect your document at all unless you also cite them in the document. So when you cite the 49th reference, what does the output look like? Can you edit your question to include a minimal compilable document (beginning withdocumentclass{...}
and ending withend{document}
that shows exactly how you are generating the bibliography? (No other packages should be needed in the example other thannatbib
).
– Alan Munn
Jun 25 '18 at 3:43
1
Welcome, please don't feel offense, but i guess you will get a quicker solution to your problem by getting in touch with the Overleaf help team. I guess you won't be able to make us reproduce your local problem.
– Johannes_B
Jun 25 '18 at 4:44
This is a very weird problem, the more so because theapalike
bibliography style is only set up to generate authoryear-style citation call-outs. If you're getting numeric-style citation call-outs all of a sudden, something very odd must have happened. Without access to your code, it's unfortunately not possible to offer a definitive diagnosis. Real quick: did you check (a) that there's no additionalbibliographystyle
instruction lurking around somewhere and (b) that thenatbib
package isn't all of a sudden being loaded with the optionnumbers
?
– Mico
Jun 25 '18 at 7:05
Thank you guys for the comments, I tried to follow your instructions and add some codes and screenshots. I will get in touch with overleaf to ask them, no offense taken :) there is no additional bibliographystyle, and I do not touch natbib. the only thing I change is cite another (any) citation and boom, apalike changes to numbers!
– peykaf
Jun 26 '18 at 15:03
1
Thenatbib
documentation also says The natbib package will automatically switch to numerical mode if any one of the bibitem entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode. So perhaps a mal-formed entry is the problem.
– Alan Munn
Jun 26 '18 at 16:16
|
show 2 more comments
I am using natbib package in my project, which has documentclass{report}, and I am using apalike style for my bibliography. I am currently using v2.overleaf to write my document. Everything was working so far, but now when I add any more references in my document's .bib file, the citations in my document change from author, date (I mostly used citep(something), they change to numbers. It looks like there is a limit on the number of references.
I cannot seem to find what the problem is, but here is some info:
I have used 48 references so far, and adding the 49th lead to this problem (I have no idea if this is related or not)
my .bib file now has 541 lines.
I wonder if anyone has faced this problem before.
I appreciate any help guys :)
documentclass[letterpaper,12pt]{report}
usepackage[round]{natbib}
begin{document}
some text here citep{citation48}
some other text citep{citation49}
bibliographystyle{apalike}
{footnotesize
bibliography{library.bib}}
end{document}
Before
After
bibliographies bibtex natbib apa-style
I am using natbib package in my project, which has documentclass{report}, and I am using apalike style for my bibliography. I am currently using v2.overleaf to write my document. Everything was working so far, but now when I add any more references in my document's .bib file, the citations in my document change from author, date (I mostly used citep(something), they change to numbers. It looks like there is a limit on the number of references.
I cannot seem to find what the problem is, but here is some info:
I have used 48 references so far, and adding the 49th lead to this problem (I have no idea if this is related or not)
my .bib file now has 541 lines.
I wonder if anyone has faced this problem before.
I appreciate any help guys :)
documentclass[letterpaper,12pt]{report}
usepackage[round]{natbib}
begin{document}
some text here citep{citation48}
some other text citep{citation49}
bibliographystyle{apalike}
{footnotesize
bibliography{library.bib}}
end{document}
Before
After
bibliographies bibtex natbib apa-style
bibliographies bibtex natbib apa-style
edited Jun 26 '18 at 15:01
peykaf
asked Jun 25 '18 at 0:06
peykafpeykaf
133
133
1
Adding references to the.bib
file shouldn't affect your document at all unless you also cite them in the document. So when you cite the 49th reference, what does the output look like? Can you edit your question to include a minimal compilable document (beginning withdocumentclass{...}
and ending withend{document}
that shows exactly how you are generating the bibliography? (No other packages should be needed in the example other thannatbib
).
– Alan Munn
Jun 25 '18 at 3:43
1
Welcome, please don't feel offense, but i guess you will get a quicker solution to your problem by getting in touch with the Overleaf help team. I guess you won't be able to make us reproduce your local problem.
– Johannes_B
Jun 25 '18 at 4:44
This is a very weird problem, the more so because theapalike
bibliography style is only set up to generate authoryear-style citation call-outs. If you're getting numeric-style citation call-outs all of a sudden, something very odd must have happened. Without access to your code, it's unfortunately not possible to offer a definitive diagnosis. Real quick: did you check (a) that there's no additionalbibliographystyle
instruction lurking around somewhere and (b) that thenatbib
package isn't all of a sudden being loaded with the optionnumbers
?
– Mico
Jun 25 '18 at 7:05
Thank you guys for the comments, I tried to follow your instructions and add some codes and screenshots. I will get in touch with overleaf to ask them, no offense taken :) there is no additional bibliographystyle, and I do not touch natbib. the only thing I change is cite another (any) citation and boom, apalike changes to numbers!
– peykaf
Jun 26 '18 at 15:03
1
Thenatbib
documentation also says The natbib package will automatically switch to numerical mode if any one of the bibitem entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode. So perhaps a mal-formed entry is the problem.
– Alan Munn
Jun 26 '18 at 16:16
|
show 2 more comments
1
Adding references to the.bib
file shouldn't affect your document at all unless you also cite them in the document. So when you cite the 49th reference, what does the output look like? Can you edit your question to include a minimal compilable document (beginning withdocumentclass{...}
and ending withend{document}
that shows exactly how you are generating the bibliography? (No other packages should be needed in the example other thannatbib
).
– Alan Munn
Jun 25 '18 at 3:43
1
Welcome, please don't feel offense, but i guess you will get a quicker solution to your problem by getting in touch with the Overleaf help team. I guess you won't be able to make us reproduce your local problem.
– Johannes_B
Jun 25 '18 at 4:44
This is a very weird problem, the more so because theapalike
bibliography style is only set up to generate authoryear-style citation call-outs. If you're getting numeric-style citation call-outs all of a sudden, something very odd must have happened. Without access to your code, it's unfortunately not possible to offer a definitive diagnosis. Real quick: did you check (a) that there's no additionalbibliographystyle
instruction lurking around somewhere and (b) that thenatbib
package isn't all of a sudden being loaded with the optionnumbers
?
– Mico
Jun 25 '18 at 7:05
Thank you guys for the comments, I tried to follow your instructions and add some codes and screenshots. I will get in touch with overleaf to ask them, no offense taken :) there is no additional bibliographystyle, and I do not touch natbib. the only thing I change is cite another (any) citation and boom, apalike changes to numbers!
– peykaf
Jun 26 '18 at 15:03
1
Thenatbib
documentation also says The natbib package will automatically switch to numerical mode if any one of the bibitem entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode. So perhaps a mal-formed entry is the problem.
– Alan Munn
Jun 26 '18 at 16:16
1
1
Adding references to the
.bib
file shouldn't affect your document at all unless you also cite them in the document. So when you cite the 49th reference, what does the output look like? Can you edit your question to include a minimal compilable document (beginning with documentclass{...}
and ending with end{document}
that shows exactly how you are generating the bibliography? (No other packages should be needed in the example other than natbib
).– Alan Munn
Jun 25 '18 at 3:43
Adding references to the
.bib
file shouldn't affect your document at all unless you also cite them in the document. So when you cite the 49th reference, what does the output look like? Can you edit your question to include a minimal compilable document (beginning with documentclass{...}
and ending with end{document}
that shows exactly how you are generating the bibliography? (No other packages should be needed in the example other than natbib
).– Alan Munn
Jun 25 '18 at 3:43
1
1
Welcome, please don't feel offense, but i guess you will get a quicker solution to your problem by getting in touch with the Overleaf help team. I guess you won't be able to make us reproduce your local problem.
– Johannes_B
Jun 25 '18 at 4:44
Welcome, please don't feel offense, but i guess you will get a quicker solution to your problem by getting in touch with the Overleaf help team. I guess you won't be able to make us reproduce your local problem.
– Johannes_B
Jun 25 '18 at 4:44
This is a very weird problem, the more so because the
apalike
bibliography style is only set up to generate authoryear-style citation call-outs. If you're getting numeric-style citation call-outs all of a sudden, something very odd must have happened. Without access to your code, it's unfortunately not possible to offer a definitive diagnosis. Real quick: did you check (a) that there's no additional bibliographystyle
instruction lurking around somewhere and (b) that the natbib
package isn't all of a sudden being loaded with the option numbers
?– Mico
Jun 25 '18 at 7:05
This is a very weird problem, the more so because the
apalike
bibliography style is only set up to generate authoryear-style citation call-outs. If you're getting numeric-style citation call-outs all of a sudden, something very odd must have happened. Without access to your code, it's unfortunately not possible to offer a definitive diagnosis. Real quick: did you check (a) that there's no additional bibliographystyle
instruction lurking around somewhere and (b) that the natbib
package isn't all of a sudden being loaded with the option numbers
?– Mico
Jun 25 '18 at 7:05
Thank you guys for the comments, I tried to follow your instructions and add some codes and screenshots. I will get in touch with overleaf to ask them, no offense taken :) there is no additional bibliographystyle, and I do not touch natbib. the only thing I change is cite another (any) citation and boom, apalike changes to numbers!
– peykaf
Jun 26 '18 at 15:03
Thank you guys for the comments, I tried to follow your instructions and add some codes and screenshots. I will get in touch with overleaf to ask them, no offense taken :) there is no additional bibliographystyle, and I do not touch natbib. the only thing I change is cite another (any) citation and boom, apalike changes to numbers!
– peykaf
Jun 26 '18 at 15:03
1
1
The
natbib
documentation also says The natbib package will automatically switch to numerical mode if any one of the bibitem entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode. So perhaps a mal-formed entry is the problem.– Alan Munn
Jun 26 '18 at 16:16
The
natbib
documentation also says The natbib package will automatically switch to numerical mode if any one of the bibitem entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode. So perhaps a mal-formed entry is the problem.– Alan Munn
Jun 26 '18 at 16:16
|
show 2 more comments
1 Answer
1
active
oldest
votes
The natbib
documentation states:
The
natbib
package will automatically switch to numerical mode if any one of thebibitem
entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode.
It does this only after generating an error:
! Package natbib Error: Bibliography not compatible with author-year citations.
(natbib) Press <return> to continue in numerical citation style.
Unfortunately, online LaTeX systems like ShareLaTeX and Overleaf do everything they can to produce some output and try to push through errors wherever they can. This problem is compounded by the fact that there is no simple way to view the error log without downloading it (last time I checked). For example, if you have the following .bib
file entry, namely an item with an author but no year, and you push through the error, the bibliography will be generated using the numeric system. From your comment it seems that something of this sort is what happened.
@misc{Foo2018,
Author = {Foo},
Howpublished = {Unpublished manuscript},
Title = {A title}}
That was exactly the case! I really appreciate your assistance Alan.
– peykaf
Jun 27 '18 at 19:40
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%2f437831%2fapalike-bibliography-changes-to-numbers-suddenly%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
The natbib
documentation states:
The
natbib
package will automatically switch to numerical mode if any one of thebibitem
entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode.
It does this only after generating an error:
! Package natbib Error: Bibliography not compatible with author-year citations.
(natbib) Press <return> to continue in numerical citation style.
Unfortunately, online LaTeX systems like ShareLaTeX and Overleaf do everything they can to produce some output and try to push through errors wherever they can. This problem is compounded by the fact that there is no simple way to view the error log without downloading it (last time I checked). For example, if you have the following .bib
file entry, namely an item with an author but no year, and you push through the error, the bibliography will be generated using the numeric system. From your comment it seems that something of this sort is what happened.
@misc{Foo2018,
Author = {Foo},
Howpublished = {Unpublished manuscript},
Title = {A title}}
That was exactly the case! I really appreciate your assistance Alan.
– peykaf
Jun 27 '18 at 19:40
add a comment |
The natbib
documentation states:
The
natbib
package will automatically switch to numerical mode if any one of thebibitem
entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode.
It does this only after generating an error:
! Package natbib Error: Bibliography not compatible with author-year citations.
(natbib) Press <return> to continue in numerical citation style.
Unfortunately, online LaTeX systems like ShareLaTeX and Overleaf do everything they can to produce some output and try to push through errors wherever they can. This problem is compounded by the fact that there is no simple way to view the error log without downloading it (last time I checked). For example, if you have the following .bib
file entry, namely an item with an author but no year, and you push through the error, the bibliography will be generated using the numeric system. From your comment it seems that something of this sort is what happened.
@misc{Foo2018,
Author = {Foo},
Howpublished = {Unpublished manuscript},
Title = {A title}}
That was exactly the case! I really appreciate your assistance Alan.
– peykaf
Jun 27 '18 at 19:40
add a comment |
The natbib
documentation states:
The
natbib
package will automatically switch to numerical mode if any one of thebibitem
entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode.
It does this only after generating an error:
! Package natbib Error: Bibliography not compatible with author-year citations.
(natbib) Press <return> to continue in numerical citation style.
Unfortunately, online LaTeX systems like ShareLaTeX and Overleaf do everything they can to produce some output and try to push through errors wherever they can. This problem is compounded by the fact that there is no simple way to view the error log without downloading it (last time I checked). For example, if you have the following .bib
file entry, namely an item with an author but no year, and you push through the error, the bibliography will be generated using the numeric system. From your comment it seems that something of this sort is what happened.
@misc{Foo2018,
Author = {Foo},
Howpublished = {Unpublished manuscript},
Title = {A title}}
The natbib
documentation states:
The
natbib
package will automatically switch to numerical mode if any one of thebibitem
entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode.
It does this only after generating an error:
! Package natbib Error: Bibliography not compatible with author-year citations.
(natbib) Press <return> to continue in numerical citation style.
Unfortunately, online LaTeX systems like ShareLaTeX and Overleaf do everything they can to produce some output and try to push through errors wherever they can. This problem is compounded by the fact that there is no simple way to view the error log without downloading it (last time I checked). For example, if you have the following .bib
file entry, namely an item with an author but no year, and you push through the error, the bibliography will be generated using the numeric system. From your comment it seems that something of this sort is what happened.
@misc{Foo2018,
Author = {Foo},
Howpublished = {Unpublished manuscript},
Title = {A title}}
answered Jun 26 '18 at 17:30
Alan MunnAlan Munn
162k28431706
162k28431706
That was exactly the case! I really appreciate your assistance Alan.
– peykaf
Jun 27 '18 at 19:40
add a comment |
That was exactly the case! I really appreciate your assistance Alan.
– peykaf
Jun 27 '18 at 19:40
That was exactly the case! I really appreciate your assistance Alan.
– peykaf
Jun 27 '18 at 19:40
That was exactly the case! I really appreciate your assistance Alan.
– peykaf
Jun 27 '18 at 19:40
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%2f437831%2fapalike-bibliography-changes-to-numbers-suddenly%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
Adding references to the
.bib
file shouldn't affect your document at all unless you also cite them in the document. So when you cite the 49th reference, what does the output look like? Can you edit your question to include a minimal compilable document (beginning withdocumentclass{...}
and ending withend{document}
that shows exactly how you are generating the bibliography? (No other packages should be needed in the example other thannatbib
).– Alan Munn
Jun 25 '18 at 3:43
1
Welcome, please don't feel offense, but i guess you will get a quicker solution to your problem by getting in touch with the Overleaf help team. I guess you won't be able to make us reproduce your local problem.
– Johannes_B
Jun 25 '18 at 4:44
This is a very weird problem, the more so because the
apalike
bibliography style is only set up to generate authoryear-style citation call-outs. If you're getting numeric-style citation call-outs all of a sudden, something very odd must have happened. Without access to your code, it's unfortunately not possible to offer a definitive diagnosis. Real quick: did you check (a) that there's no additionalbibliographystyle
instruction lurking around somewhere and (b) that thenatbib
package isn't all of a sudden being loaded with the optionnumbers
?– Mico
Jun 25 '18 at 7:05
Thank you guys for the comments, I tried to follow your instructions and add some codes and screenshots. I will get in touch with overleaf to ask them, no offense taken :) there is no additional bibliographystyle, and I do not touch natbib. the only thing I change is cite another (any) citation and boom, apalike changes to numbers!
– peykaf
Jun 26 '18 at 15:03
1
The
natbib
documentation also says The natbib package will automatically switch to numerical mode if any one of the bibitem entries fails to conform to the possible author–year formats. There is no way to override this, since such an entry would cause trouble in the author–year mode. So perhaps a mal-formed entry is the problem.– Alan Munn
Jun 26 '18 at 16:16