背景
我必须将论文中的一些问题复制到 LaTeX。但是我没有这项工作的源代码,所以我只能手动完成。
到目前为止,我已经使用了几个包含多列的枚举环境。输出看起来与源不一样,我很难弄清楚为什么会这样。
我的代码
\begin{enumerate}[label=\Roman*.]
\item Utilice la definición de transformada para evaluar $L\set{f(t)}$
\begin{multicols}{2}
\begin{enumerate}[label=\arabic*.]
\item q1
\item 12
\item graf1
\item graf2
\end{enumerate}
\end{multicols}
\item Utilice las tablas para evaluar $L\set{f(t)}$.
\begin{multicols}{2}
\begin{enumerate}[resume,label=\arabic*.]
\item $f(t)=(1+e^{-2t})^2$
\item $f(t)=3t^2-4\cosh(2t)$
\item $f(t)=\sin(t)\.\cos(2t)$
\item $f(t)=\cos(t)\.\cos(3t)$
\end{enumerate}
\end{multicols}
\end{enumerate}
问题
上面的代码产生这个输出
但是它应该看起来像这样
编辑1:这是我的第一个包含图片的问题,我无法让它看起来像这里的大多数问题一样。所以我把它嵌入到 HTML 中,如果这不麻烦的话,我也会为以后的问题寻求帮助。
到目前为止我遇到了两个问题:
即使我在枚举环境后使用恢复功能,列表也不会在下一个项目上恢复。当我删除多列时,它确实起作用了,并且它确实按应有的方式继续列表。
正确工作的枚举是按行进行的,但在我的输出中它是按列进行的。
我的问题是:
有没有办法在使用多列时嵌套列表?你能告诉我怎么做吗?或者有没有更好的方法来解决我的问题而不包括多列?
我如何调换枚举的顺序?枚举是这里合适的包吗?
非常感谢您的帮助!问候。
答案1
xsim
以下是使用包和的建议tasks
:
\documentclass{article}
\usepackage{mathtools}
\usepackage{xsim}
\usepackage{tasks}
\DeclareExerciseEnvironmentTemplate{minimal}
{\par\noindent\textbf{\GetExerciseProperty{counter}} }
{}
\xsimsetup{
exercise/template = minimal ,
exercise/the-counter = \Roman{exercise}.
}
\RenewTasksEnvironment[label=\arabic*.]{tasks}(2)
\DeclarePairedDelimiter\set{\{}{\}}
\begin{document}
\begin{exercise}
Utilice la definición de transformada para evaluar $L\set{f(t)}$
\begin{tasks}
\task q1
\task 12
\task graf1
\task graf2
\end{tasks}
\end{exercise}
\begin{exercise}
Utilice las tablas para evaluar $L\set{f(t)}$.
\begin{tasks}[resume]
\task $f(t)=(1+e^{-2t})^2$
\task $f(t)=3t^2-4\cosh(2t)$
\task $f(t)=\sin(t)\cos(2t)$
\task $f(t)=\cos(t)\cos(3t)$
\end{tasks}
\end{exercise}
\end{document}