我想使用大写罗马数字在文本字符串中返回商品编号。我不知道如何将该选项传递给 \theenumi counter。所需的输出将是:
- 一些文字我
梅威瑟:
\documentclass[11pt]{beamer}
\begin{document}
\frame{}
{
\begin{enumerate}
\item Some text \theenumi
\end{enumerate}
}
\end{document}
答案1
您可以在相应的计数器上使用众多计数器格式化命令之一:\Roman{enumi}
。
\documentclass[11pt]{beamer}
\begin{document}
\frame{
\begin{enumerate}
\item Some text \Roman{enumi}
\end{enumerate}
}
\end{document}