The LaTeX Mathematics Companion
The LaTeX Mathematics Companion
The LaTeX Mathematics Companion
Helin Gai
Trinity College of Arts and Sciences
Duke University
Coleen’s Workgroup
Contents
3 A bit further . . . 43
3.1 Constructing New Symbols . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
3.2 Extensible arrows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
3.3 Framed Math . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
3.4 Aligning Your Equations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
3.5 Footnotes in Math Mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
3.6 Equation Numbers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
3.7 Prime Equation Numbers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
3.8 Equation Numbers on Both Sides . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
3.9 A List of Options of the amsmath Package . . . . . . . . . . . . . . . . . . . . . . . . . 48
3.10 MathType into LATEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
5 Further Directions 65
iv
List of Tables
vi
1
An Introduction to Math Typesetting
In the preface to The TEXbook [9], Donald Knuth writes: “TEX [is] a new typesetting system intended
for the creation of beautiful books—and especially for books that contain a lot of mathematics.” And
rightly so! Today, most of the world’s best-typeset books are created by TEX or its offspring LATEX.
However, writing good mathematics involves a lot of devotion. Owning TEX doesn’t necessarily
follow that you can create the best formulas—you only have the potential to do so. Shredder of the
CTEX Community1 once said, “The most beautiful books are prepared by TEX, and so are the ugliest
ones!”
You might ask, “Isn’t it true that it is the content that really matters?” Well, yes. But the way
you “present” your math is equally important. A well-typeset equation increases the readability, and
helps your readers to comprehend your “content” more easily and effectively.
Let’s take a look at three examples of the same content, but presented in different ways:
Example 1.1 So far we have used the notation f’ to stand for the derivative of the function f. An
alternative notation for derivatives was introduced by the German mathematician Wilhelm Gottfried
Leibniz (1646–1716). If the variable y depends on the variable x, that is, if y=f(x), then he wrote
dy/dx for the derivative, so dy/dx=f’(x).
Example 1.2 So far we have used the notation f 0 to stand for the derivative of the function
f . An alternative notation for derivatives was introduced by the German mathematician Wilhelm
Gottfried Leibniz (1646–1716). If the variable y depends on the variable x, that is, if y = f (x), then
he wrote dy/dx for the derivative, so dy/dx = f 0 (x).
Example 1.3 So far we have used the notation f 0 to stand for the derivative of the function
f . An alternative notation for derivatives was introduced by the German mathematician Wilhelm
Gottfried Leibniz (1646–1716). If the variable y depends on the variable x, that is, if y = f (x), then
he wrote dy/dx for the derivative, so
dy
= f 0 (x).
dx
Most people will agree that example 1.3 is the best for three reasons: (1) You can easily distinguish
mathematics from the surrounding text; (2) The last equation is “displayed” because it is an important
conclusion and by doing so, the readers will be able to locate this conclusion very easily when they
need it; (3) The differential sign ‘d’ is set in upright type, so under no circumstance will ‘dx’ be
mistaken for ‘d × x’.
This book assumes that you already have some LATEX experience. If you are a total green hand, I’d
like to recommend the following:
1 The CTEX Community is the largest online Chinese TEX community. Its official website is http://www.ctex.org.
An Introduction to Math Typesetting
So technically, my book doesn’t talk about basic LATEX commands, like \documentclass. Nor
does it cover commands used in text mode only. Instead, it focuses on LATEX’s math mode, telling you
at least three things:
• What is the correct way of writing a formula? For example, should you use ~a, a, or a to denote
a vector?
• What is the “code” that you enter to get the formula in question?
• How can you further improve the appearance of a formula?
Oriented at answering these equations, the book is further divided into four chapters.
Chapter 2 focuses on the standard LATEX commands and environments. It also covers a large
amount of information about the amsmath package designed by the American Mathematical Society.
Where necessary, some other essential packages are also introduced. After reading this chapter, you
should be able to typeset all the math equations you will need in a “normal” math book/paper/doc-
ument.
Chapter 3 talks about how you can customize your math formulas. Again, I focus on commands
and environments either coming along with LATEX or provided by the amsmath package. (There is one
section that exceeds the limit.)
Chapter 4 gives an overview of over 30 packages that enable you to do more amazing things. But
be cautious, some of the packages also create evils.
Chapter 5 gives further directions on resources either in print or on the Internet.
I also really want you to do the exercises! I myself have the habit of skipping all the exercises
when reading anything technical. But I strongly recommend that you do the ones in my book—they’re
really good. Always remember to load the amsmath and amsfonts packages when you do the exercises
(and even when you compile own documents), as most of the them require these two packages.
Finally, enjoy reading this book!
2
2
The Essence of Mathematical Typesetting
$-a+2b=3c-4d(5e+6f)$\\ −a + 2b = 3c − 4d(5e + 6f )
$(x+y)/(x-y)$\\ (x + y)/(x − y)
$\{a,b,c,d,e\}$ {a, b, c, d, e}
I’d like to call your attention to the second example: If you look closely, you’ll realize that there
is some extra space surrounding the + and − sign, but none around the / sign. That’s because TEX
regards such expressions as “1 / 2” to be incorrect. Spacing in equations can be rather challenging,
but TEX has pretty good mechanism to cope with it automatically. So most of the time, you don’t
need to bother about that. As a matter of fact, TEX even prevents you from doing stupid things by
ignoring any spaces that you put between $’s. For example,
However, if you really need a blank space in your formula, you can type ‘\ ’. For example, the
output of ‘$2\ a$’ is ‘2 a’, which doesn’t make much sense (a little sense though).
More tips and rules about spacing is given in section 2.9.
OK, now that you know how to get ‘a+b = c’, what about ‘α+β 6= γ’ ? Well, you’ll find that most
symbols can be obtained simply by putting their names after ‘\’. For example, ‘α’ can be obtained by
typing ‘\alpha$’, ‘β’ by ‘\beta’, etc. Others might need to be memorized, but normally they are not
that hard to remember. For example, ‘6=’ is obtained by typing ‘\neq’, which is short for “not equal
to.” The symbol ‘∈’ which means “is included in” can be obtained from ‘\in’.
There is an amazing document called “The Comprehensive LATEX Symbol List,” and you can
download it from http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-letter
.pdf. You can find virtually all the symbols you need to write anything—both good and horrifying
mathematics. I assume that you have a copy of that document in hand, so this book does not offer
you a list of symbols.
The Essence of Mathematical Typesetting
So far, we’ve been talking about inline equations (also called in-text equations). What if you
want to center an equation on an individual line (the so-called displayed equation)? There are a few
LATEX environments that can assist you:
\begin{equation}
\delta\times\varepsilon=\theta
\end{equation} δ×ε=θ (2.1)
\begin{equation*}
\varphi-\rho\neq\kappa ϕ − ρ 6= κ
\end{equation*}
The equation environment not only centers the equation and puts it on an individual line, it
also numbers the equation automatically. The equation* environment is a variant of equation. It
does pretty much the same thing except that it doesn’t number the equation.
In addition to equation*, you may also try out the displaymath environment. You can even
type a simple \[...\]. Some people might tell you to use $$...$$. Well, don’t (unless you’re using
plain TEX, not LATEX)! It probably gives the same result as you want now, but later it might cause
you much headache as it is not compatible with some LATEX commands.
POST
‘×’ (\times) or ‘·’ (\cdot)? Well, there is no quick answer to this question—most of the time,
it’s simply a problem of personal taste. But still, here are some general principles you might want
to take into consideration:
1. Always use ‘×’ for numbers, e.g., 2 × 3. There is no harm in writing ‘2 · 3’, but ‘2 · 3.3’
looks rather eccentric. For consistency, I recommend using ‘×’ all the time when numbers are
involved.
2. Use nothing between a number and a letter, or between a letter and a letter, e.g., 2a, ab, but
a × 2.
3. Use either ‘×’ or ‘·’ between a number/an expression and a fraction, e.g., 2 × 12 . Reason:
2 × 12 = 1 while 2 12 = 2.5. (Anyhow, I loath the notation 2 12 .)
4. ‘×’ and ·’ mean quite differently in vector operations. So treat them differently.
5. In other cases, use whatever you want. (I tend to give more preference to ‘·’ because it’s
cuter.)
✐ Exercise
1. What’s the difference between an inline equation and a displayed one? What kind of equations
should be displayed?
2. Compare ‘−2’ with ‘1 − 2’. Are the negative and the minus signs really the same? Does TEX
have good mechanism to treat the difference?
3. How do you get ‘φ + ψ ∈
/ λ’ ?
4. Typeset ‘\not=’, ‘\not\subset’, and ‘\not\sim’ in your computer. So what does the command
‘\not’ do? Compare the results of ‘\not\in’ and ‘\notin’ very carefully. Are they the same?
4
2.2 Super
b scripts
5. Typeset ‘\begin{math} a+b \end{math}’ and ‘\( a+b \)’ in your computer, and see what
happens.
6. What’s wrong with the following sentences? How will you improve them?
d d
(a) For x in radians, dx (sin x) = cos x, dx (cos x) = − sin x. [Hint: A possible solution might
be “For x in radians, (d/dx)(sin x) = cos x, (d/dx)(cos x) = − sin x.” A better solution is
to rewrite it: “For x in radians, (sin x)0 = cos x, (cos x)0 = − sin x.” However, it’s merely
better. What do you think would be the best?]
(b) For any constant k, lim k = k. [Hint: Placing the limits under lim might disturb the line
x→c
spacing. An alternative is “For any constant k, limx→c k = k.”]
Z x Z x Z x
(c) If F (x) = f (t)dt and G(x) = g(t)d(t), then F (x) + G(x) = (f (t) + g(t))dt. [Hint:
0 0 Rx Rx 0
A better solution could be “If F (x) = 0 f (t) dt and G(x) = 0 g(t) dt, then F (x) +G(x) =
Rx
0
f (t) + g(t) .”]
7. Enter the following codes into your computer, and compile it.
\documentclass[fleqn]{article}
\begin{document}
\[ f(x)=mx+b. \]
\end{document}
What does the option fleqn do?
Now get a ruler ready and add ‘\setlength{\mathindent}{2in}’ into the preamble. What does
\mathindent control?
8. Now enter the following into your computer:
\documentclass[fleqn]{article}
\begin{document}
$$ f(x)=mx+b. $$
\end{document}
Do you see why I tell you not to use $$...$$ now?
2.2 Super
b scripts
Super
b scripts prevail in mathematics. In computers and calculators, we frequently use ‘^’ to indicate a
superscript, and ‘_’ to indicate a subscript. The same method is adopted in LATEX:
$z^2$, $b_n$,\\ z 2 , bn ,
$x^2y^2$, $x ^2y ^2$\\ x2 y 2 , x2 y 2
$x_12$, $x^12$ x1 2, x1 2
Notice that ‘^’ and ‘_’ apply only to the next single character. What if you want more than one
characters to become super
b scripted? Just enclose them in braces:
5
The Essence of Mathematical Typesetting
Notice that it is illegal to type ‘x^y^z’ and ‘x_y_z’. Even human beings cannot tell the exact
z
meaning of these notations—obviously, ${x^y}^z$ (xy z ) and $x^{y^z}$ (xy ) are different. You have
to tell TEX which one you want. As a matter of fact, the former is quite inappropriate, if not totally
wrong. You should use (xy )z , which reduces ambiguity.
Sometimes, you might need to type something like ‘2 F3 ’, in which the subscript ‘2’ follows nothing.
You can just type ‘$_2F_3$’. However, the best way would be to insert an empty group: ‘${}_2F_3$’.
(Do you know why?)
POST
The paragraph you are reading is rather bad—the line spacing is uneven due to the math
a2 +b2
formula e c2 +d2 . There are two ways to fix this problem: (1) display the formula; or (2) rewrite it
as exp (a2 + b2 )/(c2 + d2 ) .
Keeping the line spacing even (at least within a paragraph) is a very essential typographic
principle. We’ll frequently revisit this rule (and very soon).
✐ Exercise
3 4
1. How do you get ((x2 )3 )4 and ((x2 ) ) respectively? Which one is better? [Hint: Use “grouping.”]
2. How do you get x + 2 F3 ? Now, you can see the value of the empty group.
$x^{31415}_{92}+\pi$,
x31415
92 + π, x31415
92 +π
$x_{92}^{31415}+\pi$\\ 2 2
F2 , F 2
$F_2^2$, $F{}_2^2$
One more problem about this topic: primes. To get a prime, simply enter ‘’’:
✐ Exercise
ya
1. How do you get xyba ?
b
6
√
2.3 Roots
√
2.3 Roots
Roots are produced by ‘\sqrt[...]{...}’:
√ √ √
$\sqrt2$, $\sqrt2y$, $\sqrt{2y}$\\ √ 2, 2y, 2y
3 √
$\sqrt[3]{2}$, $\sqrt[n+1]{x+y}$ 2, n+1 x + y
√
β
Some people might find the standard k unacceptable. You can tune the position of the index
with the amsmath package.
$\sqrt[\leftroot{2}\uproot{4}\beta]{k}$, √
β √
β
$\sqrt[\leftroot{1}\uproot{3}\beta]{k}$ k, k
√ √ √
Some obsessive ones might even find x + y + z unacceptable. (I’m not among them.) Two
commands should be of help: (1) The command \mathstrut produces an invisible box whose width
is zero and whose height and depth are the height and depth of a parenthesis ‘(’. (2) The command
\smash{...} typesets its contents but ignores both their height and depth. The amsmath package
provides an optional argument, used as follows: \smash[t]{...} ignores the height of the box’s con-
tents, but retains the depth, while \smash[b]{...} ignores the depth and keeps the height. Compare:
√ √ √
$\sqrt{x}+\sqrt{y}+\sqrt{z}$\\ x+ y+ z
√ p √
$\sqrt{x}+\sqrt{\mathstrut y}+\sqrt{z}$\\
√x + √ y + √ z
$\sqrt{x}+\sqrt{\smash[b]{y}}+\sqrt{z}$ x+ y+ z
POST
Like I mentioned in the previous section, we should try our best to make the line spacing even.
Here’s another case you have to take care of: For some special reasons, you have to put the equation
v s
u r
√
u q
t
1 + 1 + 1 + 1 + 1 + x?
in inline mode. Obviously, it’s going to damage the line spacing drastically. One solution is to type
(1 + (1 + (1 + (1 + (1 + x)1/2 )1/2 )1/2 )1/2 )1/2 . But still, this looks rather eccentric. The best solution
is still to display it, for the sake of clarity as well as aesthetic.
✐ Exercise
√
1. How do you get α × β0?
n+2
√
2. How do you get kn a? You might have to tune the position of the index kn .
p p p
3. How do you get a + d + y? [Hint: Compare your result with mine carefully!]
7
The Essence of Mathematical Typesetting
Fractions
2.4 Binomials
—A Big Challenge!
Let’s now turn to something more challenging—fractions. A fraction is obtained by typing
\frac{numerator}{denominator}
What is challenging about this? Well, if you try typing a fraction in inline mode and in display mode,
you’ll find that the results are different:
$\frac{1}{2}$, 1
\begin{equation*} 2,
1
\frac{1}{2}
\end{equation*} 2
a+b
LATEX does this for a good reason: an inline ruins the line spacing, as you can see here; a
c+d
displayed
a+b
c+d
is equally unacceptable. However, you can change LATEX’s behavior by using a few commands provided
by the amsmath package: (1) \dfrac always typesets a fraction as if it is being typeset in the display
mode; (2) \tfrac always typesets a fraction as if it is being typeset in the inline mode. For example:
Although amsmath makes it fairly easy to achieve whatever you want in your manuscript, it is
easily abused. In my opinion, the command \dfrac should never be used, and I could think of only
one occasion where you would need the command \tfrac (you will soon find it in the “post”). So
over 90 percent of the time, you should be using LATEX’s \frac command, or you should rewrite your
formula.
POST
In discussing subscripts, superscripts, and roots, we’ve already seen that line spacing within a
paragraph should be even if at all possible. Fractions can easily destroy line spacing, if not treated
carefully. But with some tricks, you can almost always fix the problem.
• There are two types of fractions: (1) slashed fractions, e.g., a/b; (2) built-up fractions, e.g.,
a
.
b
• Inline fractions are set in the slashed form, e.g., a/b, π/2, sin(a/x). However, common nu-
merical fractions can be set in built-up form, e.g., 21 , 23 , 10
1
.
In Coleen’s Workgroup, all numerical fractions are set in built-up form.
8
Fractions
2.4 Binomials —A Big Challenge!
• In displayed expressions, all fractions should be built up unless they are part of a numerator
or denominator or in a subscript or superscript (in subformulas):
R π/2
sin2n x dx
x sin 1 < 1 ,
2 0
R π/2 .
x 10 sin2n+1 x dx
0
• If there are no built-up fractions in the display, numerical fractions may be set as built-up
fractions (this is the only occasion I could think of where you need \tfrac):
1
2x + 43 y + 56 z.
• Fractions in subformulas should always use the slash, both in inline and display:
(a/b) + c
xa/b , y3/2 , .
(p/q) + r
• Despite all the fine rules, clarity should always be the first priority. If a fraction,
after being
converted into its slashed form, is not readable, e.g., (a + b)/(c + d) /(e + f ) /(g + h), you
should display it.
The amsmath package also provides a command for typesetting continued fractions, \cfrac. It
can also be following by an optional [r] or [l] to specify the position of the numerator:
\begin{equation*}
a_0+\cfrac{b_1}{ b1
a0 +
a_1+\cfrac[l]{b_2}{ b2
a_2+\cfrac[r]{b_3}{ a1 +
b3
a_3+\cdots}}} a2 +
a3 + · · ·
\end{equation*}
\[a_0+\frac{b_1}{a_1+}
b 1 b2 b3
\frac{b_2}{a_2+} a0 + ···
\frac{b_3}{a_3+}\cdots\] a1 + a2 + a3 +
✐ Exercise
1. The following displayed equations need some fixing if they are put in inline mode. But how?
3
∂
a+1 a a sin a
, , sin , , F (u, θ).
b x+1 x x ∂θ
sin a
[Hint: Converting to sin a/x is mathematically correct, but is it perfect?]
x
2. For each of the problems below, decide which one of the listed is perfect to type. Then typeset
them in your computer:
9
The Essence of Mathematical Typesetting
1 2
(a) Inline: a1/2 + b2/3 , a 2 + b 3 .
a+b
(b) Inline: , a+b
c+d , (a + b)/(c + d).
c+d
(c) Display:
a+b 1 a+b 1
< 10 , (a + b)/(c + d) < 1/10, < .
c+d c+d 10
(d) Display:
1 3 1
a + b, 2a + 34 b.
2 4
(e) Display:
a 1
(a/3) + t1/2 3 + t2
, .
5 5
3. How do you get the following formula?
p
a + (b/c)
(c + d)/2
4. There is actually a third kind of fractions—fractions written with exponents, e.g., ab(cd)−1 . How
will you typeset (ab)/(cd)2 in the alternative notation?
Binomial coefficients, like fractions, ought to be treated very carefully. The most basic command
for producing a binomial coefficient is ‘\binom{...}{...}’:
In inline mode: k2 .
In inline mode: $\binom{k}{2}$.\\
In display mode: In display mode:
\begin{equation*} \binom{k}{2}
k
\end{equation*}
2
I recommend that you use this command all the time. But if you do want to do some crazy things,
you can also use the commands \dbinom and \tbinom provided by the amsmath package (Think a
million times before you do so!!!):
In inline mode: $\dbinom{k}{2}$, k
which is horrible.\\ In inline mode: , which is horrible.
2
In display mode: In display mode:
\begin{equation*} \tbinom{k}{2}.
k
\end{equation*} 2 .
✐ Exercise
1. What do you think of the following notation? How can you improve it?
k
a .
b
10
Fractions
2.4 Binomials —A Big Challenge!
It might be helpful to introduce the concept of “styles.” In math mode, there are four styles:
POST
In case you want to use fractions of display style in your manuscript (sigh, why???), I’d also
like to introduce two more commands that would be helpful.
First take a look at the following output:
This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.
1
This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This
2
is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.
The numerator and denominator almost touch the text above and below. But after adding the
following two lines:
\lineskiplimit=3pt
\lineskip=4pt
This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.
1
This is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This
2
is a test. This is a test. This is a test. This is a test. This is a test. This is a test. This is a test.
Here is an interpretation of the two commands from The TEXbook [9]:
Whenever a box is added to a vertical list, TEX inserts “interline glue” intended to make
the distance between the baseline of the new box and the baseline of the previous box exactly
equal to the value of \baselineskip. But if the interline glue calculated by this rule would
cause the top edge of the new box to be closer than \lineskiplimit to the bottom edge of
11
The Essence of Mathematical Typesetting
the previous box, then \lineskip is used as the interline glue. In other words, the distance
between adjacent baselines will be the \baselineskip setting, unless that would bring the
boxes too close together; the \lineskip glue will separate adjacent boxes in the latter case.
✐ Exercise
POST
The following is adapted from Mathematics into Type [8]:
In text, the subscripts and superscripts [of sums and products] usually follow the symbols,
while in display they are normally printed above and below:
∞ ∞
P∞ Q∞ X Y
IN TEXT: a=1 a=1 IN DISPLAY:
a=1 a=1
In the past some publishers used to place subscripts and superscripts to the right of sums and
products both in text and display to avoid extra typesetting costs. Aesthetically it is preferable
to set them in display as shown above, and with modern computer typesetting systems it is
no more expensive. . . .
When a single integral is used, the subscripts and superscripts always follow the symbol.
For multiple integrals used in display, the subscripts and superscripts may be centered above
and below them.
Z b ZZ ZZ Z Z∞ Z 1Z 1
a 0 0
A A −∞
Good news! TEX can handle the above rules most of the time. For example,
Perfect output! However, TEX doesn’t treat multiple integrals according to the rules given in the
post. Here’s how you can fix the problems:
12
2.5 Sum and Integration
\begin{equation*} ZZ ZZ
\iint_A,\qquad \iint\limits_A ,
A
\end{equation*} A
There are a few more commands for producing different integral signs:
\begin{equation*} ZZZ Z Z I
\iiint\limits_V, , ··· ,
\idotsint\limits_V, \oint_V V
V V
\end{equation*}
Rb
There is a special symbol representing the Cauchy principal value of a f (x) dx. It is not built
into LATEX, and is so far not provided by any packages available on the Internet. But here’s how you
can construct it:
\def\Xint#1{\mathchoice
{\XXint\displaystyle\textstyle{#1}}%
{\XXint\textstyle\scriptstyle{#1}}%
{\XXint\scriptstyle
\scriptscriptstyle{#1}}%
{\XXint\scriptscriptstyle Z b
\scriptscriptstyle{#1}}% − f (x) dx
\!\int} a
\def\XXint#1#2#3{{
\setbox0=\hbox{$#1{#2#3}{\int}$}
\vcenter{\hbox{$#2#3$}}\kern-.5\wd0}}
\def\dashint{\Xint-}
\[\dashint_a^bf(x)\,\rd x\]
Sometimes, you might have to produce limits of more than one line. The amsmath package provides
the command ‘\substack’ which is helpful:
X
\[\sum_{\substack{0\leq i\leq m\\ P (i, j)
0<j<n}} P(i,j)\] 0≤i≤m
0<j<n
You could stop reading here. But if you want to do more crazy things, continue.
You can try the “style commands” introduced in section 2.4 to change the behavior of TEX:
Inline: $\displaystyle\sum_{n=1}^k$,
k Z b
$\displaystyle\int_a^b$. X
Inline: , . Don’t do these!
Don’t do these!\\ a
n=1
Display: \begin{equation*} Display:
\textstyle\sum_{n=1}^k,\int_a^b. Pk Rb
n=1 , a .
\end{equation*}
The opposite of \limits is \nolimits (you need a really good reason to use it):
13
The Essence of Mathematical Typesetting
k
P Rb
Inline: $\sum\limits_{n=1}^k$, Inline: ,
$\int\limits_a^b$\\ n=1 a
Display:
Display: \begin{equation*}
Zb
\sum\nolimits_{n=1}^k,\int\limits_a^b Xk
,
\end{equation*} n=1
a
✐ Exercise
2.6 Functions
POST
The following is adapted from ISO 31-11:1992 [5]:
14
2.6 Functions
Again, LATEX can handle the rules above most of the time. For example,
The behavior
R ofP
the “limits” can be changed (I’m not saying that you should), in the same way
we deal with and :
15
The Essence of Mathematical Typesetting
Occasionally, you’ll come across functions that are not predefined, e.g., if you type \arccot, you’ll
get an error message.
The command \DeclareMathOperator{cmd}{text} provided by the amsmath package defines
cmd to produce text in the appropriate font for “textual operators.” If the new function being named
is an operator that should, when used in displays, “take limits” (so that any subscripts and superscripts
are placed above and below), then use the starred form \DeclareMathOperator*. For example, after
defining:
\DeclareMathOperator{\arccot}{arccot}
\DeclareMathOperator\meas{meas}
\DeclareMathOperator*\esssup{ess\,sup}
you can type these commands to get amazing results:
POST
I have some comments on functions:
• ‘sin’ is a function with more than one letter. Therefore, it’s not necessary to type ‘sin(2A)’,
a simpler ‘sin 2A’ is clear enough.
• Don’t type ‘sin x + y’ when you mean ‘sin(x + y)’. Also it’s better to type ‘(sin x) + y’ for
clarity.
• Instead of ‘(sin x)2 ’, use ‘sin2 x’.
• Don’t use ‘sin−1 x’, ‘cos−1 x’, etc., use ‘arcsin’, ‘arccos’, etc. instead. That’s because ‘sin−1 x’
can be interpreted as ‘1/ sin x’, etc.
• Use ‘log x’ only when the base doesn’t matter. Replace ‘log10 ’ with ‘lg’, ‘loge ’ with ‘ln’, and
‘log2 ’ with ‘lb’.
√
2 2
√
• Instead of typing ‘e(a+b)/ a +b ’, use ‘exp (a + b)/ a2 + b2 ’. However, ‘ex ’ doesn’t need to
be changed to ‘exp x’.
• In Coleen’s Workgroup, ‘proj lim’ and ‘inj lim’ are used instead of ‘lim’ and ‘lim’. Similarly,
←− −→
we use ‘lim sup’ and ‘lim inf’ instead of ‘lim’ and ‘lim’.
• In ISO 31-11:1992 [5], the notation ‘ent a’ is used to denote the greatest integer less than or
equal to a, e.g., ent(−2.4) = −3. In Coleen’s Workgroup, we use JxK instead.
✐ Exercise
16
2.7 Delimiters
2.7 Delimiters
What’s really bad about equation (2.3) in the exercise of section 2.6 is that some of the parentheses
are not big enough to “enclose” things! Now, instead of typing ‘(’ and ‘)’, try ‘\left(’ and ‘\right)’.
You should get:
∞ ∞
π X (−1)n π 2n π X (−1)n π 2n+1 z2 + 1
I(z) = sin z2 z 4n+1 −cos z2 z 4n+3 + ,
2 n=1
1 × 3 × · · · × (4n + 1) 2 n=1
1 × 3 × · · · × (4n + 3) z−1
\begin{equation*} Z Z x=1
\left[\int+\int\right]_{x=0}^{x=1} +
\end{equation*} x=0
Table 2.2 gives all the delimiters that are recognized by TEX.
17
The Essence of Mathematical Typesetting
\begin{equation*} ah
\left(\frac{a}{b}\right[
\end{equation*} b
If you type ‘.’ after \left or \right, instead of specifying one of the basic delimiters, you get
the so-called null delimiter (which is blank):
\begin{equation*} a
\left(\frac{a}{b}\right.
\end{equation*} b
If you leave out the \left and \right, what you get is | − x| = | + x|. The reason is that TEX
does not really understand mathematics. It thinks that you are subtracting ‘x’ from ‘|’ and adding ‘x’
to ‘|’, resulting in the extra spaces.
However, the mechanism of \left and \right does not always work as well as you hope!
\begin{equation*}
\left(a+(a+b)\right) (a + (a + b))
\end{equation*}
\begin{equation*}
\bigl(a+(a+b)\bigr) a + (a + b)
\end{equation*}
The \big delimiters are just enough bigger than ordinary ones so that the difference can be per-
ceived, yet small enough to be used in the text of a paragraph. Here are all of them, in the ordinary
size and in the \big size:
()[]{}bcdehi/\|k ↑⇑↓⇓lm
x~wx~
wyy
You can also type \Bigl or \Bigr to get larger symbols suitable for displays:
hinojklmDE./
x~wx~
www
wyy
There are \biggl and \biggr versions that are 50% taller than their \big counterparts:
x~wx~
www
www
wyy
Finally, there are \Biggl and \Biggr versions, 2.5 times as tall as the \bigl and \bigr delimiters:
!"#()$%&'*+,-
x~wx~
www
www
www
wyy
Any ‘\...l’ delimiter is an opening, and any ‘\...r’ is a closing. There are also ‘\...m’ for use
in the middle of formulas.
18
2.7 Delimiters
\begin{equation*}
\left\{\,x\in\mathbb{R}\biggm|
5 a+1 c+1
0<\left|x\right|<\frac{5}{3}\,\right\}, x ∈ R 0 < |x| < ,
\quad\frac{a+1}{b}\bigg/\frac{c+1}{d} 3 b d
\end{equation*}
The ‘\,’ in the first example is for the purpose of fine tuning. They add thin spaces.
Also note that in the second example, we use \bigg, not \biggm. That’s because there’s no need
to put extra space around ‘/’. Compare:
\begin{equation}
a+1 c+1
\frac{a+1}{b}\biggm/\frac{c+1}{d} (2.4)
\end{equation} b d
Sometimes \left and \right choose a larger delimiter than you want. You can tune them:
\begin{equation*} !
n n
X
\left(\sum_{k=1}^n A_k \right)\quad X
Ak Ak
\biggl(\sum_{k=1}^n A_{k}\biggr)
k=1 k=1
\end{equation*}
However, most of the time, \left and \right are the clear choice. The values of them are:
(1) They are “automatic”—that’s why they produce problems sometimes; and (2) They can produce
arbitrarily large delimiters—much bigger than \biggggg!
POST
You probably realized I type a + (a + b) instead of the conventional [a + (a + b)]. The reason
is that [a] and {a} has their unique meanings and can cause ambiguity. For example, some people
might argue that [(1 + 2.5) + 3] = [6.3] = 6 because [a] can be used to denote the “integer part” of
the number a (see section 2.6). Here is an excerpt from Mathematical Writing:
In some cases your audience may expect nested parentheses. In this case (or in any other
case when you feel you must have them), should the outer pair be changed to brackets (or
curly-braces)? This was once the prevailing convention, but it is now not only obsolete but
potentially dangerous; brackets and curly braces have semantic content for many scientific
professionals. (“The world is short of delimiters,” says Don.) Typographers help by using
slightly larger parentheses for the outer pair in a nested set.
✐ Exercise
f (x) − f (a)
f 0 (a) = lim .
x→a x−a
19
The Essence of Mathematical Typesetting
f (x) − f (a)
f (x) − f (a) = (x − a) · .
x−a
Taking the limits, we have
f (x) − f (a)
= 0 · f 0 (a) = 0.
lim f (x) − f (a) = lim (x − a) ·
x→a x→a x−a
Thus we know that limx→a f (x) = f (a), which means f (x) is continuous at x = a.
2. How do you get the following?
(a) x − s(x) y − s(y)
(b) |x| − |y|
3. What’s the professional way to type x + f (x) x − f (x) ?
4. Do you still remember the notation JxK? How can you produce it?
5. Some people use the “colon” notation to represent sets, e.g., { x : x > 5 }. What are the advan-
tages and disadvantages of this notation? [Hint: What do you think of { x ∈ R | |x − 3| < 3 }?]
$\mathrm{i}^2=-1$ i2 = −1
Although we write ~a, vectors in printed documents are set in boldface. Some people like upright
bold, some prefer italic bold. Both are acceptable, and here’s how to produce them:
$\mathbf{a}$, $\bm{a}$. a, a.
(To use the command \bm, you have to load the bm package first.) You’ll see the rules adopted by
Coleen’s Workgroup in a short while.
As you’ve seen in section 2.7, sets of numbers are set in a special fonts, e.g., R denotes the set of
real numbers. Let’s take a look how to produce this:
20
2.8 Changing fonts
If you use the upright ‘d’, ‘e’, and ‘i’ a lot, you should define them in your manuscript:
\newcommand\rd{\mathrm{d}}
\newcommand\re{\mathrm{e}}
\newcommand\ri{\mathrm{i}}
Now, you can get the upright ‘d’, ‘e’, and ‘i’ by simply typing ‘\rd’, ‘\re’, and ‘\ri’:
Pr−j = 0 if r − j is odd.
That’s because blank spaces are ignored in math mode. Now try this:
21
The Essence of Mathematical Typesetting
However, the amsmath package provides a \text command which is really helpful:
\[P_{r-j}=0\text{ if
$r-j$ is odd.}\] Pr−j = 0 if r − j is odd.
POST
Coleen’s Workgroup is currently adopting the typographic rules in ANSI/IEEE Std 260.3-1993
[4] (with some minor modifications). Here’s the full text from CWS 260.3-2005 [6]:
Symbols for physical quantities, physical constants, mathematical variables, running num-
bers, general functions, and geometric elements should be printed in italic type:
A area
m mass
NA Avogadro constant
g acceleration due to gravity
x2 =P y2 + z2 variables x, y, and z
m
y = i=1 xi zi running numbers i
f (x) f function of x
−−→
AB directed line segment from point A to point B
Symbols used for chemical elements, physical units, mathematical constants (except for
ratio of perimeter to diameter of a circle), specific mathematical functions, operators, and all
numerals are printed in roman (upright) type, e.g.,
O oxygen
µm micrometer
i imaginary unit, i2 = −1
sin 2θ sine of the angle 2 × θ
a×b+c a times b plus c
dx differential of x
All punctuation, including grouping symbols, such as parentheses, brackets, and braces,
are also printed in roman type, e.g.,
Subscripts and superscripts are governed by the above principles. Those that are symbols
for physical quantities, mathematical variables, or for indices are printed in italic type, whereas
others are printed in roman type, e.g.,
sinp x pth power of sin x
aij , a45 matrix elements
Ii , Io input, output currents
Bx (α, β) incomplete beta function
πr2 area enclosed by a circle
To indicate the vector character of a quantity, boldface type is used, italic for general
vectors, roman for unit vectors and symbols for special vector functions, e.g.,
22
2.8 Changing fonts
The gradient symbol is boldface because its operation results is a vector, but “div” is not, as
its operation results in a scalar. Ordinary italic type may be used to represent the magnitude
of a general vector quantity.
Also noteworthy is the typeface of matrices. The symbol ab can be a row vector or a 2 × 1
matrix. Considering matrices and vectors are so closely related, denoting matrices in the same
way as we denote vectors is a good idea, e.g.,
det A determinant of matrix A
I identity matrix: IA = AI = A
You might have a question: why don’t we typeset “pi” in upright type? That’s because LATEX
doesn’t have built-in upright lowercase Greek letters—we use the italic π because it’s easier.
But it doesn’t mean that you cannot get upright lowercase Greek letters. Here are a few approaches
you might want to try:
• Load the package upgreek. Then you can access upright lowercase Greek letters by typing \up...,
e.g., \uppi. The bad news is that the letters produced in this method don’t look that good (for
me).
• Load the package txfonts. Then you can access lowercase Greek letters by typing \...up, e.g.,
\piup. But the txfonts packages affects the typeface of the whole documents. An alternative is
not to load the package and put the following codes in your preamble:
\DeclareSymbolFont{lettersA}{U}{txmia}{m}{it}
\DeclareMathSymbol{\piup}{\mathord}{lettersA}{25}
\DeclareMathSymbol{\muup}{\mathord}{lettersA}{22}
\DeclareMathSymbol{\deltaup}{\mathord}{lettersA}{14}
......
• You can also use the PostScript symbols. Try the following codes:
\usepackage{ifthen}
\makeatletter
\newcommand{\allmodesymb}[2]{\relax\ifmmode{\mathchoice
{\mbox{\fontsize{\tf@size}{\tf@size}#1{#2}}}
{\mbox{\fontsize{\tf@size}{\tf@size}#1{#2}}}
{\mbox{\fontsize{\sf@size}{\sf@size}#1{#2}}}
{\mbox{\fontsize{\ssf@size}{\ssf@size}#1{#2}}}}
\else
\mbox{#1{#2}}\fi}
\makeatother
\newcommand{\greeksym}[1]{\usefont{U}{psy}{m}{n}#1}
\newcommand{\ualpha}{\allmodesymb{\greeksym}{a}}
\newcommand{\udelta}{\allmodesymb{\greeksym}{d}}
\newcommand{\upi}{\allmodesymb{\greeksym}{p}}
......
23
The Essence of Mathematical Typesetting
• The lowercase Greek letters provided by GreekTEX is rather good. But there are (at least) two
problems: (1) It might cause compatibility issues; (2) If you put the letters in subscripts or
superscripts, their size remain the same as in text style. Anyway, here are the codes:
\input{greektex}
\newcommand\uppi{\text{\gr p}}
\newcommand\upd{\text{\gr d}}
......
POST
I have a few more words on sets:
1. We’ve already seen that R represents the set of real numbers and that N represents the set of
natural numbers. There are more: Q for the set of rational numbers; C is the set of complex
numbers; Z is the set of integers; P is the set of prime numbers.
2. Does the set of natural numbers include 0? This is a question of much controversy. Coleen’s
Workgroup takes the advice from ISO 31-11:1992 [5]: Yes, it does! So N = {0, 1, 2, . . . , n},
N∗ = {1, 2, . . . , n}.
3. In European countries, a subscript + is frequently used to represent the set of nonnegative
numbers. This is not adopted by Coleen’s Workgroup. We use a superscript +/− to indicate
a set of positive/negative numbers. We also use a subscript 0 to indicate a set including zero.
So R+ = (0, ∞), R+ 0 = [0, ∞).
4. What’s the proper notation to indicate that the set A is properly contained in B? There are
two systems that are widely adopted:
POST
If the differential operator ‘d’ is upright, so should the partial operator. The default partial
operator produced by \partial is italic, like this ‘∂’. We can define the upright version ourselves:
\font\ursymbol=psyr at 10pt % You also use other font sizes.
\def\urpartial{\mbox{\ursymbol\char"B6}}
24
2.9 Spacing
Now the code ‘\frac{\urpartial f}{\urpartial x}’ gives the following output:
∂f
,
∂x
which is perfect!
✐ Exercise
Pm
n n!
= Cm
n = n
=
m m! (n − m)! m!
4. Do some research on the Internet and find out the typeface used to indicate tensors.
2.9 Spacing
We’ve seen the command ‘\,’ which produces a thin space a couple of times. Here’s another applica-
tion:
But this is by no means the end of the story. LATEX provides quite a few commands for producing
horizontal spaces, as are listed in table 2.4.
A few words about the command \phantom in the table. By using the \phantom command, you
can reserve space for characters that do not show up in the final output:
\begin{equation*}
{}^{12}_{\phantom{1}6}\textrm{C}
\qquad \textrm{versus} \qquad 12 12
6C versus 6 C
{}^{12}_{6}\textrm{C}
\end{equation*}
POST
25
The Essence of Mathematical Typesetting
Most of the time, TEX can producing the desired spacing. But there are a few occasions that
require your attention:
• A thin space should be added before back subscripts, e.g., a 0 x1 bh is obtained from $a\,{}_0x_1bh$.
• A thin space should be added before and after ds, dp, dx, and similar combinations of d and
another symbol following, e.g.,
Z ZZZ
f (x) dx dr dθ dr
• A thin space should be added between a number and a unit, e.g., 1 m = 100 cm.
• A thick space should be used before a mathematical condition in text, e.g., tn (n = 1, 2, . . .)
• An em quad should be used between a symbolic statement and a verbal expression in displayed
expressions:
En (t) → e−t as t → ∞.
x(a + b) or y(a − b)
• A two-em quad should be used between two separate formulas in the same line of a display
x2 + y 2 = a, x + y = b.
• A two-em quad should be used between a symbolic statement and a condition on the state-
ment.
xn − y n − z n = A (n = 0, 1, . . . , p)
26
2.9 Spacing
√
$\sqrt{2}\,x$\\ √2 x
$\sqrt{\,\lg x}$\\ lg x√
$O\bigl(1/\sqrt{n}\,\bigr)$\\ O 1/ n
$[\,0,1)$\\ [ 0, 1)
$\lg n\,(\lg\lg n)^2$\\ lg n (lg lg n)2
$x^2\!/2$\\ x2/2
$n/\!\lg n$\\ n/lg n
$\Gamma_{\!2}+\Delta^{\!2}$\\ Γ2 + ∆2
j
$R_i{}^j{}_{\!kl}$\\ R
R xi Rkly
$\int_0^x\!\int_0^y\rd F(u,v)$\\ 0 0
dF (u, v)
$(2n)!/\bigl(n!\,(n+1)!\bigr)$ (2n)!/ n! (n + 1)!
POST
Here are some spacing rules that TEX handles automatically, for your reference:
A thin space is normally used in the following cases:
— Before and after symbols used as verbs like =, e.g., 0 < y ≤ x.
— Before and after symbols used as conjunctions like +, e.g., a − b + c × d.
— Before but not after +, −, ±, and ∓ when used as adjectives: −x(a + b) = −2.
— After the commas in sets of symbols and coordinates of points, e.g., x1 , x2 , . . . , xn , (1, 2).
— Before and after functions set in roman type, e.g., a sin x. Exceptions: If any of these
functions are preceded or followed by parentheses, braces, brackets, or bars, then the space is
eliminated: exp(ab), (a + b) sin a.
— Before and after vertical rules appearing singly rather than in pairs; the same rule holds for
a colon that is used as a mathematical symbol rather than as punctuation: a | b, 3 : 4.
✐ Exercise
There are some more commands controlling the vertical space in and around displays.
The vertical spaces before and after each display environment are controlled by the following
rubber lengths, where the values in parentheses are those for \normalsize with the (default) 10pt
option in the standard LATEX classes:
• \abovedisplayskip, \belowdisplayskip
The normal vertical space added above and below a mathematical display (default 10pt plus
2pt minus 5pt).
• \abovedisplayshortskip, \belowdisplayshortskip
The (usually smaller) vertical space added above and below a “short display” (0pt plus 3pt
and 6pt plus 3pt minus 3pt, respectively). A short display is one that starts to the right of
where the preceding text line ends.
27
The Essence of Mathematical Typesetting
\small
\abovedisplayshortskip=5pt
\belowdisplayshortskip=5pt
\abovedisplayskip=15pt Before
Z
\belowdisplayskip=15pt sin x
f (x) = dx (2.5)
\noindent x
Before \begin{equation} The line doesn’t end before the formula.
f(x) = \int\frac{\sin x}{x}dx
Z
\end{equation} sin x
f (x) = dx (2.6)
\noindent The line doesn’t x
end before the formula.
\begin{equation} And the next line starts as usual with some
f(x) = \int\frac{\sin x}{x}dx text. . . .
\end{equation}
\noindent And the next line starts as
usual with some text\dots.
✐ Exercise
1. I cannot think of any good exercise right now. So carry on, or pause here. . . .
2.10 Punctuation
In math mode, commas and semicolons are treated as punctuation marks, so TEX puts some extra
spaces after them. For example,
$f(x,y;z)$ f (x, y; z)
This is a good mechanism, but it can cause problems. In the U.S., numbers are grouped by using
commas, e.g., ‘123,456’. If you type $123,456$, what you get is ‘123, 456’. To get the correct spacing,
type $123{,}456$ which produces ‘123,456’. This approach is not adopted in Coleen’s Workgroup. In
Coleen’s Workgroup, we group numbers with a thin space, e.g., 123 456, as you’ve seen before.
Interestingly, a period is not treated as a punctuation mark, so $123.456$ does produce the
correct ‘123.456’.
Colon is also treated as a special punctuation in TEX—representing “ratio,” e.g., ‘3 : 4’. But it’s
wrong to type something like f : A → B. Instead, try the following:
$f\mathpunct{:}A\to B$ f: A → B
As a matter of act, if you are using standard LATEX (without loading the amsmath package), you
can type $f\colon A\to B$. However, the amsmath package makes unfortunate major changes to the
spacing produced by the command \colon.
Now, let’s talk about something more general. When a formula is followed by a period, comma,
semicolon, question mark, exclamation point, etc., put the punctuation after the $, when the formula
is in the text; but put the punctuation before the end of a display math environment. For example,
28
2.10 Punctuation
It should be
(Better yet, use a tie: ‘or~$c$’.) The reason is that TEX will typeset expression ‘$x=a,b$’ as a single
formula, so it will put a “thin space” between the comma and the b. This space will not be the same
as the space that TEX puts after the comma following the b, since spaces between words are always
bigger than thin spaces.
Another reason for not typing $x=a,b$ is that it inhibits breaking lines in a paragraph: TEX will
never break at the space between the comma and the b because breaks after commas in formulas are
usually wrong. For example, in the equation, we certainly don’t want to break something like P (1, 2).
✐ Exercise
1. In inline mode, which of the following is the best way to get “a1 , a2 , . . . , an ”? (‘. . . ’ is produced
by \dots.)
(a) $a_1, a_2, \ldots, a_n$;
(b) $a_1$, $a_2$, \ldots, $a_n$;
(c) $a_1$, $a_2$,~\ldots, $a_n$.
[Hint: In professional typesetting, it’s a bad idea to put an ellipsis at the beginning of a line
unless it does start a paragraph, which is rather rare.]
We’ve already seen that we can produce ellipsis “. . .” by typing \ldots. Now let’s talk about
it more comprehensively, starting from ellipsis in text mode. Let’s start the discussion from ellipsis
outside the math mode. Generally speaking, the three-or-four dot method is adopted in Coleen’s
Workgroup:
Three dots indicate an omission within a quoted sentence. Four mark the omission of one
or more sentences. When three are used, space occurs both before the first dot and after the
final dot. When four are used, the first dot is a true period—that is, there is no space between
it and the preceding word. What precedes and, normally, what follows the four dots should be
grammatically complete sentences as quoted, even if part of either sentence has been omitted.
If you use the default LATEX command, problems might arise. Try typing ‘H \ldots\ H, what
you get is ‘H . . . H’—the spaces before and after the ellipsis are not even. LATEX does this because
we frequently put other punctuation like commas after ellipsis, and ‘. . .,’ looks odd. We can fix this
problem by putting ‘. . .’ in math mode. For example,
29
The Essence of Mathematical Typesetting
Now let’s get into the math mode. Since we realize that \ldots does not produce a thin space
after it when used in math mode, it might cause some problems. Look at the following examples:
$a_1,a_2,a_3,\ldots$.\\ a1 , a2 , a3 , . . ..
$a_1,a_2,a_3,\ldots.$ a1 , a2 , a3 , . . . .
The first one is logical, but the output is “awesome.” The second one looks OK, but the space
after the period would be distorted since it is not really considered an ending-a-sentence period. The
correct way is to type this:
$a_1,a_2,a_3,\ldots\,$. a1 , a2 , a3 , . . . .
The amsmath package decides the position of the ellipsis according to what kind of symbol follows
\dots. If the next symbol is a plus sign, the dots will be centered; if it is a comma, they will be on the
baseline. If the dots fall at the end of a mathematical formulas, the next object will be something like
\end or $, etc., which does not give any information about how to place the dots. In such a case, you
must help by using \dotsc for “dots with commas,” \dotsb for “dots with binary operator/relation
symbols,” \dotsm for “multiplication dots,” \dotsi for “dots with integrals,” or even \dotso for
“none of the above.” For example,
30
2.11 More about Displayed Equations
I also adapt the following examples from The TEXbook [9] to illustrate the proper use of ellipses:
$x_1+\dots+x_n$\\ x1 + · · · + xn
$x_1=\dots=x_n$\\ x1 = · · · = xn
$A_1\times\dots\times A_n$\\ A1 × · · · × An
$f(x_1,\dots,x_n)$\\ f (x1 , . . . , xn )
$x_1x_2\dots x_n$\\ x1 x2 . . . xn
$(1-x)(1-x^2)\dots(1-x^n)$\\ (1 − x)(1 − x2 ) . . . (1 − xn )
$n(n-1)\dots(1)$\\ n(n − 1) . . . (1)
$x_1\cdot x_2\cdot\ldots\cdot x_n$ x1 · x2 · . . . · xn
Caution: the example on the last line is not a typo! But it does look odd, so try to avoid it.
✐ Exercise
5. What about
(n1 + n2 + · · · + nm )! n1 + n2 n1 + n 2 + n 3 n 1 + n 2 + · · · + nm
= ... ?
n1 ! n2 ! . . . n m ! n2 n3 nm
\begin{equation*}
(a+b)^2=a^2+2ab+b^2\\
\sin^2\eta+\cos^2\eta=1
\end{equation*}
is not valid, as no line breaks are allowed in an equation* environment. What about
31
The Essence of Mathematical Typesetting
\begin{equation*}
(a+b)^2=a^2+2ab+b^2
\end{equation*} (a + b)2 = a2 + 2ab + b2
\begin{equation*}
\sin^2\eta+\cos^2\eta=1 sin2 η + cos2 η = 1
\end{equation*}
You’ll find that there’s too much space between the two equations.
OK, here comes the solution: you can try the gather or gather* environment:
\begin{gather}
(a+b)^2=a^2+2ab+b^2\\ (a + b)2 = a2 + 2ab + b2 (2.7)
\sin^2\eta+\cos^2\eta=1 2 2
sin η + cos η = 1 (2.8)
\end{gather}
If you do not want the equation number, just use the starred form. What if you want to number
the first equation but not the second one?
\begin{gather}
(a+b)^2=a^2+2ab+b^2\\ (a + b)2 = a2 + 2ab + b2 (2.9)
\sin^2\eta+\cos^2\eta=1\notag 2 2
sin η + cos η = 1
\end{gather}
The gather environment is perfect for putting two or more equations on individual lines, centered.
But sometimes, we want to “align” them at a relation symbol. We can use the align or align* en-
vironment.
\begin{align}
x^2+y^2 &= z^2\\ x2 + y 2 = z 2 (2.10)
x^3+y^3 &< z^3+\cdots 3 3
x + y < z + ···3
(2.11)
\end{align}
Again, if you do not want the equation numbers, use the starred form.
Another challenge, what if we want to “group” these equations and “center” the equation number
vertically? The answer is to use the ...ed variant of the environments above.
\begin{equation}
\begin{gathered}
(a+b)^2=a^2+2ab+b^2\\ (a + b)2 = a2 + 2ab + b2
(2.12)
\sin^2\eta+\cos^2\eta=1 sin2 η + cos2 η = 1
\end{gathered}
\end{equation}
Another example:
\begin{equation*}
\begin{aligned}
x^2+y^2 &= z^2\\ x2 + y 2 = z 2
x^3+y^3 &< z^3+\cdots x3 + y 3 < z 3 + · · ·
\end{aligned}
\end{equation*}
32
2.12 Breaking an Inline Equation
\begin{equation}
\begin{split}
x^2+y^2 &= z^2\\ x2 + y 2 = z 2
(2.13)
x^3+y^3 &< z^3+\cdots x3 + y 3 < z 3 + · · ·
\end{split}
\end{equation}
Remember how I talked about the “null delimiter”? Let’s take a look at its application:
\begin{equation*}
\left.
\begin{aligned} )
\bm{B}’&=-c\nabla\times\bm{E}\\ B 0 = −c∇ × E
Maxwell’s
\bm{E}’&=c\nabla\times\bm{B}-4\pi\bm{J} E 0 = c∇ × B − 4πJ
\end{aligned}\right\}
\text{Maxwell’s}
\end{equation*}
\begin{align}
A_1&=N_0(\lambda;\Omega’)- A1 = N0 (λ; Ω0 ) − φ(λ; Ω0 ) (2.14)
\phi(\lambda;\Omega’)\\
A_2&=\phi(\lambda;\Omega’) A2 = φ(λ; Ω0 )φ(λ; Ω) (2.15)
\phi(\lambda;\Omega)
\intertext{and finally} A_3&= and finally
\mathcal{N}(\lambda;\omega) A3 = N (λ; ω) (2.16)
\end{align}
✐ Exercise
1. I can’t think of any good problems for you. So just try out all the examples in this section.
33
The Essence of Mathematical Typesetting
that does not occur between fences (Why after? Because it informs the readers to go on to the next
line/page.):
a + b = Xx(c − d)
∗— An equation may be broken at any thick space:
y = 4n − 1X (n = 0, 1, 2)
— After a collective sign, no break is allowed until an operator occurs outside of fences:
P
(a − b) + Xabc
— After an integral sign, no break is allowed until a ‘d’ occurs; then break after the next
punctuation or at a verb. R R
a dx, X a(a + b)(xy − w) dx = X
R
Exception: dx + dy, no break is allowed.
∗— When a set of fences is followed directly by another set of fences, the equation may be
broken between them, provided a times sign is inserted:
(a + b)X(c + d)
(Break at X and insert a times sign [some people insert a center dot, I hate it], as appropriate,
before the second set of fences.)
Exceptions: (1) This rule does not apply if the fences are preceded by a sigma-class symbol. (2) Do
not break at the slash (/) in a slashed fraction.
∗— Equation may be broken before or after an operator (or after a comma or semicolon) that
occurs between fences if both of the following conditions are present: (1) if one of the opening
fences (that has not closed) is not preceded directly by a noun, a fence, or sigma-class symbol; and
(2) if the subsequent closing fences are not followed directly by a noun or a fence. It is good policy,
however, to avoid breaking equations between fences whenever possible.
a lg x − Xb sin(x/y) , (sin a − cos b) + X tan c − X(xy cos b)
Most of the time, TEX can handle these rules automatically. (I kind of think Donald is a big fan
of Mathematics into Type.) A formula will be broken only after a relation symbol like = or < or →,
or after a binary operation symbol like + or − or ×, where the relation or binary operation is on the
“outer level” of the formula (i.e., not enclosed in {...}). For example,
There’s a chance that TEX will break after either of the = signs (it prefers this) or after the - or
+ or - (in an emergency). But there won’t be a break after the comma in any case.
If you don’t want to permit breaking in this example except after the = signs, you could type
On the other hand, if you do want to break after the comma, try this:
34
2.13 Breaking a Displayed Equation
This is not a good example. But sometimes, you might want to break something like (x1 , . . . , xm ,
y1 , . . . , yn ).
Another interesting example:
The command \* acts like \-. However, instead of inserting a hyphen, a × sign is inserted in text
size.
✐ Exercise
\begin{multline}
First line of a multline
\text{First line of a multline}\\
\text{Centered Middle line}\\ Centered Middle line
\shoveright{\text{A right Middle}}\\ A right Middle
\text{Another centered Middle}\\ Another centered Middle
\text{Yet another centered Middle}\\
Yet another centered Middle
\shoveleft{\text{A left Middle}}\\
\text{Last line of the multline} A left Middle
\end{multline} Last line of the multline (2.17)
35
The Essence of Mathematical Typesetting
\begin{multline}
A=\lim_{n\to\infty}\Delta x\Bigl(a^2+
\bigl(a^2+2a\Delta x
A = lim ∆x a2 + a2 +2a∆x+(∆x)2
+(\Delta x)^2\bigr)\\ n→∞
+ a2 + 2 × 2a∆x + 22 (∆x)2
+\bigl(a^2+2\times2a\Delta x+
2^2(\Delta x)^2\bigr)\\
+ a2 + 2 × 3a∆x + 32 (∆x)2
+\bigl(a^2+2\times3a\Delta x+
3^2(\Delta x)^2\bigr)\\ + ···
+\cdots\\
+ a2 + 2 · (n − 1)a∆x + (n − 1)2 (∆x)2
+\bigl(a^2+2\cdot(n-1)a\Delta x+
(n-1)^2(\Delta x)^2\bigr)\Bigr)\\ = 31 (b3 − a3 ). (2.18)
=\tfrac{1}{3}(b^3-a^3).
\end{multline}
\begin{align*}
(a+b)^3&=(a+b)(a+b)^2\\ (a + b)3 = (a + b)(a + b)2
&=(a+b)(a^2+2ab+b^2)\\ = (a + b)(a2 + 2ab + b2 )
&=a^3+3a^2b+3ab^2+b^3
= a3 + 3a2 b + 3ab2 + b3
\end{align*}
You can achieve the same effect with the split environment.
\begin{equation*}
\begin{split}
(a+b)^3&=(a+b)(a+b)^2\\ (a + b)3 = (a + b)(a + b)2
&=(a+b)(a^2+2ab+b^2)\\ = (a + b)(a2 + 2ab + b2 )
&=a^3+3a^2b+3ab^2+b^3 = a3 + 3a2 b + 3ab2 + b3
\end{split}
\end{equation*}
Another example. With the following codes (Pay attention to the use of the command \quad):
\begin{verbatim}
\begin{align*}
x_nu_1+\cdots+x_{n+t-1}u_t&=
x_nu_1+(ax_n+c)u_2+\cdots\\
&\quad+\bigl(a^{t-1}x_n+
c(a^{t-2}+\cdots+1)\bigr)u_t\\
&=(u_1+au_2+\cdots+a^{t-1}u_t)x_n
+h(u_1,\ldots,u_t).
\end{align*}
\end{verbatim}
36
2.13 Breaking a Displayed Equation
1
Z tε Z (2.19)
+h Ey Lx,yx (s) ϕ(x) ds − tε Lx,z ϕ(x)ρx (dz)
tε 0
Z tε Z tε !
1
+ Ey Lx,yx (s) ϕ(x) ds − Ex,y Lx,yϕ (εs) ϕ(x) ds
tε 0 0
\begin{verbatim}
\newcommand\ve{\varepsilon} \newcommand\tve{t_{\varepsilon}}
\newcommand\vf{\varphi} \newcommand\yvf{y_{\varphi}}
\newcommand\bfE{\mathbf{E}}
\newcommand\relphantom[1]{\mathrel{\phantom{#1}}}
\begin{equation}
\begin{split}
f_{h,\ve}(x,y)&=\ve\bfE_{x,y}\int_0^{\tve} L_{x,\yvf(\ve u)}\vf(x)\,\rd u\\
&=h\int L_{x,z}\vf(x)+\rho_x(\rd z)\\
&\relphantom{=}{}+h\Biggl(\frac{1}{\tve}\biggl(
\bfE_y \int_0^{\tve} L_{x,y^x(s)}\vf(x)\,\rd s\
-\tve \int L_{x,z}\vf(x)\rho_x(\rd z)\biggr)\\
&\relphantom{=}\phantom{{}+h\Biggl(}+
\frac{1}{\tve}
\biggl(\bfE_y\int_0^{\tve} L_{x,y^x(s)}\vf(x)\,\rd s
-\bfE_{x,y}\int_0^{\tve} L_{x,\yvf(\ve s)}\vf(x)\,\rd s\biggr)\Biggr)
\end{split}
\end{equation}
\end{verbatim}
Standard LATEX also provides the eqnarray environment for typesetting equations that will spread
onto a few lines. I hardly use it. But it is introduced below FYI.
\setlength\arraycolsep{2pt}
\begin{eqnarray} y =a+b+c+d
y & = & a+b+c+d\nonumber\\
+e + f + g
& & +e+f+g\nonumber\\
& & {}+h+i+j\nonumber\\ +h+i+j
& \geq & {}-k-l-m ≥ −k−l−m (2.20)
\end{eqnarray}
I have two comments: (1) Notice the use of the {}. (Can you explain what happens right here?)
(2) Setting \arraycolsep to 2 pt could give better output. (It controls the space before and after the
sign enclosed between &’s.)
By the way, by default LATEX does not allow any page break within a displayed equation. If you
do want to allow page breaks, put \allowpagebreak in the preamble of your document.
✐ Exercise
37
The Essence of Mathematical Typesetting
s(αη)(J 0 )
Z
0 s(αη)(J)
− · µ(J ) − · µ(J)
J η(J 0 ) η(J)
X X
α(J) − s(αη)(J) · µ(J)
+ η(J)
D DI 0
X X
α(J) − s(αη)(J) · η(J) .
× η(J)
D DI 0
2. What is the output of the following codes? Now comes the second example:
\begin{eqnarray}
\lefteqn{w+x+y+z=}\\
&& a+b+c+d+e+f+\\
&& g+h+i+j+k+l
\end{eqnarray}
2.14 Array
You probably know that we can construct tables with the tabular environment. However, it cannot
be used in the math mode. Arrays, in mathematics, are produced with the array environment. It
has a single argument that specifies the number of columns and the alignment of items within the
columns. For each column in the array, there is a single letter in the argument that specifies how items
in the column should be positioned: c for centered, l for flush left, or r for flush right. Within the
body of the environment, adjacent rows are separated by a \\ command and adjacent items within a
row are separated by an & character. For example,
\[
\begin{array}{clcr}
a+b+c & uv & x-y & 27\\ a + b + c uv x−y 27
a+b & u+v & z & 134\\ a+b u+v z 134
a & 3u+uw & xyz & 2\,978 a 3u + uw xyz 2 978
\end{array}
\]
You can do a lot of amazing things with this structure:
\begin{equation*}
P_{r-j}=\left\{\!\!\!
\begin{array}{ll}
0 & \text{if $r-j$ is odd,}\\ 0 if r − j is odd,
Pr−j =
r!\,(-1)^{(r-j)/2} & r! (−1)(r−j)/2 if r − j is even.
\text{if $r-j$ is even.}
\end{array}\right.
\end{equation*}
38
2.14 Array
\begin{equation*}
P_{r-j}=
\begin{cases} (
0 & \text{if $r-j$ is odd,}\\ 0 if r − j is odd,
Pr−j =
r!\,(-1)^{(r-j)/2} & r! (−1)(r−j)/2 if r − j is even.
\text{if $r-j$ is even.}
\end{cases}
\end{equation*}
If you look closely at the two outputs, you’ll find that they are actually slightly different. Coleen’s
Workgroup prefers the former one, though it is more difficult to enter.
Matrices are produced in the similar way:
\begin{equation*}
\left(\!\!\!\begin{array}{cc} 0& -1\\ 0 −1
1 & 0\end{array}\!\!\!\right) 1 0
\end{equation*}
\begin{gather*}
\begin{matrix}0&1\\ 1&0\end{matrix}\quad 0 1 0 1
\begin{pmatrix}0&1\\ 1&0\end{pmatrix}\\ 1 0 1 0
\begin{bmatrix}0&1\\ 1&0\end{bmatrix}\quad 0 1 0 1
\begin{Bmatrix}0&1\\ 1&0\end{Bmatrix}\\ 1 0 1 0
\begin{vmatrix}0&1\\ 1&0\end{vmatrix}\quad
0 1
0 1
\begin{Vmatrix}0&1\\ 1&0\end{Vmatrix}
1 0
1 0
\end{gather*}
It is generally speaking not preferable to put a matrix in inline mode. However, if it is a small
matrix, you can do it with the smallmatrix environment provided by the amsmath package:
There’s also a command provided by TEX that produces a special kind of matrix:
\[\bordermatrix{ 0 1 2
& 0 & 1 & 2\cr
0 A B C
0 & A & B & C\cr
1 d e f
1 & d & e & f\cr
2 1 2 3
2 & 1 & 2 & 3}\]
39
The Essence of Mathematical Typesetting
A final trick. Some people (including me) feel the braces are too big when used with arrays. The
following example might give you some insight:1
\[f(x)= \left\{%
\vphantom{\begin{array}{c} a\\[13ex]
\end{array}}\right.\kern-7pt
4, if x ∈ (4, ∞),
\begin{array}{ll}
3, if x ∈ (3, 4],
4, & \text{if} \quad x\in (4,\infty), \\
f (x) = 2, if x ∈ (2, 3],
3, & \text{if} \quad x\in (3,4], \\
1, if x ∈ (1, 2],
2, & \text{if} \quad x \in (2,3], \\
0, if x ∈ (−∞, 1].
1, & \text{if} \quad x \in (1,2], \\
0, & \text{if} \quad x \in (-\infty,1].
\end{array}\]
✐ Exercise
1. The following is a neatly typeset matrix example, and demonstrates the style of matrix adopted
by Coleen’s Workgroup:
a11 a12 · · · a11 a11 a12 · · · a11
a21 a22 · · · a21 a21 a22 · · · a21
det A = det a31 a32 · · · a31 = a31 a32 · · · a31 .
.. .. .. .. .. ..
. . . . . .
am1 am2 · · · am1 am1 am2 · · · am1
40
2.15 Dress Your Letters!
A few comments: (1) The notation ~a and â are only used in handwritten documents. In professional
typesetting, use a and a instead. (2) If you do want to use the arrow notation, use \imath and \jmath
−−→
instead of i and j, e.g., ~ı, ̂. (3) However, we do use AB instead of AB. (4) Instead of A ^+ B, you
∼
might consider an alternative: (A+B) , which can be produced by typing $(A+B)\sptilde$ provided
by the amsxtra package. Here are more examples:
There are two more commands there are really useful: \underbrace and \overbrace.
\begin{align*}
y&=x^2+bx+c\\ y = x2 + bx + c
&=x^2+2\cdot\frac{b}{2}x+c\\ b
= x2 + 2 · x + c
&=\underbrace{x^2+2\cdot\frac{b}{2}x+ 2
2 2
\left(\frac{b}{2}\right)^2}_{\left(x+ 2 b b b
(b/2)\right)^2} =x +2· x+ − +c
2 2 2
-\left(\frac{b}{2}\right)^2+c | {z }
(x+(b/2))2
\end{align*}
✐ Exercise
1. This is a bad exercise, but do it anyway. How do you produce ~a +~b +~c and ~a +~b + ~c respectively?
Which one is better?
41
The Essence of Mathematical Typesetting
42
3
A bit further . . .
\newcommand\eqdef{%
\stackrel{\mathrm{def}}{=}} def
a = b
$a\eqdef b$
✐ Exercise
∧
1. We can use the symbol ‘p = q’ for “p corresponds to q.” How do you produce it?
\[
0\xleftarrow[\zeta]{} F\times
∂0 α(b)
\Delta(n-1) − F × ∆(n − 1) −−−−→ E ∂0 b
0←
ζ
\xrightarrow{\partial_0\alpha(b)}
E^{\partial_0 b}\]
√
Let’s frame \fbox{$f(x)=\sqrt{x}$}! Let’s frame f (x) = x !
\fboxsep=1mm \fboxrule=1mm √
Let’s frame f (x) = x !
Let’s frame \fbox{$f(x)=\sqrt{x}$}!
After loading the color package, we can even frame an inline math formula in a colored box:
√
\colorbox{yellow}{ $f(x)=\sqrt{x}$}! f (x) = x !
Now let’s do the same thing with displayed equation. Some good news for you: the \fbox command
still works.
\fbox{\parbox{0.9\linewidth}{% √
\begin{equation} f (x) = x (3.1)
f(x)=\sqrt{x}\end{equation}}}
\colorbox{yellow}{\parbox{0.9\linewidth}{% √
\begin{equation} f (x) = x (3.2)
f(x)=\sqrt{x}\end{equation}}}
If you don’t want to frame the equation number, try the \boxed command provided by the
amsmath package:
\begin{equation}
\boxed{W_t-F\subseteq V(P_i)\subseteq W_t} Wt − F ⊆ V (Pi ) ⊆ Wt (3.3)
\end{equation}
What if you want the box to be colored as well? We can try the empheq package. It supports
different frames for math environments of the amsmath package.
44
3.4 Aligning Your Equations
\begin{empheq}[box=\fbox]{align}
f(x)=\int_1^\infty \frac{1}{x^2}\,\rd t=1
\end{empheq} Z ∞
\begin{empheq}[box={\fboxsep=10pt 1
f (x) = dt = 1 (3.4)
\colorbox{yellow}}]{align} 1 x2
f(x)=\int_1^\infty \frac{1}{x^2}\,\rd t=1
\end{empheq} Z ∞
\begin{subequations} 1
f (x) = dt = 1 (3.5)
\begin{empheq}[box={ 1 x2
\fboxsep=1pt\colorbox{cyan}}]{align}
f(x)&=\int_1^\infty Z ∞
1
\frac{1}{x^2}\,\rd f (x) = dt = 1 (3.6a)
1 x2
t=1\\ Z ∞
1
f(x)&=\int_2^\infty \frac{1}{x^2}\,\rd f (x) = dt = 0.25 (3.6b)
t=0.25 2 x2
\end{empheq}
\end{subequations}
✐ Exercise
\begin{flalign}
x&=y & X&=Y & a&=b+c\\ x=y X=Y a = b + c (3.7)
x’&=y’ & X’&=Y’ & a’&=b x0 = y 0 X0 = Y 0 a0 = b (3.8)
\end{flalign}
Isn’t that smart? You can set the space between “column-pairs” by changing \minalignsep, whose
default value is 10pt.
\renewcommand\minalignsep{25pt}
\begin{flalign} x=y X=Y a=b+c
x&=y & X&=Y & a&=b+c\\ (3.9)
x’&=y’ & X’&=Y’ & a’&=b x0 = y 0 X0 = Y 0 a0 = b (3.10)
\end{flalign}
\begin{flalign}
x&=y && \text{by hypothesis}\tag{1}\\ x=y by hypothesis (1)
x’&=y’&&\text{by definition}\tag{*}\\ x0 = y 0 by definition (*)
x+x’&=y+y’&&\text{by Axiom 1}\tag{$*$} x + x0 = y + y 0 by Axiom 1 (∗)
\end{flalign}
45
A bit further . . .
✐ Exercise
1. Try to do some research yourself: how do you use the alignat environment?
\begin{verbatim}
\begin{displaymath}
a+b=c+d\footnotemark
\end{displaymath}
\footnotetext{Here comes the footnote
in math mode. Hooray!!!}
\end{verbatim}
a + b = c + d2
\renewcommand\theequation{
\thesection-\roman{equation}}
\begin{equation} a+b=c+d (3.6-xi)
a+b=c+d
\end{equation}
If you want to make the equation numbers to go like “chapter number + equation number within
section,” the amsmath package provides a useful command:
2 Here comes the footnote in math mode. Hooray!!!
46
3.7 Prime Equation Numbers
\numberwithin{equation}{section}.
Another topic: sub-equations. The amsmath package provides some useful commands:
\begin{subequations}
\begin{align}
y&=d\\ y=d (3.12a)
y&=cx+d\\ y = cx + d (3.12b)
y&=bx^2+cx+d\\
y = bx2 + cx + d (3.12c)
y&=ax^3+bx^2+cx+d
3 2
\end{align} y = ax + bx + cx + d (3.12d)
\end{subequations}
OK, now let’s try modifying the equation numbers of the sub-equations:
\renewcommand\theequation{%
\theparentequation{}-\arabic{equation}}
\begin{subequations}
\begin{align} y=d (12-13a)
y&=d\\ y = cx + d (12-13b)
y&=cx+d\\
y = bx2 + cx + d (12-13c)
y&=bx^2+cx+d\\
3 2
y&=ax^3+bx^2+cx+d y = ax + bx + cx + d (12-13d)
\end{align}
\end{subequations}
✐ Exercise
First an equation.
\begin{equation}\label{e:previous}
A=B First an equation.
\end{equation}
That was equation \eqref{e:previous}. A=B (3.15)
47
A bit further . . .
Notice, by the way, that when a \ref occurs inside a \tag, and that \tag is then \label’d, a
\ref for the the second \label requires three runs of LATEX in order to get the proper value. (If you
run through the logic of LATEX’s cross-referencing mechanisms as they apply in this case, you will see
that this is necessary.) Note the use of \eqref: instead of simply giving the “number,” it also enclose
the equation number in parentheses.
\makeatletter
\def\xlabel#1#2{%
{\@bsphack\protected@write\@auxout{}%
{\string\newlabel{#2}{{#1}{\thepage}}}%
\@esphack}{\mathrm(#1)}}
\makeatother
(H1) x=y+z (1)
\begin{flalign} (H2) 2
a=b +c −a 2
(2)
\xlabel{H1}{eq:refL}&&x=y+z&&
\label{eq:ee1}\\
\xlabel{H2}{eq:xxy}&&a=b^2+c^2-a&&
\label{eq:ee2}
\end{flalign}
• centertags
(default) Place equation numbers vertically centered on the total height of the equation when
using the split environment.
• tbtags
If the equation numbers are on the right, place equation numbers level with the last line. If the
equation numbers are on the left, place equation numbers level with the first line.
• sumlimimts
(default) Place the subscripts and superscripts of summation symbols Qabove
N and below, in dis-
played equations. It also affects other symbols of the same type, e.g., , . However, it doesn’t
affect integrals.
• nosumlimits
Place the subscripts and superscripts of summation-type symbols to the side, even in displayed
equations.
• intlimits
It is just like sumlimits, but it works for integral symbols.
• nointlimits
(default) Opposite of intlimits.
3 Provided by mytex of the CTEX Community.
48
3.10 MathType into LATEX
• namelimits
(default) It is just like sumlimits, but it works for functions, e.g., det, lim, etc., which tradi-
tionally have subscripts placed underneath when they occur in a displayed equation.
• nonamelimits
You can guess its function, can’t you?
\begin{verbatim}
\[
a^2 + b^2 = c^2
\]
\end{verbatim}
49
A bit further . . .
50
4
Further, and Further, and Further
∗
$\accentset{*}{d}$\\ d∗
$\accentset{*}{h}$ h
If you look at the examples very carefully, you’ll find that the accents package even takes the
skewness of letters into consideration.
The accents package also allows you to dress your letters with “shoes”:
$\underaccent{\bar}{x}$\\ x
¯
$\underaccent{*}{x}$ x
∗
$\vec{\mathsf{\dotlessj}}$\\ ~
$\tilde{\bm{\dotlessi}}$ ı̃
\begin{numcases}{|x|=}
x, & for $x \geq 0$\\
x, for x ≥ 0 (4.1)
-x, & for $x < 0$ |x| =
−x, for x < 0 (4.2)
\end{numcases}
52
4.3 Revisiting: Vectors and Tensors
p = (q1 , . . . , qn )
\begin{gather*}
q1
\uvec{p}=\left(\irvec{q}\right)\\ ..
q̂ = .
\uuvec{q}=\left(\!\!\icvec{q}\!\!\right)\\
\buvec{r}=\{\rvec{r}{1}{6}\}\\ qn
\bvec{s}=\left[ r̂ = {r1 , r2 , r3 , r4 , r5 , r6 }
\!\!\cvec{s}{0}{2}\!\!\right]
s0
\end{gather*}
s = s1
s2
$R\indices{_i^j_{\!kl}}$ Rijkl
You can even do some very complex things with this package:
a c a c
$\tensor[^a_b^c_d]{M}{^a_b^c_d}$ b dM b d
The two commands mentioned above also have “starred” forms, which can collapse the spacing.
This can be quite useful! For example,
14
$\tensor*[^{14}_6]{\text{C}}{}$ 6C
✐ Exercise
∗Y∗
1. How do you get the following: ?
∗ ∗
2. You might want to try out the tensind and mattens packages. Try the website http://www.ctan.
org for help!
53
Further, and Further, and Further
2 Examples
Examples are listed in table 4.1.
we love to love
\xlongequal: A =========== Z (1)
sub
we love to love
\xLongleftarrow: A ⇐========= Z (2)
sub
we love to love
\xLongrightarrow: A =========⇒ Z (3)
sub
we love to love
\xLongleftrightarrow: A ⇐========⇒ Z (4)
sub
we love to love
\xLeftrightarrow: A ⇐========⇒ Z (5)
sub
we love to love
\xlongleftrightarrow: A ←−−−−−−−−→ Z (6)
sub
we love to love
\xlongrightarrow: A −−−−−−−−−→ Z (7)
sub
we love to love
\xleftrightarrow: A ←−−−−−−−−→ Z (8)
sub
we love to love
\xlongleftarrow: A ←−−−−−−−−− Z (9)
sub
we love to love
(amsmath) \xleftarrow: A ←−−−−−−−−− Z (10)
sub
we love to love
(amsmath) \xrightarrow: A −−−−−−−−−→ Z (11)
sub
\xlongleftarrow: A ←−
−Z (12)
\xlongrightarrow: A −→ Z (13)
(amsmath) \xleftarrow: A←−Z (14)
(amsmath) \xrightarrow: A−→Z (15)
Let’s talk a bit more about the notation for directed line segments. Some people do not like the
−−→
notation AB and want a change. The harpoon package is a good choice.
1
54
4.5 Revisiting: Delimiters
$\overrightharp{AB}$, $\overleftharp{AB}$,
$\overrightharpdown{AB}$,
$\overleftharpdown{AB}$,
$\underrightharp{AB}$, *
AB, (
+ )
AB, AB, AB, AB, AB, AB, AB
$\underleftharp{AB}$,
* ( + )
$\underrightharpdown{AB}$,
$\underleftharpdown{AB}$
What’s the word that comes up to your mind when you see the output? “Ugly,” I suppose. This is
what happens here: Only a few root signs were defined in TEX. When they are used out, TEX will
“construct” new root signs—that’s how the vertical ones come into being. However, if you load the
yhmath package, the output would be very different and better:
v
uÑÐÏ
u
u ÎÍÌ
u
u sÊÉq
u
u È√
u
t x
v
An important feature of the yhmath package is that it provides a set of large delimiters. That is
uÑÐÏ
u
to say, virtually all large delimiters will be different from the original output of TEX. (I hardly ever use
u ÎÍÌ
u
this package because although it does provide really neat root signs, the parentheses are way beyond
u sÊÉq
my sense of aesthetic.)
u
u È
u
Anyway, here are a few other features of the package. It also offers some wide accents. You might √
t
remember that there is a limit to TEX’s commands such as \widetilde, e.g., \widetilde{ABCDEFG} x
would become ABCDEF ^ G, which is awful. But after loading the yhmath package, the output becomes:
å
ABCDEF G
Yet, I still insist that (ABCDEF G)∼ is a better solution. Hopefully you would agree with me.
The yhmath package also provides the amatrix environment which is used the same as ams-
math’s pmatrix, but instead of parenthesis, angles are used. For example, you can easily construct
the following:
a1 a2
a3 a4
I listed here some important features of yhmath which I think are most likely to be used. But it
has other functions. Please refer to http://texcatalogue.sarovar.org/entries/yhmath.html.
55
Further, and Further, and Further
The delarray package is a useful general extension to the array package that allows you to specify
opening and closing extensible delimiters to surround a mathematical array environment.
\[\bm{Q}=
\begin{array}[t]({cc}) X&Y \end{array}
L
\begin{array}[t][{cc}]A&B\\ C&D\end{array} Q= X Y A B M
\begin{array}[b]\lgroup{cc}\rgroup C D
L\\M\end{array}\]
The pmat package is designed for typesetting partitioned matrices. The \pmat macro takes three
arguments. The first one is a left delimiter (the thing you put immediately after a \left command).
The last one is a right delimiter (the thing you put immediately after a \right command). As usual,
a delimiter may be omitted by using a dot (.). The middle argument specifies the dashed vertical
lines that are to be placed between columns of the matrix. This argument must contain exactly n − 1
characters, where n is the number of columns of the matrix. If a character is a | then a dashed vertical
line will be placed between the appropriate columns. Otherwise, no dashed line will be placed between
those columns (we recommend the use of the character dot (.) in these cases). The format of the
entries of the partitioned matrix follows the conventions of plain TEX, i.e., entries are separated by a
& (just like in LATEX), but lines are separated by a \cr (instead of the \\ used in LATEX). All entries
are typeset in math mode (in \textstyle). For technical reasons, a \cr must also be placed at the
end of the last line. The placement of horizontal dashed lines is done with the command \-, which
must be placed immediately after the command \cr. For example,
\[
\begin{pmat}({.|})
a_{11} & a_{12} & b_{11} \cr a11 a12 b11
a_{21} & a_{22} & b_{21} \cr\- a21 a22 b21
c_{11} & c_{12} & d_{11} \cr c11 c12 d11
\end{pmat}
\]
A lot of parameters may be changed to modify the appearance. For more information, refer to
ftp://ibiblio.org/pub/packages/TeX/macros/generic/pmat/pmat.pdf.
The subeqnarray package defines the subeqnarray and subeqnarray* environments, which behave like
the equivalent eqnarray and eqnarray* environments, except that the individual lines are numbered
like 1a, 1b, 1c, etc. Here’s an application:
56
4.8 Revisiting: Sets—The braket Package
\begin{subeqnarray}
\label{eqw} \slabel{eq0}
x & = & a \times b \\
\slabel{eq1} x = a×b (4.5a)
& = & z + t\\ = z+t (4.5b)
\slabel{eq2}
= z+t (4.5c)
& = & z + t
\end{subeqnarray} The first equation is number (4.5a), the
The first equation is number~\eqref{eq0}, last is (4.5c). The equation as a whole
the last is~\eqref{eq2}. The can be referred to as equation (4.5).
equation as a whole can be referred to as
equation~\eqref{eqw}.
✐ Exercise
\begin{equation*}
\Set{x\in\mathbb{R}| 5
x ∈ R 0 < |x| <
0<\left|x\right|<\frac{5}{3}}\\ 3
\end{equation*}
Decorations on the arrows are specified as follows. For the horizontal arrows, material between
the first and second > or < symbols will be typeset as a superscript, and material between the second
and third will be typeset as a subscript. Similarly, material between the first and second, or second
and third, As or Vs of vertical arrows will be typeset as left or right “side-scripts”.
The notations @= and @| give horizontal and vertical double lines.
A “null arrow” (produced by @) can be used instead of a visible arrow to fill out an array where
needed.
57
Further, and Further, and Further
\[\begin{CD}
j
S^{W_\Lambda}\otimes T @>j>> S WΛ ⊗ T −−−−→ T
T \\
@VVV @VV{\mathop{\rm End} P}V\\ y yEnd P
(S\otimes T)/I @= (Z\otimes T)/J (S ⊗ T )/I (Z ⊗ T )/J
\end{CD}\]
\begin{equation}
Z ∞
\textcolor{blue}{f(x)}=\int_1^\infty 1
f (x) = dx = 1 (4.6)
\textcolor{red}{\frac{1}{x^2}}\,\rd x=1 1 x2
\end{equation}
x2 + 2x + 2
x−1 x + x23
−1
− x3 + x2
2x2
\polylongdiv{x^3+x^2-1}{x-1}
− 2x2 + 2x
2x − 1
− 2x + 2
1
1 1 0 −1
\polyhornerscheme[x=1]{x^3+x^2-1} 1 1 2 2
1 2 2 1
√ √
1 1 13 1 13
\polyfactorize{2x^3+x^2-7x+3} 2 x− 2 x+ 2 + 2 x+ 2 − 2
6x2 − 4x − 2 = 49 x − 49 · 27 9
2 x+ 2 +0
58
4.12 The mathlig Package
15707
2 31415
20000
11415
10000
\longdiv{31415}{2}
1415
1400
15
14
1
\mathlig{->}{\rightarrow}
\mathlig{<-}{\leftarrow} →, ←, ↔
\mathlig{<->}{\leftrightarrow}
$->$, $<-$, $<->$
4.13 Miscellaneous
4.13.1 Canceling out—The cancel Package
Another short section. (Happy?) After loading the cancel package, you can do this:
59
Further, and Further, and Further
\unit[20]{cm}\\ 20 cm
\unitfrac[20]{m}{s}\\ 20 m/s
\nicefrac[\textsf]{m}{s} m/s
However, if the \ugly option is specified, the command \unitfrac[20]{m}{s} will produce
20 m/s.
My recommendation is to use \usepackage[ugly]{units} which would produce the output I’ve
been proposing in this book.
4.13.3 Math in Titles—The maybemath Package
The maybemath package provides a set of commands for adjusting math mode typesetting to match
the context of the surrounding paragraph.
For context-sensitive boldness use \maybebm:
The functionality of both \mayberm and \maybeit is combined for convenience in the command
\maybeitrm:
Normal $x^2+\maybebmsf{x^3}+\cdots$\\
Normal x2 + x3 + · · ·
\textbf{$x^2+\maybebmsf{x^3}+\cdots$}\\
x2 + x3 + · · ·
\textsf{$x^2+\maybebmsf{x^3}+\cdots$}\\
x2 + x3 + · · ·
\textbf{\textsf{$x^2+\maybebmsf{x^3}+
x2 + x3 + · · ·
\cdots$}}
The most important application of this package is to control the font in titles. If you are using
the default book or article class files, type things like ‘\section{... $\maybebm{...}$}’ to get the
correct font.
60
4.13 Miscellaneous
a + b = c + d.
\begin{align*}
a+b&=c+d.
\intertext[1cm]{Therefore,} Therefore,
e+f&=g+h.
\end{align*}
e + f = g + h.
As you can see, the additional option can specify a vertical space inserted before and after the
text. If it is omitted, standard TEX’s skips are inserted.
It also allows you to create a series of medium-sized mathematics:
\[\medmath{\cfrac{1}{\sqrt 2 + 1
1
\cfrac{1}{\sqrt 2 +\dotsb}}}
√ 1 √ 1
\quad \cfrac{1}{\sqrt 2 +\cfrac{1} 2+ √ 2+ √
2 + ···
{\sqrt 2 +\dotsb}}\] 2 + ···
X XX
$\sum_{i=1}^n \medop\sum_{i=1}^n
\displaystyle\sum\nolimits_{i=1}^n$ Xn n n n
Pn n P
\quad $\sum\limits_{i=1}^n i=1 i=1 i=1 i=1 i=1 i=1
\displaystyle \medop\sum_{i=1}^n
\sum_{i=1}^n$
There are also commands for producing medium-sized integral, fractions, binomial coefficient,
and matrix.
$\int_a^b\medint\int_a^b
\displaystyle\int_a^b$\quad
Rb Z b
Z b RR b ZZ b
a a a a
$\iint_a^b\medint\iint_a^b$ a
$\frac{x+y}{a-b} \mfrac{x+y}{a-b}
\dfrac{x+y}{a-b}$\quad x+y x + y x+y n
n n
$\binom{n}{k} \mbinom{n}{k} a−b a − b a−b k k k
\dbinom{n}{k}$
$\bigl(\begin{smallmatrix} a&b\\c&d
\end{smallmatrix}\bigr)$
$\Bigl(\begin{mmatrix} a&b\\c&d a b
a b a b
\end{mmatrix}\Bigr)$ c d c d c d
$\begin{pmatrix} a&b\\c&d
\end{pmatrix}$
61
Further, and Further, and Further
\newtheorem{name}{heading}
If \newtheorem* is used instead, no automatic numbers will be generated for the environments.
\newtheorem{lem}{Lemma}
\newtheorem*{ML}{Colin’s Lemma}
\begin{lem}[Main] Lemma 1 (Main). The LATEX Math-
The \LaTeX\ Mathematics Companion ematics Companion complements any
complements any math mode introduction. math mode introduction.
\end{lem}
\begin{ML} Colin’s Lemma. The LATEX Mathemat-
The \LaTeX\ Mathematics Companion ics Companion contains many package
contains many package descriptions. descriptions.
\end{ML}
In addition to the two mandatory arguments, \newtheorem has two mutually exclusive optional
arguments. They affect the sequencing and hierarchy of the numbering:
\newtheorem{name}[use-counter]{heading}
\newthoerem{name}{heading}[number-within]
By default, each kind of theorem-like environment is numbered independently. Thus, if you have
lemmas, theorems, and some examples interspersed, they will be numbered something like this: Ex-
ample 1, Lemma 1, Lemma 2, Theorem 1, Example 2, Lemma 3, Theorem 2. If, for example, you want
the lemmas and theorems to share the same numbering sequence—Example 1, Lemma 1, Lemma 2,
Theorem 3, Example 2, Lemma 4, Theorem 5—then you should indicate the desired relationship as
follows:
\newtheorem{thm}{Theorem} \newtheorem{lem}[thm]{Lemma}
The optional use-counter argument (value thm) in the second statement means that the lem envi-
ronment should share the thm numbering sequence instead of having its own independent sequence.
To have a theorem environment numbered subordinately within a sectional unit—for example, to
get exercises numbered Exercise 2.1, Exercise 2.2, and so on, in section 2—put the name of the parent
counter in square brackets in the final position:
\newthoerem{exa}[Exercise][section]
The specification part of the amsthm package supports the notion of a current theorem style,
which determines the formatting that will be set up by a collection of \newtheorem commands.
1 This section is adapted from The LATEX Companion [1]
62
4.14 Theorems: The amsthm Package
\theoremstyle{style}
The three theorem styles provided by the package are plain, definition, and remark; they specify
different typographical treatments that give the environments a visual emphasis corresponding to their
relative importance. The details of this typographical treatment may vary depending on the document
class, but typically type the plain style produces italic body text and the other two styles produce
Roman body text.
To create new theorem-like environments in these styles, divide your \newtheorem declarations
into groups and preface each group with the appropriate \theoremstyle. If no \theoremstyle com-
mand is given, the style used will be plain. For example,
\theoremstyle{plain}
\newtheorem{thm}{Theorem}
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
\theoremstyle{remark}
\newtheorem*{rem}{Remark}
Definition 1. A typographical chal-
\begin{defn}
lenge is. . . .
A typographical challenge is\ldots.
\end{defn} Theorem 2. There are no . . .
\begin{thm}
There are no \ldots Remark. The proof is left to the reader.
\end{thm}
\begin{rem}
The proof is left to the reader.
\end{rem}
\newtheoremstyle{note} % <name>
{3pt} % <Space above>
{3pt} % <Space below>
{} % <Body font>
{} % <Indent amounti>
{\itshape} % <Theorem head font>
{:} % <Punctuation after theorem head>
{.5em} % <Space after theorem head>
{} % <Theorem head spec (can be left empty, meaning ‘‘normal’’)>
A predefined proof environment provided by the amsthm package produces the heading “Proof”
with appropriate spacing and punctuation. The proof environment is primarily intended for short
proofs, no more than a page or two in length; longer proofs are usually better done as a separate
\section or \subsection in your document. An optional argument of the proof environment allows
you to substitute a different name for the standard “Proof.” If you want the proof heading to be, say,
“Proof of the Main Theorem,” then write
63
Further, and Further, and Further
be problematic if the last part of a proof environment is a displayed equation or list environment or
something of that nature. In that case put a \qedhere command at the place where the QED symbol
should appear, for example,
\begin{proof}
\ldots
\begin{equation} Proof. . . .
G(t)=L\gamma!\,t^{-\gamma}+
G(t) = Lγ! t−γ + t−δ η(t) (4.7)
t^{-\delta}\eta(t) \qedhere
\end{equation}
\end{proof}
✐ Exercise
1. The nccthm and ntheorem packages also enhance the standard LATEX’s theorem environment.
Try them out!
64
5
Further Directions
Just like I mentioned in the very beginning of this book, it doesn’t try to cover everything. It is simply
a companion. Here is where you look for more details:
• If you need to know about the technical details of the math mode of TEX, refer to chapters
16–18 of The TEXbook [9].
• If you need to learn more about TEX’s math styles, refer to chapter 17 of The TEXbook [9].
• If you need a comprehensive list of symbols, refer to The Comprehensive LATEX Symbol List [10].
But this is a huge list, you might consider section 8.9 of The LATEX Companion [1] instead.
• If you need to learn more about fonts in math mode, refer to chapters 7–8 of The LATEX Com-
panion [1]. (Section 8.8.3 of [1] describes a collection of font packages.)
• If you need to learn about other LATEX packages for math typesetting, refer to http://texcatalogue
.sarovar.org/.
• Part III of Math mode [3] introduces some basic TEX commands.
• If you need to do some special and funny things, refer to parts V and VI of Math mode [3].
• If you need to learn more rules of mathematical typesetting, refer to Mathematics into Type [8].
• If you need some detailed typographic information, refer to The Chicago Manual of Style [7].
• If you need to learn which symbols and notations to use in math composition, refer to AN-
S/IEEE Std 260.3-1993 [4], ISO 31-11:1992 [5], and CWS 260.3-2005 [6]. CWS 260.3-2005 I’d
recommend [6] written by me, because it combines the advantages of [4] and [5]. ©
• This book doesn’t talk about graphs and pictures at all, because there are so many well written
books that I couldn’t possibly excel. One that I highly recommend is The LATEX Graphics
Companion [2].
Further Directions
66
Bibliography
[1] Mittel, Frank, and Michel Goossens. The LATEX Companion, Second Edition. Boston:
Addison-Wesley, 2004.
[2] Goosens, Michel, Sebastian Rahtz, and Frank Mittelbach. The LATEX Graphics Companion.
Boston: Addison-Wesley, 1997.
[3] Voß, Herbert. Math mode – v.2.05, 2005,
http://perce.de/LaTeX/math/mathmode/Mathmode.pdf.
[4] IEEE. ANSI/IEEE Std 260.3-1993: Mathematical Signs and Symbols for Use in Physical
Sciences and Technology. New York: The Institute of Electrical and Electronics Engineers, Inc.,
1993
[5] ISO/TC 12. ISO 31-11: Quantities and units — Part 11 Mathematical signs and symbols for
use in the physical sciences and technology. Switzerland: ISO, 1992
[6] Gai, Helin. CWS 260.3-2005: Mathematical Signs and Symbols for Use in Physical Sciences and
Technology, 2005,
http://www.ctex.org/forums/index.php?act=Attach&type=post&id=18111
[7] The University of Chicago Press. The Chicago Manual of Style, 15th edition. Chicago: The
University of Chicago Press, 2003
[8] Swanson, Ellen, update by Arlene O’Sean and Antoinette Schleyer, Mathematics into Type,
Updated Edition. Provindence: American Mathematical Society, 1999
[9] Knuth, Donald. The TEXbook. Boston: Addison-Wesley, 1986.
[10] Pakin, Scott. The Comprehensive LATEX Symbol List, 2005,
http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-letter.pdf
Index
accent, 51 \belowdisplayskip, 28
arccos, 16 \beta, 3
arcsin, 16 \big, 18
array, 38, 56 \bigcap, 14
\Biggl, 19
back subscript, 26 \biggl, 19
binomial coefficient, 10 \Biggr, 19
blank space, 3 \biggr, 19
boldface type, 23 \Bigl, 18
brace, 22 \bigl, 18
bracket, 22 \bigm, 19
break a displayed equation, 35 \Bigr, 18
break an inline equation, 34 \bigr, 18
built-up fraction, 9 \binom, 10
\bm, 21
cardinal, 17
\bmod, 16
case structure, 52
Cauchy principal value, 13 \bordermatrix, 40
centertags, 48 \boxed, 44
chemical element, 22 \breve, 41
colon, 29 \buvec, 53
color, 58 \bvec, 53
comma, 28 \cancel, 59
Commands \cfrac, 9
\*, 35 \check, 41
\,, 19, 25 \colon, 29
\., 18 \colorbox, 44
\abovedisplayshortskip, 28 \cos, 15
\abovedisplayskip, 28 \cosh, 15
\accentset, 51 \cot, 15
\acute, 41 \coth, 15
\allowbreak, 35 \csc, 15
\allowpagebreak, 38 \cvec, 53
\alpha, 3 \dashint, 13
\arccos, 15 \dbinom, 10
\arcsin, 15 \dddot, 41
\arctan, 15 \ddot, 41
\arg, 15 \DeclareMathOperator, 16
\arraycolsep, 37 \DeclareMathSymbol, 23
\belowdisplayshortskip, 28 \DeclareSymbolFont, 23
INDEX
\deg, 15 \log, 15
\det, 15 \longdiv, 59
\dfrac, 8 \mathbb, 21
\dim, 15 \mathbf, 21
\displaystyle, 14 \mathcal, 21
\dotlessi, 51 \mathfrak, 21
\dotlessj, 51 \mathit, 21
\dots, 31 \mathlig, 59
\dotsb, 31 \mathpunct, 29
\dotsc, 31 \mathring, 41
\dotsi, 31 \mathrm, 21
\dotsm, 31 \mathsf, 21
\dotso, 31 \mathstrut, 7
\Downarrow, 17 \mathtt, 21
\downarrow, 17 \max, 15
\eqdef, 43 \maybebm, 60
\exp, 15 \maybebmsf, 61
\fbox, 44 \maybeit, 60
\fboxrule, 44 \maybeitrm, 60
\fboxsep, 44 \mayberm, 60
\footnotemark, 46 \maybesf, 60
\footnotetext, 46 \min, 15
\frac, 8 \minalignsep, 45
\gcd, 15 \neq, 4
\hat, 41 \newcommand, 21
\hom, 15 \newtheorem, 62
\icvec, 53 \newtheoremstyle, 63
\idotsint, 13 \nicefrac, 60
\iiint, 13 \nolimits, 14, 15
\iint, 13 \normalsize, 28
\indices, 53 \not, 5
\inf, 15 \numberwithin, 47
\injlim, 15 \oint, 13
\int, 13 \overleftarrow, 41
\intertext, 33 \overleftharp, 55
\irvec, 53 \overleftharpdown, 55
\ker, 15 \overleftrightarrow, 41
\langle, 17 \overline, 41
\lbrack, 17 \overrightarrow, 41
\lceil, 17 \overrightharp, 55
\ldots, 30 \overrightharpdown, 55
\left, 17 \parbox, 44
\leftroot, 7 \phantom, 26, 37
\lfloor, 17 \pmod, 16
\lg, 15 \polyfactorize, 58
\lim, 15 \polyhornerscheme, 58
\liminf, 15 \polylongdiv, 58
\limits, 14, 15 \polylonggcd, 58
\limsup, 15 \Pr, 15
\lineskip, 12 \prod, 14
\lineskiplimit, 12 \projlim, 15
69
INDEX
\qedhere, 64 \utilde, 52
\rangle, 17 \uuvec, 53
\rbrack, 17 \uvec, 53
\rceil, 17 \varinjlim, 15
\rd, 21 \varliminf, 15
\re, 21 \varlimsup, 15
\rfloor, 17 \varprojlim, 15
\ri, 21 \vec, 41
\right, 17 \widehat, 41
\rvec, 53 \widetilde, 41, 55
\sec, 15 \xleftarrow, 43
\Set, 57 \xrightarrow, 43
\sin, 15 commutative diagram, 57
\sinh, 15 complement, 25
\slabel, 57 complex number, 21
\smash, 7 condition, 27
\sqrt, 7 conjunction, 26, 27
\stackrel, 43 constant, 20
\substack, 13 coordinate, 27
\sum, 13 curl, 25
\sup, 15
delimiter, 17
\tag, 46
displayed equation, 4, 32
\tan, 15
displaystyle, 11
\tanh, 15
dotless, 51
\tbinom, 10
\tensor, 53 ellipsis, 30
\tensor*, 53 em quad, 26
\text, 22 emptyset, 24
\textcolor, 58 ent, 17
\tfrac, 8 Environments
\theequation, 46 align, 32, 36
\theoremstyle, 63 align*, 32
\theparentequation, 47 alignat, 46
\to, 29 aligned, 33
\underaccent, 51 amatrix, 56
\underbar, 41 array, 38
\underleftarrow, 41 Bmatrix, 39
\underleftharp, 55 bmatrix, 39
\underleftharpdown, 55 cases, 39
\underleftrightarrow, 41 CD, 57
\underline, 41 displaymath, 4
\underrightharp, 55 empheq, 44
\underrightharpdown, 55 eqnarray, 37
\unit, 60 equation, 4
\unitfrac, 60 equation*, 4
\Uparrow, 17 flalign, 45
\uparrow, 17 gather, 32
\Updownarrow, 17 gather*, 32
\updownarrow, 17 gathered, 33
\uppi, 23 math, 5
\uproot, 7 matrix, 39
70
INDEX
multline, 36 nointlimits, 49
numcases, 52 nonamelimits, 49
pmat, 56 nosumlimits, 49
pmatrix, 39 null delimieter, 18
proof, 64 null delimiter, 33
smallmatrix, 39 numeral, 22
split, 33, 36 numerical fraction, 9
subarray, 14
subeqnarray, 57 operator, 22
subeqnarray*, 57
subequations, 44, 47 Packages
subnumcases, 52 accents, 51
Vmatrix, 39 amscd, 57
vmatrix, 39 amsfonts, 21
equation number, 46, 57 amsmath, 22
extensible arrow, 55 amsthm, 62
bm, 21
font, 20, 21 braket, 57
footnote, 46 cancel, 59
fraction, 8 cases, 52
framed math, 44 color, 44, 58
function, 15 delarray, 56
dotlessi, 51
general function, 22 empheq, 44
general vector, 23 extarrows, 54
geometric element, 22 harpoon, 55
gradient symbol, 23 ifthen, 23
grouping numbers, 29 longdiv, 59
grouping symbol, 22 mathenv, 64
mathlig, 59
inline equations, 4 mattens, 54
integer, 24 maybemath, 60
integer part, 19 nath, 64
intlimits, 49 nicefrac, 60
italic type, 22
pmat, 56
large delimiter, 55 polynom, 58
lb, 16 subeqnarray, 57
lg, 16 tensind, 54
ln, 16 tensor, 53
log, 16 txfonts, 23
loose, 60 undertilde, 52
units, 60
mathematical condition, 26 upgreek, 23
mathematical constant, 20, 22 vector, 53
mathematical variable, 22 yhmath, 55
MathType, 49 parenthesis, 22
matrix, 23 partial operator, 25
partitioned matrix, 56
namelimits, 49 period, 29
natural number, 21, 24 physical constant, 22
new symbol, 43 physical quantity, 22
nice, 60 physical unit, 22
71
INDEX
PostScript, 23
prime, 48
prime number, 21, 24
proof, 64
proper subset, 24
punctuation, 22, 28
QED, 64
scriptscriptstyle, 11
scriptstyle, 11
semicolon, 28
set, 57
slashed fraction, 9
spacing, 25
special vector function, 23
specific mathematical function, 22
style, 11
subformula, 9
subscript, 5, 23
subset, 24
sumlimits, 49
superscript, 5, 23
symbolic statement, 26, 27
tbtags, 49
tensor, 53
textstyle, 11
the greatest integer less than or equal to, 17, 20
theorem, 62
thin space, 27
three-or-four dot method, 30
tight, 60
two-em quad, 27
ugly, 60
unit, 26
unit vector, 23
upright lowercase Greek letter, 23
upright type, 22
72