I will try to describe my question as clear as possible. First a working example.
\documentclass[french,11pt]{article}
\usepackage[french]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{kpfonts}
\usepackage{geometry}
\geometry{ a4paper, total={170mm,257mm}, left=20mm, top=20mm}
\usepackage{blindtext}
\setlength{\parskip}{1.2ex} \setlength{\parindent}{0em} \clubpenalty = 10000 \widowpenalty = 10000
\usepackage{graphicx,bm,url, amsfonts, latexsym, verbatim, xspace, setspace,mathrsfs,marvosym,wasysym,amsmath, amssymb}
\usepackage{caption}
\usepackage[caption=false]{subfig}
\usepackage{epstopdf}
\usepackage[colorlinks=true, linkcolor=red, urlcolor=blue, pdftitle={article}, pdfauthor={DSA}]{hyperref}
\usepackage{authblk}
\begin{document}
\title{BlaBlaBla} \author[,1]{Dimitrios\thanks{\texttt{\url{dimitrios.@X.fr}}}} %
\date{}
\clearpage\maketitle \thispagestyle{empty}
\begin{itemize}
\item \blindtext
See reference \ref{foo3}.
\item \blindtext
See reference \ref{foo1}.
\item \blindtext
See reference \ref{foo2}.
\end{itemize}
\newpage
\blindtext
\begin{enumerate}
\item\label{foo1} \textbf{The foo1 reference}
\item\label{foo2} \blindtext
\textbf{The foo2 reference}
\item\label{foo3} \textbf{The foo3 reference}.
\end{enumerate}
\end{document}
When I click to the link, I move to the associated reference. What I want to achieve is by clicking to an small triangle or a vertical-point-upwards arrow next to the reference to move backwards to the text that the link is. That is, like the forth-and-back effect that wikipedia articles have (see Figure below).


biblatexyou could have a look at https://tex.stackexchange.com/q/396713/35864. – moewe Mar 04 '19 at 10:30bibliographies- related question and not about the cross-referencing between documents or within section/equation numbers. Thebackrefoption ofhyperrefshould do what you request – Mar 04 '19 at 10:34\citebut for the normal\label-\refmechanism. – moewe Mar 04 '19 at 12:36