latex 的箭头与 arrows.meta 库

latex 的箭头与 arrows.meta 库

考虑以下 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}

我想使用该arrows.meta库来绘制一个完全一样的错误提示latex'。我阅读了文档,但显然Latex'没有arrows.meta

那么,如何使用该arrows.meta库在 y 轴上绘制像 x 轴上的箭头一样的箭头?(即避免使用该decoration/postaction技巧)。

在此处输入图片描述

相关内容