coordinate[label=right:$E$] (E) at ($1/2*(B)+1/2*(D)$);
上面是我表示点E是B,D的中点,感觉好傻,请教有什么专业的表示方法?
可以像 xcolor
那样 $(B)!0.5!(D)$
,当然由于需要运算模式 $$
包裹,tikz
的 calc
库是需要被调用的
The following is an example:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\coordinate [label = right: $B$] (B) at (1,3);
\coordinate [label = right: $D$] (D) at (2,4);
\coordinate [label = right: $E$] (E) at ($(B)!0.5!(D)$);
\end{tikzpicture}
\end{document}