I use this code:
\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}
\usepackage{subfigure}
\usepackage[english,greek]{babel}
\usepackage[utf8x]{inputenc}
\graphicspath{{/home/user/images/}}
\begin{document}
\section{intro}
\subsection{intro1}
\begin{frame}
\frametitle{test}
\setbeamercovered{transparent}
\begin{figure}
\includegraphics[scale=0.5]{imag1}
\end{figure}
\end{frame}
\end{document}
and get 100 errors. The problem lies with \includegraphics; if I remove it it's OK. (The image is PNG and it is working with this layout in LaTeX.)
Is there some conflict with babel?
---------------UPDATED----------------------------------------
I noticed that in kile settings at the build section at the PDFLatex ,even though i had it to "xelatex" it showed "pdflatex" ,so i changed it again and now it works BUT now the greek language doesn't work!I can't see anything greek.I haven't changed anything!
--------------------UPDATED 2-----------------------------------------
\documentclass{beamer}
\setbeamertemplate{navigation symbols}{}
\usepackage{subfigure}
\usepackage[english,greek]{babel}
\usepackage[utf8x]{inputenc}
\newcommand{\gr}{\greektext}
\newcommand{\EN}{\latintext}
\begin{document}
Καλημέρα
\section{Ημέρα}
Καθόλου ελληνικά
\begin{frame}
\frametitle{test}
\setbeamercovered{transparent}
Καλησπέρα
\EN English \gr
\end{frame}
\end{document}
\includegraphics[scale=0.5]{imag1.png}solve the problem? – Bluemilk Sep 6 '12 at 16:37inputencwith XeLaTeX andbabelwith Greek doesn't work. Use Polyglossia. – egreg Sep 6 '12 at 16:41