Guest User

Untitled

a guest
Feb 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. documentclass[a4paper, oneside, 12pt, parskip=half]{scrbook}
  2.  
  3. usepackage[a4paper,
  4. vmargin=2cm, hmargin=2cm, % page margins
  5. includehead, includefoot, % Margins calculated include header and footer
  6. footskip=2em]
  7. {geometry}
  8.  
  9. usepackage[footsepline=0.25pt, headsepline=0.25pt, automark]{scrlayer-scrpage}
  10.  
  11. % automark places chapter/section title in header. Also enables placement in footer.
  12. automark[section]{chapter}
  13.  
  14. usepackage{lastpage}
  15.  
  16. ohead{rightmark}
  17.  
  18. % Footer content
  19. cfoot{tiny{Page thepage of pageref*{LastPage} \
  20. leftmark}}
  21.  
  22. usepackage{lipsum}
  23.  
  24. begin{document}
  25.  
  26. chapter{Chap One}
  27.  
  28. lipsum[1]
  29.  
  30. section{Sec One.One}
  31.  
  32. lipsum[2-5]
  33.  
  34. section{Sec One.Two}
  35.  
  36. lipsum[6-10]
  37.  
  38. chapter{Chap Two}
  39.  
  40. lipsum[11-15]
  41.  
  42. end{document}
Add Comment
Please, Sign In to add comment