Two slides with references in beamer with BibTeX
up vote
1
down vote
favorite
I'm preparing a beamer
for a talk and I would like to include some bibliography at the end.
My idea was to include two different slides, one with the basic bibliography and other with extra references.
I haven't had no idea of how I could do it, but I found this question that also cites these posts.
The question suggests to use multibib
package. And that is what I have done. However, I can't achieve the desired result. The problem is that the first part doesn't produce any reference.
Here is my mwe.tex
documentclass{beamer}
usetheme{Madrid}
useoutertheme{infolines}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{textcomp}
usepackage{ae,aecompl,aeguill}
usepackage{lipsum}
usepackage{ragged2e} % For justifying text
usepackage[numbers]{natbib}
usepackage{multibib}
newcites{dk}{bibliography}
begin{document}
begin{frame}
lipsum[1]
end{frame}
begin{frame}
frametitle{Selected bibliography}
bibliographystyledk{plain}
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
end{frame}
begin{frame}
frametitle{Other bibliography}
bibliographystyle{plain}
bibliography{bibliography}
nocite{Gualtieri:thesis}
end{frame}
end{document}
I include my bibliography.bib
file too:
@article {Courant:dirac_manifolds,
AUTHOR = {Courant, Theodore James},
TITLE = {Dirac manifolds},
JOURNAL = {Trans. Amer. Math. Soc.},
FJOURNAL = {Transactions of the American Mathematical Society},
VOLUME = {319},
YEAR = {1990},
NUMBER = {2},
PAGES = {631--661},
ISSN = {0002-9947},
MRCLASS = {58F05 (53C57)},
MRNUMBER = {998124},
MRREVIEWER = {Patrick Iglesias},
DOI = {10.2307/2001258},
URL = {https://doi.org/10.2307/2001258},
}
@article {Gualtieri:thesis,
AUTHOR = {Gualtieri, Marco},
TITLE = {Generalized complex geometry},
JOURNAL = {Ann. of Math. (2)},
FJOURNAL = {Annals of Mathematics. Second Series},
VOLUME = {174},
YEAR = {2011},
NUMBER = {1},
PAGES = {75--123},
ISSN = {0003-486X},
MRCLASS = {53D18},
MRNUMBER = {2811595},
MRREVIEWER = {Frederik Witt},
DOI = {10.4007/annals.2011.174.1.3},
URL = {https://doi.org/10.4007/annals.2011.174.1.3},
}
Thanks in advance.
PD. I guess the problem may be in the nocite
command for the first bibliography but I don't know how to solve it.
beamer bibtex natbib multibib
add a comment |
up vote
1
down vote
favorite
I'm preparing a beamer
for a talk and I would like to include some bibliography at the end.
My idea was to include two different slides, one with the basic bibliography and other with extra references.
I haven't had no idea of how I could do it, but I found this question that also cites these posts.
The question suggests to use multibib
package. And that is what I have done. However, I can't achieve the desired result. The problem is that the first part doesn't produce any reference.
Here is my mwe.tex
documentclass{beamer}
usetheme{Madrid}
useoutertheme{infolines}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{textcomp}
usepackage{ae,aecompl,aeguill}
usepackage{lipsum}
usepackage{ragged2e} % For justifying text
usepackage[numbers]{natbib}
usepackage{multibib}
newcites{dk}{bibliography}
begin{document}
begin{frame}
lipsum[1]
end{frame}
begin{frame}
frametitle{Selected bibliography}
bibliographystyledk{plain}
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
end{frame}
begin{frame}
frametitle{Other bibliography}
bibliographystyle{plain}
bibliography{bibliography}
nocite{Gualtieri:thesis}
end{frame}
end{document}
I include my bibliography.bib
file too:
@article {Courant:dirac_manifolds,
AUTHOR = {Courant, Theodore James},
TITLE = {Dirac manifolds},
JOURNAL = {Trans. Amer. Math. Soc.},
FJOURNAL = {Transactions of the American Mathematical Society},
VOLUME = {319},
YEAR = {1990},
NUMBER = {2},
PAGES = {631--661},
ISSN = {0002-9947},
MRCLASS = {58F05 (53C57)},
MRNUMBER = {998124},
MRREVIEWER = {Patrick Iglesias},
DOI = {10.2307/2001258},
URL = {https://doi.org/10.2307/2001258},
}
@article {Gualtieri:thesis,
AUTHOR = {Gualtieri, Marco},
TITLE = {Generalized complex geometry},
JOURNAL = {Ann. of Math. (2)},
FJOURNAL = {Annals of Mathematics. Second Series},
VOLUME = {174},
YEAR = {2011},
NUMBER = {1},
PAGES = {75--123},
ISSN = {0003-486X},
MRCLASS = {53D18},
MRNUMBER = {2811595},
MRREVIEWER = {Frederik Witt},
DOI = {10.4007/annals.2011.174.1.3},
URL = {https://doi.org/10.4007/annals.2011.174.1.3},
}
Thanks in advance.
PD. I guess the problem may be in the nocite
command for the first bibliography but I don't know how to solve it.
beamer bibtex natbib multibib
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I'm preparing a beamer
for a talk and I would like to include some bibliography at the end.
My idea was to include two different slides, one with the basic bibliography and other with extra references.
I haven't had no idea of how I could do it, but I found this question that also cites these posts.
The question suggests to use multibib
package. And that is what I have done. However, I can't achieve the desired result. The problem is that the first part doesn't produce any reference.
Here is my mwe.tex
documentclass{beamer}
usetheme{Madrid}
useoutertheme{infolines}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{textcomp}
usepackage{ae,aecompl,aeguill}
usepackage{lipsum}
usepackage{ragged2e} % For justifying text
usepackage[numbers]{natbib}
usepackage{multibib}
newcites{dk}{bibliography}
begin{document}
begin{frame}
lipsum[1]
end{frame}
begin{frame}
frametitle{Selected bibliography}
bibliographystyledk{plain}
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
end{frame}
begin{frame}
frametitle{Other bibliography}
bibliographystyle{plain}
bibliography{bibliography}
nocite{Gualtieri:thesis}
end{frame}
end{document}
I include my bibliography.bib
file too:
@article {Courant:dirac_manifolds,
AUTHOR = {Courant, Theodore James},
TITLE = {Dirac manifolds},
JOURNAL = {Trans. Amer. Math. Soc.},
FJOURNAL = {Transactions of the American Mathematical Society},
VOLUME = {319},
YEAR = {1990},
NUMBER = {2},
PAGES = {631--661},
ISSN = {0002-9947},
MRCLASS = {58F05 (53C57)},
MRNUMBER = {998124},
MRREVIEWER = {Patrick Iglesias},
DOI = {10.2307/2001258},
URL = {https://doi.org/10.2307/2001258},
}
@article {Gualtieri:thesis,
AUTHOR = {Gualtieri, Marco},
TITLE = {Generalized complex geometry},
JOURNAL = {Ann. of Math. (2)},
FJOURNAL = {Annals of Mathematics. Second Series},
VOLUME = {174},
YEAR = {2011},
NUMBER = {1},
PAGES = {75--123},
ISSN = {0003-486X},
MRCLASS = {53D18},
MRNUMBER = {2811595},
MRREVIEWER = {Frederik Witt},
DOI = {10.4007/annals.2011.174.1.3},
URL = {https://doi.org/10.4007/annals.2011.174.1.3},
}
Thanks in advance.
PD. I guess the problem may be in the nocite
command for the first bibliography but I don't know how to solve it.
beamer bibtex natbib multibib
I'm preparing a beamer
for a talk and I would like to include some bibliography at the end.
My idea was to include two different slides, one with the basic bibliography and other with extra references.
I haven't had no idea of how I could do it, but I found this question that also cites these posts.
The question suggests to use multibib
package. And that is what I have done. However, I can't achieve the desired result. The problem is that the first part doesn't produce any reference.
Here is my mwe.tex
documentclass{beamer}
usetheme{Madrid}
useoutertheme{infolines}
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{textcomp}
usepackage{ae,aecompl,aeguill}
usepackage{lipsum}
usepackage{ragged2e} % For justifying text
usepackage[numbers]{natbib}
usepackage{multibib}
newcites{dk}{bibliography}
begin{document}
begin{frame}
lipsum[1]
end{frame}
begin{frame}
frametitle{Selected bibliography}
bibliographystyledk{plain}
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
end{frame}
begin{frame}
frametitle{Other bibliography}
bibliographystyle{plain}
bibliography{bibliography}
nocite{Gualtieri:thesis}
end{frame}
end{document}
I include my bibliography.bib
file too:
@article {Courant:dirac_manifolds,
AUTHOR = {Courant, Theodore James},
TITLE = {Dirac manifolds},
JOURNAL = {Trans. Amer. Math. Soc.},
FJOURNAL = {Transactions of the American Mathematical Society},
VOLUME = {319},
YEAR = {1990},
NUMBER = {2},
PAGES = {631--661},
ISSN = {0002-9947},
MRCLASS = {58F05 (53C57)},
MRNUMBER = {998124},
MRREVIEWER = {Patrick Iglesias},
DOI = {10.2307/2001258},
URL = {https://doi.org/10.2307/2001258},
}
@article {Gualtieri:thesis,
AUTHOR = {Gualtieri, Marco},
TITLE = {Generalized complex geometry},
JOURNAL = {Ann. of Math. (2)},
FJOURNAL = {Annals of Mathematics. Second Series},
VOLUME = {174},
YEAR = {2011},
NUMBER = {1},
PAGES = {75--123},
ISSN = {0003-486X},
MRCLASS = {53D18},
MRNUMBER = {2811595},
MRREVIEWER = {Frederik Witt},
DOI = {10.4007/annals.2011.174.1.3},
URL = {https://doi.org/10.4007/annals.2011.174.1.3},
}
Thanks in advance.
PD. I guess the problem may be in the nocite
command for the first bibliography but I don't know how to solve it.
beamer bibtex natbib multibib
beamer bibtex natbib multibib
edited Dec 3 at 20:00
Kurt
34.6k846157
34.6k846157
asked Dec 3 at 19:21
Dog_69
444114
444114
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Please see that the packages in usepackage{ae,aecompl,aeguill}
are outdated. Please do not use them!
After compiling your given code with
pdflatex mwe.tex
you have with multibib
to run in your case two times bibtex
:
bibtex mwe.aux
bibtex dk.aux
because the code
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
creates a second bib file dk.bib
you need to run with bibtex ...
Run
pdflatex mwe.tex
twice and see the following resulting bibliographies:
and
Because I did not change your code I omitted to include it here ...
Thanks. it would never have occurred to me to do that. By the way, is there an alternative forusepackage{ae,aecompl,aeguill}
?
– Dog_69
Dec 3 at 20:08
@Dog_69 please have a look on ctan: ctan.org/pkg/ae Then you will see that with for examplelmodern
you need not to use this outdated packages today ...
– Kurt
Dec 3 at 20:16
Perfect. Thanks again.
– Dog_69
Dec 3 at 20:22
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Please see that the packages in usepackage{ae,aecompl,aeguill}
are outdated. Please do not use them!
After compiling your given code with
pdflatex mwe.tex
you have with multibib
to run in your case two times bibtex
:
bibtex mwe.aux
bibtex dk.aux
because the code
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
creates a second bib file dk.bib
you need to run with bibtex ...
Run
pdflatex mwe.tex
twice and see the following resulting bibliographies:
and
Because I did not change your code I omitted to include it here ...
Thanks. it would never have occurred to me to do that. By the way, is there an alternative forusepackage{ae,aecompl,aeguill}
?
– Dog_69
Dec 3 at 20:08
@Dog_69 please have a look on ctan: ctan.org/pkg/ae Then you will see that with for examplelmodern
you need not to use this outdated packages today ...
– Kurt
Dec 3 at 20:16
Perfect. Thanks again.
– Dog_69
Dec 3 at 20:22
add a comment |
up vote
2
down vote
accepted
Please see that the packages in usepackage{ae,aecompl,aeguill}
are outdated. Please do not use them!
After compiling your given code with
pdflatex mwe.tex
you have with multibib
to run in your case two times bibtex
:
bibtex mwe.aux
bibtex dk.aux
because the code
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
creates a second bib file dk.bib
you need to run with bibtex ...
Run
pdflatex mwe.tex
twice and see the following resulting bibliographies:
and
Because I did not change your code I omitted to include it here ...
Thanks. it would never have occurred to me to do that. By the way, is there an alternative forusepackage{ae,aecompl,aeguill}
?
– Dog_69
Dec 3 at 20:08
@Dog_69 please have a look on ctan: ctan.org/pkg/ae Then you will see that with for examplelmodern
you need not to use this outdated packages today ...
– Kurt
Dec 3 at 20:16
Perfect. Thanks again.
– Dog_69
Dec 3 at 20:22
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Please see that the packages in usepackage{ae,aecompl,aeguill}
are outdated. Please do not use them!
After compiling your given code with
pdflatex mwe.tex
you have with multibib
to run in your case two times bibtex
:
bibtex mwe.aux
bibtex dk.aux
because the code
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
creates a second bib file dk.bib
you need to run with bibtex ...
Run
pdflatex mwe.tex
twice and see the following resulting bibliographies:
and
Because I did not change your code I omitted to include it here ...
Please see that the packages in usepackage{ae,aecompl,aeguill}
are outdated. Please do not use them!
After compiling your given code with
pdflatex mwe.tex
you have with multibib
to run in your case two times bibtex
:
bibtex mwe.aux
bibtex dk.aux
because the code
bibliographydk{bibliography}
nocitedk{Courant:dirac_manifolds}
creates a second bib file dk.bib
you need to run with bibtex ...
Run
pdflatex mwe.tex
twice and see the following resulting bibliographies:
and
Because I did not change your code I omitted to include it here ...
answered Dec 3 at 19:53
Kurt
34.6k846157
34.6k846157
Thanks. it would never have occurred to me to do that. By the way, is there an alternative forusepackage{ae,aecompl,aeguill}
?
– Dog_69
Dec 3 at 20:08
@Dog_69 please have a look on ctan: ctan.org/pkg/ae Then you will see that with for examplelmodern
you need not to use this outdated packages today ...
– Kurt
Dec 3 at 20:16
Perfect. Thanks again.
– Dog_69
Dec 3 at 20:22
add a comment |
Thanks. it would never have occurred to me to do that. By the way, is there an alternative forusepackage{ae,aecompl,aeguill}
?
– Dog_69
Dec 3 at 20:08
@Dog_69 please have a look on ctan: ctan.org/pkg/ae Then you will see that with for examplelmodern
you need not to use this outdated packages today ...
– Kurt
Dec 3 at 20:16
Perfect. Thanks again.
– Dog_69
Dec 3 at 20:22
Thanks. it would never have occurred to me to do that. By the way, is there an alternative for
usepackage{ae,aecompl,aeguill}
?– Dog_69
Dec 3 at 20:08
Thanks. it would never have occurred to me to do that. By the way, is there an alternative for
usepackage{ae,aecompl,aeguill}
?– Dog_69
Dec 3 at 20:08
@Dog_69 please have a look on ctan: ctan.org/pkg/ae Then you will see that with for example
lmodern
you need not to use this outdated packages today ...– Kurt
Dec 3 at 20:16
@Dog_69 please have a look on ctan: ctan.org/pkg/ae Then you will see that with for example
lmodern
you need not to use this outdated packages today ...– Kurt
Dec 3 at 20:16
Perfect. Thanks again.
– Dog_69
Dec 3 at 20:22
Perfect. Thanks again.
– Dog_69
Dec 3 at 20:22
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f463023%2ftwo-slides-with-references-in-beamer-with-bibtex%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