如何在 Latex 中使用選項卡?

如何在 Latex 中使用選項卡?

我不想使用標籤\equation。但我想寫如下:

Set of equations: x = y + 5
                  y = 3

我嘗試了對齊運算符 ( &) 但沒有成功。我嘗試過\quad\tab但也無法得到它。我嘗試過\begin{itemize},但它通常會換行,並且我希望第一個方程式位於同一行。

答案1

歡迎!您可以使用aligned環境來[t]實現這一點。

\documentclass{article}
\usepackage{amsmath}
\begin{document}
Set of equations: $\begin{aligned}[t]x &= y + 5\\
                  y &= 3\end{aligned}$
\end{document}

在此輸入影像描述

答案2

您可以使用標準tabbing為此的環境。

\documentclass{article}
\begin{document}
\begin{tabbing}
  Set of equations: \= $x = y + 5$ \\
                    \> $y = 3$     \\
\end{tabbing}
\end{document}

在此輸入影像描述

答案3

我會這樣做flalign(*)

\usepackage{amsmath}
.........
\begin{flalign*}
&\rlap{Set of equations:} & x &= y + 5 & \\
              & &   y &= 3
\end{flalign*}

在此輸入影像描述

答案4

如果應該顯示數學,您可以使用align(或者如果方程式不應該編號align*):

\documentclass[]{article}

\usepackage[]{amsmath}

\begin{document}
\begin{align}
  \text{Set of equations:}\quad
  x &= y + 5 \\
  y &= 3
\end{align}
\end{document}

在此輸入影像描述

相關內容