apalike bibliography changes to numbers suddenlyDisplaying BibTeX item in References without labelCreate and...
If sound is a longitudinal wave, why can we hear it if our ears aren't aligned with the propagation direction?
Why restrict private health insurance?
How do we create new idioms and use them in a novel?
Why do we say 'Pairwise Disjoint', rather than 'Disjoint'?
Cycles on the torus
If nine coins are tossed, what is the probability that the number of heads is even?
Why does Central Limit Theorem break down in my simulation?
Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?
Converting from "matrix" data into "coordinate" data
How exactly does an Ethernet collision happen in the cable, since nodes use different circuits for Tx and Rx?
Smooth vector fields on a surface modulo diffeomorphisms
Create chunks from an array
Can one live in the U.S. and not use a credit card?
Why does this boat have a landing pad? (SpaceX's GO Searcher) Any plans for propulsive capsule landings?
The preposition for the verb (avenge) - avenge sb/sth (on OR from) sb
Is it possible to clone a polymorphic object without manually adding overridden clone method into each derived class in C++?
I am the person who abides by rules, but breaks the rules. Who am I?
Can the Witch Sight warlock invocation see through the Mirror Image spell?
What is the purpose of a disclaimer like "this is not legal advice"?
Is this Paypal Github SDK reference really a dangerous site?
Too soon for a plot twist?
Writing text next to a table
Are all players supposed to be able to see each others' character sheets?
Is "cogitate" used appropriately in "I cogitate that success relies on hard work"?
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
2 Answers
2
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 issue may be caused by a missing year in one of the citations.
An easy way to identify missing values is to go to https://biblatex-linter.herokuapp.com/ and paste your .bib file. You should get a list of errors. Not all will cause the issue in question -- updating those references with missing years did the trick in my case.
New contributor
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
2 Answers
2
active
oldest
votes
2 Answers
2
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 |
The issue may be caused by a missing year in one of the citations.
An easy way to identify missing values is to go to https://biblatex-linter.herokuapp.com/ and paste your .bib file. You should get a list of errors. Not all will cause the issue in question -- updating those references with missing years did the trick in my case.
New contributor
add a comment |
The issue may be caused by a missing year in one of the citations.
An easy way to identify missing values is to go to https://biblatex-linter.herokuapp.com/ and paste your .bib file. You should get a list of errors. Not all will cause the issue in question -- updating those references with missing years did the trick in my case.
New contributor
add a comment |
The issue may be caused by a missing year in one of the citations.
An easy way to identify missing values is to go to https://biblatex-linter.herokuapp.com/ and paste your .bib file. You should get a list of errors. Not all will cause the issue in question -- updating those references with missing years did the trick in my case.
New contributor
The issue may be caused by a missing year in one of the citations.
An easy way to identify missing values is to go to https://biblatex-linter.herokuapp.com/ and paste your .bib file. You should get a list of errors. Not all will cause the issue in question -- updating those references with missing years did the trick in my case.
New contributor
New contributor
answered 1 min ago
Craig FrayneCraig Frayne
1
1
New contributor
New contributor
add a comment |
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