I am creating a document in greek, using babel and utf8 encoding. I am using MiKTeX 2.9 and TeXMakeR. When trying to produce a document I get the error
Package inputenc Error: Unicode char \u8:Γ not set up for use with LaTeX
My code is
\documentclass[11pt]{book}
\usepackage[english,greek]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1,LGR]{fontenc}
\begin{document}
Γεια σου κόσμε!
\end{document}
Note that I have changed my editor's encoding in utf8. Any idea how to fix it?
utf8definitely doesn't work for greek; iirc,utf8xdoes cope with greek; however, if at all possible, you're better off usingxelatex, which doesn't need any dances to make utf-8 work – wasteofspace Sep 23 '14 at 15:52LGRoption. Can you add\listfilesto your example, compile and add to your question what you'll find in the log file after* File List *? – egreg Sep 23 '14 at 15:53xelatex. – nickie Sep 23 '14 at 16:54