pgfplots ycomb 中的字符作为标记

pgfplots ycomb 中的字符作为标记

我需要在 3D 图中的 pgfplots ycomb 中使用字符作为标记。这个问题非常有帮助,但是 ycomb 词干会干扰字母。

请问有什么提示吗?

答案1

我如果使用那里描述的第二种方法,只需添加anchor=south到文本标记的样式中。

在此处输入图片描述

\documentclass{article}
\usepackage{pgfplots}
\usetikzlibrary{plotmarks}

\begin{document}
\begin{tikzpicture}
  \begin{axis}
    \addplot[ycomb,
             samples=5,
             mark=text,
             text mark=A,
             text mark as node,
             text mark style={anchor=south}
             ] {rnd};
  \end{axis}
\end{tikzpicture}
\end{document}

相关内容