
我在圖形標題中引用了來源,但腳註顯示在圖形列表中,而不是顯示圖形的頁面底部。如果這很重要的話,我正在使用 \autocite 。
如果我用 \caption[short Caption]{} 添加一個簡短的標題,我的圖表列表中的引用就會從我的作品中完全消失。
有沒有辦法將我的腳註放在顯示我的圖形的頁面底部?謝謝!
編輯:可能與該帖子相關:從表格清單中刪除自動引用引文
但老實說我不明白問題的解決方案。
編輯2:
請求的片段:
\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}
答案1
a 的可選參數\caption
進入“List of ...”,而必要的參數進入浮點數。如果沒有可選參數,則所需參數也會進入「清單...」。
\caption[list of entry]{float entry}
\caption{list of and float entry}