Guest User

Untitled

a guest
Jan 20th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. documentclass[17pt]{extarticle}
  2. usepackage{extsizes}
  3. usepackage{lipsum}
  4. usepackage{xcolor}
  5. usepackage{fancyhdr}
  6. usepackage{fontspec}
  7. usepackage{tikz}
  8.  
  9. % To set the font and formatting:
  10.  
  11. setmainfont{[lcars.ttf]} %To load the font named lcars
  12. %setmainfont[AutoFakeBold=1.5, AutoFakeSlant=0.4]{lcars.ttf} % To set bold or italics if I wanted to.
  13.  
  14. % LCARS Colours begin:
  15.  
  16. % Sources for colours:
  17. % http://lcarsmania.com/designguide/Okudagrams_Color.png
  18. % http://www.lcarscom.net/lcars_colors.gif
  19.  
  20. definecolor{LCARSBG}{HTML}{000000} % Pure black
  21. definecolor{LCARSTCMain}{HTML}{FF9900} %Dark yellow
  22. definecolor{LCARSTC1}{HTML}{CC99CC} % Light purple
  23. definecolor{LCARSTC2}{HTML}{9999CC} % Light blue
  24. definecolor{LCARSTC3}{HTML}{CC6666} % Light red
  25. definecolor{LCARSTC4}{HTML}{FFCC99} % Light peach
  26. definecolor{LCARSTC5}{HTML}{9999FF} % Light blue, a different variant
  27. definecolor{LCARSTC6}{HTML}{FF9966} % Light orange
  28. definecolor{LCARSTC7}{HTML}{CC6699} % Pink
  29. definecolor{LCARSTC8}{HTML}{F5173C} % Light red
  30. % LCARS Colours end.
  31.  
  32. % To set page numbers to the right colour and style.
  33.  
  34. makeatletter
  35. fancypagestyle{mypagestyle}{%
  36. fancyhf{}% Clear header/footer
  37. fancyfoot[C]{textcolor{LCARSTCMain}{thepage}}% Page # in middle/centre of footer
  38. renewcommand{footrulewidth}{0pt}% No footer rule
  39. deffootrule{{if@fancyplainletfootrulewidthplainfootrulewidthfi
  40. vskip-footruleskipvskip-footrulewidth
  41. hrule@widthheadwidth@heightfootrulewidthvskipfootruleskip}}
  42. }
  43. makeatother
  44. pagestyle{mypagestyle}
  45.  
  46. begin{document}
  47. begin{flushleft}
  48.  
  49. pagecolor{LCARSBG} % Page background colour.
  50. color{LCARSTCMain} % Main body text colour.
  51.  
  52. section*{textcolor{LCARSTC5}{Section Title:}}
  53.  
  54. textcolor{LCARSTC8}{A question or subheading here?}newline
  55.  
  56. textcolor{LCARSTC6}{Another sub heading:}newline
  57.  
  58. lipsum[1]
  59. begin{tikzpicture}
  60. draw[rounded corners] (0, 0) rectangle (4, 1) {};
  61. end{tikzpicture}
  62.  
  63. end{flushleft}
  64.  
  65. end{document}
Add Comment
Please, Sign In to add comment