使用 TikZ 制作的平底半圆形拱形图像

使用 TikZ 制作的平底半圆形拱形图像

在一系列同心圆中,这是另一幅我无法理解的图画。顶部不是完整的半圆形。请注意,我的一些标签在扫描中遗漏了。

在此处输入图片描述

答案1

您可以尝试这样的事情:

在此处输入图片描述

\documentclass[tikz,border=2pt]{standalone}
\begin{document}

\begin{tikzpicture}[outer sep=.2cm,inner sep=0pt,scale=1.5,line width=.7pt,line join=round]
\draw (180:3)coordinate[label=left:a](a) arc (180:30:3) coordinate[label=right:f](b)--(30:2.5)coordinate[label=left:6](c) arc (30:170:2.5)coordinate[label=above right:1](d)--cycle;
\draw (a)--(1.6,0)coordinate[label=right:g](g)|-coordinate[label=above:7](e) (d);
\draw (c)--(e) (b)--(g);
\foreach \ang/\num/\lett in {150/2/b,120/3/c,90/4/d,60/5/e}{
\draw (\ang:2.5)--(\ang:3) node at (\ang:2.3) {\num};
\node at (\ang:3.2) {\lett};
}
\coordinate[label=below:h] (o) at (0,0);
\draw (o)--(d-|o)node[above]{8};
\end{tikzpicture}

\end{document}

相关内容