正确地在句子的不同行中编写枚举列表

正确地在句子的不同行中编写枚举列表

我的问题类似于这个但我的物品较大,所以我想将每件物品写在不同的行中。我目前正在这样做

The way to propose a solution that
\begin{enumerate}
    \item is able to clearly show my items,
    \item can be read as if it were only one sentence, and
    \item is well formatted
\end{enumerate}
is presented here.

它的渲染如下

在此处输入图片描述

。我可以做得更好吗?这种结构有什么规则吗?最好把所有内容放在一行中,还是更符合个人品味?

答案1

enumitem使用s 工具可以实现以下三种可能性:

\documentclass{report}%{memoir}
\usepackage{enumitem}
\usepackage{lipsum}

\begin{document}

The way to propose a solution that
\begin{enumerate}[nosep, wide]
  \item is able to clearly show my items,
  \item can be read as if it were only one sentence, and
  \item is well formatted
\end{enumerate}
is presented here.

\bigskip

The way to propose a solution that
\begin{enumerate}[nosep, topsep=3pt, wide]
  \item is able to clearly show my items,
  \item can be read as if it were only one sentence, and
  \item is well formatted
\end{enumerate}
is presented here.

\bigskip

The way to propose a solution that
\begin{enumerate}[nosep, topsep=3pt, wide=0pt]
  \item is able to clearly show my items,
  \item can be read as if it were only one sentence, and
  \item is well formatted
\end{enumerate}
is presented here.
\end{document} 

在此处输入图片描述

相关内容