[Tex/LaTex] Arrow with plus on tail in tikz

arrowstikz-pgf

I've been Googling for ages and can't find this answer. The only thing that even gets close to asking what I'm wanting is this question but I don't quite get the answer. How in the world does \pgfarrowsdeclarecombine work?

Anyway, I want to make an arrow in a TikZ picture that looks like +---->. Like a normal arrow, but with a plus sign at the beginning.

Best Answer

Here is a very simple solution that scales with line width:

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{arrows.meta}

\tikzset{+ /.tip = {Bar[sep=1.5pt 2,width=3pt 4]_[sep=0]}}

\begin{document}

\tikz\draw[+->] (0,0) -- (1,0);

\tikz[very thin]\draw[+->] (0,0) -- (1,0);

\tikz[very thick]\draw[+->] (0,0) -- (1,0);

\end{document}

Result