Re[2]: [NTG-context] gather

2004-10-28 Thread Giuseppe Bilotta
Thursday, October 28, 2004 David Arnold wrote: However, can you tell me how to use the gather environment using amsl so that all equations in the gather environment are numbered and labeled, where each can be referenced separately in the ensuing text? Is this possible? Not yet :\ --

Re: [NTG-context] gather

2004-10-27 Thread Giuseppe Bilotta
Wednesday, October 27, 2004 David Arnold wrote: All, The default behavior of gather is to center a group of equations. By default, each one is numbered. Try: [snip] In amsmath, if we don't want the individual equations numbered, we use the * version. Try: \documentclass{article}

Re: [NTG-context] gather

2004-10-27 Thread David Arnold
Giuseppe, In amsmath, if we don't want the individual equations numbered, we use the * version. Try: \documentclass{article} \usepackage{amsmath} \begin{document} \begin{gather*} F(x)=\int_0^x f(t)\, dt\\ F'(x)=f(x) \end{gather*} \end{document} I hope this helps those who are

[NTG-context] gather

2004-10-26 Thread David Arnold
All, The default behavior of gather is to center a group of equations. By default, each one is numbered. Try: \documentclass{article} \usepackage{amsmath} \begin{document} \begin{gather} F(x)=\int_0^x f(t)\, dt\\ F'(x)=f(x) \end{gather} \end{document} Compare with: \usemodule[amsl]