Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

78 lignes
1.6KB

  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. \RequirePackage{array}
  16. \RequirePackage{enumerate}
  17. \DeclareOption{uebung}{
  18. \makeatletter
  19. \lhead{\@title}
  20. \rhead{\@author}
  21. \makeatother
  22. }
  23. \ProcessOptions\relax
  24. % PAGE GEOMETRY
  25. \geometry{
  26. left=15mm,
  27. right=40mm,
  28. top=20mm,
  29. bottom=20mm
  30. }
  31. % PARAGRAPH no indent but skip
  32. \setlength{\parskip}{3mm}
  33. \setlength{\parindent}{0mm}
  34. \theoremstyle{definition}
  35. \newmdtheoremenv{satz}{Satz}
  36. \newmdtheoremenv{lemma}{Lemma}
  37. \newmdtheoremenv{korrolar}{Korrolar}
  38. \newmdtheoremenv{definition}{Definition}
  39. \newtheorem{bsp}{Beispiel}
  40. \newtheorem{bem}{Bemerkung}
  41. \newtheorem{aufgabe}{Aufgabe}
  42. \newcommand{\N}{\mathbb{N}}
  43. \newcommand{\R}{\mathbb{R}}
  44. \newcommand{\Z}{\mathbb{Z}}
  45. \newcommand{\Q}{\mathbb{Q}}
  46. \newcommand{\C}{\mathbb{C}}
  47. % HEADERS
  48. \pagestyle{fancy}
  49. \newcommand{\incfig}[1]{%
  50. \def\svgwidth{\columnwidth}
  51. \import{./figures/}{#1.pdf_tex}
  52. }
  53. \pdfsuppresswarningpagegroup=1
  54. % horizontal rule
  55. \newcommand\hr{
  56. \noindent\rule[0.5ex]{\linewidth}{0.5pt}
  57. }
  58. % punkte tabelle
  59. \newcommand\punkte{
  60. \begin{tabular}{|c|m{1cm}|m{1cm}|m{1cm}|m{1cm}|m{1cm}|@{}m{0cm}@{}}
  61. \hline
  62. Aufgabe & \centering A1 & \centering A2 & \centering A3 & \centering A4 & \centering $\sum$ & \\[5mm] \hline
  63. Punkte & & & & & & \\[5mm] \hline
  64. \end{tabular}
  65. }