以列表形式呈现的锻炼套餐

以列表形式呈现的锻炼套餐

我想 --- 使用exercise包 --- 使用环境创建练习列表ExerciseList。输出应该类似于以下示例。

书中的例子

练习将按图示缩进,数字在左侧,就像在普通列表环境中一样。这可以在exercise包内完成吗?

编辑:为了取悦@cfr,我在此发布我自己解决这个问题的尝试。代码崩溃得很惨烈:

\documentclass[openright,book]{memoir}

%Dansk sprog:
\usepackage[utf8]{inputenc}
\usepackage[danish]{babel}
\usepackage[T1]{fontenc}
\renewcommand{\danishhyphenmins}{22}
%\OnehalfSpacing %hvis der oenskes halvanden linjeafstand

%Pakker
\usepackage[noDcommand]{kpfonts} % the kpfonts font
\usepackage{%
    amsmath,graphicx,enumerate,amstext,geometry,array,xfrac,bm,mathtools,siunitx,
    %tikz, pgfplots
    etoolbox, xparse, %til subexc
    fixltx2e, %fikser et par bugs i LaTeX-kernen
    microtype, %smaa fiks, der goer tekst lettere at laese
    varioref,
    }

\usepackage{exercise}
\renewcommand\ExerciseListName{} % I don't want any word like "exercise" anywhere
\renewcommand\ExerciseHeaderTitle{\Exercisetitle}

\renewcommand{\ExerciseListHeader}{\ExerciseHeaderDifficulty%
    \item[\ExerciseHeaderNB]\ExerciseHeaderTitle\ %
    \ExerciseHeaderOrigin\ignorespaces}

\renewenvironment{ExerciseList}{\enumerate[1]\beginExerciseListEnv}{\endExerciseListEnv\endenumerate}


\begin{document}

\begin{ExerciseList}
    \Exercise What is this?
    \Exercise What is that
    \Question What in the world?
    \subQuestion What is this?
    \ExeText We define $x = y$.
\end{ExerciseList}

\end{document}

答案1

因为在评论中exsheets对这种布局的解决方案受到了欢迎,所以...但是用法与包装完全不同exercise......

该解决方案包含几个步骤:

  • 借助 和 将 KOMA-Script 的环境包裹在环境周围。addmargin这会使问题主体按指定的边距缩进(在下面的示例中)。环境由包提供,因此也可以与其他类一起使用。questionetoolbox\AtBeginEnvironment\AtEndEnvironment3emaddmarginscrextend

  • margin-nr声明一个受手册中描述的实例启发的新标题实例,exsheets该实例使用与环境设置的相同边距addmargin3em在下面的示例中)将问题编号与文本边距对齐。

  • 设置exsheets使用新实例并添加一些用于节内编号的选项。

来自以下代码的文档如下所示:

在此处输入图片描述

\documentclass{article}
\usepackage{scrextend}% not needed with a KOMA-Script class, provides the
                      % `addmargin' environment

\usepackage[load-headings]{exsheets}
\DeclareInstance{exsheets-heading}{mylist}{default}{
  runin = true ,
  attach = {
    main[l,vc]number[l,vc](-3em,0pt) ; % 3em = indent of question body
    main[r,vc]points[l,vc](\linewidth+\marginparsep,0pt)
  }
}

\SetupExSheets{
  headings = mylist , % use the new headings instance
  headings-format = \normalfont ,
  counter-format = se.qu ,
  counter-within = section
}


\usepackage{etoolbox}
% 3em = indent of question body :
\AtBeginEnvironment{question}{\addmargin[3em]{0em}}
\AtEndEnvironment{question}{\endaddmargin}

\usepackage{lipsum}

\begin{document}
\setcounter{section}{10}

\section*{Exercises}
\subsection*{Exercises to section \thesection}

\begin{question}
  \lipsum[4]
\end{question}

\begin{question}
  \lipsum[6]
\end{question}

\begin{question}
  \lipsum[10]
\end{question}

\end{document}

相关内容