Guest User

Untitled

a guest
Jul 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. documentclass{book}
  2. usepackage{tikz,amsmath,amssymb,tkz-euclide}
  3. usetkzobj{all}
  4. usepackage{color}
  5. usetikzlibrary{positioning}% To get more advances positioning options
  6. usetikzlibrary{arrows}% To get more arrow heads
  7. usepackage{amsthm,color}
  8. usetikzlibrary{arrows,plotmarks}
  9. usetikzlibrary{quotes,angles}
  10.  
  11.  
  12. theoremstyle{definition}
  13. newtheorem{exinn}{Example}[chapter]
  14. newenvironment{example}
  15. {clubpenalty=10000
  16. begin{exinn}%
  17. mbox{}%
  18. {color{blue}leadershrule height .8ex depth dimexpr-.8ex+0.8ptrelaxhfill}%
  19. mbox{}linebreakignorespaces}
  20. {parkern2exhruleend{exinn}}
  21.  
  22. begin{document}
  23. chapter{Chapter One}
  24. section{Section One}
  25.  
  26. begin{tikzpicture}
  27. draw[blue, very thick]
  28. (0,0) coordinate (a) node[black,left] {A}
  29. -- (2,4) coordinate (b) node[black,above] {B}
  30. -- (7,0) coordinate (c) node[black,right] {C}
  31. pic["$alpha$", draw=orange, -, angle eccentricity=1.2, angle radius=1cm]
  32. {angle=a--b--c}
  33. pic["$beta$", draw=orange, -, angle eccentricity=1.2, angle radius=1cm]
  34. {angle=c--a--b}
  35. pic["$gamma$", draw=orange, -, angle eccentricity=1.2, angle radius=1cm]
  36. {angle=b--c--a}-- cycle;
  37. end{tikzpicture}
  38.  
  39. end{document}
Add Comment
Please, Sign In to add comment