Consider the following MWE
\documentclass[tikz]{standalone}
\usetikzlibrary{arrows,decorations.pathreplacing, decorations.markings,arrows.meta}
\tikzset{
big arrow/.style={
decoration={markings,mark=at position 1 with {\arrow[scale=2.4]{latex'}}},
postaction={decorate,draw}
}
}
\begin{document}
\begin{tikzpicture}
\draw [big arrow] (0,0) -- (3,0) node[below] {$x$};
\draw [-{Latex[scale=2]}] (0,0) -- (0,3) node [left] {$y$};
\end{tikzpicture}
\end{document}
I would like to use the arrows.meta library to draw an error tip exactly like latex'. I read the documentation and apparently there is no Latex' in arrows.meta.
So, how can I draw in the y axis an arrow like the one in the x axis using the arrows.meta library ? (i.e avoiding using the decoration/postaction trick).

\pgfarrowsdeclare{latex'}{latex'}...frompgflibraryarrows.code.tex? There are nothing but Bézier curves. – Symbol 1 Mar 21 '15 at 02:32stealth'andlatex'ported toarrows.meta. Is it possible to contact the developers for them to include these arrow styles? – petobens Mar 27 '15 at 17:37toconstruction ends up with 7 curves instead of 1 curve + 6 lines, it will be like 6.9x complex or something. Or image that there are teens of tips edition containing different combination of tips (just like Adobe Creative Suite)....... – Symbol 1 Mar 27 '15 at 17:59arrowslibrary as indicated in the comments seems to be the only solution. – TobiBS Sep 15 '20 at 19:23