你能演示一下如何用 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}