
item
목록 번호를 중앙에 맞추지 않고 목록의 중앙에 하나를 맞추고 싶습니다 .
\section*{Redovisning}
\begin{enumerate}
\item \begin{equation}
f(x) = x(x-2)\end{equation}
\vspace{0.3cm}
\begin{equation}
g(x) = x(2-x)\end{equation}
\vspace{0.3cm}
\item {$\frac{8}{3}$ a.e.}
\item \begin{equation}
\int\limits_a^b f(x) \, \mathrm{d} x
\end{equation}
\vspace{0.3cm}
\item
\end{enumerate}
를 제외한 모든 것이 괜찮아 보입니다 \item {$\frac{8}{3}$ a.e.}
. 내가 시도한 모든 것은 모두 중앙에 놓였거나 항목 번호를 제거했습니다.
답변1
목록 번호를 중앙에 맞추지 않고 목록의 한 항목을 중앙에 맞추고 싶습니다.
예제 코드의 나머지 부분으로 판단하면 용어를 중앙에 설정하기를 원할 뿐만 아니라 $\frac{8}{3}$ a.e.
(a) 표시 수학 모드에서 조판하고 (b) 한 줄에 자체적으로 표시하기를 원한다고 가정합니다. 이러한 가정이 정확하다면 로 시작 \[
하고 끝나는 번호가 없는 디스플레이 수학 그룹을 사용하는 것이 좋습니다 \]
.
\documentclass{article} % remove "demo"
\usepackage{amsmath}
\begin{document}
\section*{Redovisning}
\begin{enumerate}
\item
\begin{align}
f(x) &= x(x-2)\\
g(x) &= x(2-x)
\end{align}
\item
\[
\frac{8}{3}\ \text{a.e.}
\]
\item
\begin{equation}
\int_a^b f(x) \, \mathrm{d}x
\end{equation}
\end{enumerate}
\end{document}