列表中的定理间距

列表中的定理间距

我想知道当我使用定理环境启动列表时如何更改列表中的间距。例如,我使用 enumitem 包和代码创建列表:

\begin{enumerate}[label=(\alph*)]
\item
     \begin{scrapwork}
     ...
     \end{scrapwork}
     \begin{proof}
     ...
     \end{proof}
\end{enumerate}

其中我的定理环境(废品)的输出从我的项目标签之后的行开始。

我希望的是将 Scrapwork 和 Proof 对齐,同时将 scrapwork 与我的物品标签放在同一行上。

谢谢。

編輯:MWE

\documentclass{article}

\usepackage{amsmath,amsthm,enumitem}
\theoremstyle{remark}
\newtheorem*{scrapwork}{Scrapwork}

\begin{document}

\begin{enumerate}[label=(\alph*)]
\item
\begin{scrapwork}
wordshere
\end{scrapwork}
\end{enumerate}


\end{document}

答案1

您可以在里面避难minipage

\documentclass{article}

\usepackage{amsmath,amsthm,enumitem}
\theoremstyle{remark}
\newtheorem*{scrapwork}{Scrapwork}
\usepackage{linegoal}
\begin{document}

\begin{enumerate}[label=(\alph*)]
\item
\begin{minipage}[t]{\linegoal}
\begin{scrapwork}
wordshere
\end{scrapwork}
\end{minipage}
\end{enumerate}


\end{document}

在此处输入图片描述

相关内容