Have a document with newpx and use bold, small caps and large text (with MikTeX 2.9).
\documentclass{article}
\usepackage[largesc]{newpxtext}
\begin{document}
Normal
\textbf{Bold textbf}
{\bfseries Bold bfseries}
\large{large}
\large{\textbf{large Bold}}
\large{\textbf{\textsc{large Bold Small Caps}}}
\end{document}
MikTeX throws these LaTeX Font Info in the log file.
LaTeX Font Info: Font shape `T1/zpltlf/bx/n' in size <10> not available
(Font) Font shape `T1/zpltlf/b/n' tried instead on input line 6.
LaTeX Font Info: Font shape `T1/zpltlf/b/n' will be
(Font) scaled to size 10.0pt on input line 6.
LaTeX Font Info: Font shape `T1/zpltlf/m/n' will be
(Font) scaled to size 12.0pt on input line 10.
LaTeX Font Info: Font shape `T1/zpltlf/bx/n' in size <12> not available
(Font) Font shape `T1/zpltlf/b/n' tried instead on input line 12.
LaTeX Font Info: Font shape `T1/zpltlf/b/n' will be
(Font) scaled to size 12.0pt on input line 12.
LaTeX Font Info: Font shape `T1/zpltlf/bx/sc' in size <12> not available
(Font) Font shape `T1/zpltlf/b/sc' tried instead on input line 14.
LaTeX Font Info: Font shape `T1/zpltlf/b/sc' will be
(Font) scaled to size 12.0pt on input line 14.
Two questions:
1) Why is bold extended (bx) called, when I use textbf (b)? When using bfseries, bx is not called and no LeTeX Font Info is triggered!
2) Can I improve the compiling speed somehow, by getting rid of all the LaTeX Font Info, especially when having a large Thesis document?
lmodern, there should be no errors at all. – alexkelbo Mar 11 '16 at 14:10newpx:-) So being consistent with usingbfseries, would only invoke one LaTeX Font Info and "maybe" increase the speed. – TobiasDK Mar 11 '16 at 14:15\renewcommand{\bfdefault}{b}. That should makebfserieschoose bold instead of bold extended. – alexkelbo Mar 11 '16 at 14:24