[Tex/LaTex] Using \renewcommand{\familydefault}{} to use times new roman everywhere

fontskoma-script

How do I use \renewcommand{\familydefault}{} to use the times new roman font every where. I am using the scrreprt document style, which has the sans-serif font in the chapter headings.

Best Answer

\documentclass{scrartcl}
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\addtokomafont{disposition}{\rmfamily}
\begin{document}

\section{Foo bar baz}
foo bar baz

\end{document}

enter image description here

Related Question