![Проблема с указанием пунктов под параграфом](https://rvso.com/image/305750/%D0%9F%D1%80%D0%BE%D0%B1%D0%BB%D0%B5%D0%BC%D0%B0%20%D1%81%20%D1%83%D0%BA%D0%B0%D0%B7%D0%B0%D0%BD%D0%B8%D0%B5%D0%BC%20%D0%BF%D1%83%D0%BD%D0%BA%D1%82%D0%BE%D0%B2%20%D0%BF%D0%BE%D0%B4%20%D0%BF%D0%B0%D1%80%D0%B0%D0%B3%D1%80%D0%B0%D1%84%D0%BE%D0%BC.png)
Это то, что я пытаюсь сделать.
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
Результат, который я вижу, выглядит так
Я бы хотел, чтобы новая созданная линия была выровнена, как отмечено красной линией в примере выше.
решение1
Не перечисляйте содержимое вручную. Вместо этого используйте список, который перечисляет содержимое автоматически:
\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}
Манипуляции с форматированием списка доступны черезenumitem
упаковка. Например, можно использовать следующие изменения ключей и значений:
\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}