我正在使用 TikZDevice 在 Latex 中包含 R-Plot,使用 APA7-Documentclass。APA7-Class 的文档将 \figurenote{} 列为“将图形注释放置在 \includegraphic、\fitfigure 或 \begin{figure} 和 \end{figure} 内的类似命令之后时,会格式化图形注释。”但是,它似乎不起作用,还有其他方法可以包含图形注释吗?以下是我的代码的一个简短示例,用于重现我的问题:
\documentclass{apa7}
\usepackage{tikz}
\author{}
\title{}
\shorttitle{}
\authornote{}
\abstract{}
\begin{document}
\begin{figure}
\caption{Some Caption}
\centering
%Here I am using \input{plot.tex} for my plot but following I include a TikZ circle
\begin{tikzpicture}
\draw (0,0) circle (10pt);
\end{tikzpicture}
\figurenote{Test} %This here does not work
\label{plot}
\end{figure}
\end{document
答案1
通过更新到最新版本的 APA7 解决了该问题。