xsim mit tcolorbox - Rückgabewert 1 beendet
Ich spiele gerade mit dem Pakte xsim Paket `xsim` herum und versuche es für unsere Zwecke zu konfigurieren. Ich habe mich am Beispiel zur Verwendung mit tcolorbox `tcolorbox` auf Seite 36 der Dokumentation orientiert und folgende Umgebung kreiert:
\documentclass{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{tcolorbox}
\usepackage{xsim}
%Aufgabenumgebung
\DeclareExerciseEnvironmentTemplate{tcolorbox}
{%
\tcolorbox[standard jigsaw,
opacityback=0,
opacityframe=0,
coltitle=black,
breakable ,
drop shadow ,
beforeafter skip = .5\baselineskip ,
title =
\textbf{\GetExerciseName~\GetExerciseProperty{counter}}%
\GetExercisePropertyT{subtitle}{ \textit{\PropertyValue}}%
\IfInsideSolutionF{%
\GetExercisePropertyT{points}{ % notice the space
(%
\printgoal{\PropertyValue}
\IfExerciseGoalSingularTF{points}
{\XSIMtranslate{point}}
{\XSIMtranslate{points}}%
)%
}%
}%
]%
}
{\endtcolorbox}
\DeclareExerciseType{klausuraufgabe}{
exercise-env = aufgabe ,
solution-env = loesung ,
exercise-name = Aufgabe ,
solution-name = Loesung ,
exercise-template = tcolorbox ,
solution-template = tcolorbox
}
\begin{document}
\begin{aufgabe}[points=2+2+2]
Das ist eine Aufgabe.
\end{aufgabe}
\end{document}
Es wird eine Ausgabe erzeugt die zunächst gut aussieht, allerdings wird mir
> [PDFLaTeX] mit Rückgabewert 1 beendet
ausgegeben. Kann man sagen woran das liegt bzw. welche Auswirkung das hat? Kann das einfach ignoriert werden?