在LaTeX中创建一个多项选择题

时间:2011-02-21 01:42:59

标签: latex multiple-choice

我正试图在LaTeX中提出一个多项选择题。我是否有点困惑

  

\begin{question}{MultipleChoice}

是LaTeX默认可以处理的东西,或者我是否需要额外的包,描述等...(我是LaTex的新手)。

话虽如此,如果我运行以下代码,我不会得到一个多选题,而是一个错误,说'lonely \ item - 可能缺少一个列表环境。

提前感谢您的时间和耐心!

  %%%% ENVIRONMENT FOR LIST FOR QUESTIONS LIST %%%%
    \newenvironment{questions}{ %   %%%% Begin preliminary environment code
        \begin{list}{ %     %%%% Begin list item label code
            \bfseries\upshape\arabic{qcounter}:
        }{ %    %%%% Begin list item body code
            \usecounter{qcounter}
            \setlength{\labelwidth}{1in}
            \setlength{\leftmargin}{0.25in}
            \setlength{\labelsep}{0.5ex}
            \setlength{\itemsep}{2em}
        } %%%%% End list item body code
    }{        %%%%% Begin wrapup environment code
        \end{list}
    } %%%%% End wrapup environment code

    %%%% ENVIRONMENT FOR A SINGLE QUESTION %%%%
    \newenvironment{question}{\item{}}{}



    \begin{question}{MultipleChoice}
    \qutext{$3\log x-2\log y=$}
    \choice*{$\log\left(\displaystyle\frac{x^3}{y^2}\right)$}
    \choice{$\log(x^3y^2)$}
    \choice{$\log(3x-2y)$}
    \choice{$\log(x^3-y^2)$}
    \end{question}

3 个答案:

答案 0 :(得分:5)

更好地使用exam class

答案 1 :(得分:3)

以下是使用考试类的简单示例:

\documentclass{exam}
\begin{document}
\begin{questions}
  \question [3] What is the right choice of the following choices?
    \begin{choices}
      \choice first choice
      \choice second choice
    \end{choices}
  \end{questions}
\end{document}

这将产生如下内容: enter image description here

有关详细信息,请参阅exam class指南中的第5节。

答案 2 :(得分:0)

考试类可以与一些更改一起使用。

Here是考试的文档。

使用this进行自定义。

记住:这是一个类而不是包。在您输入任何内容之前,请仔细阅读文档。