居中问题

居中问题

我想将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}

相关内容