-
Vertical Spacing
Hello, had a quick search but couldn't find any other threads about this.
I'm using the align environment to typeset a series of equations. They are fairly large equations with lots of fractions and as such are looking rather squashed together with the standard spacing. I was wondering if there's a way of stretching the vertical spacing within this environment? I did have a play at using \smallskip etc, but it doesn't seem to make any difference - I'm not sure if I'm just putting it in the wrong part of the line though.
Cheers,
Rai
-
Can you show a picture or something?
-
Hmmmm, for some reason it's telling me there's a Syntax error when I try to post it using [ math] [ /math] to show you. The code copied straight from my document is
\begin{align*}
g'_{real}&=C_g-2.5\log(ADU_g)_{instr}-b_g[-2.5\log(ADU_g)_{instr}+2.5\log(ADU_r)_{instr}]\\
&=2.5\log(10^{C_g/2.5})-2.5\log(ADU_g)_{instr}-b_g[2.5\log(ADU_r)_{instr}-2.5\log(ADU_g)_{instr}]\\
&=2.5\log\left(\frac{10^{C_g/2.5}}{(ADU_g)_{instr}}\right)-b_g\left[2.5\log\left(\frac{ADU_r}{ADU_g}\right)_{instr}\ri ght]\\
&=2.5\log\left(\frac{10^{C_g/2.5}}{(ADU_g)_{instr}}\right)-\left[2.5\log\left(\frac{ADU_r}{ADU_g}\right)_{instr}^{b _g}\right]\\
&=2.5\log\left[\left(\frac{10^{C_g/2.5}}{(ADU_g)_{instr}}\right)\left/\left(\frac{ADU_r}{ADU_g}\right)_{instr}^{b_g}\rig ht.\right]
\end{align*}
if you want to compile it to see for yourself.
Cheers
-
It looks pretty cool to me.
But if you want to stretch vertical spacing just add another \\ when you finish a line.
For example
\begin{align*}
g'_{real}&=C_g-2.5\log(ADU_g)_{instr}-b_g[-2.5\log(ADU_g)_{instr}+2.5\log(ADU_r)_{instr}]\\\\
&=2.5\log(10^{C_g/2.5})-2.5\log(ADU_g)_{instr}-b_g[2.5\log(ADU_r)_{instr}-2.5\log(ADU_g)_{instr}]\\\\
&=2.5\log\left(\frac{10^{C_g/2.5}}{(ADU_g)_{instr}}\right)-b_g\left[2.5\log\left(\frac{ADU_r}{ADU_g}\right)_{instr}\ri ght]\\\\
&=2.5\log\left(\frac{10^{C_g/2.5}}{(ADU_g)_{instr}}\right)-\left[2.5\log\left(\frac{ADU_r}{ADU_g}\right)_{instr}^{b _g}\right]\\\\
&=2.5\log\left[\left(\frac{10^{C_g/2.5}}{(ADU_g)_{instr}}\right)\left/\left(\frac{ADU_r}{ADU_g}\right)_{instr}^{b_g}\rig ht.\right]
\end{align*}
You can also use the eqnarray environment.
-
Thanks, that looks much clearer now.