Advertisement
Guest User

Untitled

a guest
May 18th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. \documentclass{standalone}
  2. \usepackage[T1]{fontenc}
  3. \usepackage[latin2]{inputenc}
  4. \usepackage[english]{babel}
  5. \usepackage{tikz}
  6. \usetikzlibrary{calc,through,backgrounds,positioning,fit}
  7. \usetikzlibrary{shapes,arrows,shadows}
  8. \usepackage{gensymb}
  9.  
  10. \begin{document}
  11.  
  12. \begin{tikzpicture}[scale=1,inner sep=0.4mm]
  13. \coordinate (O) at (0,0);
  14. \coordinate (A) at (-75:2cm);
  15. \coordinate (B) at (85:2cm);
  16.  
  17. \fill[green!90!cyan] (O) -- (A) arc (-75:85:2) (O) --(B);
  18. \draw[cyan,thick] (O) -- (A);
  19. \draw[cyan,thick] (O) -- (B);
  20.  
  21. \node at (-75:2cm) [below right=2pt] {$A$};
  22. \node at (A) [circle,fill=black!80!white] {};
  23.  
  24. \node at (85:2cm) [above left=2pt] {$B$};
  25. \node at (B) [circle,fill=black!80!white] {};
  26.  
  27. \node at (O) [left=2pt] {$O$};
  28. \node at (O) [circle,fill=black!80!white] {};
  29.  
  30. \draw[black,thick] (0,0) circle (2cm);
  31. \node at (O) [right=2pt] {$\alpha = 160^{\circ}$};
  32.  
  33.  
  34.  
  35. \end{tikzpicture}
  36.  
  37. \end{document}\\
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement