In my document, the equations of latex are not aligning to the left, despite using the [fleqn] parameter. Here's the code. I would like the equation to align to the left, ie. in alignment with "Testing 1234" (apart from the equations below the main equation, if you know what I mean).
Here's my code, what am I doing wrong?
Code: Select all
\documentclass[12pt, twocolumn]{article}
\usepackage{polynom}
\usepackage[fleqn]{amsmath}
\usepackage[lmargin=1cm, rmargin=1cm, tmargin=1cm, bmargin=1cm]{geometry}
\setlength{\columnseprule}{1pt}
\begin{document}
\begin{eqnarray*}
\text{(a)} \ \lim_{x\rightarrow0}\frac{sin3x}{2x} &=& \lim_{x \rightarrow 0} \frac{sin3x}{3x}.\frac{3}{2} \\
&=& 1.\frac{3}{2} \\
&=& \frac{3}{2}\ \\
\text{(b)} \ \frac{d}{dx}[ln \sqrt{\frac{1+x}{1-x}}]
&=& \frac{d}{dx}[\frac{1}{2}(ln(1+x)-ln(1-x))] \\
&=&\frac{1}{2}[\frac{1}{1+x} + \frac{1}{1-x}] \\
&=&\frac{1}{2}[\frac{1-x+1+x}{1-x^2}] \\
&=&\frac{1}{1-x^2} \\
\text{(c)} \ I &=& \int_{-3}^3 \frac{dx}{x^2+9} \\
&=& \frac{1}{3}[tan^{-1} \frac{x}{3}]_{-3}^3 \\
&=& \frac{1}{3}tan^{-1}1 - tan^{-1}(-1) \\
&=& \frac{1}{3}[\frac{\pi}{4}+ \frac{\pi}{4}] \\
&=& \frac{\pi}{6}
\end{eqnarray*}
Testing 1234
\end{document}