抽认卡和任务

抽认卡和任务

我在工作中使用 flashcard 包。我想task在我的 中使用包flashcards,但似乎不可能。谁能帮助我?

我的 TeX 代码是:

\documentclass[avery5371,grid,frame]{flashcards}
\usepackage{tasks}
\begin{document}
%\cardfrontstyle{empty}
\begin{flashcard}{Hi}
\begin{tasks}(4)
\task First
\task Second
\task Third
\task Forth
\end{tasks}
\end{flashcard}
\end{document}

答案1

我不知道问题出在哪里,但我有一个简单的解决方案:用tasks括号包裹环境:

\documentclass[avery5371,grid,frame]{flashcards}
\usepackage{tasks}
\begin{document}

\begin{flashcard}{Hi}
  {\begin{tasks}(4)
    \task First
    \task Second
    \task Third
    \task Forth
  \end{tasks}}
\end{flashcard}

\end{document}

在此处输入图片描述

答案2

我可以重现这个问题。编译永远不会结束,我不明白为什么。你真的需要这个task包吗?你可以使用enumitem环境并对其进行自定义,如下所示。

替代解决方案

\documentclass[avery5371,grid,frame]{flashcards}

%\usepackage{tasks}% Doesn't work
\usepackage{enumitem}

\begin{document}

    \begin{flashcard}{Hi}

        Toto

        \begin{enumerate}[label=\alph*)]
            \item First
            \item Second
            \item Third
            \item Forth
        \end{enumerate}

    \end{flashcard}

\end{document}

相关内容