How to change the font to "times new roman " in LaTeX?
I used
\documentclass[12pt,a4paper,oneside]{report}
\usepackage[left=1.5in,top=1in,right=1in,bottom=5em]{geometry}
\usepackage{fancyhdr}
\begin{document}
\fontfamily{Times New Roman}
...............................
..........................
..................
\end{document}
but the fonts did not change. What do I need to do?
\usepackage{mathptmx}to your preamble to load Time Roman. Check out this link – Oliver Mar 08 '13 at 17:46