wie kann ich die Schriftart in den captions von subfigures ändern?
Danke
\documentclass[fontsize=12pt,DIV13,paper=a4,abstract=true,titlepage=false]{scrartcl} \usepackage{scrpage2} \usepackage{mathptmx} \usepackage{courier} \KOMAoptions{DIV=last} \usepackage[ngerman,UKenglish,USenglish]{babel} \usepackage{subfigmat} \usepackage{todonotes} \usepackage[pdftex,bookmarks=true,bookmarksnumbered=true,bookmarksopen=true,hypertexnames=false,breaklinks=true]{hyperref} \usepackage{changepage} % hier wird die Schrift der "Gesamtcaption" geändert. Wie geht das für die subfigures? \addtokomafont{caption}{\itshape} \addtokomafont{captionlabel}{\itshape} \begin{document} \begin{figure}[h!] \begin{adjustwidth}{1cm}{1cm} \begin{subfigmatrix}{2} \subfigure[Text1\label{fig:photo1}]{\missingfigure[figwidth=6cm]{bla}} \subfigure[Text2\label{fig:photo2}]{\missingfigure[figwidth=6cm]{blub}} \end{subfigmatrix} \caption{Gesamttext kursiv} \label{fig:photos} \end{adjustwidth} \end{figure} \end{document}