Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

82 行
1.8KB

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