0

I'm citing a source in my figure caption but the footnote is shown in the list of figures instead of the bottom of the page where the figure is shown. I'm using \autocite if that matters.

If I add a short caption with \caption[short caption]{} the citation in my list of figures disappears completely from my work.

Is there a way to get my footnote on the bottom of the page where my figure is shown? Thanks!

EDIT: Probably related to that post: Remove autocite citation from list of tables

But I honestly do not understand the solution to the problem..

EDIT2:

the requested snippet:

\newcommand{\indextype}{apa} 
\newcommand{\position}{footnote}

\usepackage[backend=biber, autocite=\position, style=\indextype]{biblatex}
\settingBibFootnoteCite

\begin{figure} \centering \includegraphics[width=1\linewidth]{image.png} \caption{some caption \autocite[S. 123]{source}} \end{figure}

Sel
  • 1
  • 1
    Welcome to TeX.SE! Please show us a short compilable TeX code resulting in your issue! Then we do not have to guess what you are doing ... – Mensch Apr 17 '22 at 15:25
  • You can use \footnotemark and \footnotetext, but you may have to move \footnotetext to another page. See https://tex.stackexchange.com/questions/479128/footnote-cross-reference-inside-image-caption/479143?r=SearchResults&s=2|15.6055#479143 – John Kormylo Apr 17 '22 at 17:16
  • added some code! I've figured out how to do it with the \footnotemark solution, thanks! – Sel Apr 18 '22 at 08:16
  • If you found a solution to your problem, please post it here as an answer. – Miyase May 18 '22 at 09:05

1 Answers1

1

The optional argument to a \caption goes into the "List of ..." while the required argument goes into the float. If there is no optional argument the required argument also goes into the "List of ...".

\caption[list of entry]{float entry}
\caption{list of and float entry} 
Peter Wilson
  • 28,066
  • I am aware of that but that's not the issue I'm having. – Sel Apr 18 '22 at 07:33
  • @Sef From your description that is the problem you are having. Provide an MWE (from \documentclass... to \end{document}) that we can compile that shows your problem The snippet in your edited question is no use (the request was for compilable TeX code). – Peter Wilson Apr 18 '22 at 17:22