
Me gustaría continuar mi enumerate
lista.
Pero cuando 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}
Perdí el estilo de lista anterior.
¿Qué debo hacer para continuar con el estilo de la lista anterior?
Respuesta1
Uso resume*
, no resume
. La versión destacada utiliza las opciones dadas a las últimas listas, la versión no destacada descarta cualquier opción que aún no esté especificada en la definición de la lista.
Alternativamente: defina una enumeración propia (como se muestra en el ejemplo)
... y esto es lo que enumitem
sugiere el paquete: Úselo resume*
con moderación, defina más bien una lista nueva ;-)
\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}