I have two separated bibliographies (for print and online references) organized by multibib. Additionally I want to have both of them mentioned in my table of contents, but somehow the page numbering there is wrong. Hope someone can give me a little advice how to solve that.
Best regards,
Martin
Code: Select all
% -*- mode: latex; coding: utf-8 -*-
\begin{filecontents}{int.bib}
@misc{Mayer.2008,
author = {Mayer, Marissa},
year = {2008},
title = {Keynote...},
}
\end{filecontents}
\begin{filecontents}{lit.bib}
@incollection{Connet.2004,
author = {Connet, Brian},
title = {The Integrated Marketing Communication Mix},
year = {2004},
}
\end{filecontents}
\documentclass[a4paper,12pt,twoside,openright,numbers=noenddot]{scrreprt}
\usepackage{natbib}
\usepackage{multibib}
\newcites{lit}{Printmedien}
\newcites{int}{Online-Quellen}
\begin{document}
\tableofcontents
\chapter{Einleitung}
balbalbalbalba \citelit{Connet.2004}
asdfasdfasdfasdsf \citeint{Mayer.2008}
\chapter{Literaturverzeichnis}
\addcontentsline{toc}{section}{Printmedien}
\bibliographystylelit{dcu_url}
\bibliographylit{lit}
\addcontentsline{toc}{section}{Online-Quellen}
\bibliographystyleint{dcu_url}
\bibliographyint{int}
\end{document}