Advertisement
Guest User

Untitled

a guest
May 6th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. documentclass[12pt,a4paper]{scrartcl}
  2. usepackage[ngerman]{babel}
  3. usepackage[T1]{fontenc}
  4. usepackage[utf8]{inputenc}
  5. usepackage[paper=a4paper,left=25mm,right=25mm,top=25mm,bottom=17mm]{geometry}
  6. usepackage{graphicx}
  7. usepackage[automark]{scrlayer-scrpage}
  8. usepackage[german=guillemets]{csquotes}
  9. usepackage{minitoc}
  10. usepackage{mwe}
  11. usepackage{tocloft}
  12. newcommand{ignore}[1]{}
  13. renewcommand{cftpartleader}{cftdotfill{cftdotsep}}
  14. renewcommand{cftsecleader}{cftdotfill{cftdotsep}}
  15. chead{- thepage hspace{1pt} - }
  16. cfoot{}
  17. letraggedpartcentering
  18. makeatletter
  19. @addtoreset{section}{part}
  20. makeatother
  21. renewcommand*{partformat}{thepart}
  22. newcommand*{extendedpart}[5]{
  23. begin{titlepage}
  24. begin{large}
  25. centering
  26. #1par
  27. addpart{#2}refstepcounter{part}
  28. vfill
  29. #3par
  30. vfill
  31. #4par
  32. vfill
  33. textbf{Autor:} #5par
  34. end{large}
  35. end{titlepage}
  36. parttoc
  37. }
  38. usepackage{hyperref}
  39. renewcommand*{theHsection}{thepart.thesection}
  40. mtcsettitle{parttoc}{Inhaltsverzeichnis}
  41.  
  42. begin{document}
  43.  
  44. begin{titlepage}
  45. begin{large}
  46. centering
  47. Some informationpar
  48. part*{Title}
  49. vfill
  50. Description par
  51. vfill
  52. includegraphics[width=.7textwidth]{picture.jpg}par
  53. vfill
  54. begin{center} textbf{Author:} ... end{center}
  55. end{large}
  56. end{titlepage}
  57.  
  58. setcounter{tocdepth}{3}
  59. tocloftpagestyle{empty}
  60. doparttoc
  61. tableofcontents
  62. clearpage
  63.  
  64. addpart{Introduction}
  65. blindtext
  66.  
  67. extendedpart{Some information2}{Title2}{Description2}{includegraphics[width=.5textwidth]{picture2.jpg}}{Author2}
  68. include{story1}
  69.  
  70. %and the other nine stories
  71.  
  72. end{document}
  73.  
  74. section{Title 1}
  75. Some text here.
  76. section{Title 2}
  77. Some other text here.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement