TikZ:带箭头的矩形节点

TikZ:带箭头的矩形节点

创建这样的节点的最佳方法是什么?

在此处输入图片描述

\begin{document}
\begin{tikzpicture}[]
\node[align=left,draw, minimum width=44mm, minimum height=30mm]{
Here \\ the \\ text...};
\end{tikzpicture}
\end{document}

答案1

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.arrows} 

\begin{document}

\begin{tikzpicture}
\node[draw,arrow box, arrow box arrows={east:0.5cm},align=center] at (0,0) {Text\\text}; 
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容