[Tex/LaTex] align text in math mode

equationsmath-mode

I have the following equation (I use MathType and then exctract it in LaTeX):

\begin{equation}
\begin{array}{*{20}{c}}
{\begin{array}{*{20}{l}}
{{\textrm{Dot product:}}}&{{\rm{            }}{\sigma _{ij}}{n_j} \Leftrightarrow {\bf{\sigma n}}}
\end{array}}\\
{\begin{array}{*{20}{c}}
{{\textrm{Double dot product:}}}&{\left\{ \begin{array}{l}
{L_{ijkl}}{\varepsilon _{kl}} = {\bf{L\varepsilon }}\\
{L_{ijkl}}{T_{klpq}} = {\bf{LT}}
\end{array} \right.}
\end{array}}
\end{array}
\end{equation}

which produces

enter image description here

How is it possible to align the text in the left?

Thanks

Best Answer

MathType is not really doing a good work: it's much simpler to type in LaTeX directly.

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
\begin{alignedat}{2}
&\text{Dot product:}        &\quad& \sigma_{ij}{n_j} = \sigma\mathbf{n} \\
&\text{Double dot product:} &\quad&
  \begin{cases}
  L_{ijkl}\varepsilon_{kl} = \mathbf{L}\varepsilon \\
  L_{ijkl}T_{klpq} = \mathbf{L}\mathbf{T}
  \end{cases}
\end{alignedat}
\end{equation}

\end{document}

enter image description here