消除弯箭的尾部

消除弯箭的尾部

我尝试绘制这样的弯曲箭头:

\documentclass{article}
\usepackage{tikz}

\begin{document}

\begin{tikzpicture}
\draw[->,thick] (2,1) edge[bend left=50] (3,2);
\end{tikzpicture}

\end{document}

但是,箭头有一个不想要的“尾巴”。我该如何消除它?

在此处输入图片描述

答案1

定义为node起点和终点。

\documentclass{article}
\usepackage{tikz}
\begin{document}

\begin{tikzpicture}
\node (A) at (2,1) {};
\node (B) at (3,2) {};
\draw[-latex,thick] (A) edge[bend left=50] (B);
\end{tikzpicture}

\end{document}

在此处输入图片描述

相关内容