我读这里如何创建一行带有多个标记方程式的文字。但我想在两个连续方程式之间添加文字,如“and”、“or”等。我该怎么做?
答案1
为了使方程式中的材料和中间短语(“和”、“或”等)对齐,我将每个方程式放在 中minipage
。
将-encased 方程式封装minipage
在center
环境中将确保与方程式上方或下方的材料有足够的垂直分离。
\documentclass{article}
\begin{document}
\begin{center}
\begin{minipage}[b]{0.4\textwidth}
\begin{equation}\label{eq:1}
a=b
\end{equation}
\end{minipage}
\hfill and
\begin{minipage}[b]{0.4\textwidth}
\begin{equation}\label{eq:2}
c=d
\end{equation}%
\end{minipage}%
\end{center}
\noindent
Considering equations (\ref{eq:1}) and (\ref{eq:2}), \dots
\end{document}