What LaTeX commands should I use to center the equations on the page, but without numbering them?
Asked
Active
Viewed 514 times
0
1 Answers
0
You can use the environment align* of the package amsmath.
It centers the equations, and the * in the name prevents it to number the formulas.
Example :
\begin{align*}
f^* : ]0,+\infty[ &\rightarrow \mathbb{R}\\
m &\mapsto (m+1)e^m-me^m = e^m
\end{align*}
David Carlisle
- 757,742
deltux
- 78
\[1=1\]You may want to look at introductory guides such as the "not so short introduction to latex" – David Carlisle Feb 10 '13 at 10:45