Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. PassOptionsToPackage{svgnames,table,dvipsnames}{xcolor}
  2. documentclass[a4paper,10pt,oneside,DIV=9]{scrartcl}
  3.  
  4. % Packages
  5. usepackage{scrlayer-scrpage}
  6. usepackage{xcolor} % showframe loads this
  7. usepackage[normalem]{ulem}
  8. usepackage{hyperref}
  9.  
  10. % demo only
  11. usepackage{lipsum}
  12. usepackage{mwe}
  13.  
  14. % theme colours
  15. definecolor{MyThemeColour}{cmyk}{0.10,0.10,1.00,0} % personal yellow
  16.  
  17. % KOMA and general setup
  18. renewcommand*{sectionformat}{%
  19. llap{thesectionautodotenskip}%
  20. }
  21. renewcommand*{subsectionformat}{%
  22. llap{thesubsectionautodotenskip}%
  23. }
  24. renewcommand*{subsubsectionformat}{%
  25. llap{thesubsubsectionautodotenskip}%
  26. }
  27.  
  28. % underline section headings
  29. makeatletter
  30. renewcommand{sectionlinesformat}[4]{%
  31. @hangfrom{hskip #2expandafterheadulineexpandafter{#3}}%
  32. {#4}%
  33. }
  34. makeatother
  35. newcommandheaduline{%
  36. bgroupmarkoverwith{textcolor{MyThemeColour}{rule[-0.75ex]{1pt}{1pt}}}ULon% 2pt 2pt
  37. }
  38. AtBeginDocument{renewcommandSectionformat[2]{headuline{#1}}}
  39.  
  40. % recalc the text block after all the font loading
  41. KOMAoptions{DIV=last}
  42.  
  43. begin{document}
  44. section{Lipsum}
  45. blinddocument
  46. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement