问题实例:

\documentclass{article}
\newtheorem{Theorem}{Theorem}
\begin{document}
\begin{Theorem}
On the other hand, this one has only one claim.
\end{Theorem}
\begin{Theorem}
\begin{enumerate}
\item First claim
\item Second claim
\end{enumerate}
\end{Theorem}
\end{document}

效果图:

解决方案:

\documentclass{article}
\usepackage{enumitem}

\newtheorem{Theorem}{Theorem}

\begin{document}

\begin{Theorem}
On the other hand, this one has only one claim.
\end{Theorem}

\begin{Theorem}
\begin{enumerate}[leftmargin=*]
\item First claim
\end{enumerate}\vspace*{-2\partopsep}
\begin{enumerate}[resume]
\item Second claim
\end{enumerate}
\end{Theorem}

\begin{Theorem}
On the other hand, this one has only one claim.
\end{Theorem}

\begin{Theorem}
\begin{enumerate}[leftmargin=*]
\item First claim
\item Second claim
\end{enumerate}
\end{Theorem}

\end{document}

选自:https://tex.stackexchange.com/questions/17449/annoying-space-before-the-first-item-in-an-enumeration-which-starts-a-theorem

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部