Palikaros wrote:[…] I want to write
'PINAKAS APLWN AORISTWN OLOKLHRWMATWN' in greek letters.bold and italic. […]
I think we're on the wrong track here. An adequate problem description would have included this important information right at the beginning (and in the topic title). For Greek text (and the Greek language in general) in your document try the below example.
Code: Select all
\documentclass[11pt,greek]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{lmodern}
\begin{document}
\textit{\textbf{PINAKAS APLWN AORISTWN OLOKLHRWMATWN}}
\end{document}
If you are going to write your document in another language than Greek (let's say English) and only want to have short text pieces in Greek, you have to choose another approach.
Code: Select all
\documentclass[11pt,greek,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{lmodern}
\begin{document}
PINAKAS APLWN AORISTWN OLOKLHRWMATWN
\textit{\textbf{\textgreek{PINAKAS APLWN AORISTWN OLOKLHRWMATWN}}}
\end{document}
For details please refer to the
babel user guide.
Best regards and welcome to the board
Thorsten