Quebrar na lista

Quebrar na lista

Eu gostaria de continuar minha enumeratelista.

Mas quando eu uso:

\begin{enumerate}[label={(\arabic*)}]
\item Jeżeli będzie padać, bierzemy taksówkę. \\
(If it is raining, then we are taking a taxi.)

\item Gdyby było mi ciepło, zdjęłabym kurtkę. \\
(If i were warm, then I would remove my jacket.)
\end{enumerate}

\begin{enumerate}[resume]
\item Gdyby było mi ciepło, zdjęłabym kurtkę. \\
 (Were I warm, I would remove my jacket.)
\end{enumerate}

Innymi przykładami mogą być następujące zdania
\begin{enumerate}[resume]
\item Kiedy spotkam dobrego człowieka, będę go chwalić. \\
(When I find a good man, I will praise him.)
\end{enumerate}

Perdi o estilo anterior de lista.

O que devo fazer continuando o estilo da lista anterior?

Responder1

Use resume*, não resume. A versão com estrela usa as opções fornecidas para a(s) última(s) lista(s), a versão sem estrela descarta qualquer opção que ainda não tenha sido especificada na definição da lista.

Alternativamente: Defina uma enumeração própria (como mostrado no exemplo)

... e é isso que o enumitempacote sugere: Use resume*com moderação, defina antes uma nova lista ;-)

\documentclass{article}

\usepackage{enumitem}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[polish]{babel}

\newlist{otherenum}{enumerate}{4}

\setlist[otherenum,1]{label={(\arabic*)}}

\begin{document}




\begin{enumerate}[label={(\arabic*)}]
\item Jeżeli będzie padać, bierzemy taksówkę. \\
(If it is raining, then we are taking a taxi.)

\item Gdyby było mi ciepło, zdjęłabym kurtkę. \\
(If i were warm, then I would remove my jacket.)
\end{enumerate}

\begin{enumerate}[resume*]
\item Gdyby było mi ciepło, zdjęłabym kurtkę. \\
 (Were I warm, I would remove my jacket.)
\end{enumerate}

Innymi przykładami mogą być następujące zdania
\begin{enumerate}[resume*]
\item Kiedy spotkam dobrego człowieka, będę go chwalić. \\
(When I find a good man, I will praise him.)
\end{enumerate}


With \verb!otherenum!: 


\begin{otherenum}
\item Jeżeli będzie padać, bierzemy taksówkę. \\
(If it is raining, then we are taking a taxi.)

\item Gdyby było mi ciepło, zdjęłabym kurtkę. \\
(If i were warm, then I would remove my jacket.)
\end{otherenum}

\begin{otherenum}[resume*]
\item Gdyby było mi ciepło, zdjęłabym kurtkę. \\
 (Were I warm, I would remove my jacket.)
\end{otherenum}

Innymi przykładami mogą być następujące zdania
\begin{otherenum}[resume*]
\item Kiedy spotkam dobrego człowieka, będę go chwalić. \\
(When I find a good man, I will praise him.)
\end{otherenum}

\end{document}

insira a descrição da imagem aqui

informação relacionada