可以像 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}
问 如何优雅表示两个点的中点?