[Tex/LaTex] Greek Times New Roman

greektimes

I am writting Greek in LaTeX using

\usepackage[greek,english]{babel}
\usepackage[iso-8859-7]{inputenc}

I want to change the font to Times New Roman or something similar. I already tried

\usepackage{times}
\usepackage{mathptmx}

But these convert only the English characters.

Does anyone know what I can do?

Best Answer

Imho the best is to switch to xelatex or lualatex:

%utf8 encoded!
\documentclass[10pt]{article}
\usepackage{fontspec}
\setmainfont{Times New Roman}


\begin{document}
Ελλάδα
\end{document}

enter image description here