チェーンの最後の図形に少し余分なものを追加したいと思いました (理解を深めるには画像を参照してください)。しかし、黒と赤の線は垂直方向のオフセットなしで接続されると思っていたため、予期しない問題が発生しました。したがって、私の質問は (願わくば) 単純なものです。これを修正するにはどうすればよいでしょうか?
よろしくお願いします
\documentclass[tikz]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc,chains,shapes.symbols}
\begin{document}
\tikzset{
flowEnd/.style={draw, shape=signal, signal from=west, signal to=nowhere},
flowPast/.style={draw, shape=signal, signal from=west},
flowStart/.style={draw, shape=signal, signal to=east},
}
\begin{tikzpicture}[start chain=going right,node distance=2mm]
\node [flowStart,on chain] {Hello};
\node [flowPast,on chain] {World};
\node (end) [flowEnd,on chain] {!};
\draw [red]
let \p1=(end.south east), \p2=(end.north east) in
(\p2) --
($ (\p2) + (10mm,0) $) [rounded corners]--
($ (\p1) + (10mm,0) $) --
(\p1);
\end{tikzpicture}
\end{document}
答え1
シェイプ スタイル定義にouter sep=0pt
common を追加して定義する必要がありますminimum height=...
。画像の完全な、少し簡略化されたコードは次のとおりです。
\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{calc,
chains,
shapes.symbols}
\tikzset{
base/.style = {draw, shape=signal, on chain,
minimum height=3ex, outer sep=0pt},
flowEnd/.style = {base, signal from=west, signal to=nowhere},
flowPast/.style = {base, signal from=west},
flowStart/.style = {base, signal to=east},
}
\begin{document}
\begin{tikzpicture}[
start chain = going right,
node distance = 2mm ]
%
\node [flowStart] {Hello};
\node [flowPast] {World};
\node (end) [flowEnd] {!};
%
\draw[red]
(end.north east) -- ++ (10mm,0) [rounded corners] |- (end.south east);
\end{tikzpicture}
\end{document}