I try to simple use beamer with enumerate and compactenum from paralist. But when I add paralist package in document, enumerate just stops working.
\documentclass{beamer}
\usepackage{paralist}
\usepackage{pifont}
\begin{document}
\begin{frame}
\frametitle{...}
\begin{compactenum}[{\ding{79}}]
\item ...
\item ,,,
\item ...
\end{compactenum}
\begin{enumerate}
\item 1
\item 2
\item 3
\end{enumerate}
\end{frame}
\end{document}
The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g.,
\hobx'), typeI' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined.
When I do not use paralist (and do not use compactenum) than the process will end normally. I know beamer defines many things and adding paralist can make conflicts in definitions but I do not know how to fix it.
pifont? – Andrew Uzzell Nov 2 '12 at 13:03paralistto overwritebeamer'senumerateenvironment, you can pass the package optionoldenumtoparalist(similarlyolditemforitemize). This should still allow you to use thecompactenumenvironment thatparalistprovides. – cyberSingularity Nov 2 '12 at 17:00