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

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

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