Guest User

Untitled

a guest
Sep 24th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. documentclass{book}
  2. usepackage[T1]{fontenc}
  3. usepackage{tikz,tikzpagenodes}
  4. usepackage[most]{tcolorbox}
  5. usetikzlibrary{calc}
  6. usetikzlibrary{intersections, patterns}
  7. tcbuselibrary{skins}
  8. usepackage{lipsum}
  9. usepackage{xcolor,etoolbox}
  10.  
  11.  
  12. definecolor{lightblue}{RGB}{199,232,250}
  13. definecolor{darkblue}{RGB}{59,134,215}
  14.  
  15. begin{document}
  16.  
  17.  
  18.  
  19. begin{tikzpicture}[overlay,remember picture]
  20. % container
  21. draw[fill=darkblue,draw=none] (0,0) -- ++(5cm,0) -- ++(0,1cm)
  22. arc (0:90:0.5) -- ++(-4.5cm,0) -- cycle;
  23. % Horizontal line
  24. draw[darkblue, line width=2pt] (0,0) -- (textwidth,0);
  25. % title of container
  26. node[scale=1.2] at (0.2cm,0.2cm) {textcolor{white}{Environment
  27. Title }};
  28. end{tikzpicture}
  29.  
  30.  
  31. end{document}
  32.  
  33. %%% Local Variables:
  34. %%% mode: latex
  35. %%% TeX-master: t
  36. %%% End:
Add Comment
Please, Sign In to add comment