Code: Select all
\begin{eqnarray*}
p_n & = m_{(n)} = \sum_{i} x_i^n, & n \geq 1 \\
p_{\lambda} & = p_{\lambda_1} p_{\lambda_2} \dotsb, & \text{if } \lambda = (\lambda_1, \lambda_2, \dotsc).
\end{eqnarray*}
Code: Select all
\begin{eqnarray*}
p_n & = m_{(n)} = \sum_{i} x_i^n, & n \geq 1 \\
p_{\lambda} & = p_{\lambda_1} p_{\lambda_2} \dotsb, & \text{if } \lambda = (\lambda_1, \lambda_2, \dotsc).
\end{eqnarray*}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\begin{align*}
p_n & = m_{(n)} = \sum_{i} x_i^n, \quad n \geq 1 \\
p_{\lambda} & = p_{\lambda_1} p_{\lambda_2} \dotsb, \quad \text{if } \lambda = (\lambda_1, \lambda_2, \dotsc).
\end{align*}
Code: Select all
\begin{align*}
p_n & = m_{(n)} = \sum_{i} x_i^n, && n \geq 1 \\
p_{\lambda} & = p_{\lambda_1} p_{\lambda_2} \dotsb, &&\text{if } \lambda = (\lambda_1, \lambda_2, \dotsc).
\end{align*}
Code: Select all
\begin{alignat*}{2}
p_n & = m_{(n)} = \sum_{i} x_i^n, &\quad &n \geq 1 \\
p_{\lambda} & = p_{\lambda_1} p_{\lambda_2} \dotsb, && \text{if } \lambda = (\lambda_1, \lambda_2, \dotsc).
\end{alignat*}
Well, to be honest I did use align* at first for this formula, but I thought it looked worse than eqnarray!First, you shouldn't use eqnarray: it is obsolete and it may give bad spacing. Load amsmath instead, and the align* environment:
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis