0

I'm changing the numbering scheme for some (but not all) enumerate lists while using beamer (with Warsaw), using \begin{enumerate}[a]. While this works in principle, the new "numbers" a, b, c, ... get printed without bullet style, as plain (blue) text. Is there a way to preserve the bullet style you get for the default enumerate?

Edit: Added minimal working example below.

\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\begin{frame}
Default has bullets (in beamer/Warsaw):
\begin{enumerate}
\item Some item
\item another item
\end{enumerate}
But alphabetical numbering via enumerate parameter looks ugly:
\begin{enumerate}[a]
\item Some item
\item another item
\end{enumerate}
\end{frame}
\end{document}

produces

enter image description here

  • 1
    Do you mean \renewcommand{\theenumi}{\textbullet\alph{enumi}}. Please add some working Code (See M(inimal)W(orking)E(xample)). – Bobyandbob Jul 28 '17 at 03:41
  • Thanks, that did it after a little tweaking to make it work for my case - ended up using \renewcommand{\theenumii}{\alph{enumii}} (since it was for a sublist) and \begin{enumerate}. – Henning Koehler Jul 28 '17 at 03:55
  • @Bobyandbob Sounds like your comment solved the problem. Would you like to write an answer? – samcarter_is_at_topanswers.xyz Jul 28 '17 at 08:20
  • Please clarify your question and add some more details. A MWE and maybe an image(output, that you want to achive) would be helpful. @samcarter Then i can write an answer, otherwise the question is not relevant to others and should be closed. – Bobyandbob Jul 28 '17 at 15:31
  • Sorry for coming back so late, added MWE. – Henning Koehler Aug 03 '17 at 04:03

0 Answers0