How can I align equations to the left in latex?
this is my code
\documentclass[10pt]{article}
\usepackage{nccmath}
\begin{document}
\begin{fleqn}[\parindent]
\begin{equation}\label{eq51}
\begin{aligned}
% \nonumber to remove numbering (before each equation)
|e||g_s|-\frac{e^2}{\epsilon+|e|}\bar{g}_s\leq0\
|\hat{e}||\beta_s|-\frac{e^2|\hat{e}|}{e^2+\epsilon}\bar{\beta}_s\leq0\
|e||u_c|/\bar{u}-\frac{e^2}{\epsilon+|e|}\bar{u}_c/\bar{u}\leq0\
\end{aligned}
\end{equation}
\end{fleqn}
\end{document}


alignedsimply place a&at the start of each line. – Skillmon Aug 01 '23 at 12:56