I'm trying to get 2 biblios in my thesis... I use multibib package and use the same database for the 2 biblios...
1 biblio is used for an extended abstract and then the general biblio at the end of my work.
Here is my code:
Code: Select all
\documentclass[a4paper,titlepage,openany]{book}
%zorgen voor twee bibs(1 voor paper en 1 voor thesis)
\usepackage{multibib}
\newcites{sec}{References}
%Voor paper
\usepackage{multicol}
\usepackage{booktabs}
%algemene vorm thesis
\usepackage[text={13cm,22cm},centering]{geometry}
\renewcommand{\chaptername}{}
\begin{document}
\frontmatter
\maketitle
{\thispagestyle{empty}
\newgeometry{textwidth=18cm,centering}
\input{paper} % INPUT OF extended abstract
\restoregeometry{geometry}
}
\tableofcontents
\mainmatter
\input{Deel2Klimaatkamer}
\input{Bijlagen}
\backmatter
\bibliographystyle{unsrt}
\bibliography{ThesisBib}
\nocite{*}
\end{document}
Code: Select all
\begin{multicols}{2}
% BODY
\bibliographystylesec{unsrt}
\bibliographysec*{ThesisBib}
\nocite{*}
\end{multicols}
Multiple inclusion of entire database... It also just refers to .aux file for the whole bibliography at the end. The .aux file for the small bibliography isn't mentioned nowhere...
Thx in advance,
Hans