BibTeX, biblatex and biber\usepackage{multibib}, \newcites

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
akinwummy999
Posts: 1
Joined: Sun May 12, 2013 8:34 am

\usepackage{multibib}, \newcites

Post by akinwummy999 »

I am trying to create a publication list with bibliogaphy package.
I want two separate bibliography sections in the list; for example, Peer reviewed article, Thesis/Dissertation.

I created two bib file akincv.bib and akincv2.bib and then I used

Code: Select all

\documentclass[a4paper, 12pt]{article}
\usepackage{multibib}
\newcites{nu}{Peer reviewed article(s)}
in the preamble and

Code: Select all

\nocite{*}
\renewcommand{\refname}{Thesis/Dissertation}
\bibliographystyle{plain}
\bibliography{akincv}

\nocitenu{*}
\bibliographystylenu{plain}
\bibliographynu{akincv2}
However, I could only see one section in the output. And it doesn't give any error, what could be the problem? Or any other better way to do it.
Last edited by cgnieder on Sun May 12, 2013 11:15 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Xire
Posts: 4
Joined: Tue May 21, 2013 12:20 am

\usepackage{multibib}, \newcites

Post by Xire »

It is not the good to use multibib. If you want two sections do something like this :

Code: Select all

\documentclass[a4paper, 12pt]{article}
\usepackage{multibib}
\newcites{nu}{Peer reviewed article(s)}
\newcites{th}{Thesis/Dissertation}

\nociteth{*}
\bibliographystyleth{plain}
\bibliographyth{akincv}

\nocitenu{*}
\bibliographystylenu{plain}
\bibliographynu{akincv2}
Now you can see your two parts in the bibliography.
Post Reply