summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/srdp-mathematik
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/srdp-mathematik')
-rw-r--r--macros/latex/contrib/srdp-mathematik/README.md2
-rw-r--r--macros/latex/contrib/srdp-mathematik/srdp-mathematik.pdfbin175330 -> 178996 bytes
-rw-r--r--macros/latex/contrib/srdp-mathematik/srdp-mathematik.sty20
-rw-r--r--macros/latex/contrib/srdp-mathematik/srdp-mathematik.tex34
4 files changed, 53 insertions, 3 deletions
diff --git a/macros/latex/contrib/srdp-mathematik/README.md b/macros/latex/contrib/srdp-mathematik/README.md
index be20314ea2..a8c4d5c94b 100644
--- a/macros/latex/contrib/srdp-mathematik/README.md
+++ b/macros/latex/contrib/srdp-mathematik/README.md
@@ -1,4 +1,4 @@
-# srdp-mathematik.sty v1.9.6
+# srdp-mathematik.sty v1.10.0
This package provides basic commands for the defined formats of the Austrian sRDP in mathematics.
Furthermore, it includes ways to implement answers in the tex file, which can be voluntarily displayed in the pdf file and
diff --git a/macros/latex/contrib/srdp-mathematik/srdp-mathematik.pdf b/macros/latex/contrib/srdp-mathematik/srdp-mathematik.pdf
index c9bada9a13..f672e17a53 100644
--- a/macros/latex/contrib/srdp-mathematik/srdp-mathematik.pdf
+++ b/macros/latex/contrib/srdp-mathematik/srdp-mathematik.pdf
Binary files differ
diff --git a/macros/latex/contrib/srdp-mathematik/srdp-mathematik.sty b/macros/latex/contrib/srdp-mathematik/srdp-mathematik.sty
index 1b1bbde374..e6299a1ce3 100644
--- a/macros/latex/contrib/srdp-mathematik/srdp-mathematik.sty
+++ b/macros/latex/contrib/srdp-mathematik/srdp-mathematik.sty
@@ -10,7 +10,7 @@
%
\NeedsTeXFormat{LaTeX2e}[1996/12/26]
-\ProvidesPackage{srdp-mathematik}[2022/04/05 v1.9.6 Standard-Schularbeitsformate]
+\ProvidesPackage{srdp-mathematik}[2022/08/24 v1.10.0 Standard-Schularbeitsformate]
\usepackage{color}
@@ -391,6 +391,24 @@ Erreichte Punkte &Gesamt&\multicolumn{2}{c}{Note}& \\
\end{center}\STautoround{}\normalsize}
+\NewDocumentCommand{\individualnotenschluessel}{ O{} O{} m m m m m m m}{
+\null\vfill
+\footnotesize\renewcommand{\arraystretch}{1}
+\begin{center}
+\begin{tabular}{|C{3cm}C{3cm}C{3cm}C{3cm}C{3cm}|} \hline
+\ifthenelse{\equal{#2}{prozent}}{%
+Erreichte Punkte & Prozent & Gesamt & \multicolumn{2}{c|}{Note} \\
+&& \multirow{2}{*}{\ifthenelse{\equal{#1}{}}{\thepunkte}{#1}} && \\%
+}{%
+Erreichte Punkte &Gesamt&\multicolumn{2}{c}{Note}& \\
+&\multirow{2}{*}{\ifthenelse{\equal{#1}{}}{\thepunkte}{#1}} &&& \\}
+&&&& \\ \hline \hline
+\scriptsize{Sehr gut} & \scriptsize{Gut} & \scriptsize{Befriedigend} & \scriptsize{Gen\"ugend} & \scriptsize{Nicht gen\"ugend} \\
+\scriptsize{\ifthenelse{\equal{#1}{}}{\thepunkte}{#1} ~ - #3}& \scriptsize{#4 ~ - #5} & \scriptsize{#6 ~ - #7} & \scriptsize{#8 ~ - #9} & \scriptsize{unter #9} \\ \hline
+\end{tabular}
+\end{center}\normalsize}
+
+
\NewDocumentCommand{\punkteverteilung}{ O{} O{} O{} m m m m}{
\null\vfill
diff --git a/macros/latex/contrib/srdp-mathematik/srdp-mathematik.tex b/macros/latex/contrib/srdp-mathematik/srdp-mathematik.tex
index 5e4ef530bc..5e2aee6373 100644
--- a/macros/latex/contrib/srdp-mathematik/srdp-mathematik.tex
+++ b/macros/latex/contrib/srdp-mathematik/srdp-mathematik.tex
@@ -55,7 +55,7 @@ hidelinks
\vfill
-\Huge The \textit{srdp-mathematik} package v1.9.6\\[1cm]
+\Huge The \textit{srdp-mathematik} package v1.10.0\\[1cm]
Documentation \\ [1cm]
@@ -212,6 +212,38 @@ Die Option 3 \texttt{ms} ermöglicht die Darstellung des Notenschlüssels entspr
\textsc{Ausgabe:}
\notenschluessel[][][ms]{0.91}{0.8}{0.64}{0.5}
+
+\subsubsection{\texttt{\textbackslash individualnotenschluessel}}
+In manchen Fällen ist die automatische Berechnung der Punkte durch die Prozentangaben nicht erwünscht. der Befehl \texttt{individualnotenschluessel} ermöglicht daher die individuelle Eingabe aller Punktegrenzen.\\
+
+\textsc{Eingabe:}
+\begin{verbatim}
+\individualnotenschluessel{42}{41}{38}{37}{31.5}{31}{24}
+\end{verbatim}
+
+\textsc{Ausgabe:}
+\individualnotenschluessel{42}{41}{38}{37}{31.5}{31}{24}
+
+Standardmäßig wird die Gesamtpunktezahl als Punkteobergrenze festgelegt. Auch diese kann jedoch optional manuell geändert werden.\\
+
+\textsc{Eingabe:}
+\begin{verbatim}
+\individualnotenschluessel[50]{42}{41}{38}{37}{31.5}{31}{24}
+\end{verbatim}
+
+\textsc{Ausgabe:}
+\individualnotenschluessel[50]{42}{41}{38}{37}{31.5}{31}{24}
+
+Auch die Option der Prozentanzeige ist mit diesem Befehl möglich:\\
+
+\textsc{Eingabe:}
+\begin{verbatim}
+\individualnotenschluessel[][prozent]{42}{41}{38}{37}{31.5}{31}{24}
+\end{verbatim}
+
+\textsc{Ausgabe:}
+\individualnotenschluessel[][prozent]{42}{41}{38}{37}{31.5}{31}{24}
+
%\paragraph{Notenschlüssel - Ohne Prozentangabe}
%Analog zum \texttt{notenschluessel} funktioniert auch der Befehl \texttt{notenschluesselop}. Es wird dabei jedoch die Prozentspalte nicht angezeigt.
%