I am writing a book document in which I have to put a bibliography, containing all the references cited throughout the text, and a list of publications, that should appear after the bibliography, as an appendix.
The list of publications might contain entries already appearing in the bibliography.
The following MWE describes what I've come up with so far:
\documentclass{book}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\cleardoublepage
\chapter{x}
\lipsum[1-4]
\section{a}
\lipsum[1-4]
\section{b}
\lipsum[1-4]
\cite{goossens}
\section{c}
\lipsum[1-4]
\chapter{y}
\lipsum[1-4]
\section{a}
\lipsum[1-4]
\section{b}
\lipsum[1-4]
\section{c}
\lipsum[1-4]
% references
\makeatletter
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{plain}
\bibliography{bibliotest}
\cleardoublepage
% appendices
\appendix
\addcontentsline{toc}{chapter}{List of Publications}
\renewcommand{\bibname}{List of Publications}
\begin{thebibliography}{1}
\bibitem{goossensdifferent}
Michel Goossens, Frank Mittlebach, and Alexander Samarin.
\newblock {\em The Latex Companion A}.
\newblock Addison-Wesley, Reading, Massachusetts, 1993.
\end{thebibliography}
\cleardoublepage
\chapter{another app}
\end{document}
File bibliotest.bib contains the following:
@book{goossens,
author = "Michel Goossens and Frank Mittlebach and Alexander Samarin",
title = "The Latex Companion A",
year = "1993",
publisher = "Addison-Wesley",
address = "Reading, Massachusetts"
}
The problems are two:
- All links point to the correct destinations, except for the two links in the TOC pointing at both the bibliography and the list of publications.
- Though the correct title appears in the TOC (
List of Publications), the chapter is unnumbered.
Issues using the multibib package
If I load multibib, I solve point number 1 (all links are correct), but:
- the chapter is still unnumbered.
- reference numbering continues after the last reference of the first bibliography.
The code of the MWE looks like this now:
\usepackage{multibib}
\newcites{pub}{List of Publications}
...
\appendix
\phantomsection
\addcontentsline{toc}{chapter}{List of Publications}
\renewcommand{\refname}{List of Publications}
\bibliographystylepub{plain}
\bibliographypub{bibliotest}
\nocitepub{*}


multibib; that's why I didn't mention in the main text at first. Now I have updated the problem description. – Jir Nov 24 '11 at 14:39