[Tex/LaTex] How to use flushleft with eqnarray*

equations

I'm using WinEdit 9.0 along with MikeTex 2.9.

My document preamble reads as follows:

% ----------------------------------------------------------------
% Article Class (This is a LaTeX2e document)  ********************
% ----------------------------------------------------------------
\documentclass[12pt]{article}
\usepackage[english]{babel}
\usepackage{amsmath,amsthm}
\usepackage{amsfonts}
% THEOREMS -------------------------------------------------------
\newtheorem{thm}{Theorem}[section]
\newtheorem{cor}[thm]{Corollary}
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
\theoremstyle{remark}
\newtheorem{rem}[thm]{Remark}
\numberwithin{equation}{section}
% ----------------------------------------------------------------
\begin{document}
...

How do I use the \begin{flushleft} \end{flushleft} commands to cause the content of a \begin{eqnarray*} \end{eqnarray*} to start from the left margin in the .pdf output document, instead of (what it seems to me) its default setting of being centered?

Best Answer

It is better to use the amsmath alignments than eqnarray but either way you get flush left equations by using

\documentclass[12pt,fleqn]{article}
Related Question