\documentclass[10pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\epsilon(\lambda_1,...,\lambda_n)=sgn\prod_{\substack{r=s}}(\lambda_s-\lambda_r).
\end{equation*}
\end{document}
Asked
Active
Viewed 148 times
1
Martin Schröder
- 15,156
Nisal Kevin Kotinkaduwa
- 1,058
-
Welcome to TeX.SX! You can have a look at our starter guide to familiarize yourself further with our format. – Martin Schröder Aug 21 '14 at 23:29
1 Answers
1
Either you use the fleqn option in your document class, but then all equations will be left-aligned, or you have to use the flalign* environment:
\documentclass[10pt]{article}
\usepackage[showframe, nomarginpar]{geometry}
\usepackage{amsmath}
\DeclareMathOperator{\sgn}{sgn}
\begin{document}
\begin{flalign*}
& \epsilon(\lambda_1,...,\lambda_n)=\sgn\prod_{r < s}(\lambda_s-\lambda_r). &
\end{flalign*}
\end{document}

Bernard
- 271,350
-
To Bernard,
I shall be so grateful to you for your reply. Moreover, thank you very much for your time and concern. This works perfectly for me.
– Nisal Kevin Kotinkaduwa Aug 22 '14 at 08:18