8

Consider the MWE

\documentclass{beamer}
\usepackage{smartdiagram}
\begin{document}
\begin{frame}[plain]
\smartdiagramanimated[descriptive diagram]{
      {$a$, $\alpha$},
  {$b$,$\beta$},
  {$x$,$\xi$}}
\end{frame}
\end{document}

enter image description here

Instead of the expected Greek letter ΞΎ there is a 3. Why?

1 Answers1

8

This is because \xi is used as an internal loop variable in the smartdiagram package. One way to fix this is

\documentclass{beamer}
\usepackage{smartdiagram}
\let\oldxi\xi
\begin{document}
\begin{frame}[plain]
\smartdiagramanimated[descriptive diagram]{
      {$a$, $\alpha$},
  {$b$,$\beta$},
  {$x$,$\oldxi$}}
\end{frame}
\end{document}

enter image description here

@Claudio: I will be very happy to remove these posts if you feel they are inappropriate. I really love your package(s)!