我不想使用標籤\equation
。但我想寫如下:
Set of equations: x = y + 5
y = 3
我嘗試了對齊運算符 ( &
) 但沒有成功。我嘗試過\quad
,\tab
但也無法得到它。我嘗試過\begin{itemize}
,但它通常會換行,並且我希望第一個方程式位於同一行。
答案1
答案2
您可以使用標準tabbing
為此的環境。
\documentclass{article}
\begin{document}
\begin{tabbing}
Set of equations: \= $x = y + 5$ \\
\> $y = 3$ \\
\end{tabbing}
\end{document}