[Tex/LaTex] Bold font and uarial

boldfonts

I found an old closed post related but without a satisfactory answer.

I have to prepare a document with some specific guidelines.
1) Font should be Arial
2) Titles should be 14pt and Bold
3) Rest of document 11pt

The \Large font size I suppose is close enough (would be nice to get it exact though). However, I am not able to get bold fonts. Does uarial have this ability? How about italic style too?

Here is a mwe

\documentclass[11pt]{article}

\usepackage[T1]{fontenc}
\usepackage[scaled]{uarial}
\renewcommand*\familydefault{\sfdefault} 

\begin{document}

\begin{center}
{\Large {\textbf{Should be Bold and 14pt}}}
\end{center}

\section{Section Heading}\label{sec:background}
Text here at 11pt \\ 
\emph{italic text}

\end{document}

Best Answer

See the difference:

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[scaled]{uarial}
\renewcommand*\familydefault{\sfdefault}

\begin{document}

\begin{center}
{\fontsize{14}{17}\selectfont \textbf{Should be Bold and 14pt}}\par
{\fontsize{14}{17}\selectfont Shouldn't be Bold but 14pt}\par
{\Large Shouldn't be Bold but 14pt}
\end{center}

\section{Section Heading}\label{sec:background}
Text here at 11pt

\end{document}

enter image description here

Related Question