I'm using biblatex together with titlesec (yes, I know that they don't work well together ...). When I include the titlesec-package the hyperref bookmarks link to the wrong page.
Consider the following MWE:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book {A,
author = {Doe, John},
title = {A title},
date = {2014},
location = {A},
}
\end{filecontents}
\usepackage[
style=authortitle,
backend=biber,
]{biblatex}
\usepackage[
bookmarks,
bookmarksopen,
]{hyperref}
\addbibresource{\jobname.bib}
%\usepackage{titlesec} % uncomment to see the undesired behaviour
\begin{document}
\pagenumbering{Roman}
\tableofcontents
\newpage
\printbibliography[
heading=bibintoc,
]
\newpage
\pagenumbering{arabic}
\section{My Section}
\cite{A}
\end{document}
Any help is greatly appreciated.
hyperrefinstead of before? – Werner Sep 03 '14 at 18:16