Text Formatting ⇒ multibib Problems in CV
multibib Problems in CV
- Attachments
-
- gilbert_presentations.bib
- Presentations BiBTeX file
- (1.38 KiB) Downloaded 441 times
-
- gilbert_publications.bib
- Publications BiBTeX file
- (4.87 KiB) Downloaded 411 times
-
- cv_long_publications.tex
- LaTeX file
- (2.23 KiB) Downloaded 445 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
multibib Problems in CV
You have to add the
pubs
for the other commands as well.
Code: Select all
\nocitepubs{*}
\bibliographystylepubs{plainyrrev}
\bibliographypubs{gilbert_publications}
A modern approach to this is using biblatex with biber, a replacement for packages like natbib, multibib and other packages that try to do bib stuff. Biblatex bundles all this into one robust package. biber as the successor of bibtex was developed to overcome some of the difficulties with bibtex.
Code: Select all
\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\addbibresource{gilbert_publications.bib}
\addbibresource{gilbert_presentations.bib}
\defbibheading{bibliography}{}
\begin{document}
\section{Peer-reviewed Publications}
\printbibliography[type=article]
\section{Peer-reviewed Posters, Presentations, and Workshops}
\printbibliography[type=booklet]
\nocite{*}
\end{document}