答案1
该软件包amsmath
提供了一个\intertext{...}
命令来设置方程式之间的完整行。\centering
这种“互文”材料可能导致以下结果:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
0 &= 0
\intertext{\centering%
\begin{tabular} {|c|c|r|}
\hline
x & 0 & 1 \\
\hline
y & 0 & -1 \\
\hline
\end{tabular}
}
1 &= 1
\end{align*}
\end{document}
输出为: