我有节点(比如说\node (mynode) at (0,10) {\blindtext};
)。如何使用类似的东西重新绘制它\draw[redraw=mynode]
?
答案1
使用 TikZ v3,您可以将节点规范转换为样式。我不知道你的意图,但这是一个例子
\begin{tikzpicture}[mynode/.style={at={(1,0)},node contents={asdfasdf}}]
\node[mynode];
\end{tikzpicture}
我有节点(比如说\node (mynode) at (0,10) {\blindtext};
)。如何使用类似的东西重新绘制它\draw[redraw=mynode]
?
使用 TikZ v3,您可以将节点规范转换为样式。我不知道你的意图,但这是一个例子
\begin{tikzpicture}[mynode/.style={at={(1,0)},node contents={asdfasdf}}]
\node[mynode];
\end{tikzpicture}