Possible Duplicate:
\usepackage[turkish]{babel} and \includegraphics inconcistency
I previously imported many figures to TEX files and simply use the corresponding parameters without any problems. However, this time I am preparing some slides using beamer and I couldn't figure what's wrong with it. Here is my TEX code related with the problem.
\documentclass{beamer}
\usepackage[latin5]{inputenc}
\RequirePackage[turkish]{babel}
\usetheme{Madrid}
\usepackage{graphicx}
\usepackage{epstopdf}
\begin{document}
\begin{frame}
\frametitle{Markov Karar Süreçleri}
\includegraphics[scale=0.5]{img/mdp.eps}
%\includegraphics{img/mdp.eps}
\end{frame}
\end{document}
The code exists with many compile errors. However, when I simply comment out the includegraphics line scale parameters and uncomment the other one, it compiles smoothly.
Any ideas are welcome..