I have prepared the following MWE from the answer I found at formatting-back-references-in-bibliography. If the option backref=page is forwarded to hyperref with \hypersetup then the back references do not appear. But passing this option while calling the package works. Why is this?
MWE
\documentclass{article}
\usepackage[numbers]{natbib}
%\usepackage[backref=page]{hyperref}
\usepackage{hyperref}
\hypersetup{
backref=page
}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
\end{filecontents}
\begin{document}
Some text \citep{A01,B02}.
\clearpage
Some more text \citep{A01}.
\bibliographystyle{plainnat}
\bibliography{\jobname}
\end{document}
natbib? Are there any known issues? – devendra Dec 29 '12 at 11:30natbibsupport. Only time will tell what issues remain... – cyberSingularity Dec 29 '12 at 12:23\usepackage[backref = page]{hyperref}instead of passing the option to the\hypersetup{...}, even if it is the first thing that follows. An alternative is to explicitly load\usepackage[hyperpageref]{backref}. – Klaidonis Feb 24 '21 at 14:39