pgfplots:将 xlabel 移到图表中间

pgfplots:将 xlabel 移到图表中间

我必须设置什么才能让 xlabel 准确地位于图表的中间?

在此处输入图片描述

\documentclass[]{book}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}[font=\footnotesize]
\begin{axis}[
xlabel={This is the x-label},
xlabel style={fill=yellow,
at={([shift={(xticklabel* cs:0.5)}]yticklabel* cs:0.5)},
},
]
\end{axis}
\end{tikzpicture}
\end{document}

答案1

通过xlabel style(正确)定义标签的位置:

\begin{document}
    \begin{tikzpicture}[font=\footnotesize]
\begin{axis}[
xlabel={This is the x-label},
xlabel style={fill=yellow,
               at={(0.5,0.5)}, anchor=center}, % <---
]
\end{axis}
    \end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容