Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[tikz]{mdframed}
  3. usepackage{lipsum}
  4. definecolor{greentitle}{cmyk}{.3,.02,.4,0}
  5. makeatletter
  6. newenvironment{understanding}[1][]%
  7. {begin{mdframed}[
  8. bottomline=false,
  9. leftline=false,
  10. linecolor=greentitle,
  11. backgroundcolor=white,
  12. roundcorner=0pt,
  13. linewidth=1pt,
  14. innerrightmargin=25pt,
  15. singleextra={
  16. fill[greentitle] (P) rectangle ([xshift=-13pt]P|-O);
  17. node[overlay,anchor=south east,rotate=90,font=color{white}scshape] at (P) {fontsize{10} {12}selectfont{UNDERSTANDING}};
  18. },
  19. ]
  20. }
  21. {end{mdframed}}
  22. makeatother
  23. begin{document}
  24. begin{understanding}
  25. lipsum[2-3]
  26. end{understanding}
  27. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement