Help:Formula
Hello, Formula, and welcome to Wikipedia. Thank you for your contributions; I hope you like the place and decide to stay!
Please read The Five Pillars of Wikipedia to help you get to know this place, and you might want to look at What Wikipedia is not to see what is and isn't suitable for Wikipedia.
And remember, don't submit copyrighted work without permission. By submitting your work, you promise you wrote it yourself or copied it from public domain resources — this does not include most web pages.
I hope you enjoy editing here and being a Wikipedian! By the way, please be sure to sign your name on Talk pages using four tildes (~~~~) to produce your name and the current date. If you have any questions, see the help pages or ask a question. Again, welcome! - Other languages: , , , , , , ,
TeX
MediaWiki uses TeX markup for mathematical formulae. It generates either PNG images or simple HTML markup, depending on user preferences and the complexity of the expression. In the future, as more browsers are smarter, it will be able to generate enhanced HTML or even MathML in many cases.
Math markup goes inside <math> ... </math>. Line breaks within these tags are fine, and aren't rendered. They're a good idea to keep the raw markup clear (for instance, a line break after each term or row of a matrix).
The PNG images are black on white (not transparent). These colors, as well as font sizes and types, are independent of browser settings or css. Font sizes and types will often deviate from what HTML renders. The css selector of the images is img.tex.
In the case of a non-white page background, the white background of the formula effectively highlights it, which can be an advantage or a disadvantage.
One may want to avoid using TeX markup as part of a line of regular text, as the formulae don't align properly and the font size, as said, usually does not match.
The alt attribute of the TeX images (the text that shows up in the hover box) is the wikitext that produced them, excluding the <math> and </math>.
Discussion, bug reports and feature requests should go to the Wikitech-l mailing list. These can also be filed on Mediazilla under MediaWiki extensions.
Functions, symbols, special characters
(see also Help:Special characters)
Feature | Syntax | How it looks rendered |
---|---|---|
std. functions (good) | \sin x + \ln y +\operatorname{sgn} z | |
std. functions (wrong) | sin x + ln y + sgn z | |
Modular arithm. | s_k \equiv 0 \pmod{m} | |
Derivatives | \nabla \partial x dx \dot x \ddot y | |
Sets | \forall x \not\in \varnothing \subseteq A \cap \bigcap B \cup \bigcup \exists \{x,y\} \times C | |
Logic | p \land \bar{q} \to p\lor \lnot q | |
Root | \sqrt{2}\approx 1.4 | |
\sqrt[n]{x} | ||
Relations | \sim \simeq \cong \le \ge \equiv \not\equiv \approx \ne \propto | |
Geometric | \triangle \angle \perp \| 45^\circ | |
Arrows |
\leftarrow \rightarrow \leftrightarrow |
|
\Leftarrow \Rightarrow \Leftrightarrow |
|
|
Special | \oplus \otimes \pm \mp \hbar \wr \dagger \ddagger \star * \ldots \circ \cdot \times \bullet \infty \vdash \models | |
Lowercase \mathcal has some extras | \mathcal {45abcdenpqstuvwx} |
Subscripts, superscripts, integrals
Feature | Syntax | How it looks rendered | |
---|---|---|---|
Superscript | a^2 | ||
Subscript | a_2 | ||
Grouping | a^{2+2} | ||
a_{i,j} | |||
Combining sub & super | x_2^3 | ||
Derivative (good) | x' | ||
Derivative (wrong in HTML) | x^\prime | ||
Derivative (wrong in PNG) | x\prime | ||
Derivative dots | \dot{x}, \ddot{x} | ||
Underlines & overlines | \hat a \bar b \vec c \widehat {d e f} \overline {g h i} \underline {j k l} | ||
Sum | \sum_{k=1}^N k^2 | ||
Product | \prod_{i=1}^N x_i | ||
Limit | \lim_{n \to \infty}x_n | ||
Integral | \int_{-N}^{N} e^x\, dx | ||
Line Integral | \oint_{C} x^3\, dx + 4y^2\, dy |
Fractions, matrices, multilines
Feature | Syntax | How it looks rendered | ||||
---|---|---|---|---|---|---|
Fractions | \frac{2}{4} or {2 \over 4} | |||||
Binomial coefficients | {n \choose k} | |||||
Small Fractions | \begin{matrix} \frac{2}{4} \end{matrix} | |||||
Matrices | \begin{matrix} x & y \\ z & v \end{matrix} | |||||
\begin{vmatrix} x & y \\ z & v \end{vmatrix} | ||||||
\begin{Vmatrix} x & y \\ z & v \end{Vmatrix} | ||||||
\begin{bmatrix} 0 & \cdots & 0 \\ \vdots &
\ddots & \vdots \\ 0 & \cdots & 0\end{bmatrix} |
||||||
\begin{Bmatrix} x & y \\ z & v \end{Bmatrix} | ||||||
\begin{pmatrix} x & y \\ z & v \end{pmatrix} | ||||||
Case distinctions | f(n) = \begin{cases} n/2, & \mbox{if }n\mbox{ is even} \\ 3n+1, & \mbox{if }n\mbox{ is odd} \end{cases} | |||||
Multiline equations | \begin{matrix}f(n+1) & = & (n+1)^2 \\ \ & = & n^2 + 2n + 1 \end{matrix} | |||||
Alternative multiline equations (using tables) | {| |- |<math>f(n+1)</math> |<math>=(n+1)^2</math> |- | |<math>=n^2 + 2n + 1</math> |} |
|
Fonts
Feature | Syntax | How it looks rendered | |
---|---|---|---|
Greek letters | \alpha \beta \gamma \Gamma \phi \Phi \Psi\ \tau \Omega | ||
Blackboard bold | x\in\mathbb{R}\sub\mathbb{C} | ||
boldface (vectors) | \mathbf{x}\cdot\mathbf{y} = 0 | ||
boldface (greek) | \boldsymbol{\alpha} + \boldsymbol{\beta} + \boldsymbol{\gamma} | ||
Fraktur typeface | \mathfrak{a} \mathfrak{B} | ||
Script | \mathcal{ABC} | ||
Hebrew | \aleph \beth \gimel \daleth | ||
non-italicised characters | \mbox{abc} | ||
mixed italics (bad) | \mbox{if} n \mbox{is even} | ||
mixed italics (good) | \mbox{if }n\mbox{ is even} |
Parenthesizing big expressions, brackets, bars
Feature | Syntax | How it looks rendered |
---|---|---|
Not good | ( \frac{1}{2} ) | |
Better | \left ( \frac{1}{2} \right ) |
You can use various delimiters with \left and \right:
Feature | Syntax | How it looks rendered |
---|---|---|
Parentheses | \left ( A \right ) | |
Brackets | \left [ A \right ] | |
Braces | \left \{ A \right \} | |
Angle brackets | \left \langle A \right \rangle | |
Bars and double bars | \left | A \right | and \left \| B \right \| | |
Delimiters can be mixed, |
\left [ 0,1 \right ) |
|
Use \left. and \right. if you don't want a delimiter to appear: |
\left . \frac{A}{B} \right \} \to X |
Spacing
Note that TeX handles most spacing automatically, but you may sometimes want manual control.
Feature | Syntax | How it looks rendered |
---|---|---|
double quad space | a \qquad b | |
quad space | a \quad b | |
text space | a\ b | |
text space without PNG conversion | a \mbox{ } b | |
large space | a\;b | |
medium space | a\>b | [not supported] |
small space | a\,b | |
no space | ab | |
negative space | a\!b |
Align with normal text flow
If you desperately need to insert an expression like in the normal text flow, you can use a HTML <font> tag for vertical alignment:
- <font style="vertical-align:-100%;"><math>...</math></font>
Forced PNG rendering
If you must, it is possible to force the formula to render as PNG, without affecting the display of the formula, by adding \, (small space) at the end of the formula (where it is not rendered). This will force PNG if the user is in "HTML if simple" mode, but not for "HTML if possible" mode (math rendering settings in Preferences).
You can also use \,\! (small space and negative space, which cancel out) anywhere inside the math tags. This does force PNG in "HTML if possible" mode, unlike \,.
This could be useful to keep the rendering of formulae in a proof consistent, for example, or to fix formulae that render incorrectly in HTML (at one time, a^{2+2} rendered with an extra underscore), or to demonstrate how something is rendered when it would normally show up as HTML (as in the examples above).
For instance:
Syntax | How it looks rendered |
---|---|
a^{2+2} | |
a^{2+2} \, | |
a^{\,\!2+2} | |
\int_{-N}^{N} e^x\, dx | |
\int_{-N}^{N} e^x\, dx \, | |
\int_{-N}^{N} e^x\, dx \,\! |
This has been tested with most of the formulae on this page, and seems to work perfectly.
You might want to include a comment in the HTML so people don't "correct" the formula by removing it:
- <!-- The \,\! is to keep the formula rendered as PNG instead of HTML. Please don't remove it.-->
Examples
See also
- Proposed GNU LilyPond support
External Links
- A LaTeX tutorial. http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/
- A PDF document introducing TeX -- see page 39 onwards for a good introduction to the maths side of things: http://www.ctan.org/tex-archive/info/gentle/gentle.pdf
- A PDF document introducing LaTeX -- skip to page 59 for the math section. See page 72 for a complete reference list of symbols included in LaTeX and AMS-LaTeX. http://www.ctan.org/tex-archive/info/lshort/english/lshort.pdf
- TeX reference card: http://www.csit.fsu.edu/~mimi/tex/tex-refcard-letter.pdf
- Can't remember but I put it here so it must be ok ;-) http://www.ams.org/tex/amslatex.html
- A set of public domain fixed-size math symbol bitmaps: http://us.metamath.org/symbols/symbols.html