How can I insert two equations on separate lines in TeXShop?

  • Thread starter Thread starter Mantaray
  • Start date Start date
  • Tags Tags
    Line
AI Thread Summary
To insert two equations on separate lines in TeXShop, use a multiline environment like the "align" environment from the amsmath package. The correct syntax involves using ampersands (&) as alignment markers, allowing for proper formatting. An example provided is: \begin{align} p_y &= s \cos \alpha \\ p_x &= s \sin \alpha\end{align}This method ensures the equations appear on separate lines as intended. For further guidance, additional resources are available online.
Mantaray
Messages
17
Reaction score
0
I'm having the following problem in TeXShop - how can I put two equations in two separate lines?
Thus far I have something like:

Code:
\[
 p_y = s \cos \alpha \\ 
 p_x = s \sin \alpha
\]

But I still get the two on the same line..
Help would be very much appreciated
 
Physics news on Phys.org
You need to use one of the multiline environments.
The most basic of which is array (used inside \[\])
The best is probably (as long as you're using the amsmath package)
Code:
\begin{align}
 p_y &= s \cos \alpha \\ 
 p_x &= s \sin \alpha
\end{align}
where the ampersands (&) are alignment markers.
This produces
\begin{align}<br /> p_y &amp;= s \cos \alpha \\ <br /> p_x &amp;= s \sin \alpha<br /> \end{align}

For more details see
http://en.wikibooks.org/wiki/LaTeX/Mathematics
and
http://en.wikibooks.org/wiki/LaTeX/Advanced_Mathematics
 
Last edited:
Many thanks!
 

Similar threads

Replies
2
Views
2K
Replies
4
Views
625
Replies
13
Views
2K
Replies
13
Views
3K
Replies
4
Views
3K
Replies
6
Views
7K
Back
Top