arbelos.tex 947 B

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