将文本置于公式的中心

将文本置于公式的中心

我想在两个等式之间添加文字,但不知道该怎么做,也就是说我希望“或”两边都有空格。代码如下:

\begin{align*} 
  I = (0, 0, x_3) \text{or} I = (0, x_2, 0)   
\end{align*}

图像如下。 在此处输入图片描述

答案1

您可以添加空格或者在两侧\text添加\quads 或s,具体取决于您想要多少空间。\qquad

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
  I = (0, 0, x_3) \text{ or } I = (0, x_2, 0) \\
  I = (0, 0, x_3) \quad\text{or}\quad I = (0, x_2, 0) \\
  I = (0, 0, x_3) \qquad\text{or}\qquad I = (0, x_2, 0)
\end{gather*}
\end{document}

相关内容