I am using multibbl package to create separated bibliographies for my CV (e.g., to separate journal and conference publications). It works really well, however it resets the bibliography item numbers for each bibliography.
For example, if I use:
\newbibliography{journal}
\bibliographystyle{journal}{../bib/plainyr-rev}
\nocite{journal}{*}
\bibliography{journal}{../bib/journal}{\large \textsc{Refereed Journal Articles}}
and use
\newbibliography{conference}
\bibliographystyle{journal}{../bib/plainyr-rev}
\nocite{conference}{*}
\bibliography{conference}{../bib/conference}{\large \textsc{Refereed Conference Publications}}
then I get an output similar to the following:
Refereed Journal Articles
[1] Author name. Title. Some Journal, 2013.
Refereed Conference Publications
[1] Author name. Title. In Some conference, address, 2013.
Instead what I really want (wish) is that the numbering resumes from where it left, something along the lines...
Refereed Journal Articles
[1] Author name. Title. Some Journal, 2013.
Refereed Conference Publications
[2] Author name. Title. In Some conference, address, 2013.
Is this possible? Thanks,
Edit: Working example
Content for example.tex
\documentclass[12pt]{article}
\usepackage{multibbl}
\begin{document}
\newbibliography{journal}
\bibliographystyle{journal}{plain}
\nocite{journal}{*}
\bibliography{journal}{journal}
{\large \textsc{Refereed Journal Articles}}
\newbibliography{conference}
\nocite{conference}{*}
\bibliographystyle{conference}{plain}
\bibliography{conference}{conference}
{\large \textsc{Refereed Conference Publications}}
\end{document}
content for journal.bib
@article{entry2,
author = {Author name},
journal = {Some Journal},
title = {Title},
year = {2013},
}
content for conference.bib
@inproceedings{entry1,
author = {Author name},
address = {address},
booktitle = {Some conference},
title = {Title},
year = {2013},
}
Just invoke:
pdflatex.exe example.tex
bibtex.exe conference
bibtex.exe journal
pdflatex.exe example.tex
to get the undesired output :)
\usepackage[resetlabels]{multibib}? If so, get rid ofresetlabels. Also, welcome to TeX.SX! – Adam Liter Feb 17 '14 at 03:11\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}) will mean that you get better help quicker on this site. – Adam Liter Feb 17 '14 at 03:12multibib, notmultibbl. The default behavior inmultibibis continuous numbering. I'm not familiar withmultibbl, so someone else will have to help. – Adam Liter Feb 17 '14 at 03:18Also, updated the example with MWE.
– kivancmuslu Feb 17 '14 at 03:41multibib. Perhaps someone will also provide an answer that usesmultibbl. In any event, I imagine that having both answers to the question might be helpful to future visitors on this site. – Adam Liter Feb 17 '14 at 05:55