tikz
我在反转坐标上找到了这个很好的答案
但是,它却失败了,\newlength
如本例所示:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{calc}
\newlength{\lspan}
\setlength{\lspan}{0.5cm}
\begin{document}
\begin{tikzpicture}[y=-1cm]
\draw[green] (0, 0) -- ($(0, 0) + (\lspan, \lspan)$);
\draw[red] (0, 0) -- ($(0, 0) + (0.5, 0.5)$);
\draw (0, 0) -- (1, 0) node[below] {$x$};
\draw (0, 0) -- (0, 1) node[left] {$y$};
\end{tikzpicture}
\end{document}
按照逻辑,红线和绿线应该重合。
怎么了?