绘制六边形节点,该节点需要在流程图中进一步使用

绘制六边形节点,该节点需要在流程图中进一步使用

我需要画一个六边形节点就像图片中显示的那样 请帮忙。

答案1

假设它应该像你的草图所示的那样被拉伸,你可以使用

\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{shapes.geometric}
\begin{document}
\begin{tikzpicture}
 \node[regular polygon,regular polygon sides=6,shape border rotate=30,draw,
    minimum size=1cm,yscale=3]{};
\end{tikzpicture}
\end{document}

在此处输入图片描述

如果不想拉伸它,请放下,yscale=3

答案2

您的问题不清楚。到目前为止,我还没有在流程图中看到过这种(定向的)形状。可能应该旋转 90 度:

在此处输入图片描述

可以使用shapes.symbolsTikZ 库简单绘制:

\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{shapes.symbols}

\begin{document}
   \begin{tikzpicture}
\node[signal, signal to=east and west, draw] at (0,1) {To East and West};
\end{tikzpicture}
\end{document}

相关内容