如何在LaTex中的枚举之间对文本进行左对齐?

如何在LaTex中的枚举之间对文本进行左对齐?,latex,Latex,“恢复期”不包括因执行以下任何条例或法律而需要的任何延长期: 我需要在b下面排最后一行。它在(2)下面排列 我明白了: 我认为您需要在“日期…永久位置”行之后加上两个“{enumerate}” 第一个{enumerate}使您从“学期日期…”中的T对齐到(2)对齐。你还需要一个来让你与b对齐 如果您需要从下一步停止的位置(3c、3d等)选择列表,您可以使用\setcounter进行选择,这样它就不会一次又一次地重新开始;下面是一个例子: \documentclass[]{article} \be

“恢复期”不包括因执行以下任何条例或法律而需要的任何延长期:

我需要在b下面排最后一行。它在(2)下面排列

我明白了:


我认为您需要在“日期…永久位置”行之后加上两个“{enumerate}”

第一个{enumerate}使您从“学期日期…”中的T对齐到(2)对齐。你还需要一个来让你与b对齐

如果您需要从下一步停止的位置(3c、3d等)选择列表,您可以使用\setcounter进行选择,这样它就不会一次又一次地重新开始;下面是一个例子:

\documentclass[]{article}
\begin{document}


\begin{enumerate}
    \def\labelenumi{\Alph{enumi}.}
    \item
    The \textbf{Definition} of ``Period of Restoration'' is replaced by
    the following:

    \begin{enumerate}
        \def\labelenumii{\arabic{enumii}.}
        \setcounter{enumii}{2}
        \item
        ``Period of Restoration'' means the period of time that:

        \begin{enumerate}
            \def\labelenumiii{\alph{enumiii}.}
            \item
            Begins:

            \begin{enumerate}
                \def\labelenumiv{(\arabic{enumiv})}
                \item
                72 hours after the time of direct physical loss or damage for
                Business Income coverage; or
                \item
                Immediately after the time of direct physical loss or damage for
                Extra Expense coverage;
            \end{enumerate}

            caused by or resulting from any Covered Cause of Loss at the
            described premises; and
            \item
            Ends on the earlier of:

            \begin{enumerate}
                \def\labelenumiv{(\arabic{enumiv})}
                \item
                The day before the opening of the next school term following the
                date when, with reasonable speed and similar quality, the
                property at the described premises should be repaired, rebuilt
                or replaced; or
                \item
                The date when the school term is resumed at a new permanent
                location.
            \end{enumerate}

        \end{enumerate}

        ``Period of Restoration" does not include any increased period required due to the enforcement of any ordinance or law that:

    \end{enumerate}

\end{enumerate}

\end{document}

我相信在“日期…永久位置”行之后需要两个\end{enumerate}

第一个{enumerate}使您从“学期日期…”中的T对齐到(2)对齐。你还需要一个来让你与b对齐

如果您需要从下一步停止的位置(3c、3d等)选择列表,您可以使用\setcounter进行选择,这样它就不会一次又一次地重新开始;下面是一个例子:

\documentclass[]{article}
\begin{document}


\begin{enumerate}
    \def\labelenumi{\Alph{enumi}.}
    \item
    The \textbf{Definition} of ``Period of Restoration'' is replaced by
    the following:

    \begin{enumerate}
        \def\labelenumii{\arabic{enumii}.}
        \setcounter{enumii}{2}
        \item
        ``Period of Restoration'' means the period of time that:

        \begin{enumerate}
            \def\labelenumiii{\alph{enumiii}.}
            \item
            Begins:

            \begin{enumerate}
                \def\labelenumiv{(\arabic{enumiv})}
                \item
                72 hours after the time of direct physical loss or damage for
                Business Income coverage; or
                \item
                Immediately after the time of direct physical loss or damage for
                Extra Expense coverage;
            \end{enumerate}

            caused by or resulting from any Covered Cause of Loss at the
            described premises; and
            \item
            Ends on the earlier of:

            \begin{enumerate}
                \def\labelenumiv{(\arabic{enumiv})}
                \item
                The day before the opening of the next school term following the
                date when, with reasonable speed and similar quality, the
                property at the described premises should be repaired, rebuilt
                or replaced; or
                \item
                The date when the school term is resumed at a new permanent
                location.
            \end{enumerate}

        \end{enumerate}

        ``Period of Restoration" does not include any increased period required due to the enforcement of any ordinance or law that:

    \end{enumerate}

\end{enumerate}

\end{document}

您必须使用
\noindent

您只是有一个缩进;)

您必须使用
\noindent

您只是有一个缩进;)

我编写了一个小宏,名为unfop

与所有小写字母一起使用,它将结束列表,写入给定内容,然后恢复列表。 与大写U一起使用,它将在写入内容之前收集枚举数,并在恢复列表时还原枚举数

\documentclass[]{article}
\begin{document}

\begin{enumerate}
\item text
\item text
\item text
\end{enumerate}

Text Text Text

\begin{enumerate}
\setcounter{enumi}{3}
\item pickup where left off
\item text
\end{enumerate}

\end{document}
您可以将其堆叠为多个级别。请注意,如果对其进行堆栈,则可能会出现错误,除非在每次内部调用后使用\项[]。但它仍将编译

广泛的例子:

\newcommand{\unclip}[2][enumerate]{\end{#1}#2\begin{#1}}%
\makeatletter
\newcommand{\Unclip}[2][enumerate]{%
  \@ifundefined{c@saveenum@\romannumeral\@enumdepth}%    create temporary counter
    {\newcounter{saveenum@\romannumeral\@enumdepth}}{}%
  \setcounter{saveenum@\romannumeral\@enumdepth}%        store item number
    {\value{enum\romannumeral\@enumdepth}}%
  \end{#1}#2\begin{#1}%                                  end list, write content, resume
  \setcounter{enum\romannumeral\@enumdepth}%             restore item number
    {\value{saveenum@\romannumeral\@enumdepth}}}%
\makeatother
我希望有帮助。
干杯。

我写了一个小的宏,名为unfop

与所有小写字母一起使用,它将结束列表,写入给定内容,然后恢复列表。 与大写U一起使用,它将在写入内容之前收集枚举数,并在恢复列表时还原枚举数

\documentclass[]{article}
\begin{document}

\begin{enumerate}
\item text
\item text
\item text
\end{enumerate}

Text Text Text

\begin{enumerate}
\setcounter{enumi}{3}
\item pickup where left off
\item text
\end{enumerate}

\end{document}
您可以将其堆叠为多个级别。请注意,如果对其进行堆栈,则可能会出现错误,除非在每次内部调用后使用\项[]。但它仍将编译

广泛的例子:

\newcommand{\unclip}[2][enumerate]{\end{#1}#2\begin{#1}}%
\makeatletter
\newcommand{\Unclip}[2][enumerate]{%
  \@ifundefined{c@saveenum@\romannumeral\@enumdepth}%    create temporary counter
    {\newcounter{saveenum@\romannumeral\@enumdepth}}{}%
  \setcounter{saveenum@\romannumeral\@enumdepth}%        store item number
    {\value{enum\romannumeral\@enumdepth}}%
  \end{#1}#2\begin{#1}%                                  end list, write content, resume
  \setcounter{enum\romannumeral\@enumdepth}%             restore item number
    {\value{saveenum@\romannumeral\@enumdepth}}}%
\makeatother
我希望有帮助。
干杯。

我是一名新撰稿人,也是LaTex的新成员,由于某种原因,最后一行没有用我的代码发布,我无法编辑文章。这是我代码的最后一部分:\item在新的永久地点重新开学的日期\结束{枚举}“恢复期”不包括因执行任何条例或法律而需要的任何延长期:对于TeX相关的问题,最好在上问他们。我是LaTex的新撰稿人,也是LaTex的新成员,出于某种原因,最后一行没有发布我的代码,我无法编辑该帖子。这是我代码的最后一部分:\item在新的永久地点重新开学的日期\结束{枚举}“恢复期”不包括因执行任何条例或法律而需要的任何延长期:对于TeX相关的问题,最好在以下时间询问他们。