尝试将 Pgfplots 添加到图形环境时出错

尝试将 Pgfplots 添加到图形环境时出错

我对 LaTeX 还比较陌生,但我一直在尝试使用它来撰写我的硕士论文。我一直在使用 pgfplots 包创建几个图表。但是,当我尝试将这些图表插入到图形环境中以引用它们并添加标题时,我遇到了错误。奇怪的是,它们在这个环境之外工作得很好。以下是其中一个图表的示例:

\documentclass[a4paper,12pt,oneside,onecolumn,final,fleqn]{repUERJ}
% ---
% Packages
% ---
\usepackage[brazil]{babel}
\usepackage[utf8]{inputenc}

\usepackage{makeidx}
\usepackage{hyperref}
\usepackage{indentfirst}

\usepackage{graphicx}
\usepackage{subfig}
\usepackage{amsmath}
\usepackage{chemformula}
\usepackage{pgfplots}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{trees}


\pgfplotsset{compat=newest}
\usetikzlibrary{decorations.pathmorphing}
\usetikzlibrary{spy}
\usepackage{textcomp} %trademark


% ---
% College model
% ---
\usepackage[frame=no,algline=yes,font=default]{repUERJformat}
\usepackage{repUERJpseudocode}
% ---
% Citations packages
% ---
\usepackage[alf]{abntex2cite}

%newcommands
\newcommand{\inputgraph}[2]{% #1 = file, #2 = graph name %https://tex.stackexchange.com/questions/378607/using-input-to-insert-a-section-of-a-document-into-another
  \long\def\GRAPH ##1#2 {}%
  \input{#1}
}
\let\ENDGRAPH\endinput

    \begin{document}
         \begin{figure}
               \caption{Caption}
                \label{fig:enter-label}
            \begin{tikzpicture} %Plot
                \begin{axis}[
                title={},
                xlabel={Time (days)},
                ylabel={UFC/g},
                xmin=0, xmax=30,
                legend pos= outer north east,
                legend style={font=\tin},
                grid style=dashed,
            ]

            \addplot[
                color=cyan,
                mark=square,
                error bars/.cd, y dir=both, y explicit
                ]
                coordinates {
                (7,56400) +- (0,90)
                (14,9730) +- (0,90)
                (21,1570) +- (0,70)
                (28,12500) +- (0,90)
                };

            \addplot[
                color=red,
                mark=square,
                error bars/.cd, y dir=both, y explicit
                ]
                coordinates {
                (7,0)
                (14,0)
                (21,0)
                (28,0)
                };
                \legend{Blank, \ch{H2SO4}}
                \end{axis}
            \end{tikzpicture}
        \end{figure}
\end{document}

正如我提到的,我是 LaTeX 的新手,所以我可能没有在这里使用最优雅的解决方案。我正在使用各种软件包来使文本符合大学格式。如果它看起来有点混乱,我深表歉意。

答案1

请参见我刚刚被要求写一个最小工作示例(MWE),那是什么?如何编写 MWE。

当你写的时候legend style={font=\tin},,你可能想说的是:

legend style={font=\tiny},

相关内容