I have a style for Fig caption like below.
\def\fnum@figure{\small\it\bf\figurename{} \thefigure.}
This style change the caption and caption number bold. But I need bold and italic numbering and only italic for caption like below.
Fig 1.3: This is my caption
Any solution?
I have a style file and this file has a command like below.
\captionsetup{compatibility=false}
So \captionsetup[figure]{font={it,bf}} not worked.
In this style file there is a command \newcommand{\captionfonts}{\normalfont}
Can I edit this command and how?
@Werner I have tried your solution it works at a new document, but in my exist document its not work :( No any change.

\it\bf? neither\itnor\bfhave been defined by default in latex since 1993, if they are defined for compatibility they do not combine,\it\bfis the same as\bf, you want\itshape\bfseries– David Carlisle Jan 06 '20 at 20:04\textitor\it,\bfseriesor\bf, etc. and Will two-letter font style commands (\bf,\it, …) ever be resurrected in LaTeX? – Werner Jan 06 '20 at 20:37\documentclassyou're using? – Werner Jan 06 '20 at 20:44\documentclassand ends with\end{document}that replicates your current problem. Can you do that? – Werner Jan 06 '20 at 21:09