TikZ 中节点上方的标签

TikZ 中节点上方的标签

我希望在已经包含标签的节点上方添加标签。

\begin{tikzpicture}[scale=0.8,every node/.style={draw=black,circle}]
    \node (a) at (0,0) {a};
    \node (b) at (2,0) {b};
    \draw[->] (a) to (b);
\end{tikzpicture}

上面的标记将给我这样的:

tikzpicture1

但我想要这样的东西:

tikz2

有什么简单的方法可以解决这个问题吗?不是寻找解决方案\tikzlibrary{background}

答案1

实际上,tikz 节点内部有文本,外部有标签:

标签

\documentclass{standalone}
\usepackage{tikz}
\begin{document}

\begin{tikzpicture}[scale=0.8,every node/.style={draw=black,circle}]
    \node[label={\small 1/16}] (a) at (0,0) {a};
    \node (b) at (2,0) {b};
    \draw[->] (a) to (b);
\end{tikzpicture}

\end{document}

答案2

PSTricks 解决方案使用pst-node包裹:

\documentclass{article}

\usepackage{pst-node}

\def\labelSep{\fpeval{28.75*\radius+3.375}} % found by experimenting

% parameters
\def\arrowLength{1.8}
\def\radius{0.3}

\begin{document}

\begin{pspicture}(\fpeval{4*\radius+\arrowLength},\fpeval{2*\radius+0.35})
% change `0.35` in the calculation of the height of the bounding box
% according to the contents on top of the node
  \cnode(\radius,\radius){\radius}{A}
  \rput(A){a}
  \cnode(\fpeval{3*\radius+\arrowLength},\radius){\radius}{B}
  \rput(B){b}
  \ncline{->}{A}{B}
  \uput{\labelSep pt}[90](A){\small\texttt{1/16}}
\end{pspicture}

\end{document}

输出

请注意,您所要做的就是选择参数的值,然后绘图(包括边界框)将进行相应的调整。

相关内容