我想知道是否可以在共享的 tikzset 中组合节点和箭头(仅相对于“父节点”的定位定义)?
最小工作示例如下:
\begin{tikzpicture}[node distance=2cm]
% \tikzset{arrow/.style={-latex, shorten >= 5pt, shorten <= 5pt}}
% \tikzset{diff/.style={-latex, shorten >= 5pt, shorten <= 5pt}}
% \tikzset{node/.style={draw, circle, fill, red, scale=0.25}}
\tikzset{LSTMCell/.style={draw, rectangle, red, scale=1.}}
\clip (-3,3) rectangle (10,-3);
\node (lstm0) [LSTMCell] at (0,0) {LSTM};
\draw [-latex, red, draw] ([xshift=-0.0cm]lstm0.185) arc[radius=0.4cm, start angle=90, end angle=360] node[midway, red, fill=white](){\scriptsize $c(t)$};
\end{tikzpicture}
我不想定义额外的绘制命令来绘制小圆圈,而是想以某种方式将绘制命令移到定义中\tikzset{LSTMCell/.style={...}}
。
这样的事可能吗?
提前谢谢了!
答案1
您可以在节点定义中添加任何内容。其工作原理如下:
- 定义一个
pic
包含您想要添加的内容的; - 通过添加
pic
到节点的定义中append after command
。
明确的例子:
\documentclass[tikz,border=3mm]{standalone}
\begin{document}
\begin{tikzpicture}[node distance=2cm]
\tikzset{pics/little arrow/.style={code={
\draw[red,-latex] (0,0) arc[radius=0.4cm, start angle=90, end angle=360]
node[midway, red, fill=white,font=\scriptsize ]{#1};
}},
LSTMCell/.style={draw, rectangle, red, scale=1.,
append after command={([xshift=-0.0cm]\tikzlastnode.185)
pic{little arrow={#1}}
}}}
\node (lstm0) [LSTMCell={$c(t)$}] at (0,0) {LSTM};
\end{tikzpicture}
\end{document}
显然,如果使用,箭头看起来会更好bending
。