一行中有多个方程,中间用空格隔开

一行中有多个方程,中间用空格隔开

假设我有两组公式,由于它们彼此接近,因此按对分组。我目前有这个:

\begin{align} a &=\int_{}b\mathrm{d}x = c\\
\label{e1}
d &=\int_{} e \text{ d}x = f
\label{e2}
\end{align}

\begin{align} a^{\ast} &=\int_{}b^{\ast}\text{ d}x = g\\
\label{e1}
d^{\ast} &=\int_{} e^{\ast} \mathrm{d}x = h
\label{e}
\end{align}

这给了我下面图片的左边部分:

在此处输入图片描述

我想在 LaTeX 中找到正确的答案,但我不知道该怎么做。有什么帮助吗?

答案1

\documentclass[a4paper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}

\begin{document}
    
    \begin{align}
    a = & \int_{}b\mathrm{d}x = c & a^{\ast} = & \int_{}b^{\ast}\text{ d}x = g \\
    d = & \int_{} e \text{ d}x = f &    d^{\ast} =& \int_{} e^{\ast} \mathrm{d}x = h
    \end{align}  

\end{document}

在此处输入图片描述

相关内容