我怎样才能偏移我的 ylabel 以使其不与数字混淆?
代码
\begin{figure}[H]
\centering
\begin{tikzpicture}
\begin{axis}[
scale=1.8,
xmin=-15,xmax=15,xlabel={Current $mA$}, ylabel={Residuals $mV$}
]
\addplot [only marks, black, error bars/.cd, y dir=both, x dir=both, y explicit, x explicit, error bar style={color=mapped color}]
table[x=Residuals,y=Voltage,x error=xerr,y error=yerr]{sfnErr.dat}; % plot the data
\draw[ultra thin,gray] (axis cs:\pgfkeysvalueof{/pgfplots/xmin},0) -- (axis cs:\pgfkeysvalueof{/pgfplots/xmax},0);
\end{axis}
\end{tikzpicture}
\caption{*}
\end{figure}
答案1
如果您在序言中插入\pgfplotsset{compat=1.7}
(或任何 PGFPlots 版本号,只要它比 更新1.3
),轴标签将动态放置,同时考虑到刻度标签的宽度。