Advertisement
Guest User

Untitled

a guest
Jul 26th, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. documentclass[10pt,twoside]{memoir}
  2. usepackage[german]{babel}
  3. usepackage{blindtext}
  4. usepackage[ansinew]{inputenc}
  5.  
  6. renewcommand{thesection}{arabic{section}}
  7. setcounter{secnumdepth}{3} % Subsection mit Zähler (1.1) versehen
  8.  
  9. %%
  10. % Kolumnentitel
  11. %%
  12. renewcommand{chaptermark}[1]{ markboth{#1}{} } % Stil der Kopfzeile zurücksetzen
  13. renewcommand{sectionmark}[1]{ markright{#1}{} } % Stil der Kopfzeile
  14.  
  15. % Page style
  16. makepagestyle{mystyle}
  17. makeevenhead{mystyle}{thepage}{smallchapterauthor}{}
  18. makeoddhead{mystyle}{}{slshapeleftmark}{thepage}
  19. pagestyle{mystyle}
  20.  
  21. %%
  22. % Inhaltsverzeichnis
  23. %%
  24. renewcommand*{cftchapterdotsep}{cftdotsep}
  25. settocdepth{chapter}
  26. renewcommand{cftchapterfont}{normalfont}
  27. renewcommand{cftchapterpagefont}{normalfont}
  28.  
  29. makeatletter
  30. DeclareRobustCommandauthortoctext[1]{%
  31. {addvspace{10pt}nopagebreakleftskip0emrelax
  32. rightskip @tocrmargrelax
  33. noindentitshape#1paraddvspace{-7pt}}}
  34. makeatother
  35. newcommandauthortoc[1]{%
  36. gdefchapterauthor{#1}%
  37. addtocontents{toc}{authortoctext{#1}}}
  38.  
  39. %%
  40. % Dokumentenbeginn
  41. %%
  42. begin{document}
  43. tableofcontents*
  44. authortoc{Walter von der Vogelweide}
  45. chapter{Ich sass uf eynem Steine?}
  46. section{Und dachte Bein mit Beine}
  47. BlindtextBlindtextBlindtextBlindtext
  48.  
  49. authortoc{Hartman von Aue}
  50. chapter[Was auch immer]{So gebt nur mehr und immer mehr}
  51. section{Moralische Quellen der Irrationalitat}
  52. BlindtextBlindtextBlindtextBlindtext
  53. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement