Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

67 lines
1.3KB

  1. \ProvidesClass{lecture}
  2. \LoadClass[a4paper]{article}
  3. \RequirePackage[utf8]{inputenc}
  4. \RequirePackage[T1]{fontenc}
  5. \RequirePackage{textcomp}
  6. \RequirePackage[german]{babel}
  7. \RequirePackage{amsmath, amssymb, amsthm}
  8. \RequirePackage{mdframed}
  9. \RequirePackage{fancyhdr}
  10. \RequirePackage{geometry}
  11. \RequirePackage{import}
  12. \RequirePackage{pdfpages}
  13. \RequirePackage{transparent}
  14. \RequirePackage{xcolor}
  15. \DeclareOption{uebung}{
  16. \makeatletter
  17. \lhead{\@title}
  18. \rhead{\@author}
  19. \makeatother
  20. }
  21. \ProcessOptions\relax
  22. % PAGE GEOMETRY
  23. \geometry{
  24. left=15mm,
  25. right=40mm,
  26. top=20mm,
  27. bottom=20mm
  28. }
  29. % PARAGRAPH no indent but skip
  30. \setlength{\parskip}{3mm}
  31. \setlength{\parindent}{0mm}
  32. \theoremstyle{definition}
  33. \newmdtheoremenv{satz}{Satz}
  34. \newmdtheoremenv{lemma}{Lemma}
  35. \newmdtheoremenv{korrolar}{Korrolar}
  36. \newmdtheoremenv{definition}{Definition}
  37. \newtheorem{bsp}{Beispiel}
  38. \newtheorem{bem}{Bemerkung}
  39. \newtheorem{aufgabe}{Aufgabe}
  40. \newcommand{\N}{\mathbb{N}}
  41. \newcommand{\R}{\mathbb{R}}
  42. \newcommand{\Z}{\mathbb{Z}}
  43. \newcommand{\Q}{\mathbb{Q}}
  44. \newcommand{\C}{\mathbb{C}}
  45. % HEADERS
  46. \pagestyle{fancy}
  47. \newcommand{\incfig}[1]{%
  48. \def\svgwidth{\columnwidth}
  49. \import{./figures/}{#1.pdf_tex}
  50. }
  51. \pdfsuppresswarningpagegroup=1
  52. % horizontal rule
  53. \newcommand\hr{
  54. \noindent\rule[0.5ex]{\linewidth}{0.5pt}
  55. }