I am looking for a way to change the caption alignment. The alignment seems to be centered for short texts and left-aligned for long ones as can be seen in the following example:
Code: Select all
\documentclass[]{scrbook}
\usepackage{graphicx}
\usepackage{caption}
\begin{document}
\begin{figure}
\centering
\includegraphics[scale=0.5]{Testimage.png}
\caption{text,\\text}
\end{figure}
\begin{figure}
\centering
\includegraphics[scale=0.5]{Testimage.png}
\caption{a much much much much much longer text,\\a much much much much much longer text}
\end{figure}
\end{document}
Out of curiosity I'd also like to know if there is a way to change the alignment arbitrarily even though I probably won't do that. ^^
Kind regards,
Alex