I am searching the web for solutions and tried them, but I still cannot manage to build multiple bibliographies. Here is what I did:
My main file is as follows:
Code: Select all
\documentclass[12pt]{article}
\usepackage{natbib}
\usepackage{multibib}
\newcites{bk}{Special books}
\title{Test}
\author{a.b.c. ddddd}
\date{\today}
\begin{document}
\maketitle
\section{Introduction}
this is my first ref.\cite{book1}
and this is my second.\citebk{book2}
\bibliographystylebk{plain}
\bibliographybk{ref}
\renewcommand{\bibname}{Normal books}
\bibliographystyle{plain}
\bibliography{ref}
\end{document}
Code: Select all
@Book{book1,
author = {a. bbb},
title = {title1},
year = {1986},
}
@Book{book2,
author = {b. aaa},
title = {title2},
year = {2009},
}
Unfortunately, my output gives only one bibliography. (I attached an example of my output as pdf)
Please, can somebody be my hero by telling me what to do?
Thank you!