I have a rather complicated LaTeX document with many figures, tables and citation links provided courtesy of \hyperref.
I would like to provide a "back" button from these document items using the Adobe Acrobat option of \hyperref. For example: \Acrobatmenu{GoBack}{$\blacktriangle$}. (I know that simply typing command-up arrow does the same thing, but I would like to provide the reader with a convenient signpost.)
My problem is that I cannot find a (simple way to) place the \Acrobatmenu button in-line at the beginning of the figure legends, references and tables in the final PDF document. No matter where I place the code, the button ends up in the center of the page on a new line.
Is there anyway to accomplish my goal?
mwe:
\documentclass[12pt]{amsart}
\usepackage{geometry} % see geometry.pdf on how to lay out the page. There's lots.
\geometry{a4paper} % or letter or a5paper or ... etc
\usepackage{graphicx}
\usepackage{mathtools}
\usepackage{amssymb}
\usepackage{hyperref} % use command left arrow to return to exact reference in Adobe Reader
\hypersetup{
colorlinks=true,
%hidelinks=true,
linkcolor=blue,
citecolor=blue,
filecolor=magenta,
urlcolor=blue,
}
\usepackage[all]{hypcap}
%%% BEGIN DOCUMENT
\begin{document}
\begin{figure}[htb!]
\includegraphics[width = 0.85\textwidth]{Cat.png}
\caption{
\textbf{The cat sat on the mat.} What a wonderful cat.
}
\label{fig:Cat}
\Acrobatmenu{GoBack}{$\blacktriangle$}
\end{figure}
\end{document}
Result of cat is shown below. I would like the red triangle, which triggers an Acrobat GoBack command, to be situated immediately to the left of, and on the same line as, "FIGURE 1."

