带有 TikZ 的弯曲箭头

带有 TikZ 的弯曲箭头

你能演示一下如何用 TikZ 画这个吗?

在此处输入图片描述

答案1

瞧!

在此处输入图片描述

代码:

\documentclass[border=10mm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\fill[rotate=-10] (0,0) -- (5,4) -- (5,2) to[bend right=10] (25,5) to[bend left=10] (5,-2) -- (5,-4) -- cycle;
\end{tikzpicture}
\end{document}

答案2

没有 TikZ。它需要进行一些点调整才能更类似于问题中给出的箭头。

在此处输入图片描述

\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-node}
\begin{document}
\begin{pspicture}[showgrid](6,5)
\pscustom*
{
    \pscurve(1,3.5)(2.5,3)(6,3)
    \pscurve(2.5,2.25)(1,2.5)
    \psline(1,2)(0,3)(1,4)  
    \closepath
}
\end{pspicture}
\end{document}

相关内容