Advertisement
kalakay

Tiga lingkaran bersinggungan

Mar 5th, 2019
625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.44 KB | None | 0 0
  1. \documentclass[border=10pt]{standalone}
  2. \usepackage[x11names]{xcolor}
  3. \definecolor{darkjunglegreen}{rgb}{0.1, 0.14, 0.13}
  4. \definecolor{electriclime}{rgb}{0.8, 1.0, 0.0}
  5. \definecolor{pinegreen}{rgb}{0.0, 0.47, 0.44}
  6. \definecolor{tangelo}{rgb}{0.98, 0.3, 0.0}
  7. \definecolor{bistres}{RGB}{128, 117, 90}
  8. \usepackage{tikz}
  9. \usetikzlibrary{angles}
  10. \usepackage{fouriernc}
  11. \usepackage{amssymb}
  12. \begin{document}
  13. \pagecolor{darkjunglegreen!50!black}
  14. \begin{tikzpicture}[scale=.5,font=\footnotesize]
  15. \coordinate (A) at (-5,-1) coordinate (B) at (3,-1)
  16. coordinate (C) at (-1,{-1-4*sqrt(3)})
  17. coordinate (D) at (-1,{-1+4*sqrt(3)})
  18. coordinate (M) at (-1,-1);
  19. \draw[darkgray] (-10,-13) grid (8,11);
  20. \draw[bistres] (D) node[above,white]{$D$} circle (4);
  21. \draw[shift={(-1,-1)},tangelo] (0,-14pt)--(14pt,-14pt)--(14pt,0);
  22. \draw[-stealth,semithick,pinegreen] (-10,0)--(8,0) node[right]{$X$};
  23. \draw[-stealth,semithick,pinegreen] (0,-13)--(0,11) node[above]{$Y$};
  24. \pic[draw=tangelo,angle radius=.75cm,pic text=$60^\circ$,pic text options={xshift=.05cm,white},angle eccentricity=.65] {angle={M--B--C}};
  25. \draw[semithick,electriclime] (A) node[left,white]{$A$} circle (4)
  26. (B) node[right,white]{$B$} circle (4)
  27. (C) node[below,white]{$C$} circle (4) ;
  28. \draw[semithick,tangelo] (A)--(B)--(C)--(M) node[shift={(-.2,.2)},white]{$M$};
  29. \foreach \t in {A,B,C,D,M}
  30. \fill[white] (\t) circle (2pt);
  31. \node[shift={(-.15,-.15)},white] at (0,0) {$O$};
  32. \end{tikzpicture}
  33. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement