I am trying to configure the MastersDoctoralThesis class in overleaf to accept greek character (My thesis has to be written in Greek).
What I did was to add the option greek when opening the document class. like that
\documentclass[greek,english,
11pt, % The default document font size, options: 10pt, 11pt, 12pt,
...,
]{MastersDoctoralThesis}
I also use the packages above
\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage{palatino} % Use the Palatino font by default
When I add some greek characters in the title I get
LaTeX Error: Command \textalpha unavailable in encoding T1.
Any idea how to fix that?
\usepackage[greek]{babel}(which you will need anyway) it should add the LGR encoding which has Greek. – David Carlisle Oct 02 '16 at 19:41\usepackage[greek]{babel}before tha packges mentioned above I getLaTeX Error: Option clash for package babel– LetsPlayYahtzee Oct 02 '16 at 19:57\usepackage{textgreek}instead of\usepackage[greek]{babel}as a commented that was deleted suggested and this seems to have solved the problem – LetsPlayYahtzee Oct 02 '16 at 21:14palatinois not an option. – egreg Oct 02 '16 at 21:18Command \textomicron unavailable in encoding T1.– LetsPlayYahtzee Oct 03 '16 at 16:58greekas the global option after english. Remove packagefontenc. You get greek output. – Johannes_B Oct 28 '16 at 14:30