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}

上記のマークアップにより、次のようになります。

tikz画像1

しかし、私は次のようなものを望んでいます:

ティクズ2

これを解決する簡単な方法はありますか?私はない解決策を探す\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}

出力

パラメータの値を選択するだけで、それに応じて描画 (境界ボックスを含む) が調整されることに注意してください。

関連情報