TikZ 中的自定义节点

TikZ 中的自定义节点

很抱歉问了这个基本问题,但我对 TikZ 还很陌生,在定义一个简单的节点时遇到了很多麻烦......

我有以下代码:

\begin{tikzpicture}
 \draw (0,0) -- (1,-1) -- (2,0) -- (2,2) -- (0,2) -- (0,0);
\end{tikzpicture}

我想要做的就是让代码定义形状,以便能够在这种情况下使用它:

\begin{tikzpicture}[node distance = 2cm, auto]
    % Place nodes
    \node [block] (init) {initialize model};
    \node [cloud, left of=init] (expert) {expert};
    \node [cloud, right of=init] (system) {system};
    \node [block, below of=init] (identify) {identify candidate models};
    \node [block, below of=identify] (evaluate) {evaluate candidate models};
    \node [block, left of=evaluate, node distance=3cm] (update) {update model};
    \node [decision, below of=evaluate] (decide) {is best candidate better?};
    \node [block, below of=decide, node distance=3cm] (stop) {stop};
    % Draw edges
    \path [line] (init) -- (identify);
    \path [line] (identify) -- (evaluate);
    \path [line] (evaluate) -- (decide);
    \path [line] (decide) -| node [near start] {yes} (update);
    \path [line] (update) |- (identify);
    \path [line] (decide) -- node {no}(stop);
    \path [line,dashed] (expert) -- (init);
    \path [line,dashed] (system) -- (init);
    \path [line,dashed] (system) |- (evaluate);
\end{tikzpicture}

... 例如,我可以写“customnode”(或者我自己定义的某些内容)来代替“block”,并以相同的方式、在相同的图表中、在内部包含文本的方式让它出现。

非常感谢

答案1

TikZ 有许多预定义符号。您询问的符号与库signal中的符号非常相似shapes.symbols(文档中的第 67.4 节)。cloud那里也定义了一个符号。

\documentclass[border=2pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning,shapes.symbols}
\begin{document}
\begin{tikzpicture}[
node distance = 3cm, auto,
block/.style={signal, draw, signal to=south}]
\node [block] (init) {initialize model};
\node [cloud,draw, left of=init] (expert) {expert};
\end{tikzpicture}
\end{document}

在此处输入图片描述

答案2

Tikzpics非常适合这种事情。它们在 tikz 手册(版本 3.0.1a)的第 18.2 节中有详细描述。

例如代码:

\documentclass{article}
\usepackage{tikz}

\tikzset{
  pics/mynode/.style args={#1,#2,#3}{
     code={
       \draw (0,0) -- (1,-1) -- (2,0) -- (2,2) -- (0,2) -- (0,0);
       \node[#3] (#1) at (1,1) {#2};
     }
  }
}

\begin{document}

  \begin{tikzpicture}
      \draw (0,0) pic{mynode={A, Hi, blue}};
      \draw (0,3) pic{mynode={B, Hello, red}};
      \draw (2,1.5) pic{mynode={C, Bye,}};
      \draw[thick, blue] (A)--(B)--(C)--(A);
  \end{tikzpicture}

\end{document}

生成图表:

在此处输入图片描述

我已将您的“自定义节点”定义为 pic mynode。它需要三个参数:节点标签、节点文本和节点样式(必须提供所有三个参数,但可以留空)。pic 绘制您的自定义形状,并作为其中的一部分,在其中放置一个“真实”节点,然后我们可以像在 MWE 中一样使用节点标签来引用它。

答案3

定义新的节点形状不一定是一个基本问题。但在这种情况下,你可以通过使用库single arrow中的形状来稍微作弊shapes.arrows

在此处输入图片描述

\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.arrows}

\tikzset{
  mycustomnode/.style={
    draw,
    single arrow,
    single arrow head extend=0,
    shape border uses incircle,
    shape border rotate=-90,
  }
}

\begin{document}
\begin{tikzpicture}
\node [mycustomnode] {};
\node [mycustomnode] at (2,0) {abc};
\end{tikzpicture}
\end{document}

相关内容