항목 열거의 두 번째 줄을 들여쓰는 방법

항목 열거의 두 번째 줄을 들여쓰는 방법

내 코드는 다음과 같습니다.

\documentclass{article}
\begin{document}
\begin{enumerate}
    \item Solve the equation \\
    \hspace*{24cm} $x^2 = y$
\end{enumerate}
\end{document}

방정식이 지침보다 더 오른쪽으로 시작되도록 공백/들여쓰기가 있도록 하고 싶습니다. \indent, \paragraph, 를 시도해 보았는데 \hspace*보시다시피 아무 것도 작동하지 않는 것 같습니다. 새로운 수준의 열거를 시작하면 이 작업을 수행할 수 있다는 것을 알고 있지만 문서에서 이 작업을 여러 번 수행해야 하기 때문에 다른 방법이 있는지 궁금합니다.

답변1

이와 같은 것 (비록 나는~ 아니다개인적으로 이런 식으로 사용하세요)? \hfill방정식을 오른쪽 여백으로 '푸시'하는 데 사용됩니다 .

(원본은 \hspace*{24cm}방정식을 오른쪽 여백으로 이동시키려는 의도였다고 가정합니다.)

그러나 이는 여러 방정식에 대해 어색해 보일 수 있습니다.

\documentclass{article}
\begin{document}
\begin{enumerate}
    \item Solve the equation 

    \hfill $x^2 = y$
\end{enumerate}
\end{document}

여기에 이미지 설명을 입력하세요

답변2

\documentclass{article}
\begin{document}
    \begin{enumerate}
        \item Solve the equation \\
              \makebox[\linewidth]{$x^2 = y$} % centred equation
    \end{enumerate}
\end{document}

관련 정보