0

I have to write

Accelerating model: 

 f(a)=exp(-E/RT)                   (1.1)

I do not know how to write that. I have written:

\begin{equation} 
$Accelerating model$: \hspace{20 mm}     f(\alpha)= n{\alpha}^{\frac{{(n-1)}}{n} 
\end{equation} 

but the output is

Accelerating model: f(a)=exp(-E/RT)(1.1)

There is no space in between the Equation and equation number. Can anyone help me in this regards?

1 Answers1

0

I'm sure there is a simpler way to do it, but does this help you?

\documentclass[a4paper,10pt]{article}
\usepackage{amsmath}

\begin{document}
\begin{align}
 \mbox{Accelerating model:} & \nonumber \\
                            &  \qquad  f(\alpha)= n{\alpha}^{\frac{{(n-1)}}{n}}
\end{align}
\end{document}
Moriambar
  • 11,466
c.p.
  • 4,636
  • You wouldn't need an align environment for this as you wouldn't need to put the Text into a math-style environment. Unfortunately the question of the OP doesn't get quite clear to me so I'm not sure what s/he really wants. – Benedikt Bauer Feb 15 '13 at 20:30
  • well, I don't find any other reason to put the text enclosed by $ other than reverting the effect of the math mode. Thus, my interpretation is that the OP wants text mode inside an equation environment. – c.p. Feb 15 '13 at 22:09