How to use tabs in Latex?

Welcome! You can use the aligned environment with [t] for that.

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

enter image description here


You can use the standard tabbing environment for this.

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

enter image description here


I would do it with flalign(*):

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

enter image description here

Tags:

Spacing