使用xsim宏包写习题时,能否给自定义的环境重新编号? 财富值3

2020-03-26 18:03发布

例如,我定义了一个 ex 环境,用这个环境写了3道题目后。准备这写另一个类型的问题,此时能否给计数器重新编号呢?谢谢! 另外还有个问题,如果不使用 exercise-template =margin,...

例如,我定义了一个 ex 环境,用这个环境写了3道题目后。准备这写另一个类型的问题,此时能否给计数器重新编号呢?谢谢! 另外还有个问题,如果不使用 exercise-template =margin,怎么修改默认设置,使得标题不 多带带 占一行(与题目在同一行,且有悬挂效果)。margin 属性的页边距稍微小了一点儿。 这里打字怎么“丹独”变成了“多多带”,好奇怪啊。 ```tex \documentclass[a4paper,UTF8]{article} \usepackage{amsmath,amssymb} \usepackage{amsthm} \usepackage{xsim} \xsimsetup{ load-style = layouts } \DeclareExerciseType{ex} {exercise-env = ex, solution-env = sol, exercise-name ={}, solution-name ={}, exercise-template =margin, solution-template =margin, } \renewcommand*\theex{\arabic{ex}.} \begin{document} \begin{ex} 1 \end{ex} \begin{sol} ans1 \end{sol} \begin{ex} 2 \end{ex} \begin{sol} ans2 \end{sol} \begin{ex} 3 \end{ex} \begin{sol} ans3 \end{sol} \begin{ex}%%%%%% 重新开始 1题 1 \end{ex} \begin{sol} ans1 \end{sol} \end{document} ```
2条回答
sikouhjw
2020-03-26 19:21
> 让它的效果和enumerate的类似 ```tex \documentclass{article} \usepackage{amsthm} \begin{document} \begin{proof} \begin{enumerate} \item 1 \item 2 \end{enumerate} \end{proof} \end{document} ``` 应该是这样的效果 ![](https://pics.latexstudio.net/data/images/202003/637cff22a3dbd33.png)

一周热门 更多>