Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. documentclass[english]{scrartcl}
  2. usepackage{babel,blindtext,framed}
  3. newcommandlorname{Highlights}
  4. newcommandlorext{lor} %Dateierweiterung
  5. newcommandlortmp{}
  6. newcounter{Highlights}
  7. setcounter{Highlights}{0}
  8. newcommand{HigH}[2][empty]{%
  9. textit{%
  10. Highlight refstepcounter{Highlights}theHighlights:}%
  11. vspace{-0.75baselineskip}
  12. begin{framed}%
  13. #2
  14. end{framed}%
  15. ifx#1empty
  16. renewcommandlortmp{#2}
  17. elserenewcommandlortmp{#1}
  18. fi%
  19. addcontentsline{lorext}{subsection}{theHighlightsquadlortmp}
  20. }
  21. makeatletter
  22. newcommandlistofrecommendations{%
  23. section*{lorname}
  24. markboth{lorname}{}
  25. @starttoc{lorext}
  26. }
  27. makeatother
  28. begin{document}
  29.  
  30.  
  31. section{First section}
  32. label{CLA:first-section}
  33.  
  34.  
  35. HigH{First recommendation}
  36. HigH{Second highlight}
  37. HigH[Too long to print (not: to long to print)]{blindtext}
  38. clearpage
  39. listofrecommendations
  40. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement