Guest User

Untitled

a guest
Mar 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[many]{tcolorbox}
  3. newcounter{task}
  4. newtcolorbox{call out}%
  5. {enhanced jigsaw,
  6. breakable,
  7. before skip=baselineskip,
  8. boxsep=0pt,
  9. boxrule=0mm,
  10. colback=white, colframe={red},
  11. top=0mm,bottom=0mm,left=2mm,right=0mm,
  12. arc=0mm,
  13. leftrule=2mm,
  14. }% end of task
  15.  
  16. usepackage{lipsum}
  17.  
  18. begin{document}
  19. lipsum[1-3]
  20. begin{call out}
  21. lipsum[4-6]
  22. end{call out}
  23. lipsum[7]
  24. end{document}
Add Comment
Please, Sign In to add comment