![段落下の要点を述べる問題](https://rvso.com/image/305750/%E6%AE%B5%E8%90%BD%E4%B8%8B%E3%81%AE%E8%A6%81%E7%82%B9%E3%82%92%E8%BF%B0%E3%81%B9%E3%82%8B%E5%95%8F%E9%A1%8C.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}