Pgfplot xlabel 未居中

Pgfplot xlabel 未居中

我使用 pgfplot 包创建了一个图,但我的 xlabel 不在中心,看起来像这样(xlabel 是“dimenze vektoru”)enter image description here

我的代码:

  \begin{figure} % <---
    \centering % <---
\begin{tikzpicture}
\begin{axis}[
    xlabel={dimenze vektoru},
    ylabel={syntaktická úspěšnost [\%]},
    xmin=0, xmax=1000,
    ymin=30, ymax=60,
    xtick={},
    ytick={},
    legend pos=north west,
    ymajorgrids=true,
    grid style=dashed,
    xscale=1.5,
]

\addplot[
    color=blue,
    mark=square,
    ]
    coordinates {
    (50, 34.37)(100, 47.06)(200,55.59)(300,57.43)(500,53.56)(760,51.71)(1000,48.85)
    };

\end{axis}
\end{tikzpicture}
\caption{Klesající syntaktická úspěšnost při zvyšující se rychlosti učení}
\label{fig:graph2}
\end{figure}

相关内容