[Tex/LaTex] How to set a Times New Roman in Latex

fonts

I am writing an article using LaTeX, and I want to set a Times New Roman font. Does anyone know how I can do it?
When I don't use the package, the text renders as below:
enter image description here

When I set \usepackage{newtxtext} in the header of my document, the text gets shrunk.
enter image description here

Best Answer

How about this?

\documentclass{article}
\usepackage{times}
\begin{document}
Times New Roman
\end{document}

enter image description here