家庭作业模板

家庭作业模板

我一直在使用这个我在网上找到的非常轻量级的家庭作业模板。我刚开始使用 LaTeX,虽然我发现编写基本的数学表达式很容易,但一些更酷更复杂的 LaTeX 内容似乎超出了我的能力范围。我找到的家庭作业模板中有以下内容:

\newcounter{prob}
\newenvironment{problem}[1]
{\begin{sloppypar}\stepcounter{prob}\noindent{\large\bfseries Problem %\arabic{prob}
} {\bfseries (#1)}
\begin{quote}}
{\end{quote}\end{sloppypar}}

我一直这样使用它:

\begin{problem}{Problem 1}
   ***Problem solution***
\end{problem}

但是,当我想包含问题陈述时,此代码会引入太多空间。我该如何编辑模板,以便最终结果如下所示:

问题 1: 问题陈述(不加粗)

问题方案

答案1

明白了:我拿出了\begin{quote} \end{quote}

\newcounter{prob}
\newenvironment{problem}[1]
{\begin{sloppypar}\stepcounter{prob}\noindent{\large\bfseries Problem} {\bfseries (#1)}}{\end{sloppypar}}

相关内容