3

我正在尝试在 LaTeX 中做出多项选择题。我有点困惑是否

\begin{question}{MultipleChoice}

是默认情况下 LaTeX 可以处理的东西,还是我需要额外的包、描述等......(我对 LaTex 非常陌生)。

话虽如此,如果我运行以下代码,我不会收到多项选择题,而是会出现一个错误,上面写着“孤独的 \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}
4

3 回答 3

5

更好地使用考试课

于 2011-02-21T02:29:12.033 回答
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}

这将产生如下内容: 在此处输入图像描述

有关详细信息,请参阅考试课程指南中的第 5 部分。

于 2014-12-14T03:51:28.973 回答
0

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

是考试课程的文档。

并使用this对其进行自定义。

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

于 2017-09-03T10:48:15.047 回答