I want to be able to add a clickable link to prenote/postnotes that sends me to the same place as the actual in text citation. I'm using biblatex with natbib.
\documentclass[12pt, a4paper]{article}
\usepackage[colorlinks]{hyperref}
\usepackage[backend=biber, style=ieee, natbib=true]{biblatex}
\addbibresource{bibliography.bib}
\begin{document}
I'm trying to hyperlink the prenote of the following cite~\cite[Table 20]{einstein}.
\printbibliography
\end{document}
Is it possible to add 'Table 20' to the same link as the cite link (make 'Table 20' green with the same cite link as '1')? Thanks in advance.


\cite[Table 20]{einstein,ash}is allowed input. So what should biblatex do there? – Ulrike Fischer Dec 04 '20 at 13:38