Latex合并多个公式且居中

要求:1:多个公式居中对齐 2:多个公式组合只有一个编号。
结果类似于这一种:
在这里插入图片描述
代码:使用gathered可以。

\begin{
    
    equation}
	\begin{
    
    gathered}
		\vspace{
    
    0.6em}
		{
    
    E} = {
    
    A(I)}\\
		\vspace{
    
    0.6em}
		{
    
    F} = Conv(\sum_{
    
    i=1}^3{
    
    M_i}) \\
		{
    
    F} = Conv_1(\sum_{
    
    i=1}^3{
    
    M_i})
	\end{
    
    gathered}
\end{
    
    equation}

踩的坑:
1:aligned不行,会左对齐。
2:split不行,会右对齐。
3:gather不行,不能想镶嵌到equation。
4:amsmath已经添加,使用center不行。

猜你喜欢

转载自blog.csdn.net/qq_43733107/article/details/131774488