Including multiple bibliographies with the same entries
I would like to include multiple bibliographies in the same document. However, there is an overlap in the entries, that means in bibliography 1 I have partially the same entries as in bibliography 2. Tex seems to mix up the order in this case.
I pre-compile each chapter and copy the content of the .bbl file where the library goes.
A MWE:
documentclass[twoside,onecolumn,11pt,a4paper]{book}
begin{document}
chapter{1}
Text with citationcite{item1,item2}.
begin{thebibliography}{10}
bibitem{item1}
J. Doe, {em title}, Journal (2020).
bibitem{item2}
M. Mouse, {em title2}, Journal2 (2020).
end{thebibliography}
chapter{2}
Text has citations also from chapter 1, but in a different ordercite{item2,item1}.
begin{thebibliography}{10}
bibitem{item2}
M. Mouse, {em title2}, Journal2 (2020).
bibitem{item1}
J. Doe, {em title}, Journal (2020).
end{thebibliography}
end{document}
Compiling (pdflatex) yields
Chapter 1
1
Text with citation[2, 1].
Chapter 2
2
Text has citations also from chapter 1, but in a dierent order[1, 2].
I would like to have in chapter 1: Text with citation[1, 2].
bibtex
add a comment |
I would like to include multiple bibliographies in the same document. However, there is an overlap in the entries, that means in bibliography 1 I have partially the same entries as in bibliography 2. Tex seems to mix up the order in this case.
I pre-compile each chapter and copy the content of the .bbl file where the library goes.
A MWE:
documentclass[twoside,onecolumn,11pt,a4paper]{book}
begin{document}
chapter{1}
Text with citationcite{item1,item2}.
begin{thebibliography}{10}
bibitem{item1}
J. Doe, {em title}, Journal (2020).
bibitem{item2}
M. Mouse, {em title2}, Journal2 (2020).
end{thebibliography}
chapter{2}
Text has citations also from chapter 1, but in a different ordercite{item2,item1}.
begin{thebibliography}{10}
bibitem{item2}
M. Mouse, {em title2}, Journal2 (2020).
bibitem{item1}
J. Doe, {em title}, Journal (2020).
end{thebibliography}
end{document}
Compiling (pdflatex) yields
Chapter 1
1
Text with citation[2, 1].
Chapter 2
2
Text has citations also from chapter 1, but in a dierent order[1, 2].
I would like to have in chapter 1: Text with citation[1, 2].
bibtex
There is themultibib
package for that.
– marmot
Feb 9 at 23:02
You mean something likeusepackage[resetlabels]{multibib}
? Unfortunately that does not do anything. Do you know if I have to include the bibliographies using abibliographry{}
command and then calling bibtex on each for multilib to work properly? Or can it be used with the library defined as above?
– PhysX
Feb 9 at 23:27
This package allows you to have multiple bibliographies, each of which you need to process/generate with bibtex. You can then have commands likeciteone
and so on that refer to an entry of the respective bibliography. I guess it will be best if you look for examples on this site, I may completely misunderstand the question.
– marmot
Feb 9 at 23:34
add a comment |
I would like to include multiple bibliographies in the same document. However, there is an overlap in the entries, that means in bibliography 1 I have partially the same entries as in bibliography 2. Tex seems to mix up the order in this case.
I pre-compile each chapter and copy the content of the .bbl file where the library goes.
A MWE:
documentclass[twoside,onecolumn,11pt,a4paper]{book}
begin{document}
chapter{1}
Text with citationcite{item1,item2}.
begin{thebibliography}{10}
bibitem{item1}
J. Doe, {em title}, Journal (2020).
bibitem{item2}
M. Mouse, {em title2}, Journal2 (2020).
end{thebibliography}
chapter{2}
Text has citations also from chapter 1, but in a different ordercite{item2,item1}.
begin{thebibliography}{10}
bibitem{item2}
M. Mouse, {em title2}, Journal2 (2020).
bibitem{item1}
J. Doe, {em title}, Journal (2020).
end{thebibliography}
end{document}
Compiling (pdflatex) yields
Chapter 1
1
Text with citation[2, 1].
Chapter 2
2
Text has citations also from chapter 1, but in a dierent order[1, 2].
I would like to have in chapter 1: Text with citation[1, 2].
bibtex
I would like to include multiple bibliographies in the same document. However, there is an overlap in the entries, that means in bibliography 1 I have partially the same entries as in bibliography 2. Tex seems to mix up the order in this case.
I pre-compile each chapter and copy the content of the .bbl file where the library goes.
A MWE:
documentclass[twoside,onecolumn,11pt,a4paper]{book}
begin{document}
chapter{1}
Text with citationcite{item1,item2}.
begin{thebibliography}{10}
bibitem{item1}
J. Doe, {em title}, Journal (2020).
bibitem{item2}
M. Mouse, {em title2}, Journal2 (2020).
end{thebibliography}
chapter{2}
Text has citations also from chapter 1, but in a different ordercite{item2,item1}.
begin{thebibliography}{10}
bibitem{item2}
M. Mouse, {em title2}, Journal2 (2020).
bibitem{item1}
J. Doe, {em title}, Journal (2020).
end{thebibliography}
end{document}
Compiling (pdflatex) yields
Chapter 1
1
Text with citation[2, 1].
Chapter 2
2
Text has citations also from chapter 1, but in a dierent order[1, 2].
I would like to have in chapter 1: Text with citation[1, 2].
bibtex
bibtex
asked Feb 9 at 22:52
PhysXPhysX
263
263
There is themultibib
package for that.
– marmot
Feb 9 at 23:02
You mean something likeusepackage[resetlabels]{multibib}
? Unfortunately that does not do anything. Do you know if I have to include the bibliographies using abibliographry{}
command and then calling bibtex on each for multilib to work properly? Or can it be used with the library defined as above?
– PhysX
Feb 9 at 23:27
This package allows you to have multiple bibliographies, each of which you need to process/generate with bibtex. You can then have commands likeciteone
and so on that refer to an entry of the respective bibliography. I guess it will be best if you look for examples on this site, I may completely misunderstand the question.
– marmot
Feb 9 at 23:34
add a comment |
There is themultibib
package for that.
– marmot
Feb 9 at 23:02
You mean something likeusepackage[resetlabels]{multibib}
? Unfortunately that does not do anything. Do you know if I have to include the bibliographies using abibliographry{}
command and then calling bibtex on each for multilib to work properly? Or can it be used with the library defined as above?
– PhysX
Feb 9 at 23:27
This package allows you to have multiple bibliographies, each of which you need to process/generate with bibtex. You can then have commands likeciteone
and so on that refer to an entry of the respective bibliography. I guess it will be best if you look for examples on this site, I may completely misunderstand the question.
– marmot
Feb 9 at 23:34
There is the
multibib
package for that.– marmot
Feb 9 at 23:02
There is the
multibib
package for that.– marmot
Feb 9 at 23:02
You mean something like
usepackage[resetlabels]{multibib}
? Unfortunately that does not do anything. Do you know if I have to include the bibliographies using a bibliographry{}
command and then calling bibtex on each for multilib to work properly? Or can it be used with the library defined as above?– PhysX
Feb 9 at 23:27
You mean something like
usepackage[resetlabels]{multibib}
? Unfortunately that does not do anything. Do you know if I have to include the bibliographies using a bibliographry{}
command and then calling bibtex on each for multilib to work properly? Or can it be used with the library defined as above?– PhysX
Feb 9 at 23:27
This package allows you to have multiple bibliographies, each of which you need to process/generate with bibtex. You can then have commands like
citeone
and so on that refer to an entry of the respective bibliography. I guess it will be best if you look for examples on this site, I may completely misunderstand the question.– marmot
Feb 9 at 23:34
This package allows you to have multiple bibliographies, each of which you need to process/generate with bibtex. You can then have commands like
citeone
and so on that refer to an entry of the respective bibliography. I guess it will be best if you look for examples on this site, I may completely misunderstand the question.– marmot
Feb 9 at 23:34
add a comment |
0
active
oldest
votes
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%2f474121%2fincluding-multiple-bibliographies-with-the-same-entries%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f474121%2fincluding-multiple-bibliographies-with-the-same-entries%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
There is the
multibib
package for that.– marmot
Feb 9 at 23:02
You mean something like
usepackage[resetlabels]{multibib}
? Unfortunately that does not do anything. Do you know if I have to include the bibliographies using abibliographry{}
command and then calling bibtex on each for multilib to work properly? Or can it be used with the library defined as above?– PhysX
Feb 9 at 23:27
This package allows you to have multiple bibliographies, each of which you need to process/generate with bibtex. You can then have commands like
citeone
and so on that refer to an entry of the respective bibliography. I guess it will be best if you look for examples on this site, I may completely misunderstand the question.– marmot
Feb 9 at 23:34