枚举中的中心数学

枚举中的中心数学

写作

\begin{enumerate}
\item $$math1$$
\item $$math2$$
\end{enumerate}

数学并不完全设置在数字旁边,而是稍微低一点。如果我使用

\begin{enumerate}
\item \begin{center}$math1$\end{center}
\item \begin{center}$math2$\end{center}
\end{enumerate}

相反,数字也居中,我不想这样。我怎样才能在数字旁边设置居中数学? 在此处输入图片描述

答案1

\hfil您可以用和指令包围内联数学表达式\hfill

在此处输入图片描述

\documentclass{article}
\begin{document}
\hrule  % just to illustrate width of textblock
\begin{enumerate}
\item \hfil$a^2+b^2=c^2$\hfill
\item \hfil$1+1=2$\hfill
\end{enumerate}
\end{document}

备注:如果您需要以 displaymath-style 而不是 inline-math 样式排版数学表达式,只需\displaystyle在开启$符号后插入指令即可。

答案2

如果您希望显示数学公式,可以执行以下操作。请注意,这会将公式置于数字和右边框之间的自由空间中。这会比普通公式更靠右一点。

% arara: pdflatex

\documentclass{article}
\usepackage{mathtools}
\newenvironment{itemequation}{\hfill$\begin{aligned}[t]}{\end{aligned}$\hfill\null}

\begin{document}
    \begin{equation*}
    \text{math0}
    \end{equation*} 
\begin{enumerate}
    \item \begin{itemequation}\text{math2}\end{itemequation}
    \item \begin{itemequation}\text{math2}\end{itemequation}
\end{enumerate}
\end{document}

题外话:你不应该$$\dots$$在 LaTeX 中使用。这是纯 TeX。

相关内容