tikzpicture/pgfplots 中轴注释下方的节点

tikzpicture/pgfplots 中轴注释下方的节点

我想要在轴注释下方有一个节点(带有一些文本),并且从这个节点开始,箭头应该指向 x 轴上的特定点

平均能量损失

\documentclass[paper=a4, fontsize=12pt]{scrreprt}
\usepackage{amsmath}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.10}
\begin{document}
\begin{figure}%
\centering
\begin{tikzpicture}
\begin{axis}
[xlabel={x},ylabel={y},grid, width=14cm, xmin=0, xmax=4.55e-3, ymin=0, ymax=1]
\end{axis}
\end{tikzpicture}
\caption{caption}%
\label{fig:a}%
\end{figure}
\end{document}

我想要的是: 在此处输入图片描述

答案1

以下是一个例子:

\documentclass[border=1cm]{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.10}

\begin{document}
  \begin{tikzpicture}
    \begin{axis}[xlabel={x},ylabel={y},grid, width=14cm, xmin=0, xmax=4.55e-3, ymin=0, ymax=1]
    \end{axis}
    \node[below right=1cm, font=\Large\bf] (T) {Hello text};
    \draw[thick, -latex] (T.west) to[bend left] (0,-5mm);
  \end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容