D-Sub combin新风机tion china是什么东西

From Wikibooks, open books for an open world
Getting Started
Common Elements
Technical Texts
Special Pages
Special Documents
Creating Graphics
Programming
Miscellaneous
Help and Recommendations
Appendices
One of the greatest motivating forces for Donald Knuth when he began developing the original TeX system was to create something that allowed simple construction of mathematical formulae, while looking professional when printed. The fact that he succeeded was most probably why TeX (and later on, LaTeX) became so popular within the scientific community. Typesetting mathematics is one of LaTeX's greatest strengths. It is also a large topic due to the existence of so much mathematical notation.
If your document requires only a few simple mathematical formulas, plain LaTeX has most of the tools that you will need. If you are writing a scientific document that contains numerous complicated formulas, the amsmath package introduces several new commands that are more powerful and flexible than the ones provided by basic LaTeX. The mathtools package fixes some amsmath quirks and adds some useful settings, symbols, and environments to amsmath. To use either package, include:
\usepackage{amsmath}
\usepackage{mathtools}
in the preamble of the document. The mathtools package loads the amsmath package and hence there is no need to \usepackage{amsmath} in the preamble if mathtools is used.
LaTeX needs to know when text is mathematical. This is because LaTeX typesets maths notation differently from normal text. Therefore, special environments have been declared for this purpose. They can be distinguished into two categories depending on how they are presented:
text — text formulas are displayed inline, that is, within the body of text where it is declared, for example, I can say that a + a = 2a within this sentence.
displayed — displayed formulas are on a line by themselves.
As math requires special environments, there are naturally the appropriate environment names you can use in the standard way. Unlike most other environments, however, there are some handy shorthands to declaring your formulas. The following table summarizes them:
Inline (within text) formulas
Displayed equations
Displayed and automatically numbered equations
Environment
displaymath
LaTeX shorthand
TeX shorthand
equation* (starred version) suppresses numbering, but requires amsmath
Suggestion: Using the $$...$$ should be avoided, as it may cause problems, particularly with the AMS-LaTeX macros. Furthermore, should a problem occur, the error messages may not be helpful.
The equation* and displaymath environments are functionally equivalent.
If you are typing text normally, you are said to be in text mode, but while you are typing within one of those mathematical environments, you are said to be in math mode, that has some differences compared to the text mode:
Most spaces and line breaks do not have any significance, as all spaces are either derived logically from the mathematical expressions, or have to be specified with special commands such as \quad
Empty lines are not allowed. Only one paragraph per formula.
Each letter is considered to be the name of a variable and will be typeset as such. If you want to typeset normal text within a formula (normal upright font and normal spacing) then you have to enter the text using
In order for some operators, such as \lim or \sum to be displayed correctly inside some math environments (read $......$), it might be convenient to write the \displaystyle class inside the environment. Doing so might cause the line to be taller, but will cause exponents and indices to be displayed correctly for some math operators. For example, the $\sum$ will print a smaller Σ and $\displaystyle \sum$ will print a bigger one
{\displaystyle \displaystyle \sum }
, like in equations (This only works with AMSMATH package). It is possible to force this behaviour for all math environments by declaring \everymath{\displaystyle} at the very beginning (i.e. before \begin{document}).
Mathematics has many symbols! There is a set of symbols that can be accessed directly from the keyboard:
+ - = ! / ( ) [ ] & & | ' :
Beyond those listed above, distinct commands must be issued in order to display the desired symbols. There are many examples such as Greek letters, set and relations symbols, arrows, binary operators, etc.
For example:
\forall x \in X, \quad \exists y \leq \epsilon
{\displaystyle \forall x\in X,\quad \exists y\leq \epsilon \,}
Fortunately, there's a tool that can greatly simplify the search for the command for a specific symbol. Look for "Detexify" in the
section below. Another option would be to look in the "The Comprehensive LaTeX Symbol List" in the
section below.
Greek letters are commonly used in mathematics, and they are very easy to type in math mode. You just have to type the name of the letter after a backslash: if the first letter is lowercase, you will get a lowercase Greek letter, if the first letter is uppercase (and only the first letter), then you will get an uppercase letter. Note that some uppercase Greek letters look like Latin ones, so they are not provided by LaTeX (e.g. uppercase Alpha and Beta are just "A" and "B" respectively). Lowercase epsilon, theta, kappa, phi, pi, rho, and sigma are provided in two different versions. The alternate, or variant, version is created by adding "var" before the name of the letter:
\alpha, \Alpha, \beta, \Beta, \gamma, \Gamma, \pi, \Pi, \phi, \varphi, \mu, \Phi
{\displaystyle \alpha ,\mathrm {A} ,\beta ,\mathrm {B} ,\gamma ,\Gamma ,\pi ,\Pi ,\phi ,\varphi ,\mu ,\Phi }
Scroll down to
for a complete list of Greek symbols.
An operator is a function that is written as a word: e.g. trigonometric functions (sin, cos, tan), logarithms and exponentials (log, exp), limits (lim), as well as trace and determinant (tr, det). LaTeX has many of these defined as commands:
\cos (2\theta) = \cos^2 \theta - \sin^2 \theta
{\displaystyle \cos(2\theta )=\cos ^{2}\theta -\sin ^{2}\theta \,}
For certain operators such as , the subscript is placed underneath the operator:
\lim_{x \to \infty} \exp(-x) = 0
{\displaystyle \lim _{x\to \infty }\exp(-x)=0}
there are two commands: \bmod and \pmod:
{\displaystyle a\,{\bmod {\,}}b\,}
x \equiv a \pmod{b}
{\displaystyle x\equiv a{\pmod {b}}\,}
To use operators that are not pre-defined, such as , see
Powers and indices are equivalent to superscripts and subscripts in normal text mode. The caret (^; ) character is used to raise something, and the underscore (_) is for lowering. If more than one expression is raised or lowered, they should be grouped using curly braces ({ and }).
k_{n+1} = n^2 + k_n^2 - k_{n-1}
{\displaystyle k_{n+1}=n^{2}+k_{n}^{2}-k_{n-1}\,}
For powers with more than one digit, surround the power with {}.
{\displaystyle n^{22}\,}
An underscore (_) can be used with a vertical bar (
{\displaystyle |}
) to denote evaluation using subscript notation in mathematics:
f(n) = n^5 + 4n^2 + 2 |_{n=17}
{\displaystyle f(n)=n^{5}+4n^{2}+2|_{n=17}\,}
A fraction is created using the \frac{numerator}{denominator} command. (for those who need their memories refreshed, that's the top and bottom respectively!). Likewise, the
(aka the Choose function) may be written using the \binom command:
\frac{n!}{k!(n-k)!} = \binom{n}{k}
{\displaystyle {\frac {n!}{k!(n-k)!}}={\binom {n}{k}}}
You can embed fractions within fractions:
\frac{\frac{1}{x}+\frac{1}{y}}{y-z}
{\displaystyle {\frac {{\frac {1}{x}}+{\frac {1}{y}}}{y-z}}}
Note that when appearing inside another fraction, or in inline text
{\displaystyle {\tfrac {a}{b}}}
, a fraction is noticeably smaller than in displayed mathematics. The \tfrac and \dfrac commands force the use of the respective styles, \textstyle and \displaystyle. Similarly, the \tbinom and \dbinom commands typeset the binomial coefficient.
For relatively simple fractions, especially within the text, it may be more aesthetically pleasing to use :
{\displaystyle ^{3}/_{7}\,}
If this looks a little "loose" (overspaced), a tightened version can be defined by inserting some negative space
%running fraction with slash - requires math mode.
\newcommand*\rfrac[2]{{}^{#1}\!/_{#2}}
\rfrac{3}{7}
{\displaystyle {{}^{3}\!/_{7}}}
If you use them throughout the document, usage of xfrac package is recommended. This package provides \sfrac command to create slanted fractions. Usage:
Take $\sfrac{1}{2}$ cup of sugar, \dots
3\times\sfrac{1}{2}=1\sfrac{1}{2}
Take ${}^1/_2$ cup of sugar, \dots
3\times{}^1/_2=1{}^1/_2
If fractions are used as an exponent curly braces have to be used around the \sfrac command:
$x^\frac{1}{2}$ % no error
$x^\sfrac{1}{2}$ % error
$x^{\sfrac{1}{2}}$ % no error
$x^\frac{1}{2}$ % no error
{\displaystyle x^{\frac {1}{2}}}
In some cases, using the package alone will result in errors about certain font shapes not being available. In that case, the lmodern and fix-cm packages need to be added as well.
Alternatively, the nicefrac package provides the \nicefrac command, whose usage is similar to \sfrac.
Continued fractions should be written using \cfrac command:
\begin{equation}
x = a_0 + \cfrac{1}{a_1
+ \cfrac{1}{a_2
+ \cfrac{1}{a_3 + \cfrac{1}{a_4} } } }
\end{equation}
{\displaystyle x=a_{0}+{\cfrac {1}{a_{1}+{\cfrac {1}{a_{2}+{\cfrac {1}{a_{3}+{\cfrac {1}{a_{4}}}}}}}}}}
To make multiplication visually similar to a fraction, a nested array can be used, for example multiplication of numbers written one below the other.
\begin{equation}
\begin{array}[b]{r}
\left( x_1 x_2 \right)\\
\times \left( x'_1 x'_2 \right)
\end{array}
\left( y_1y_2y_3y_4 \right)
\end{equation}
{\displaystyle {\frac {\begin{array}{r}\left(x_{1}x_{2}\right)\\\times \left(x'_{1}x'_{2}\right)\end{array}}{\left(y_{1}y_{2}y_{3}y_{4}\right)}}}
The \sqrt command creates a square root surrounding an expression. It accepts an optional argument specified in square brackets ([ and ]) to change magnitude:
\sqrt{\frac{a}{b}}
{\displaystyle {\sqrt {\frac {a}{b}}}}
\sqrt[n]{1+x+x^2+x^3+\dots+x^n}
{\displaystyle {\sqrt[{n}]{1+x+x^{2}+x^{3}+\dots +x^{n}}}}
Some people prefer writing the square root "closing" it over its content. This method arguably makes it more clear what is in the scope of the root sign. This habit is not normally used while writing with the computer, but if you still want to change the output of the square root, LaTeX gives you this possibility. Just add the following code in the preamble of your document:
% New definition of square root:
% it renames \sqrt as \oldsqrt
\let\oldsqrt\sqrt
% it defines the new \sqrt in terms of the old one
\def\sqrt{\mathpalette\DHLhksqrt}
\def\DHLhksqrt#1#2{%
\setbox0=\hbox{$#1\oldsqrt{#2\,}$}\dimen0=\ht0
\advance\dimen0-0.2\ht0
\setbox2=\hbox{\vrule height\ht0 depth -\dimen0}%
{\box0\lower0.4pt\box2}}
The new style is on left, the old one on right
This TeX code first renames the \sqrt command as \oldsqrt, then redefines \sqrt in terms of the old one, adding something more. The new square root can be seen in the picture on the left, compared to the old one on the right. Unfortunately this code won't work if you want to use multiple roots: if you try to write
{\displaystyle {\sqrt[{b}]{a}}}
as \sqrt[b]{a} after you used the code above, you'll just get a wrong output. In other words, you can redefine the square root this way only if you are not going to use multiple roots in the whole document.
An alternative piece of TeX code that does allow multiple roots is
\usepackage{letltxmacro}
\makeatletter
\let\oldr@@t\r@@t
\def\r@@t#1#2{%
\setbox0=\hbox{$\oldr@@t#1{#2\,}$}\dimen0=\ht0
\advance\dimen0-0.2\ht0
\setbox2=\hbox{\vrule height\ht0 depth -\dimen0}%
{\box0\lower0.4pt\box2}}
\LetLtxMacro{\oldsqrt}{\sqrt}
\renewcommand*{\sqrt}[2][\ ]{\oldsqrt[#1]{#2} }
\makeatother
$\sqrt[a]{b} \quad \oldsqrt[a]{b}$
However this requires the \usepackage{letltxmacro} package
The \sum and \int commands insert the sum and integral symbols respectively, with limits specified using the caret (^) and underscore (_). The typical notation for sums is:
\sum_{i=1}^{10} t_i
{\displaystyle \textstyle \sum _{i=1}^{10}t_{i}\,}
\displaystyle\sum_{i=1}^{10} t_i
{\displaystyle \displaystyle \sum _{i=1}^{10}t_{i}\,}
The limits for the integrals follow the same notation. It's also important to represent the integration variables with an upright d, which in math mode is obtained through the \mathrm{} command, and with a small space separating it from the integrand, which is attained with the \, command.
\int_0^\infty \mathrm{e}^{-x}\,\mathrm{d}x
{\displaystyle \int _{0}^{\infty }\mathrm {e} ^{-x}\,\mathrm {d} x\,}
There are many other "big" commands which operate in a similar manner:
{\displaystyle \sum \,}
{\displaystyle \prod }
{\displaystyle \coprod }
{\displaystyle \bigoplus }
\bigotimes
{\displaystyle \bigotimes }
{\displaystyle \bigodot }
{\displaystyle \bigcup }
{\displaystyle \bigcap }
{\displaystyle \biguplus }
{\displaystyle \bigsqcup }
{\displaystyle \bigvee }
{\displaystyle \bigwedge }
{\displaystyle \int }
{\displaystyle \oint }
{\displaystyle \iint }
{\displaystyle \iiint }
{\displaystyle \iiiint }
{\displaystyle \int \!\cdots \!\int }
For more integral symbols, including those not included by default in the Computer Modern font, try the esint package.
The \substack command allows the use of \\ to write the limits over multiple lines:
\sum_{\substack{
{\displaystyle \sum _{\overset {\scriptstyle 0&i&m}{\scriptstyle 0&j&n}}P(i,j)\,}
If you want the limits of an integral to be specified above and below the symbol (like the sum), use the \limits command:
\int\limits_a^b
{\displaystyle \int \limits _{a}^{b}\,}
However if you want this to apply to ALL integrals, it is preferable to specify the intlimits option when loading the amsmath package:
\usepackage[intlimits]{amsmath}
Subscripts and superscripts in other contexts as well as other parameters to amsmath package related to them are described in
For bigger integrals, you may use personal declarations, or the bigints package .
How to use braces in multi line equations is described in the
The use of delimiters such as brackets soon becomes important when dealing with anything but the most trivial equations. Without them, formulas can become ambiguous. Also, special types of mathematical structures, such as matrices, typically rely on delimiters to enclose them.
There are a variety of delimiters available for use in LaTeX:
( a ), [ b ], \{ c \}, | d |, \| e \|,
\langle f \rangle, \lfloor g \rfloor,
\lceil h \rceil, \ulcorner i \urcorner
{\displaystyle (a),[b],\{c\},|d|,\|e\|,\langle f\rangle ,\lfloor g\rfloor ,\lceil h\rceil ,\ulcorner i\urcorner }
where \lbrack and \rbrack may be used in place of [ and ].
Very often mathematical features will differ in size, in which case the delimiters surrounding the expression should vary accordingly. This can be done automatically using the \left, \right, and \middle commands. Any of the previous delimiters may be used in combination with these:
\left(\frac{x^2}{y^3}\right)
{\displaystyle \left({\frac {x^{2}}{y^{3}}}\right)\,}
P\left(A=2\middle|\frac{A^2}{B}&4\right)
Curly braces are defined differently by using \left\{ and \right\},
\left\{\frac{x^2}{y^3}\right\}
{\displaystyle \left\{{\frac {x^{2}}{y^{3}}}\right\}\,}
If a delimiter on only one side of an expression is required, then an invisible delimiter on the other side may be denoted using a period (.).
\left.\frac{x^3}{3}\right|_0^1
{\displaystyle \left.{\frac {x^{3}}{3}}\right|_{0}^{1}\,}
In certain cases, the sizing produced by the \left and \right commands may not be desirable, or you may simply want finer control over the delimiter sizes. In this case, the \big, \Big, \bigg and \Bigg modifier commands may be used:
( \big( \Big( \bigg( \Bigg(
{\displaystyle ({\big (}{\Big (}{\bigg (}{\Bigg (}\,}
These commands are primarily useful when dealing with nested delimiters. For example, when typesetting
\frac{\mathrm d}{\mathrm d x} \left( k g(x) \right)
{\displaystyle {\frac {\mathrm {d} }{\mathrm {d} x}}\left(kg(x)\right)}
we notice that the \left and \right commands produce the same size delimiters as those nested within it. This can be difficult to read. To fix this, we write
\frac{\mathrm d}{\mathrm d x} \big( k g(x) \big)
{\displaystyle {\frac {\mathrm {d} }{\mathrm {d} x}}{\big (}kg(x){\big )}}
Manual sizing can also be useful when an equation is too large, trails off the end of the page, and must be separated into two lines using an align command. Although the commands \left. and \right. can be used to balance the delimiters on each line, this may lead to wrong delimiter sizes. Furthermore, manual sizing can be used to avoid overly large delimiters if an \underbrace or a similar command appears between the delimiters.
A basic matrix may be created using the matrix environment: in common with other table-like structures, entries are specified by row, with columns separated using an ampersand (&) and a new rows separated with a double backslash (\\)
\begin{matrix}
a & b & c \\
d & e & f \\
\end{matrix}
{\displaystyle {\begin{matrix}a&b&c\\d&e&f\\g&h&i\end{matrix}}}
To specify alignment of columns in the table, use starred version:
\begin{matrix}
\end{matrix}
\begin{matrix*}[r]
\end{matrix*}
{\displaystyle {\begin{matrix}-1&3\\2&-4\end{matrix}}={\begin{matrix}-1&\,\;\;3\\\,\;\;2&-4\end{matrix}}}
The alignment by default is c but it can be any column type valid in array environment.
However matrices are usually enclosed in delimiters of some kind, and while it is possible to use the , there are various other predefined environments which automatically include delimiters:
Environment name
Surrounding delimiter
{\displaystyle (\,)}
centers columns by default
{\displaystyle (\,)}
allows to specify alignment of columns in optional parameter
{\displaystyle [\,]}
centers columns by default
{\displaystyle [\,]}
allows to specify alignment of columns in optional parameter
{\displaystyle \{\,\}}
centers columns by default
{\displaystyle \{\,\}}
allows to specify alignment of columns in optional parameter
{\displaystyle |\,|}
centers columns by default
{\displaystyle |\,|}
allows to specify alignment of columns in optional parameter
{\displaystyle \|\,\|}
centers columns by default
{\displaystyle \|\,\|}
allows to specify alignment of colums in optional parameter
When writing down arbitrary sized matrices, it is common to use horizontal, vertical and diagonal triplets of dots (known as ) to fill in certain columns and rows. These can be specified using the \cdots, \vdots and \ddots respectively:
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
& \ddots & \vdots
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}
{\displaystyle A_{m,n}={\begin{pmatrix}a_{1,1}&a_{1,2}&\cdots &a_{1,n}\\a_{2,1}&a_{2,2}&\cdots &a_{2,n}\\\vdots &\vdots &\ddots &\vdots \\a_{m,1}&a_{m,2}&\cdots &a_{m,n}\end{pmatrix}}}
In some cases you may want to have finer control of the alignment within each column, or want to insert lines between columns or rows. This can be achieved using the array environment, which is essentially a math-mode version of the , which requires that the columns be pre-specified:
\begin{array}{c|c}
\end{array}
{\displaystyle {\begin{array}{c|c}1&2\\\hline 3&4\end{array}}}
You may see that the AMS matrix class of environments doesn't leave enough space when used together with fractions resulting in output similar to this:
{\displaystyle M={\begin{bmatrix}{\frac {5}{6}}&{\frac {1}{6}}&0\\{\frac {5}{6}}&0&{\frac {1}{6}}\\0&{\frac {5}{6}}&{\frac {1}{6}}\end{bmatrix}}}
To counteract this problem, add additional leading space with the optional parameter to the \\ command:
M = \begin{bmatrix}
\frac{5}{6} & \frac{1}{6} & 0
\frac{5}{6} & 0
& \frac{1}{6} \\[0.3em]
& \frac{5}{6} & \frac{1}{6}
\end{bmatrix}
{\displaystyle M={\begin{bmatrix}{\frac {5}{6}}&{\frac {1}{6}}&0\\[0.3em]{\frac {5}{6}}&0&{\frac {1}{6}}\\[0.3em]0&{\frac {5}{6}}&{\frac {1}{6}}\end{bmatrix}}}
If you need "border" or "indexes" on your matrix, plain TeX provides the macro \bordermatrix
M = \bordermatrix{~ & x & y \cr
A & 1 & 0 \cr
B & 0 & 1 \cr}
To insert a small matrix, and not increase leading in the line containing it, use smallmatrix environment:
A matrix in text must be set smaller:
$\bigl(\begin{smallmatrix}
a&b \\ c&d
\end{smallmatrix} \bigr)$
to not increase leading in a portion of text.
The math environment differs from the text environment in the representation of text. Here is an example of trying to represent text within the math environment:
50 apples \times 100 apples = lots of apples^2
{\displaystyle 50apples\times 100apples=lotsofapples^{2}\,}
There are two noticeable problems: there are no spaces between words or numbers, and the letters are italicized and more spaced out than normal. Both issues are simply artifacts of the maths mode, in that it treats it as a mathematical expression: spaces are ignored (LaTeX spaces mathematics according to its own rules), and each character is a separate element (so are not positioned as closely as normal text).
There are a number of ways that text can be added properly. The typical way is to wrap the text with the \text{...} command
(a similar command is \mbox{...}, though this causes problems with subscripts, and has a less descriptive name). Let's see what happens when the above equation code is adapted:
50 \text{apples} \times 100 \text{apples}
= \text{lots of apples}^2
lots of apples
{\displaystyle 50{\text{apples}}\times 100{\text{apples}}={\text{lots of apples}}^{2}\,}
The text looks better. However, there are no gaps between the numbers and the words. Unfortunately, you are required to explicitly add these. There are many ways to add spaces between maths elements, but for the sake of simplicity we may simply insert space characters into the \text commands.
50 \text{ apples} \times 100 \text{ apples}
= \text{lots of apples}^2
 apples
 apples
lots of apples
{\displaystyle 50{\text{ apples}}\times 100{\text{ apples}}={\text{lots of apples}}^{2}\,}
Using the \text is fine and gets the basic result. Yet, there is an alternative that offers a little more flexibility. You may recall the introduction of , such as \textrm, \textit, \textbf, etc. These commands format the argument accordingly, e.g., \textbf{bold text} gives bold text. These commands are equally valid within a maths environment to include text. The added benefit here is that you can have better control over the font formatting, rather than the standard text achieved with \text.
50 \textrm{ apples} \times 100
\textbf{ apples} = \textit{lots of apples}^2
lotsofapples
{\displaystyle 50\;{\textrm {apples}}\times 100\;{\textbf {apples}}={\textit {lotsofapples}}^{2}\,}
See also: ,
We what about formatting mathematical expressions? There are a set of formatting commands very similar to the font formatting ones just used, except that they are specifically aimed at text in math mode (requires amsfonts)
LaTeX command
Description
Common use
\mathnormal{…}
(or simply omit any command)
{\displaystyle ABCDEF~abcdef~123456\,}
The default math font
Most mathematical notation
\mathrm{…}
{\displaystyle \mathrm {ABCDEF~abcdef~123456} \,}
This is the default or normal font, unitalicised
Units of measurement, one word functions
\mathit{…}
{\displaystyle {\mathit {ABCDEF~abcdef~123456}}\,}
Italicised font
Multi-letter function or variable names. Compared to \mathnormal, words are spaced more naturally and numbers are italicized as well.
\mathbf{…}
{\displaystyle \mathbf {ABCDEF~abcdef~123456} \,}
\mathsf{…}
{\displaystyle {\mathsf {ABCDEF~abcdef~123456}}\,}
\mathtt{…}
{\displaystyle {\mathtt {ABCDEF~abcdef~123456}}\,}
\mathfrak{…}
{\displaystyle {\mathfrak {ABCDEF~abcdef~123456}}\,}
Almost canonical font for Lie algebras,
in ring theory
\mathcal{…}
{\displaystyle {\mathcal {ABCDEF}}\,}
Calligraphy (uppercase only)
Often used for sheaves/schemes and categories, used to denote
concepts like an alphabet of definition (
{\displaystyle {\mathcal {A}}}
), message space (
{\displaystyle {\mathcal {M}}}
), ciphertext space (
{\displaystyle {\mathcal {C}}}
{\displaystyle {\mathcal {K}}}
{\displaystyle {\mathcal {L}}}
{\displaystyle {\mathcal {F}}}
\mathbb{…}
(requires the amsfonts or amssymb package)
{\displaystyle \mathbb {ABCDEF} \,}
(uppercase only)
Used to denote special sets (e.g. real numbers)
\mathscr{…}
(requires the mathrsfs package)
(uppercase only)
An alternative font for categories and sheaves.
These formatting commands can be wrapped around the entire equation, and not just on the textual elements: they only format letters, numbers, and uppercase Greek, and other math commands are unaffected.
To bold lowercase Greek or other symbols use the \boldsymbol command; this will only work if there exists a bold version of the symbol in the current font. As a last resort there is the \pmb command (poor man's bold): this prints multiple versions of the character slightly offset against each other.
\boldsymbol{\beta} = (\beta_1,\beta_2,\dotsc,\beta_n)
{\displaystyle {\boldsymbol {\beta }}=(\beta _{1},\beta _{2},\dotsc ,\beta _{n})\,}
To change the size of the fonts in math mode, see .
So what to do when you run out of symbols and fonts? Well the next step is to use accents:
a' or a^{\prime}
{\displaystyle a'\,}
{\displaystyle a''\,}
{\displaystyle {\hat {a}}\,}
{\displaystyle {\bar {a}}\,}
{\displaystyle {\grave {a}}\,}
{\displaystyle {\acute {a}}\,}
{\displaystyle {\dot {a}}\,}
{\displaystyle {\ddot {a}}\,}
{\displaystyle \not {a}\,}
\mathring{a}
\overrightarrow{AB}
{\displaystyle {\overrightarrow {AB}}\,}
\overleftarrow{AB}
{\displaystyle {\overleftarrow {AB}}\,}
{\displaystyle a'''\,}
{\displaystyle a''''\,}
\overline{aaa}
{\displaystyle {\overline {aaa}}\,}
{\displaystyle {\check {a}}\,}
{\displaystyle {\breve {a}}\,}
{\displaystyle {\vec {a}}\,}
\ddddot{a}
\widehat{AAA}
{\displaystyle {\widehat {AAA}}\,}
\widetilde{AAA}
{\displaystyle {\widetilde {AAA}}}
\widehat{AAA}
{\displaystyle {\widehat {AAA}}\,}
\stackrel\frown{AAA}
{\displaystyle {\stackrel {\frown }{AAA}}}
{\displaystyle {\tilde {a}}\,}
\underline{a}
{\displaystyle {\underline {a}}\,}
The package xcolor, described in , allows us to add color to our equations. For example,
k = {\color{red}x} \mathbin{\color{blue}-} 2
{\displaystyle k={\color {red}x}{\mathbin {\color {blue}-}}2}
The only problem is that this disrupts the default TeX formatting around the - operator. To fix this, we enclose it in a \mathbin environment, since - is a binary operator. This process is described .
LaTeX deals with the + and - signs in two possible ways. The most common is as a binary operator. When two maths elements appear on either side of the sign, it is assumed to be a binary operator, and as such, allocates some space to either side of the sign. The alternative way is a sign designation. This is when you state whether a mathematical quantity is either positive or negative. This is common for the latter, as in math, such elements are assumed to be positive unless a - is prefixed to it. In this instance, you want the sign to appear close to the appropriate element to show their association. If you put a + or a - with nothing before it but you want it to be handled like a binary operator you can add an invisible character before the operator using {}. This can be useful if you are writing multiple-line formulas, and a new line could start with a - or +, for example, then you can fix some strange alignments adding the invisible character where necessary.
A plus-minus sign is written as:
{\displaystyle \pm }
Similarly, there exists also a minus-plus sign:
{\displaystyle \mp }
LaTeX is obviously pretty good at typesetting maths—it was one of the chief aims of the core TeX system that LaTeX extends. However, it can't always be relied upon to accurately interpret formulas in the way you did. It has to make certain assumptions when there are ambiguous expressions. The result tends to be slightly incorrect horizontal spacing. In these events, the output is still satisfactory, yet any perfectionists will no doubt wish to fine-tune their formulas to ensure spacing is correct. These are generally very subtle adjustments.
There are other occasions where LaTeX has done its job correctly, but you just want to add some space, maybe to add a comment of some kind. For example, in the following equation, it is preferable to ensure there is a decent amount of space between the maths and the text.
\begin{cases}
& \quad \text{if } n \text{ is even}\\
& \quad \text{if } n \text{ is odd}
\end{cases}
 is even
 is odd
{\displaystyle f(n)={\begin{cases}n/2&\quad {\text{if }}n{\text{ is even}}\\-(n+1)/2&\quad {\text{if }}n{\text{ is odd}}\end{cases}}}
This code produces errors with Miktex 2.9 and does not yield the results seen on the right. Use \mathrm instead of just \text.
(Note that this particular example can be expressed in more elegant code by the cases construct provided by the amsmath package described in
LaTeX has defined two commands that can be used anywhere in documents (not just maths) to insert some horizontal space. They are \quad and \qquad
A \quad is a space equal to the current font size. So, if you are using an 11pt font, then the space provided by \quad will also be 11pt (horizontally, of course.) The \qquad gives twice that amount. As you can see from the code from the above example, \quads were used to add some separation between the maths and the text.
OK, so back to the fine tuning as mentioned at the beginning of the document. A good example would be displaying the simple equation for the indefinite integral of y with respect to x:
{\displaystyle \int y\,\mathrm {d} x}
If you were to try this, you may write:
\int y \mathrm{d}x
{\displaystyle \int y\mathrm {d} x}
However, this doesn't give the correct result. LaTeX doesn't respect the white-space left in the code to signify that the y and the dx are independent entities. Instead, it lumps them altogether. A \quad would clearly be overkill in this situation—what is needed are some small spaces to be utilized in this type of instance, and that's what LaTeX provides:
Description
small space
3/18 of a quad
medium space
4/18 of a quad
large space
5/18 of a quad
negative space
-3/18 of a quad
NB you can use more than one command in a sequence to achieve a greater space if necessary.
So, to rectify the current problem:
\int y\, \mathrm{d}x
{\displaystyle \int y\,\mathrm {d} x}
\int y\: \mathrm{d}x
{\displaystyle \int y\;\;\!\!\mathrm {d} x}
\int y\; \mathrm{d}x
{\displaystyle \int y\;\mathrm {d} x}
The negative space may seem like an odd thing to use, however, it wouldn't be there if it didn't have some use! Take the following example:
\begin{array}{c}
\end{array}
\right) = \frac{n!}{r!(n-r)!}
{\displaystyle \left({\begin{matrix}n\\r\end{matrix}}\right)={\frac {n!}{r!(n-r)!}}}
The matrix-like expression for representing binomial coefficients is too padded. There is too much space between the brackets and the actual contents within. This can easily be corrected by adding a few negative spaces after the left bracket and before the right bracket.
\begin{array}{c}
\end{array}
\!\right) = \frac{n!}{r!(n-r)!}
{\displaystyle \left(\!{\begin{matrix}n\\r\end{matrix}}\!\right)={\frac {n!}{r!(n-r)!}}}
In any case, adding some spaces manually should be avoided whenever possible: it makes the source code more complex and it's against the basic principles of a What You See is What You Mean approach. The best thing to do is to define some commands using all the spaces you want and then, when you use your command, you don't have to add any other space. Later, if you change your mind about the length of the horizontal space, you can easily change it modifying only the command you defined before. Let us use an example: you want the d of a dx in an integral to be in roman font and a small space away from the rest. If you want to type an integral like \int x \, \mathrm{d} x, you can define a command like this:
\newcommand{\dd}{\mathop{}\,\mathrm{d}}
in the preamble of your document. We have chosen \dd just because it reminds the "d" it replaces and it is fast to type. Doing so, the code for your integral becomes \int x \dd x. Now, whenever you write an integral, you just have to use the \dd instead of the "d", and all your integrals will have the same style. If you change your mind, you just have to change the definition in the preamble, and all your integrals will be changed accordingly.
To manually display a fragment of a formula using text style, surround the fragment with curly braces and prefix the fragment with \textstyle. The braces are required because the \textstyle macro changes the state of the renderer, rendering all subsequent mathematics in text style. The braces limit this change of state to just the fragment enclosed within. For example, to use text style for just the summation symbol in a sum, one would enter
\begin{equation}
C^i_j = {\textstyle \sum_k} A^i_k B^k_j
\end{equation}
The same thing as a command would look like this:
\newcommand{\tsum}[1]{{\textstyle \sum_{#1}}}
Note the extra braces. Just one set around the expression won't be enough. That would cause all math after \tsum k to be displayed using text style.
To display part of a formula using display style, do the same thing, but use \displaystyle instead.
The AMS () mathematics package is a powerful package that creates a higher layer of abstraction over mathematical LaTeX if you use it it will make your life easier. Some commands amsmath introduces will make other plain LaTeX commands obsolete: in order to keep consistency in the final output you'd better use amsmath commands whenever possible. If you do so, you will get an elegant output without worrying about alignment and other details, keeping your source code readable. If you want to use it, you have to add this in the preamble:
\usepackage{amsmath}
amsmath defines also the \dots command, that is a generalization of the existing \ldots. You can use \dots in both text and math mode and LaTeX will replace it with three dots "…" but it will decide according to the context whether to put it on the bottom (like \ldots) or centered (like \cdots).
LaTeX gives you several commands to insert dots (ellipses) in your formulae. This can be particularly useful if you have to type big matrices omitting elements. First of all, here are the main dots-related commands LaTeX provides:
{\displaystyle \dots }
generic dots (ellipsis), to be used in text (outside formulae as well). It automatically manages whitespaces before and after itself according to the context, it's a higher level command.
{\displaystyle \ldots }
the output is similar to the previous one, but there is no automatic w it works at a lower level.
{\displaystyle \cdots }
These dots are centered relative to the height of a letter. There is also the binary multiplication operator, \cdot, mentioned below.
{\displaystyle \vdots }
vertical dots
{\displaystyle \ddots }
diagonal dots
inverse diagonal dots (requires the mathdots package)
\hdotsfor{n}
{\displaystyle \ldots \ldots }
to be used in matrices, it creates a row of dots spanning n columns.
Instead of using \ldots and \cdots, you should use the semantically oriented commands. It makes it possible to adapt your document to different conventions on the fly, in case (for example) you have to submit it to a publisher who insists on following house tradition in this respect. The default treatment for the various kinds follows American Mathematical Society conventions.
A_1,A_2,\dotsc,
for "dots with commas"
A_1+\dotsb+A_N
for "dots with binary operators/relations"
A_1 \dotsm A_N
for "multiplication dots"
\int_a^b \dotsi
for "dots with integrals"
A_1\dotso A_N
for "other dots" (none of the above)
How to write an equation with the align environment with the amsmath package is described in .
All the pre-defined mathematical symbols from the \TeX\ package are listed below. More symbols are available from extra packages.
Relation Symbols
{\displaystyle &\,}
{\displaystyle &\,}
{\displaystyle =\,}
{\displaystyle \parallel \,}
{\displaystyle \nparallel \,}
\nparallel
{\displaystyle \leq \,}
{\displaystyle \geq \,}
{\displaystyle \doteq \,}
{\displaystyle \asymp \,}
{\displaystyle \bowtie \,}
{\displaystyle \ll \,}
≫> -->
{\displaystyle \gg \,}
{\displaystyle \equiv \,}
{\displaystyle \vdash \,}
{\displaystyle \dashv \,}
{\displaystyle \subset \,}
{\displaystyle \supset \,}
{\displaystyle \approx \,}
{\displaystyle \in \,}
{\displaystyle \ni \,}
{\displaystyle \subseteq \,}
{\displaystyle \supseteq \,}
{\displaystyle \cong \,}
{\displaystyle \smile \,}
{\displaystyle \frown \,}
{\displaystyle \nsubseteq \,}
\nsubseteq
{\displaystyle \nsupseteq \,}
\nsupseteq
{\displaystyle \simeq \,}
{\displaystyle \models \,}
{\displaystyle \notin \,}
{\displaystyle \sqsubset \,}
{\displaystyle \sqsupset \,}
{\displaystyle \sim \,}
{\displaystyle \perp \,}
{\displaystyle \mid \,}
{\displaystyle \sqsubseteq \,}
\sqsubseteq
{\displaystyle \sqsupseteq \,}
\sqsupseteq
{\displaystyle \propto \,}
{\displaystyle \prec \,}
{\displaystyle \succ \,}
{\displaystyle \preceq \,}
{\displaystyle \succeq \,}
{\displaystyle \neq \,}
{\displaystyle \sphericalangle \,}
\sphericalangle
{\displaystyle \measuredangle \,}
\measuredangle
Binary Operations
{\displaystyle \pm \,}
{\displaystyle \cap \,}
{\displaystyle \diamond \,}
{\displaystyle \oplus \,}
{\displaystyle \mp \,}
{\displaystyle \cup \,}
{\displaystyle \bigtriangleup \,}
\bigtriangleup
{\displaystyle \ominus \,}
{\displaystyle \times \,}
{\displaystyle \uplus \,}
{\displaystyle \bigtriangledown \,}
\bigtriangledown
{\displaystyle \otimes \,}
{\displaystyle \div \,}
{\displaystyle \sqcap \,}
{\displaystyle \triangleleft \,}
\triangleleft
{\displaystyle \oslash \,}
{\displaystyle \ast \,}
{\displaystyle \sqcup \,}
{\displaystyle \triangleright \,}
\triangleright
{\displaystyle \odot \,}
{\displaystyle \star \,}
{\displaystyle \vee \,}
{\displaystyle \bigcirc \,}
{\displaystyle \circ \,}
{\displaystyle \dagger \,}
{\displaystyle \wedge \,}
{\displaystyle \bullet \,}
{\displaystyle \setminus \,}
{\displaystyle \ddagger \,}
{\displaystyle \cdot \,}
{\displaystyle \wr \,}
{\displaystyle \amalg \,}
Set and/or Logic Notation
{\displaystyle \exists \,}
{\displaystyle \rightarrow \,}
\rightarrow or \to
{\displaystyle \nexists \,}
{\displaystyle \leftarrow \,}
\leftarrow or \gets
{\displaystyle \forall \,}
{\displaystyle \mapsto \,}
{\displaystyle \neg \,}
{\displaystyle \implies \,}
{\displaystyle \subset \,}
{\displaystyle \Rightarrow \,}
\Rightarrow or \implies
{\displaystyle \supset \,}
{\displaystyle \leftrightarrow \,}
\leftrightarrow
{\displaystyle \in }
{\displaystyle \iff \,}
{\displaystyle \notin \,}
{\displaystyle \Leftrightarrow \,}
\Leftrightarrow (preferred for equivalence (iff))
{\displaystyle \ni \,}
{\displaystyle \top \,}
{\displaystyle \land \,}
{\displaystyle \bot \,}
{\displaystyle \lor \,}
{\displaystyle \emptyset \,}
{\displaystyle \varnothing \,}
\emptyset and \varnothing
Delimiters
{\displaystyle |\,}
| or \mid (difference in spacing)
{\displaystyle \|\,}
{\displaystyle /\,}
{\displaystyle \backslash \,}
\backslash
{\displaystyle \{\,}
{\displaystyle \}\,}
{\displaystyle \langle \,}
{\displaystyle \rangle \,}
{\displaystyle \uparrow \,}
{\displaystyle \Uparrow \,}
{\displaystyle \lceil \,}
{\displaystyle \rceil \,}
{\displaystyle \downarrow \,}
\downarrow
{\displaystyle \Downarrow \,}
\Downarrow
{\displaystyle \lfloor \,}
{\displaystyle \rfloor \,}
Note: To use the Greek Letters in LaTeX that have the same appearance as their Roman equivalent, just use the Roman form: e.g., A instead of Alpha, B instead of Beta, etc.
Greek Letters
{\displaystyle \mathrm {A} \,}
{\displaystyle \alpha \,}
A and \alpha
{\displaystyle \mathrm {N} \,}
{\displaystyle \nu \,}
{\displaystyle \mathrm {B} \,}
{\displaystyle \beta \,}
B and \beta
{\displaystyle \Xi \,}
{\displaystyle \xi \,}
\Xi and \xi
{\displaystyle \Gamma \,}
{\displaystyle \gamma \,}
\Gamma and \gamma
{\displaystyle \mathrm {O} \,}
{\displaystyle \mathrm {o} \,}
{\displaystyle \Delta \,}
{\displaystyle \delta \,}
\Delta and \delta
{\displaystyle \Pi \,}
{\displaystyle \pi \,}
{\displaystyle \varpi }
\Pi, \pi and \varpi
{\displaystyle \mathrm {E} \,}
{\displaystyle \epsilon \,}
{\displaystyle \varepsilon \,}
E, \epsilon and \varepsilon
{\displaystyle \mathrm {P} \,}
{\displaystyle \rho \,}
{\displaystyle \varrho \,}
P, \rho and \varrho
{\displaystyle \mathrm {Z} \,}
{\displaystyle \zeta \,}
Z and \zeta
{\displaystyle \Sigma \,}
{\displaystyle \sigma \,}
{\displaystyle \varsigma \,}
\Sigma, \sigma and \varsigma
{\displaystyle \mathrm {H} \,}
{\displaystyle \eta \,}
H and \eta
{\displaystyle \mathrm {T} \,}
{\displaystyle \tau \,}
T and \tau
{\displaystyle \Theta \,}
{\displaystyle \theta \,}
{\displaystyle \vartheta \,}
\Theta, \theta and \vartheta
{\displaystyle \Upsilon \,}
{\displaystyle \upsilon \,}
\Upsilon and \upsilon
{\displaystyle \mathrm {I} \,}
{\displaystyle \iota \,}
I and \iota
{\displaystyle \Phi \,}
{\displaystyle \phi \,}
{\displaystyle \varphi \,}
\Phi, \phi and \varphi
{\displaystyle \mathrm {K} \,}
{\displaystyle \kappa \,}
{\displaystyle \varkappa \,}
K, \kappa and \varkappa
{\displaystyle \mathrm {X} \,}
{\displaystyle \chi \,}
X and \chi
{\displaystyle \Lambda \,}
{\displaystyle \lambda \,}
\Lambda and \lambda
{\displaystyle \Psi \,}
{\displaystyle \psi \,}
\Psi and \psi
{\displaystyle \mathrm {M} \,}
{\displaystyle \mu \,}
{\displaystyle \Omega \,}
{\displaystyle \omega \,}
\Omega and \omega
Other symbols
{\displaystyle \partial \,}
{\displaystyle \imath \,}
{\displaystyle \Re \,}
{\displaystyle \nabla \,}
{\displaystyle \aleph \,}
{\displaystyle \eth \,}
{\displaystyle \jmath \,}
{\displaystyle \Im \,}
{\displaystyle \Box \,}
{\displaystyle \beth \,}
{\displaystyle \hbar \,}
{\displaystyle \ell \,}
{\displaystyle \wp \,}
{\displaystyle \infty \,}
{\displaystyle \gimel \,}
*Not predefined in LATEX 2. Use one of the packages latexsym, amsfonts, amssymb, txfonts, pxfonts, or wasysym
Trigonometric Functions
{\displaystyle \sin \,}
{\displaystyle \arcsin \,}
{\displaystyle \sinh \,}
{\displaystyle \sec \,}
{\displaystyle \cos \,}
{\displaystyle \arccos \,}
{\displaystyle \cosh \,}
{\displaystyle \csc \,}
{\displaystyle \tan \,}
{\displaystyle \arctan \,}
{\displaystyle \tanh \,}
{\displaystyle \cot \,}
{\displaystyle \operatorname {arccot} \,}
{\displaystyle \coth \,}
If LaTeX does not include a command for the mathematical operator you want to use, for example \cis (cosine plus i times sine), add to your preamble:
\DeclareMathOperator\cis{cis}
You can then use \cis in the document just like \cos or any other mathematical operator.
As you begin to see, typesetting math can be tricky at times. However, because LaTeX provides so much control, you can get professional quality mathematics typesetting with relatively little effort (once you've had a bit of practice, of course!). It would be possible to keep going and going with math topics because it seems potentially limitless. However, with this tutorial, you should be able to get along sufficiently.
introduce symbols from
add symbols from
consider adding symbols from
-- the list of nearly all symbols available for LaTeX
Consider, instead of using the symbols from the above mentioned, using what has already been introduced in
instead of retyping the tables
How to box an equation within an align environment
Color in equations
requires the amsmath package
requires the mathtools package
: Wikimedia uses a subset of LaTeX commands.
: applet for looking up LaTeX symbols by drawing them}

我要回帖

更多关于 artstion 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信