Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 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. %Deutsche Umlaute
  12. usepackage{ngerman}
  13.  
  14. %Zitierungen in der richtigen Reihenfolge
  15. usepackage{cite}
  16.  
  17. %Längenangaben für den Abstand zwischen zwei Absätzen.
  18. usepackage{parskip}
  19.  
  20. %Zeilenabstand ändern
  21. usepackage[onehalfspacing]{setspace}
  22.  
  23. %Farbige Texte etc
  24. usepackage{color}
  25.  
  26. %Graphiken und Bilder
  27. usepackage{graphicx}
  28. usepackage{subfig}
  29. usepackage{psfrag}
  30. usepackage{wrapfig}
  31.  
  32. %Tabellenumgebung
  33. usepackage{tabularx}
  34. usepackage{booktabs} %toprule, midrule, bottomrule
  35.  
  36. %Mathematische Symbole und Zeichen
  37. usepackage{amsmath}
  38. usepackage{amssymb}
  39. usepackage{mathrsfs}
  40.  
  41. %Algorithm Package
  42. usepackage[ruled,vlined]{algorithm2e}
  43.  
  44. %Kopfzeile
  45. usepackage{fancyhdr}
  46.  
  47. %Kapitelanzeige und -platzierung im Text
  48. usepackage[clearempty]{titlesec}
  49. titleformat{chapter}{normalfontfontsize{16pt}{0}bfseries}{thechapter.}{9pt}{}
  50. titleformat{section}{normalfontfontsize{14pt}{0}bfseries}{thesection}{9pt}{}
  51. titleformat{subsection}{normalfontfontsize{12pt}{0}bfseries}{thesubsection}{9pt}{}
  52. titlespacing*{chapter}{0pt}{-22pt}{4pt}
  53.  
  54.  
  55.  
  56. %Verzeichnisse
  57. usepackage[notindex, nottoc, numbib]{tocbibind} %TOC
  58.  
  59. usepackage{tocbasic}
  60.  
  61. DeclareTOCStyleEntry[
  62. indent=0pt,
  63. entrynumberformat=useprefixfigure{figurename},
  64. dynnumwidth,
  65. numsep=1em
  66. ]{tocline}{figure}
  67. newcommanduseprefixfigure[2]{#1hspace{3pt}#2:hfill}
  68.  
  69.  
  70.  
  71. %Formatierung Inhaltsverzeichnis
  72. usepackage{titletoc}
  73. contentsmargin{2em}
  74. dottedcontents{chapter}[21pt]{addvspace{15pt}bfseries}{20pt}{9.5pt}
  75. dottedcontents{section}[50pt]{addvspace{3pt}}{2.3em}{9.5pt}
  76. dottedcontents{subsection}[89pt]{addvspace{3pt}}{3.2em}{9.5pt}
  77.  
  78.  
  79.  
  80. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  81. % Formatierung der Kopfzeile
  82. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  83. setlength{headheight}{0.6cm}
  84.  
  85. pagestyle{fancy}
  86. fancyhf{}
  87. fancyhead[EL,OR]{fontsize{8}{10} selectfont thepage}
  88. fancyhead[ER,OL]{fontsize{8}{10} selectfont leftmark}
  89. renewcommand{chaptermark}[1]{markboth{#1}{}}
  90.  
  91. fancypagestyle{plain}{
  92. fancyhf{}
  93. fancyhead[EL,OR]{fontsize{8}{10} selectfont thepage}
  94. fancyhead[ER,OL]{fontsize{8}{10} selectfont nouppercase leftmark}
  95. }
  96.  
  97.  
  98. % = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
  99. begin{document}
  100. listoffigures
  101. newpage
  102.  
  103. begin{figure}[!ht]
  104. centering
  105. rule{2cm}{2cm}
  106. caption{test figure one}
  107. label{fig:test1}
  108. end{figure}
  109.  
  110. begin{figure}[!ht]
  111. centering
  112. rule{2cm}{2cm}
  113. caption{test figure two}
  114. label{fig:test2}
  115. end{figure}
  116.  
  117.  
  118. end{document}
  119.  
  120. newcommanduseprefixfigure[2]{#1hspace{3pt}#2:hfill}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement