내 코드는 다음과 같습니다.
\documentclass{article}
\begin{document}
\begin{enumerate}
\item Solve the equation \\
\hspace*{24cm} $x^2 = y$
\end{enumerate}
\end{document}
방정식이 지침보다 더 오른쪽으로 시작되도록 공백/들여쓰기가 있도록 하고 싶습니다. \indent
, \paragraph
, 를 시도해 보았는데 \hspace*
보시다시피 아무 것도 작동하지 않는 것 같습니다. 새로운 수준의 열거를 시작하면 이 작업을 수행할 수 있다는 것을 알고 있지만 문서에서 이 작업을 여러 번 수행해야 하기 때문에 다른 방법이 있는지 궁금합니다.
답변1
답변2
\documentclass{article}
\begin{document}
\begin{enumerate}
\item Solve the equation \\
\makebox[\linewidth]{$x^2 = y$} % centred equation
\end{enumerate}
\end{document}