I am using the enumitem package in order to customise enumeration by setting a custom set of characters for enumerate item labels.
When I normally make article-type documents, I use the following code.
\usepackage{enumitem}
\makeatletter
\newcommand{\xslalph}[1]{\expandafter\@xslalph\csname c@#1\endcsname}
\newcommand{\@xslalph}[1]{%
\ifcase#1\or a\or b\or c\or \v{c}\or d\or e\or f\or g\or h\or i%
\or j\or k\or l\or m\or n\or o\or p\or r\or s\or \v{s}%
\or t\or u\or v\or z\or \v{z}%
\else\@ctrerr\fi%
}
\AddEnumerateCounter{\xslalph}{\@xslalph}{m}
\makeatother
(I got this code from my previous question --- enumerate with custom alphabet for items)
I am now working on a beamer presentation. beamer uses a special internal script for handling enumeration that is incompatible with enumitem, so enumitem cannot be used in a beamer documentclass.
How do I use AddEnumerateCounter in beamer slides? I want to have items alphabetically labeled with Slovenian letters (abcčdefghijklmnoprsštuvzž).
