I need to get a line over the X to signify that the variable is an
average/mean value.
Currently I have this, but the two x's are small, and look bad next to
the 1 and 2:
\begin{equation}
U={{\over{x}}_1 - {\over{x}}_2 \over{ \sqrt{ {s^2_1 \over{n_1}} +
{s^2_1 \over{n_1}} }}}
\end{equation}
Pan
I recomend \overline{x}.
HC
In fact, {\over{x}} creates a fraction with nothing in the numerator
and "x" in the denominator (E.g., {1\over2} writes one half). Anyway,
\over is an obsolete command, you should use \frac{1}{2} for
typesetting fractions.
PJ.
A better solution is to use \frac{}{}
\begin{equation}
U= \frac{\bar{x}_1 -\bar{x}_2}{\sqrt{\frac{s^2_1}{n_1}+\frac{s^2_1}
{n_1}}}
\end{equation}
I thimk it is better to use \frac{}{} and \bar{} instead of \over{}.
In this case it looks like as you want.
\begin{equation}
U= \frac{\bar{x}_1 - \bar{x}_2}{\sqrt{\frac{s^2_1}{n_1}+
\frac{s^2_1}{n_1}}}
\end{equation}
Flamel
On May 1, 10:50 am, PanDemic <johanbasb...@hotmail.com> wrote: