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:

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


\usepackage{newtxtext}for text and\usepackage{newtxmath}if you also want the math font to be times roman. There are also several older implementations available, such as\usepackage{times}for text and\usepackage{mathptmx}for math – Steven B. Segletes Jun 30 '21 at 09:48\usepackage{newtxtext}and my text was shortened by 75 pages, it was skinned by 5 pages. When I use\usepackage{times}and\usepackage{mathptmx}text is no change. So why my text was skinned ? – user245467 Jun 30 '21 at 09:55newtxis slightly narrower than Computer Modern, and the default space is also somewhat narrower – campa Jun 30 '21 at 10:56\usepackage[scale=1.1]{newtxtext,newtxmath}or whatever you find suitable; you may also need the setspace package to adjust the line spacing slightly as well. There are other Times like packages available as well like stix and TeX Gyre Termes. See the catalogue. – frabjous Jun 05 '22 at 14:13