我想画一个指向节点的 45 度箭头,像这样
\documentclass{minimal}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}
\coordinate (zero) at (0,0);
\node[above right=of zero] (A) {};
\draw[->] (A) to (zero);
\end{tikzpicture}
\end{document}
但在一条线。 那可能吗?
我知道我可以使用\draw[<-] (0,0) -- ++(1em,1em);
,但我必须弄清楚相当于多少em
,above right
而且无论如何我都想使用定位键(例如,设置全局距离)。但是,我无法使用它,因为例如,它\draw[<-] (0,0) to node[above right] {};
会给我一个错误。