Here is some latex which sets up a hyperlink/hypertarget pair so that I can quickly navigate a large document:
\documentclass{article}
\usepackage{hyperref}
\begin{document}
\section{I am a section}
I am some content with a hyperlink to some other \hyperlink{new_link}{content}
\section{another section}
More content
\section{Another section}
Here is some content that I want to link to \hypertarget{new_link}{content}
\end{document}
This code correctly configures a hyperlink to go from the content in section 1 to the content 3. How do I configure latex to make this link two way, i.e. when I click content in section 1 I go to content in section 3 and when I click on the content in section 3 I am taken to the content in section 1.
Here is the output for the code above:
