I was inspired by this link to try EulerVM with tgpagella packages:
How do I set LaTeX to use AMS Euler for text and maths?
But when this is used with \documentclass{scrbook}, it seems that my bold-faced sans serif fonts are overwritten. Not only with the sections and subsections and whatnot, but in other areas that I have designated to have a bold sans serif font such as my enumi counters.
Can someone help me bring the sans serif bold back in computer modern but with a fully functioning use of EulerVM with tgpagella packages?
I apologize in advance if I am not properly following conventions here.
\documentclass{scrbook}
\usepackage{tgpagella}
\usepackage{eulervm}
\usepackage[T1]{fontenc}
\usepackage{mathrsfs}
\usepackage{enumerate}
\usepackage{microtype}
\def\theenumi{\textsf{\textbf{\arabic{enumi}}}}
\def\theenumii{\textsf{\textbf{\alph{enumii}}}}
\begin{document}
\chapter{A Chapter}
\section{A Section}
\subsection{A Subsection}
Some numbers
\begin{enumerate}
\item The item should be bold sans.
\item It seems that they are being over written somewhere
\item I also get this: Warning: Font shape `T1/cmss/b/n' undefined
(Font) using `T1/cmss/m/n' instead on input line 14.
\end{enumerate}
\end{document}
\documentclass{...}and ending with\end{document}. – egreg Jun 05 '13 at 18:10