Text Formattingmultibib Problems in CV

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
gilbertge
Posts: 4
Joined: Thu Aug 27, 2015 6:03 am

multibib Problems in CV

Post by gilbertge »

I am trying to create a CV with my publications and Presentations. I am using two separate BibTeX bibliographies. The second bibliography is created, but not the first. I am using TeXShop 3.52 on MacOS 10.10.4 .I am compiling using the following procedure: 1) LaTeX filename, 2) BibTeX filename, 3) I open the .aux file created during compilation and "BibTeX" the file, 4) LaTeX filename and 5) LaTeX file name. I have Googled the problem and have had no success implementing example code or finding a solution. Any help would be appreciated. TIA.
Attachments
gilbert_presentations.bib
Presentations BiBTeX file
(1.38 KiB) Downloaded 427 times
gilbert_publications.bib
Publications BiBTeX file
(4.87 KiB) Downloaded 396 times
cv_long_publications.tex
LaTeX file
(2.23 KiB) Downloaded 427 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

multibib Problems in CV

Post by Johannes_B »

Welcome to the forum,

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}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply