[Tex/LaTex] no old-style numbers with small caps and tgpagella

fontsoldstylenums

tgpagella activates old-style numbers with small caps. I'm looking for a possibility to disable old-style numbers (as in the other cases like textbf, etc.)

\documentclass{article}
\usepackage{tgpagella}
\begin{document}
0123456789

\textsc{0123456789}
\end{document}

Best Answer

use xelatex or lualatex instead:

\documentclass{article}
\usepackage{fontspec}
\setmainfont{TeX Gyre Pagella}
\begin{document}
0123456789 TeX Gyre Pagella

\textsc{0123456789 TeX Gyre Pagella}

\end{document}

enter image description here