[Tex/LaTex] Both \textsc and \textbf for sections using Modern CV

moderncv

Well, all is in the title. I don't want to use something like loading fontenc or anything like this, just enable \section{\textbf{\textsc{Experience}}}

EDIT :

Well thanks to all of you, I tried that :

\documentclass[10pt,a4paper]{moderncv}
\moderncvtheme[blue]{classic}                
\usepackage[utf8]{inputenc}
\usepackage{color}
\usepackage{amsmath}
\usepackage{amssymb}

\usepackage[inner=1.2cm,outer=1.2cm,top=0.4cm,bottom=0.4cm]{geometry}

\usepackage{sourcesanspro}
\renewcommand*{\sectionfont}{\Large\bfseries\scshape}

\firstname{\Large{Aaaa}}
\familyname{\Large{\textsc{Bbbb}}}
\title{\normalsize Iiiiiiiiiiiii }
\address{\textbf{113 iiiii}}{\textbf{000 Vvvvv}}  
\mobile{\textbf{0000000}}             
\email{aaaaaa@aaa.fr} 
\extrainfo{\textbf{bla bla}}  

\begin{document}
\pagestyle{empty}
\maketitle

\section{Experience}
\end{document}

Perhaps it works. "Experience" seem to be normal in bold. Using "fontenc" as I don't like that sourseanpro doesn't work (for me). What I need is result IN BOLD when deleting sourceandpro and renewcomand line and using \textsc in section.

Well I'm not satisfied and how to use "sans" option properly ?

Best Answer

\renewcommand*{\sectionfont}{\Large\bfseries\scshape} will do the job, but as Werner said, you need a suitable font. sourcesanspro has bold small caps, for example (and I like it).

As karlkoeller says, since that's a sans serif font, you need to pass the class option sans:

\documentclass[10pt,a4paper,sans]{moderncv}

If you want a serif font instead, you could load the bold-extra package, or choose a font from those in this answer: https://tex.stackexchange.com/a/98581/61789