I have the following problem: For a proof of a theorem I need a case distinction inside a proof environment of a beamer presentation. I think that an enumerate might be helpful, the problem is however that I want some enumitems other than (a),(b),(c). I tried to set this using \setbeamertemplate:
\documentclass{beamer}
\usetheme{Goettingen}
\setbeamertemplate{enumerate item}{\arabic{enumi}. Fall:}
\begin{document}
\begin{frame}
\begin{enumerate}
\item asd
\end{enumerate}
\end{frame}
\end{document}
Unfortunately, the whole thing looks really crappy, because the enumitem is right justified and there is not enough space to accommodate this longer string. Does anyone have any ideas on how to fix this, or how to make a nice-looking case distinction for a beamer document?

