带角度和文字的圆中的等腰三角形 - 在 tikz 中

带角度和文字的圆中的等腰三角形 - 在 tikz 中

我是 tikz 的新手,我已经玩它有一段时间了。

对于某些演示,我需要在单位圆中表示等腰三角形。到目前为止,我唯一得到的是圆(对此感到抱歉)。我甚至无法放置一些用文字连接的适当节点。如果角度也可以标记出来就太好了。

我添加了一些自绘的图片来解释。alpha 的确切角度并不重要。我相当难过的 MWE 是:

\begin{tikzpicture}
\draw[black] (0,0) circle (1);
\end{tikzpicture}

等腰三角形

答案1

\documentclass[tikz, border=3pt]{standalone}
\usetikzlibrary{angles,
                quotes}

\begin{document}
    \begin{tikzpicture}[
line cap=round,
MA/.style = {% My Angle
        draw, 
        angle radius=3mm, angle eccentricity=1.5,
        font=\small}
                        ]
\draw (0,0) coordinate[label=180:C] (C) circle[radius=1];
%
\draw (C) -- ++ ( 45:1) coordinate[label= 45:A] (A);
\draw (C) -- ++ (330:1) coordinate[label=330:B] (B);
\draw (A) -- (B);
\pic [MA,  "$\gamma$"]  {angle =B--C--A};
    \end{tikzpicture}
\end{document}

在此处输入图片描述

如果您不喜欢三角形角落的标签,请删除[label=...]

答案2

仅供比较,以下是元帖子包裹在luamplib;用……编译lualatex

在此处输入图片描述

\documentclass[border=5mm]{standalone}
\usepackage{luamplib}
\begin{document}
\mplibtextextlabel{enable}
\begin{mplibcode}
beginfig(1);
    path O; O = fullcircle scaled 7 cm; % keep center at origin
    numeric alpha; alpha = 82;

    z0 = origin;
    z1 = point -0.4 of O;
    z2 = z1 rotated alpha;

    draw O withcolor 2/3 blue;
    draw fullcircle scaled 42 rotated angle z1 cutafter (z0 -- z2) withpen pencircle scaled 1/4;
    draw z0 -- z1 -- z2 -- cycle;
    forsuffixes $=0, 1, 2: 
        drawdot z$ withpen pencircle scaled dotlabeldiam; 
    endfor

    label.llft("$1$", 1/2[z0, z1]);
    label.ulft("$1$", 1/2[z0, z2]);
    label.urt("$c$", 1/2[z1, z2]);

    label("$\alpha$", 12 unitvector(z1 + z2));

    % add graph paper
    picture T; T = currentpicture; 
    currentpicture := nullpicture;
    for t=-10 upto 10:
        draw (left--right) scaled 10cm shifted (0, t * 5mm) withcolor 7/8 white;
        draw (up--down) scaled 10cm shifted (t * 5mm, 0) withcolor 7/8 white;
    endfor
    interim bboxmargin := 2mm;
    clip currentpicture to bbox T;
    draw T;
    
endfig;
\end{mplibcode}
\end{document}

相关内容