I am writing an article and as per formatting specifications, I need to place subfigure labels in italics and their parenthesis in normal roman font (without italics) i.e. (a) for a label. Similarly, I need to cross-reference subfigures in the same manner, i.e. alphanumeric labels in italics and parenthesis in normal font e.g., Figure 1(a). Kindly advice how I should implement this using cleveref and subfig packages as illustrated in MWE below.
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage[capitalise]{cleveref}
\graphicspath{{figures/}}
\usepackage[labelformat=simple,labelfont=it]{subfig}%places subfig labels in italic
\renewcommand{\thesubfigure}{(\alph{subfigure})}%alphabetic subfigure numbering
\crefrangelabelformat{figure}{#3#1#4--(#5\crefstripprefix{#1}{#2}#6}
%add dash as between subfig numbers and Strips redundant
%figure digit to be Figures 11(a)-(g)
\begin{document}
My challenge is place the subfigure labels in italics and their
parentheses in normal roman font (without italics).
\begin{figure}
\centering
\captionsetup{justification=raggedright}
\subfloat[text]{\label{fig:1a}\includegraphics{file1.eps}}\qquad
\subfloat[text]{\label{fig:1b}\includegraphics{file2.eps}}\\
\subfloat[text]{\label{fig:1c}\includegraphics{file3.eps}}\qquad
\subfloat[text]{\label{fig:1d}\includegraphics{file4.eps}}
\caption{Now these labels \protect\subref*{fig:1a},
\protect\subref*{fig:1b}, $\dots$, \protect\subref*{fig:1d} should be
placed in italics and their parenthesis in normal roman font (without
italics), i.e (\textit{a})}
\label{fig:1}
\end{figure}
Moreover, I wish to crossreference this \Cref{fig:1a} with the label "a"
in italics and parenthesis in normal roman font (without italics), i.e.,
Figure~(\textit{a}) and similarly \Cref{fig:1a,fig:1b,fig:1c,fig:1d},
i.e. Figures~(\textit{a})--(\textit{d}) .
\end{document}
