Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I have an align environment with 5 equations. I want 3 of them numbered, and the other 2 not numbered. I understand that there's other posts on the issue of selective numbering of those equations that are referred to in the body of the text, but that's different to what I'm trying to achieve.

I want the first three lines (equations) of the following to be numbered and the last two to be without numbering. Thanks.

\documentclass[a4paper,11pt]{article}
\usepackage[fleqn]{amsmath}
\begin{document}

\begin{align}
&R_{i,t} = \alpha_i  \\
&R_{i,t} = \beta_i  \\
&R_{i,t} = \gamma_i  \\
&\mathbb{E}[\epsilon_{it}]=0;\textrm{   } \textrm{Var}[\epsilon_{it}]=\sigma^2_{\epsilon_{i}}\\
&i \in \{1,2,...,N\};\textrm{   } t \in \{1,2,...,T\}
\end{align}

\end{document}
share|improve this question

1 Answer

up vote 5 down vote accepted

Just add \notag to the lines you don't want numbered.

But if you are using fleqn, you don't need align, you can use gather instead (the \notag works the same) and remove the &s:

\documentclass[a5paper,11pt]{article}
\usepackage[fleqn]{amsmath}
\usepackage{amsfonts}
\begin{document}

\begin{gather}
R_{i,t} = \alpha_i \notag \\
R_{i,t} = \beta_i \notag \\
R_{i,t} = \gamma_i \notag \\
\mathbb{E}[\epsilon_{it}]=0;\textrm{   } \textrm{Var}[\epsilon_{it}]=\sigma^2_{\epsilon_{i}}\\
i \in \{1,2,...,N\};\textrm{   } t \in \{1,2,...,T\}
\end{gather}

\end{document}

enter image description here

(You probably wanted the other lines numbered).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.