答案1
我不会在这里使用居中。无论如何,你可以做到。
- 删除显示屏上方的跳过
- 向上移动一行
这是有居中和没有居中的情况。
我倾向于添加解释性文字:什么是F和G? 我认为,陈述假设非常重要。
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{lipsum}% for mock text
\newtheorem{theo}{Theorem}
\newcommand{\asym}[1][]{\underset{#1}{\sim}}
\newcommand{\smallo}[1][]{\underset{#1}{o}}
\newcommand{\notheoremtext}{%
\setlength{\abovedisplayskip}{0pt}%
\mbox{}\vspace{-\baselineskip}%
}
\begin{document}
\lipsum[1][1-4]
\begin{theo}\notheoremtext
\begin{alignat*}{3}
f&\asym[\alpha]g
&\quad\Longleftrightarrow\quad & f&=g+\smallo[\alpha](f) \\
&&\quad\Longleftrightarrow\quad & f&=g+\smallo[\alpha](g)
\end{alignat*}
\end{theo}
\lipsum[1][1-4]
\begin{theo}
$\begin{alignedat}[t]{3}
f&\asym[\alpha]g
&\quad\Longleftrightarrow\quad & f&=g+\smallo[\alpha](f) \\
&&\quad\Longleftrightarrow\quad & f&=g+\smallo[\alpha](g)
\end{alignedat}$
\end{theo}
\lipsum[1][1-4]
\end{document}