Math & Sciencealign text

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
zainah
Posts: 6
Joined: Sat Mar 24, 2012 8:21 am

align text

Post by zainah »

Dear all,
I have an equation below. How to align the text for the symbol description? When I just use \qquad to give the space between the symbol and the definition, its become not align when some of the symbol is not in the same size.

Code: Select all

\begin{equation}
d = N_b \rho c {R_p}^{4}  \frac{C_d}{8} + a \lambda \frac{\theta_{io}}{6} - \frac{\theta_{itw}}{8} - \frac{\lambda}{4}  
\label{eqapp2}
\end{equation}
where\\
$N_b$ \qquad \qquad no of blade per thruster $[-]$ \\
$c$ \qquad \qquad average chord of the blade  $[m]$ \\
$R_p$ \qquad \qquad thruster radius $[m]$\\
$a=2\pi$ \qquad \qquad lift slope  $[rad \ s^{-1}]$\\
Last edited by Stefan Kottwitz on Tue Apr 10, 2012 8:52 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Frits
Posts: 169
Joined: Wed Feb 02, 2011 6:02 pm

align text

Post by Frits »

Here's what I do mostly:

Code: Select all

...
	where\\
	\begin{tabular}{ll}
		$N_b$ & no of blade per thruster $[-]$ \\
		$c$ & average chord of the blade  $[m]$ \\
		$R_p$ & thruster radius $[m]$\\
		$a=2\pi$ & lift slope  $[rad \ s^{-1}]$\\
	\end{tabular}
As a side note; you might want to use the siunitx package for the units. That is, you might want to try [\si{m}] instead of $[m]$.
howtoTeX.com - Your LaTeX resource site (Tips, Tricks, Templates and more!)
Follow howtoTeX on twitter
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

align text

Post by localghost »

Some code snippets from Section 65.2 of the »Math mode« document could be interesting for you.


Thorsten
Post Reply