tikzpicture 中的 STOP 信号作为节点

tikzpicture 中的 STOP 信号作为节点

有没有办法在 tikzpicture 中获取“STOP 信号”作为节点?

在此处输入图片描述

答案1

像这样?

在此处输入图片描述

带红色边框很简单......

\documentclass[12pt]{article}
\usepackage{tikz}
\usetikzlibrary{shapes}

\begin{document}
    \begin{tikzpicture}[
stop/.style = {regular polygon, regular polygon sides=8,
      draw=red, double, double distance=2mm, ultra thick,
      fill=red, font=\Huge\bfseries, text=white,
      inner sep=0mm, node contents={STOP}}
                    ]
\node[stop];
    \end{tikzpicture}
\end{document}

相关内容