I would like to change the placeholder tag for my figures/tables produced by the endfloat package so that it also contains a short description or keyword (for example the shortcaption).
So instead of the marker text "Figure X about here", I would like to have something like "Figure X: Study Area, about here".
My figure layout is essentially as follows:
\begin{figure*}[t!]
\centering
\includegraphics{Images/StudyArea}
\caption[Short Caption]{Long Caption}
\label{fig:StudyArea}
\end{figure*}
I managed to change the marker text using:
\renewcommand\floatplace[1]{%
\begin{center}
[\csname #1name\endcsname~\csname thepost#1\endcsname\ about here.]
\end{center}}
And I know that I can get the short caption as a reference within my text with \nameref{label}.
But is it somehow possible to include this in the placeholder for all my figures/tables?
Thanks in advance!