Using pdftex i can cross ref to a label say \ref{label1} for example. Clickin on it in the .pdf document you 'll be linked to the label. I'd like there to be a "back reference link" to the point that called \ref{label1}. Is this possible without adding another label to that point?
Thank you.
Asked
Active
Viewed 42 times
0
\documentclass{...}and ending with\end{document}. – Dec 28 '14 at 20:53\begin{document} \section{example1} This is a link to \ref{sec:label2}
\section{example2} THis is section 2. \label{sec:label2} In the pdf document when somebody clicks on ref link being in section 1 comes here. I'd like here to be a link back to that ref point.
\end{document}
– Sot Mathematician Dec 28 '14 at 20:55\ref{label1}twice in your document? Where would the link point? Better using the “Go back” feature of your PDF viewer. – egreg Dec 28 '14 at 21:03\hypertarget... and\hyperlink, but the ambiguity remains, as egreg already stated – Dec 28 '14 at 21:04