The same thing happens if I use a table.
Is there a way of formatting the list so that the maths starts on the same line as the item number?
Code: Select all
\documentclass{article}
\usepackage{amsmath, amssymb}
\begin{document}
\begin{enumerate}
\item inline maths: $a=b$
\item \begin{flalign*}
& \text{Since} & 2y &= 4x & \\
& & y &= x \\
\end{flalign*}
\end{enumerate}
\begin{tabular}{r l}
1. & inline maths: $a=b$ \\
2. & {\begin{flalign*}
& \text{Since} & 2y &= 4x & \\
& & y &= x \\
\end{flalign*}}
\end{tabular}
\end{document}