[Tex/LaTex] How to change the font to Raleway in letter class

fonts

I'm somewhat a novice in writing letters in LaTeX, and I would like to shy away from the standard Times New Roman font. Specifically, I would like to use Raleway font, but I have no idea how to implement this. I've researched, but can't find anything.

Best Answer

You need the raleway-package on your system. If you don't have a complete LaTeX-installation – in which case you don't have to do anything – you can use the package manager of your distribution to install the package.

Then you can just use the raleway font by putting \usepackage{raleway} in your preamble. Like this:

\documentclass{letter}
\usepackage{raleway}                      % Load raleway font
\renewcommand{\familydefault}{\sfdefault} % Set sans serif for document
\begin{document}
    Hello, World!
\end{document}

Et voilà:

enter image description here