![단락 아래에 요점을 기술하는 데 문제가 있습니다.](https://rvso.com/image/305750/%EB%8B%A8%EB%9D%BD%20%EC%95%84%EB%9E%98%EC%97%90%20%EC%9A%94%EC%A0%90%EC%9D%84%20%EA%B8%B0%EC%88%A0%ED%95%98%EB%8A%94%20%EB%8D%B0%20%EB%AC%B8%EC%A0%9C%EA%B0%80%20%EC%9E%88%EC%8A%B5%EB%8B%88%EB%8B%A4..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}