I am writing my dissertation in overleaf, and I am borrowing a series of figures from different publications. In each relevant figure caption, I have the citation followed by the text "Permissions."
Here is an example.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[style=apa,sorting=ynt]{biblatex}
\addbibresource{references.bib}
\usepackage[colorlinks]{hyperref}
\hypersetup{
linkcolor={blue},
citecolor={blue}
}
\title{Moth figure}
\date{November 2021}
\begin{document}
\maketitle
\section{Some Section}
Some text goes here.
\begin{figure}[b!]
\centering
% https://www.pexels.com/photo/insect-macro-butterfly-bugs-56848/
\includegraphics[width=0.6\textwidth]{pexels-pixabay-56848.jpg}
\caption{This is a pretty moth, but not actually a hawkmoth. \parencite[]{Ellington1996} - Permissions}
\label{fig:my_label}
\end{figure}
\section{Permissions}
\section*{Journal Name}
\begin{itemize}
\item Figure \ref{fig:my_label}: This is not actually an image from \cite{Ellington1996} but if it were I would say that I have the appropriate permissions.
\end{itemize}
\printbibliography[title=\MakeUppercase{References}]
\end{document}
My original plan was to use hyperref in combination with hypertarget to cross-reference the word "Permissions" to the bullet point on the next page. But when I tried to do this, the figure would not show up in the list of figures page I had and would cause an error. Are there any tools for cross-referencing within a figure caption to another page? I would imagine there should be since the link from the citation in the figure caption is effectively doing this.


\caption[<version for lof/lot>]{<full version for actual caption>}. The cross reference is placed in the full version, will not disrupt the list of figures, and, withhyperref, should behave like any other cross reference. – barbara beeton Nov 22 '21 at 15:51[]is needed (and causing problems because the closing]is being interpreted as closing the main option), the solution is always to bury the entire element in another set of braces, so that (La)TeX will interpret it as a distinct separate environment. Dealt with here: LaTeX: optional arguments with square brackets and here: [ ] inside an optional argument](https://tex.stackexchange.com/q/99495). – barbara beeton Nov 24 '21 at 15:05