我想使用 TikZ 绘制一条显示端点 A 和 B 以及中间点 C 的线。
答案1
欢迎!关于这个问题有很多问题。下次,请尝试一些东西并发布你想出的代码,以便你可以询问你遇到的具体问题。
以下是一种方法:
\documentclass[tikz,border=10pt]{standalone}
\begin{document}
\begin{tikzpicture}
\draw [circle, inner sep=0pt, minimum size=1.5pt] (0,0) node [fill, label=below:A] {} -- +(1,0) node [midway, label=below:C, fill] {} node [fill, label=below:B] {};
\end{tikzpicture}
\end{document}