|
kuing
posted 2021-6-1 00:15
回复 3# isee
原来是这个意思……
不过……这其实不难发现吧,也没什么不合理之处……
我顺便说一个,其实这样玩也不会报错:- \begin{tikzpicture}
- \coordinate [label=below:{A}] (a) at (0,0);
- \coordinate [label=below:{B}] (b) at (2,0);
- \draw (a)--(b);
- \coordinate [label=below:{C}] (b) at (0,2);
- \draw[blue] (a)--(b);
- \end{tikzpicture}
- \begin{tikzpicture}
- \draw[red] (a)--(b);
- \end{tikzpicture}
Copy the Code 效果:
也就是说 coordinate 的点在下一个图其实还可以继续用。 |
|