我找到了一个很好的示例代码这里,并尝试用let
命令重新格式化它并定义一个newcommand
以便于使用。
以下是我的草稿版本但无法通过编译:
\documentclass[border=10mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.arrows, calc}
\newcommand{\dbarr}[4] {
\path (#1) -- (#2)
let
\p1=($(#1) - $(#2)),
\n{height}={veclen(\x1,\y1)},
\n{angle}={atan2(\y1,\x1)} in
node[midway, single arrow, draw=black,
minimum width=15mm, minimum height=\n{height},
inner sep=0mm, single arrow head extend=1mm, double arrow head extend=1mm,
fill=cyan!20,double arrow,rotate=\n{angle}] (#3) {#4};
}
\begin{document}
\begin{tikzpicture}
\coordinate (A) at (0,0);
\coordinate (B) at (2,2);
\dbarr{A}{B}{C}{from A to B};
\end{tikzpicture}
\end{document}
错误:
Runaway argument?
$(B)), \n {height}={veclen(\x 1,\y 1)}, \n {angle}={atan2(\y 1,\x 1)}\ETC.
! File ended while scanning use of \tikz@cc@parse@factor.
<inserted text>
\par
<*> a.tex
? x
No pages of output
这个错误让我很难理解错误在哪里。如果有人能帮助我,我将不胜感激!
答案1
\p1=($(#1) - $(#2))
如果被 替换为\p1=($(#1) - (#2)$)
(请注意 的位置),则代码可以编译$
。