Guest User

Untitled

a guest
Jun 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. documentclass{standalone}
  2. usepackage{tikz}
  3. usetikzlibrary{angles}
  4.  
  5. begin{document}
  6. begin{tikzpicture}
  7. coordinate (P) at (0,0);
  8. coordinate (A) at (90+45:1);
  9. coordinate (P') at ([yshift=1cm] P);
  10.  
  11. fill[blue] (-1,-1) rectangle (1,2);
  12.  
  13. draw (P) -- (P') (P) -- (A);
  14.  
  15. pic[draw, pic text=$beta$, angle eccentricity = 1.4] {angle = P'--P--A};
  16. end{tikzpicture}
  17. end{document}
  18.  
  19. label={[fill=white, fill opacity=.5, text opacity=1] $beta$}
  20.  
  21. documentclass{standalone}
  22. usepackage{tikz}
  23. usetikzlibrary{angles}
  24.  
  25. begin{document}
  26. begin{tikzpicture}
  27. coordinate (P) at (0,0);
  28. coordinate (A) at (90+45:1);
  29. coordinate (P') at ([yshift=1cm] P);
  30.  
  31. fill[blue] (-1,-1) rectangle (1,2);
  32.  
  33. draw (P) -- (P') (P) -- (A);
  34.  
  35. pic[draw,
  36. pic text=$beta$,
  37. pic text options={fill=white,fill opacity=.5,inner sep=1pt},% <- added
  38. angle eccentricity = 1.4] {angle = P'--P--A};
  39. end{tikzpicture}
  40. end{document}
Add Comment
Please, Sign In to add comment