I want to allow custom numbering of examples in Beamer. In particular, I want to be able to have lists like the following (and I want to be able to use prime superscripts potentially for any number on a list):
- Example 1.
- Example 2. 2ā. Example 2.
Iām using a suggestion made by timothymctim here: `LaTeX Beamer: Enumerate with manual numbers', namely:
\documentclass{beamer}
\newcommand{\labelname}[1]{
\def\insertenumlabel{#1}%
\usebeamertemplate{enumerate item}%
}
\begin{document}
\begin{frame}
\begin{enumerate}
\item first
\item[\labelname{1'}] prime
\item second
\end{enumerate}
\end{frame}
\end{document}
Unlike timothymctim, I want to use the default theme, not Warsaw. However, when I use default theme, the custom numbered bullet point is not properly indented; it is misaligned relative to other numbers on the list. How can I control for this?

\labelnamenecessary in this case? Wouldn't\item[1.\rlap{'}] primegive the desired result? ā samcarter_is_at_topanswers.xyz Mar 01 '17 at 13:07\labelname: If you usedefaultforenumerate items, you can just use\item[1\rlap{'}.]ā timothymctim Mar 02 '17 at 21:09