Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. documentclass[12pt,a4paper,twoside]{report} %openright
  2.  
  3. %Schriftart Arial - ACHTUNG: Compile with XeLaTeX (not PDFLaTeX)!
  4. usepackage{fontspec}
  5. defaultfontfeatures{Scale = MatchLowercase}
  6. setmainfont{Arial}[Scale = 1.0]
  7.  
  8. %Seitenlayout
  9. usepackage[top=2.5cm, bottom=2cm, left=2.5cm, right=2.5cm,paper=a4paper]{geometry}
  10.  
  11. %Zeilenabstand ändern
  12. usepackage[onehalfspacing]{setspace}
  13.  
  14. %Graphiken und Bilder
  15. usepackage{subfig}
  16.  
  17. %Kopfzeile
  18. usepackage{fancyhdr}
  19.  
  20. %Verzeichnisse
  21. usepackage[notindex, nottoc, numbib]{tocbibind}
  22. %usepackage[subfigure]{tocloft}
  23. %renewcommandcftchapdotsep{cftdotsep}
  24.  
  25. %Längenangaben für den Abstand zwischen zwei Absätzen.
  26. usepackage{parskip}
  27.  
  28. %Kapitelanzeige und -platzierung im Text
  29. usepackage[clearempty]{titlesec}
  30. titleformat{chapter}{normalfontfontsize{16pt}{0}bfseries}{thechapter.}{9pt}{}
  31. titleformat{section}{normalfontfontsize{14pt}{0}bfseries}{thesection}{9pt}{}
  32. titleformat{subsection}{normalfontfontsize{12pt}{0}bfseries}{thesubsection}{9pt}{}
  33. titlespacing*{chapter}{0pt}{-22pt}{7pt}
  34.  
  35.  
  36. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  37. % Formatierung der Kopfzeile
  38. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  39. setlength{headheight}{0.6cm}
  40.  
  41. pagestyle{fancy}
  42. fancyhf{}
  43. fancyhead[EL,OR]{fontsize{8}{10} selectfont thepage}
  44. fancyhead[ER,OL]{fontsize{8}{10} selectfont leftmark}
  45. renewcommand{chaptermark}[1]{markboth{#1}{}}
  46.  
  47. fancypagestyle{plain}{
  48. fancyhf{}
  49. fancyhead[EL,OR]{fontsize{8}{10} selectfont thepage}
  50. fancyhead[ER,OL]{fontsize{8}{10} selectfont nouppercase leftmark}
  51. }
  52.  
  53.  
  54. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  55. % Anfang von Dokumententext
  56. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  57. begin{document}
  58.  
  59. pagenumbering{Roman}
  60.  
  61. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  62. % Verzeichnisse
  63. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  64. tableofcontents
  65.  
  66.  
  67. chapter{Chapter 1}
  68. section{test section}
  69. subsection{test section}
  70. section{test section}
  71. subsection{test section}
  72.  
  73. end{document}
  74.  
  75. usepackage[subfigure]{tocloft}
  76. renewcommandcftchapdotsep{cftdotsep}
  77.  
  78. titlespacing*{chapter}{0pt}{-22pt}{7pt}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement