3

What is the best way to draw this kind of arrow using Tikz? enter image description here

I cant provide any MWE, because of simplicity of question for which I found no info.

Is there an elegant solution or some Tilz library or package?

struct
  • 801
  • These are very much like sankey diagram arrows https://tex.stackexchange.com/questions/40159/how-to-draw-a-sankey-diagram-using-tikz – percusse Apr 13 '18 at 20:16

1 Answers1

5

No competitor to any of the nice arrows mentioned by percusse.

\documentclass[tikz,border=3.14pt]{standalone}
\begin{document}
\begin{tikzpicture}
\draw (0,0) -- ++(3,0) -- ++(0,0.5) -- ++(2,-1) --++(-2,-1)
-- ++(0,0.5)-- ++(-1,0) -- ++(0,-0.5) arc (0:-90:0.5)
-- ++(-1,0) -- ++(0,-0.25) -- ++(-1,0.5) -- ++(1,0.5)
-- ++(0,-0.25) -- ++(0.75,0) to[out=0,in=-90] ++(0.25,0.25)
-- ++(0,0.25) -- ++(-1.5,0);
\end{tikzpicture}
\end{document}

enter image description here