I am using the caption package to create captions and subcaptions (with \caption*{}) below my figures. I simply want to change the text format of the subcaption to italic. I have a vague feeling that this should be possible via \captionsetup{} but I don't know how. I don't want to use the subcaptions package if possible.
Here is a minimal example:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{caption}
\usepackage[demo]{graphicx} % demo is just for the example
\begin{document}
\begin{figure}[t]
\includegraphics[width=\textwidth,height=2cm]{x}
\caption{Test 1}
\caption*{This is the subtext to be placed below the caption of the figure. I want this to be in italic without having to type textit every time}
\label{fig:test1}
\end{figure}
\end{document}
