Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. % **************************************************
  2. % Document Class Definition
  3. % **************************************************
  4. documentclass[%
  5. paper=A4, % paper size --> A4 is default in Germany
  6. twoside=true, % onesite or twoside printing
  7. openright, % doublepage cleaning ends up right side
  8. parskip=full, % spacing value / method for paragraphs
  9. chapterprefix=true, % prefix for chapter marks
  10. 11pt, % font size
  11. headings=normal, % size of headings
  12. bibliography=totoc, % include bib in toc
  13. listof=totoc, % include listof entries in toc
  14. titlepage=on, % own page for each title page
  15. captions=tableabove, % display table captions above the float env
  16. draft=false, % value for draft version
  17. ]{scrreprt}%
  18.  
  19. PassOptionsToPackage{utf8}{inputenc}
  20. usepackage{inputenc}
  21.  
  22. usepackage[english]{babel} % babel system, adjust the language of the content
  23. PassOptionsToPackage{% setup clean thesis style
  24. figuresep=colon,%
  25. sansserif=false,%
  26. hangfigurecaption=false,%
  27. hangsection=true,%
  28. hangsubsection=true,%
  29. colorize=full,%
  30. colortheme=bluemagenta,%
  31. bibsys=biber,%
  32. % bibfile=bib-refs,%
  33. bibstyle=alphabetic,%
  34. wrapfooter=false,%
  35. }{cleanthesis}
  36. usepackage{cleanthesis}
  37.  
  38. % **************************************************
  39. % prelim2e
  40. % **************************************************
  41. usepackage{prelim2e}
  42. renewcommand*{PrelimWords}{textnormal{small Draft}}
  43. renewcommand*{PrelimText}{textnormal{smalltextcolor{black!40}{
  44. PrelimWords quad today }}}
  45.  
  46. % **************************************************
  47. % Document CONTENT
  48. % **************************************************
  49. begin{document}
  50.  
  51. % --------------------------
  52. % Front matter
  53. % --------------------------
  54. begin{titlepage}
  55. pdfbookmark[0]{Cover}{Cover}
  56. flushright
  57. hfill
  58. vfill
  59. {LARGE Thesistitle par}
  60. rule[5pt]{textwidth}{.4pt} par
  61. {Large Thesisname}
  62. vfill
  63. end{titlepage}
  64. cleardoublepage
  65.  
  66. tableofcontents
  67. cleardoublepage
  68.  
  69. % --------------------------
  70. % Body matter
  71. % --------------------------
  72. chapter{Introduction}
  73. label{sec:intro}
  74. Blindtext[2][2]
  75.  
  76. % --------------------------
  77. % Declaration
  78. % --------------------------
  79. pdfbookmark[0]{Declaration}{Declaration}
  80. chapter*{Declaration}
  81. label{sec:declaration}
  82. thispagestyle{empty}
  83. You can put your declaration here.
  84.  
  85. bigskip
  86. noindenttextit{ThesisUniversityCity, today}
  87. smallskip
  88. begin{flushright}
  89. begin{minipage}{5cm}
  90. rule{textwidth}{1pt}
  91. centering ThesisName
  92. end{minipage}
  93. end{flushright}
  94. cleardoublepage
  95.  
  96. % **************************************************
  97. % End of Document CONTENT
  98. % **************************************************
  99. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement