我已经通过以下方式定义了一个新环境
\theoremstyle{definition}
\newtheorem{aufg}{Exercise}
\newenvironment{problem}[1]{\begin{aufg}[#1] ~ \\*[0.2em]}{\end{aufg}}
然后写
\begin{problem}{Maximizing a profit function}
A firm produces two output goods, denoted by $A$ and $B$.
The cost per day is [...]
在练习的标题和主体之间产生了一个很好的间隙:
但如果练习直接从枚举开始,我就会遇到问题。例如
\begin{problem}{Envelope result}
\begin{enumerate}[label=(\roman*), topsep=-1000pt]
\item Suppose the production function of Example 3.5 from the lecture is [...]
产量
我怎样才能使枚举之前的差距变小呢?
我已经尝试过topsep
配置,但没有太大帮助。
答案1
一个简单的解决方法是使用 \vspace。
\begin{problem}{Envelope result}
\vspace{-0.2cm}\begin{enumerate}[label=(\roman*), topsep=-1000pt]
\item Suppose the production function of Example 3.5 from the lecture is [...]