[Tex/LaTex] how to change the font type for title page only

fonts

I use (Times new roman) for all my report by using \usepackage{times} but I need to change title page only to normal latex font type. how could do that?

Best Answer

You should use package mathptmx or newtx instead of times. However, changing the font for the titlepage:

\documentclass{article}

\usepackage{newtxtext}
\usepackage{newtxmath}
\title{Some text for the title}
\author{Me and others}
\begin{document}
\begingroup
\fontfamily{lmr}\selectfont
\maketitle
\endgroup

\section{foo}
bar
\end{document}