PGFPlot,图例线和图例文本不在同一级别

PGFPlot,图例线和图例文本不在同一级别

我有以下代码:


\begin{tikzpicture}
    
\begin{axis}[legend style={at={(0.5,-0.1)},anchor=north}]
        
\addplot {x};
        
\addlegendentry{$x$}
        
\addplot {x^2};
        
\addlegendentry{$x^2$}
    
\end{axis}

\end{tikzpicture}

不幸的是,正如您在图片中看到的,图例文本的高度与图例线的高度不同。

你知道如何修复它吗?

非常感谢!Andre

在此处输入图片描述

相关内容