1\documentclass{article}
2
3\makeatletter
4\DeclareRobustCommand\bfseriesitshape{%
5 \not@math@alphabet\itshapebfseries\relax
6 \fontseries\bfdefault
7 \fontshape\itdefault
8 \selectfont
9}
10\makeatother
11
12\DeclareTextFontCommand{\textbfit}{\bfseriesitshape}
13
14\begin{document}
15
16\scshape % now the current font shape is small caps
17
18\textit{\textbf{f}}f
19
20\textbf{\textit{f}}f %% causes LaTeX Font Warning
21
22{\fontseries\bfdefault\textit{f}f}
23
24\textbfit{f}f
25
26\end{document}
27