我有一個帶有圖例條目的情節。這些條目並不是很長,最好將它們放在一行中。預設行為在每個條目後添加換行符。此外,它們都是居中的,我更喜歡左側沖洗。
我沒有找到正確的參數來改變它。有人對我有任何建議或指示嗎?
答案1
您可以使用legend columns
鍵(-1
使所有圖例水平移動):
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\pgfplotsset{every axis legend/.append style={
at={(0.5,1.03)},
anchor=south}}
\begin{axis}[legend columns=-1]
\addplot coordinates {(0,0) (1,1)};
\addplot coordinates {(0,1) (1,2)};
\addplot coordinates {(0,2) (1,3)};
\legend{$l_1$,$l_2$,$l_3$}
\end{axis}
\end{tikzpicture}
\end{document}