Ich spiele gerade mit dem Paket Öffne in Overleaf
\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
ausgegeben. Kann man sagen woran das liegt bzw. welche Auswirkung das hat? Kann das einfach ignoriert werden? |
Man sollte Fehlermeldungen nie einfach ignorieren! :) Die log-Datei zeigt den genauen Fehler: Öffne in Overleaf
! Package pgfkeys Error: I do not know the key '/tcb/breakable' and I am going to ignore it. Perhaps you misspelled it. See the pgfkeys package documentation for explanation. Diese Option wird laut der Doku von Öffne in Overleaf
\usepackage{tcolorbox} \tcbuselibrary{breakable} oder: Öffne in Overleaf
\usepackage[most]{tcolorbox} beantwortet 17 Okt '17, 16:20 cgnieder Da versucht man eine neue Vorlage mit möglichst wenig Altlasten zu erstellen, fängt mit einem Blankodokument an und vergisst dann einfachste, wichtige Optionen... Danke!
(17 Okt '17, 16:41)
Hirshy
|