Text Formatting ⇒ multibib Problems in CV
multibib Problems in CV
- Attachments
-
- gilbert_presentations.bib
- Presentations BiBTeX file
- (1.38 KiB) Downloaded 436 times
-
- gilbert_publications.bib
- Publications BiBTeX file
- (4.87 KiB) Downloaded 407 times
-
- cv_long_publications.tex
- LaTeX file
- (2.23 KiB) Downloaded 441 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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}