task宏包设置不知道哪里出了问题,出现了下面的问题
xelatex编辑
代码如下:
\documentclass{ctexart}
% 导言区添加
\usepackage{tasks}
\settasks{ %设置
counter-format=tsk[A], %编号
label-format={\bfseries}, %加粗
%item-indent={-0.1em},
%label-offset={-0.05em}
}
% 测试用
\newcommand{\sample}{This is some sample text we will use to create a somewhat longer text spanning a
few lines. This is some sample text we will use to create a somewhat longer text
spanning a few lines}
\begin{document}
选择题有4个选项,分4列显示选项A,B,C,D。
\begin{enumerate}
\item 这是第1题
\begin{tasks}(4)
\task $x^2 + y^2 = R^2$
\task $\mathrm{E}=\mathrm{MC}^2$
\task $e^{-i\pi} = 1$
\task 2
\end{tasks}
\item 这是第2题
\begin{tasks}(4)
\task $x^2 + y^2 = R^2$
\task $\mathrm{E}=\mathrm{MC}^2$
\task $e^{-i\pi} = 1$
\task 2
\end{tasks}
\end{enumerate}
\end{document}
请问如何将选项的a,b,c,d改为大写的ABCD呢?
不好意思,看错了