Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. documentclass[twoside]{scrbook}
  2. usepackage[letterpaper, left=1.5cm, right=1.5cm, bindingoffset=1.5cm]{geometry}
  3. usepackage[utf8]{inputenc}
  4. usepackage{fancyhdr}
  5. usepackage{titlesec}
  6. usepackage{tikz}
  7. usepackage{lipsum}
  8. usepackage{etoolbox}
  9. patchcmd{chapter}{thispagestyle{plain}}{thispagestyle{fancy}}{}{}
  10.  
  11. definecolor{gmitblue}{RGB}{93,138,168}
  12. definecolor{midnightgreen}{rgb}{0.0, 0.29, 0.33}
  13.  
  14. usetikzlibrary{calc}
  15. renewcommand{headrulewidth}{0pt}
  16.  
  17. pagestyle{fancy}
  18. fancyhf{}
  19. fancyhead[CO]{%
  20. begin{tikzpicture}[overlay, remember picture]%
  21. fill[midnightgreen] ($(current page.north west)+(0.25in,-0.35in)$) rectangle ($(current page.north west)+(0.65in,-0.75in)$);
  22. fill[midnightgreen] ($(current page.north west)+(2.5in,-0.35in)$) rectangle ($(current page.north east)+(-0.6in,-0.75in)$);
  23. node[anchor=north west, text=white, font=largebfseries, minimum size=1in, inner xsep=5mm] at ($(current page.north west)+(-0.1in,-0.05in)$){thepage};
  24. node[anchor=north west, text=white, font=largebfseries, minimum size=1in] at ($(current page.north west)+(2.6in,-0.075in)$) {rightmark};
  25. end{tikzpicture}
  26. }
  27. fancyhead[CE]{%
  28. begin{tikzpicture}[overlay, remember picture]%
  29. fill[midnightgreen] ($(current page.north west)+(0.6in,-0.35in)$) rectangle ($(current page.north east)+(-2.25in,-0.75in)$);
  30. fill[midnightgreen] ($(current page.north east)+(-0.65in,-0.35in)$) rectangle ($(current page.north east)+(-0.25in,-0.75in)$);
  31. node[anchor=north west, text=white, font=largebfseries, minimum size=1in, inner xsep=5mm] at ($(current page.north east)+(-1in,-0.05in)$){thepage};
  32. node[anchor=north west, text=white, font=largebfseries, minimum size=1in] at ($(current page.north west)+(0.65in,-0.075in)$) {leftmark};
  33. end{tikzpicture}
  34. }
  35. setlength{headheight}{12pt}
  36.  
  37. title{A reasonably long title}
  38. date{today}
  39. author{The author}
  40.  
  41. begin{document}
  42. maketitle
  43. chapter[Hola Mundo]{Hola Mundo}
  44. lipsum[1-9]
  45. section{La prueba na' ma'}
  46.  
  47. chapter[Hola de Nuevo]{Hola Mundo... de Nuevo}
  48. lipsum[10-19]
  49. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement