5

I want to make this equation fit on one line. I've tried to use \small, but it doesn't work. What should I do?

\begin{equation}
1^{st}integral= \int_{0}^{\infty}{\frac{2 \pi \zeta}{\alpha} t^{(\frac{-2}{\alpha}-1)}e^{- \pi t^{\frac{-2}{\alpha}} \sum_{i\in K}{\frac{\lambda_i P_i ^{\frac{2}{\alpha}} \rho(D_i\hat{T}_i,\alpha)}{D_i\hat{T}_i^{\frac{2}{\alpha}}}}}  e^{- \pi \zeta t^{\frac{-2}{\alpha}}}dt}
\nonumber  
\end{equation}
jub0bs
  • 58,916
sherief
  • 51
  • Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with \documentclass{...}, the required \usepackage's, \begin{document}, and \end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – jub0bs Apr 06 '14 at 12:47
  • If you don't want the equation number, use the equation* environment, not the equation one with \nonumber. – giordano Apr 06 '14 at 12:50
  • 2
    We need to know the width of your text, so we can test it. – Sigur Apr 06 '14 at 12:56
  • I would use \text{1\textsuperscript{st} integral}=. Also \sum\limits_{i\in K} and -\pi t^{-\frac{2}{\alpha}} for better viewing. – Sigur Apr 06 '14 at 13:02
  • You'd also save a lot by calling your first integral something ($I_1$) for example (defined in the text of course). You can also set the limits above and below the integral. By the way, the "d" should probably be upright. – Chris H Apr 07 '14 at 13:12

2 Answers2

2

Multiplying the exponentials and factoring out a common expression makes this a little shorter, and perhaps a little easier to read.

enter image description here

If 2/\alpha (which appears five times in your expression) has semantic significance you could consider naming it, say \beta.

\documentclass[a4paper]{article}
\usepackage[showframe,margin=1in]{geometry}
\usepackage{amsmath}
\begin{document}

\begin{equation*}
\text{1\textsuperscript{st} integral} 
= \int_{0}^{\infty}
\frac{2 \pi \zeta}{\alpha} \, t^{(-2/\alpha-1)}
\exp\biggl(- \pi t^{-2/\alpha}
\biggl( \zeta + 
\sum_{i\in K}\frac{\lambda_i P_i ^{2/\alpha}
  \rho(D_i\hat{T}_i,\alpha)}{D_i\hat{T}_i^{2/\alpha}}
\biggr)
\biggr)  
\,dt 
\end{equation*}

\end{document}
Ethan Bolker
  • 9,333
  • 3
  • 42
  • 69
1

When there's a trade-off between (a) minimizing the space taken up by a long and complicated expression, e.g., by making it fit on one line (and, in the process, making various subformulas so small as to make them hard to parse) and (b) maximizing good readability and parsability, I'd usually give extra weight to maintaining good readability.

Assuming your document has a fairly narrow text block, e.g., if its textwidth is that of a "standard" LaTeX article-class document, I think it's a good idea to break the formula across two lines, in part because it lets you enlarge the various arguments of the two exponential terms; see the first formula below. If, on the other hand, your paper size is either "A4" or (US) "Letter" and the margins are 1 inch (2.54 cm) wide, you needn't break the line at all even when using the larger display elements; see the second formula. (The thin horizontal and vertical lines are drawn by the showframe option of the geometry package.)

enter image description here

\documentclass[a4paper]{article}
\usepackage[showframe,margin=1in]{geometry}
\usepackage{amsmath}
\begin{document}

\begin{align*}
\text{1\textsuperscript{st} integral} 
&= \int_{0}^{\infty}
\frac{2 \pi \zeta}{\alpha} \, t^{(-2/\alpha-1)}\\
&\qquad \times \exp\biggl(- \pi t^{-2/\alpha} \sum_{i\in K}
\frac{\lambda_i P_i ^{2/\alpha} \rho(D_i\hat{T}_i,\alpha)}{D_i\hat{T}_i^{2/\alpha}}\biggr)  
\exp\Bigl(- \pi \zeta t^{-2/\alpha}\Bigr)\,dt 
\end{align*}

\begin{equation*}
\text{1\textsuperscript{st} integral} 
= \int_{0}^{\infty}
\frac{2 \pi \zeta}{\alpha} \, t^{(-2/\alpha-1)}
\exp\biggl(- \pi t^{-2/\alpha} \sum_{i\in K}
\frac{\lambda_i P_i ^{2/\alpha} \rho(D_i\hat{T}_i,\alpha)}{D_i\hat{T}_i^{2/\alpha}}\biggr)  
\exp\Bigl(- \pi \zeta t^{-2/\alpha}\Bigr)\,dt 
\end{equation*}
\end{document}
Mico
  • 506,678