Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132935 views
License: OTHER
1
\documentclass{article}
2
\usepackage[pdftex,active,tightpage]{preview}
3
\setlength\PreviewBorder{2mm}
4
\usepackage{tikz}
5
6
\begin{document}
7
\begin{preview}
8
\begin{tikzpicture}
9
10
% Draw A
11
\coordinate[label=left:$A$] (A) at (0,0);
12
13
% Draw the Arbelos
14
\begin{scope}[shift={(4,0)}, scale=4]
15
\draw[fill=green!30, thick](-1,0)
16
arc (180:0:1)
17
arc (0:180:0.25)
18
arc (0:180:0.75);
19
\end{scope}
20
21
\begin{scope}[shift={(4,0)}]
22
% Draw D
23
\coordinate[label=below:$D$] (D) at (2,0);
24
25
% Perpendicular CD
26
\draw[thick] (2,0) -- node[] {} (2,3.47);
27
28
% Draw C
29
\coordinate[label=above:$C$] (C) at (2,3.47);
30
\end{scope}
31
32
% Draw B
33
\coordinate[label=below:$B$] (B) at (8,0);
34
35
% Cirlce CD
36
\draw[thick] (6,1.735) circle (1.735cm);
37
38
% Bottom line AB
39
\draw[thick] (0,0) -- node[] {} (8,0);
40
\end{tikzpicture}
41
\end{preview}
42
\end{document}
43
44