有了这个 MWE:
\documentclass{beamer}
\usepackage[flushleft,alwaysadjust]{paralist}
\begin{document}
\begin{frame}
\begin{compactenum}
\item essai
\end{compactenum}
\end{frame}
\end{document}
我有下一个错误信息:
(/usr/local/texlive/2018/texmf-dist/tex/latex/beamer/beamerpatchparalist.sty)
No file bob.nav.
! Undefined control sequence.
<argument> enumerate \beameritemnestingprefix
item
l.11 \end{frame}
答案1
该补丁似乎只修补了“正常”列表,例如enumerate
、itemize
或description
。如果我paralist
正确理解代码, acompactenum
基本上与正常的 相同enumerate
,只是调整了空格。您可以手动执行此操作:
\documentclass{beamer}
\usepackage[flushleft,alwaysadjust]{paralist}
\begin{document}
\begin{frame}
\begin{enumerate}
\parsep\plparsep
\itemsep\plitemsep
\topsep\pltopsep
\partopsep\plpartopsep
\item essai
\item essai
\end{enumerate}
\end{frame}
\end{document}