在 APA 文档中对齐图形

在 APA 文档中对齐图形

pgfplots我尝试在文档中使用apa7,但出现了一些问题。如何格式化图形,tikzpicture就像使用 导入一样\fitfigures

以下是代码

\documentclass{apa7}
\usepackage{pgfplots}
\begin{document}
\begin{figure}
    \begin{tikzpicture}
        \begin{axis}[
                xlabel = $x$,
                ylabel = $f\left(x\right)$,
            ]
            \addplot{x^2}node[right]{$x^2$};
        \end{axis}
    \end{tikzpicture}
    \caption{Chart 1}
\end{figure}
\begin{figure}
    \fitfigures{figure/chart}
    \caption{Chart 2}
\end{figure}
\end{document}

这会将小尺寸的图形放置在页面的左侧,不适合页面的宽度(或者无论如何\fitfigures对齐它们)。

我能想到的一种方法是将图形外部化,但它会在文件中的某个地方创建一个小图形。有没有无需编译单独文件的解决方案?

提前致谢。

相关内容