
Jedes Mal, wenn ich eine Bildunterschrift oder eine Tabelle schreibe, die mehr als eine Zeile einnimmt, erscheint sie im Dokument wie folgt
Figure 6.2: Polarization curves at 750C for 3P_{CO}=P_{H_{2}} at the
initial water concentrations of 3.2, 6.4, 9.6, 15, 20 and 25%.
Und ich möchte, dass es so aussieht,
Figure 6.2: Polarization curves at 750C for 3P_{CO}=P_{H_{2}} at the
initial water concentrations of 3.2, 6.4, 9.6, 15, 20 and 25%.
Was soll ich machen?
Danke,
Ramon
Antwort1
Das von Ihnen beschriebene Verhalten ist die Standardeinstellung in KOMA-Klassen. Sie können dies ändern, indem Sie Folgendes einstellen, \setcapindent
um 0pt
das gewünschte Ergebnis zu erhalten:
\documentclass{scrartcl}
\setcapindent{0pt}
\begin{document}
\begin{figure}
\centering
A
\caption{Test figure with some addtional text spanning more than one line just for the example and some more text}
\end{figure}
\begin{table}
\centering
B
\caption{Test table with some addtional text spanning more than one line just for the example and some more text}
\end{table}
\end{document}