Guest User

Untitled

a guest
Feb 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. % !TEX program = xelatex
  2.  
  3. documentclass{scrbook}
  4.  
  5. usepackage{wrapfig}
  6. usepackage{graphicx}
  7. usepackage{tcolorbox}
  8.  
  9. setlength{parskip}{3mm}
  10. setlength{parindent}{0pt}
  11.  
  12. newtcolorbox[auto counter]{sidebar}[2][]{
  13. parbox=false, % normal paragraph spacing (unless wrapped!)
  14. sharp corners,
  15. colframe=black,
  16. colback=black!15!white,
  17. title=#2,
  18. #1
  19. }
  20.  
  21. begin{document}
  22.  
  23. begin{sidebar}{Test without wrapping}
  24. Paragraph 1.
  25.  
  26. Paragraph 2.
  27. end{sidebar}
  28.  
  29. begin{wrapfigure}{r}{0.5linewidth}
  30. begin{sidebar}{Test with wrapping and no explicit parksip}
  31. Paragraph 1.
  32.  
  33. Paragraph 2.
  34. end{sidebar}
  35. end{wrapfigure}
  36.  
  37. begin{wrapfigure}{r}{0.5linewidth}
  38. begin{sidebar}{Test with wrapping and explicit parskip}
  39. setlength{parskip}{3mm}setlength{parindent}{0pt}Paragraph 1.
  40.  
  41. Paragraph 2.
  42. end{sidebar}
  43. end{wrapfigure}
  44.  
  45. end{document}
Add Comment
Please, Sign In to add comment