Da ich einen Computer crash hatte mußte ich LaTeX neu installieren und anschließend konnte ich mein Dokument nicht mehr kompilieren,
von den diversen Problemen möchte ich hier nur eins schildern. - Ich hatte in der Präambel folgende Zeile drin:
Code:
\usepackage[labelfont=sf, format=plain, indention=\mycaptionindent, font=small, figurename=Fig., justification=RaggedRight]{caption}
Das klappte vor dem Upgrade ohne Probleme, mit der neuen Version von "caption.sty" (2011/11/10 v3.2e)
gibt es damit aber Probleme, die Fehlermeldung lautet:
Package caption Error: justification undefined.
Als Fehlerstelle weist PDFlatex die Zeile 258 im Style-File "caption.sty" aus.
Dieses Problem konnte ich auf folgende Weise kurieren:
Code:
\usepackage[labelfont=sf, format=plain, indention=\mycaptionindent, font=small, figurename=Fig.]{caption}
\captionsetup{justification=RaggedRight}
Grüße

ellocco