Problema al indicar los puntos del párrafo

Problema al indicar los puntos del párrafo

Esto es lo que estoy tratando de hacer

We discuss here SW coding with the help of a toy example. In this example, we assume   that 
X and Y are each of 3 bits. Moreover, X and Y differs at most in one bit. 
Following is the sequence how the SW coding works:

1.Make cosets of X's with Hamming distance 3:(000,111),(001,110),(010,101),(011,100)

2. Send index of set (requires 2 bits)

3. Send Y (requires 3 bits)

4. Decode X by using the element in the set which is closest 
to Y

5. Declare error if no element with d_H \leq 1

La salida que veo se ve así

Producción

Me gustaría que la nueva línea que se crea esté alineada como está marcada con la línea roja en el ejemplo anterior.

Respuesta1

No enumere el contenido manualmente. En su lugar, utilice una lista que enumere el contenido automáticamente:

ingrese la descripción de la imagen aquí

\documentclass{article}

\begin{document}

\begin{enumerate}
  \item
  Hello, my name is John Doe. I study applied mathematics and I enjoy the following subjects:
  calculus, differential equations, number theory, set theory, computer science, etc.

  \item
  Hello, my name is Jane Doe. I really enjoy writing poetry, even though I don't know anything
  about rhymes.
\end{enumerate}

\end{document}

Las manipulaciones del formato de la lista están disponibles a través delenumitempaquete. Por ejemplo, se pueden utilizar los siguientes cambios clave-valor:

ingrese la descripción de la imagen aquí

\documentclass{article}
\usepackage{enumitem}
\begin{document}

\begin{enumerate}[label={\arabic*)}, labelsep=2em]
  \item
  Hello, my name is John Doe. I study applied mathematics and I enjoy the following subjects:
  calculus, differential equations, number theory, set theory, computer science, etc.

  \item
  Hello, my name is Jane Doe. I really enjoy writing poetry, even though I don't know anything
  about rhymes.
\end{enumerate}

\end{document}

información relacionada