使用数字列举问题

使用数字列举问题

我正在使用该beamer软件包,并且写了很多问题。我正在回答每个问题,并且每个问题都是枚举的,因此当我添加另一个问题时,我需要手动输入编号。每个问题都有答案,并且在未来的某个时间点,它必须有中等大小的评论。请记住,我想添加任何问题而不必担心问题的顺序,也不必更改编号,就像我在文档中的任何地方添加方程式并且 latex 可以毫无问题地枚举它一样。我不知道是否值得使用该enumerate软件包(有很多问题)或者是否有技巧(也许是计数器)。我该如何解决这个问题?

编辑:我的代码是:

\documentclass[]{beamer}

\mode<presentation>{
\usetheme{Madrid}
\setbeamertemplate{navigation symbols}{} 
}

\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
\usepackage[utf8]{inputenc}
\title[]{Actividad de la novena}
\date{Diciembre 22 de 2014} % Date, can be changed to a custom date

\begin{document}

\begin{frame}
\titlepage
\end{frame}

\begin{frame}
    \begin{block}{}
    1. Por primera vez en la historia de la humanidad, un módulo de aterrizaje aterriza     en un cometa para estudiarlo. ¿Cuándo ocurrió este hecho?
    \end{block}

    \begin{enumerate}[a)]
        \item El 5 de noviembre.
        \item El 12 de noviembre.
        \item El 29 de octubre.
        \item El 25 de octubre
    \end{enumerate}
\end{frame}

\begin{frame}
\begin{block}{}
2. Dicho módulo de aterrizaje no iba solo, él se desprendió de una sonda espacial     que lo acompañaba. ¿Cuáles son los nombres del módulo y de la sonda?
\end{block}

\begin{enumerate}[a)]
    \item Philae y Orión. 
    \item Orión y Rosetta.
    \item Philae y Rosetta.
    \item Orión y Lutecia.
\end{enumerate}

 \end{frame}

\begin{frame}
\begin{block}{}
3. ¿Cuándo ocurrió la segunda vuelta presidencial?
\end{block}
\end{frame}

\begin{frame}
\begin{block}{}
4. Si solo tomamos en cuenta listas abiertas, ¿cuál fue el segundo senador con más     votos en el país?
\end{block}

\begin{enumerate}[a)]
    \item Musa Besaile. 
    \item Horacio Serpa.
    \item Jorge Enrique Robledo.
    \item Bernando Elías.
\end{enumerate}
\end{frame}

\end{document}

答案1

这是一个使用新question计数器的简单解决方案。

\documentclass{beamer}
\newcounter{question}
\newcommand\question[1]{\stepcounter{question}Q.~\arabic{question} -- #1}

\begin{document}
\begin{frame}
  \frametitle{Frame one}
  \question{Where is my first question?}

  \question{What is my second question?}
\end{frame}

\begin{frame}
  \frametitle{Frame two}

  \question{Who is my third question?}

  \question{When is my fourth question?}
\end{frame}
\end{document}

如果你的文档需要标记问题(并通过 进行交叉引用\ref),你可以\refstepcounter使用\stepcounter

相关内容