Latex times new roman

A classic!

In LaTeX, you can use the times package to get the Times New Roman font. Here's an example:

\documentclass{article}
\usepackage{times}

\begin{document}

This text is in Times New Roman.

\end{document}

When you compile this document, you should see the text in Times New Roman font.

Note that the times package is not part of the standard LaTeX distribution, so you may need to install it separately. You can do this using your TeX distribution's package manager, or by downloading the package from CTAN (the Comprehensive TeX Archive Network).

Alternatively, you can use the newtx package, which is a more modern and compatible alternative to the times package:

\documentclass{article}
\usepackage{newtxtext}

\begin{document}

This text is in Times New Roman.

\end{document}

The newtxtext package is part of the standard LaTeX distribution, so you shouldn't need to install it separately.