Difference between revisions of "Help:Math"

(Fonts)
(Formatting)
Line 1: Line 1:
 
{{shortcut|[[A:MATH]]}}
 
{{shortcut|[[A:MATH]]}}
  
Math can be written in the wiki in the form of '''LaTeX''', a typesetting language used primarily to type mathematical expressions in an elegant fashion. For example, without LaTeX, <math>\frac{35}{137}</math> would have to be written as 35/137.  To use LaTeX in the forums, enclose your LaTeX code with dollar signs: <tt>$your codes here$</tt>. You can also use double dollar signs or other normal <math>\LaTeX</math> indicators: <tt>$$your codes here$$</tt> or <tt><nowiki>\[</nowiki>your codes here<nowiki>\]</nowiki></tt>. (There are also deprecated [tex] tags, but let's not get into that) To use LaTeX on AoPSWiki, you can enclose the code with dollar signs as in the forum, or you can also enclose your code with math tags, like so: <tt><nowiki>$your codes here$</nowiki></tt>.
+
'''Math''' can be written in the wiki in the form of '''[[LaTeX]]''', a typesetting language used primarily to type mathematical expressions in an elegant fashion. For example, without LaTeX, <math>\frac{35}{137}</math> would have to be written as 35/137.  To use LaTeX in the forums, enclose your LaTeX code with dollar signs: <tt>$your codes here$</tt>. You can also use double dollar signs or other normal <math>\LaTeX</math> indicators: <tt>$$your codes here$$</tt> or <tt><nowiki>\[</nowiki>your codes here<nowiki>\]</nowiki></tt>. (There are also deprecated [tex] tags, but let's not get into that) To use LaTeX on AoPS Wiki, you can enclose the code with dollar signs as in the forum, or you can also enclose your code with math tags, like so: <tt><nowiki>$your codes here$</nowiki></tt>. Note that <tt><nowiki></nowiki></tt> can be used instead of <tt><nowiki>$ $</nowiki></tt>, and <tt><nowiki>\[ \]</nowiki></tt> instead of <tt><nowiki>$$ $$</nowiki></tt>. However, on the AoPS Wiki, dollar signs are preferred because they change into the tags <nowiki>$ and $$</nowiki>.
  
==Useful Codes==
+
== Useful Codes ==
  
'''\boxed{Answer}'''  produces a box around your answer.  
+
See [[LaTeX:Symbols]] for a more complete list.
 +
* '''\boxed{''answer''}'''  produces a box around your answer. <math>\boxed{answer}</math>
 +
* '''\frac{a}{b}''' produces a [[fraction]] with [[numerator]] <math>a</math> and [[denominator]] <math>b</math>.  <math>\frac{a}{b}</math>
 +
* '''^\circ''' produces the degrees symbol.  <math>a^{\circ}</math>
 +
* '''\text{text}''' produces text within LaTeX.  <math>\mbox{text}</math>.
 +
* '''\sqrt{x}''' produces the square root of <math>x</math>.  <math>\sqrt{x}</math>
 +
* '''\sqrt[n]{x}''' produces the <math>n</math>th root of <math>x</math>.  <math>\sqrt[n]{x}</math>
 +
* '''a\equiv b \pmod{c}''' produces <math>a</math> is equivalent to <math>b</math> mod <math>c</math>.  <math>a\equiv b \pmod{c}</math> See [[Modular Arithmetic]]
 +
* '''\binom{9}{3}''' produces 9 choose 3.
 +
* '''x^{y}''' produces x to the power of y.  <math>x^y</math>
 +
* '''x_{y}''' produces x with y in subscript.  <math>x_y</math>
 +
* '''\implies''' produces the [[implication]] symbol. <math>\implies</math>
 +
* '''\iff''' produces a [[biconditional]] symbol. <math>\iff</math>
 +
* '''\rightarrow''' produces an arrow to the right.  <math>\rightarrow</math>
 +
* '''\leftarrow''' produces an arrow to the left. <math>\leftarrow</math>
 +
* '''\uparrow''' produces an arrow pointing upwards. <math>\uparrow</math>
 +
* '''\downarrow''' produces an arrow pointing downwards. <math>\downarrow</math>
 +
* '''\updownarrow''' produces an arrow pointing up and down. <math>\updownarrow</math>
 +
* '''\not ''A''''' produces a slash through the character following it. this is helpful for making symbols such as <math>\not =</math> and <math>\not\ge</math>. <math>\not A</math>
 +
* '''\ge''' produces a not greater than or equal to sign. <math>\ge</math>
 +
* '''\le''' produces a not less than or equal to sign. <math>\le</math>
 +
* '''\neq''' produces a not equal to sign. Alternatively, you can use \not=. <math>\neq</math>
 +
* '''\infty''' produces an infinity sign.
 +
* '''\perp''' produces a perpendicular sign. <math>\perp</math>
 +
* '''\angle''' produces an angle sign. <math>\angle</math>
 +
* '''\triangle''' produces a triangle. <math>\triangle</math>
 +
* '''\ldots''' produces three dots at the bottom of a line (ellipsis). <math>\ldots</math>
 +
* '''\cdots''' produces three dots in the middle of a line (as in a series sum or product). <math>\cdots</math>
 +
* '''\cdot''' produces the multiplication symbol <math>\cdot</math>.
  
'''\frac{a}{b}''' produces a [[fraction]] with [[numerator]] <math>a</math> and [[denominator]] <math>b</math>.  <math>\frac{a}{b}</math>
+
On AoPS Wiki, <math>\text\LaTeX</math> is in display mode by default, so there's no difference between <tt>\frac{}{}</tt> and <tt>\dfrac{}{}</tt>, for example.
 +
Also note that you do not have to use braces, "{" and "}", when you only want one character in the operation. For example,
 +
* x^y is the same as x^{y}.  <math>x^y</math>,
 +
* x_y is the same as x_{y}.  <math>x_y</math>,
 +
* '''but''' x^10 (<math>x^10</math>) is ''not'' the same as x^{10} (<math>x^{10}</math>).
  
'''^\circ''' produces the degrees symbol.  <math>a^{\circ}</math>
+
== Fonts ==
  
'''\text{Your Text Here}''' produces text within LaTeX.  <math>\mbox{Your Text Here}</math>.
 
 
'''\sqrt{x}''' produces the square root of <math>x</math>.  <math>\sqrt{x}</math>
 
 
'''\sqrt[n]{x}''' produces the <math>n</math>th root of <math>x</math>.  <math>\sqrt[n]{x}</math>
 
 
'''a\equiv b \pmod{c}''' produces <math>a</math> is equivalent to <math>b</math> mod <math>c</math>.  <math>a\equiv b \pmod{c}</math> See [[Mods |Modular Arithmetic]]
 
 
'''\binom{9}{3}''' produces 9 choose 3.
 
 
'''x^{y}''' produces x to the power of y.  <math>x^y</math>
 
 
'''x_{y}''' produces x with y in subscript.  <math>x_y</math>
 
 
'''\rightarrow''' produces an arrow to the right.  <math>\rightarrow</math>
 
 
'''\leftarrow''' produces an arrow to the left. <math>\leftarrow</math>
 
 
'''\uparrow''' produces an arrow pointing upwards. <math>\uparrow</math>
 
 
'''\downarrow''' produces an arrow pointing downwards. <math>\downarrow</math>
 
 
'''\updownarrow''' produces an arrow pointing up and down. <math>\updownarrow</math>
 
 
'''\ge''' produces a greater than or equal to sign. <math>\ge</math>
 
 
'''\le''' produces a less than or equal to sign. <math>\le</math>
 
 
'''\not>''' produces a not greater than sign. <math>\not></math>
 
 
'''\not<''' produces a not less than sign. <math>\not<</math>
 
 
'''\not\ge''' produces a not greater than or equal to sign. <math>\not\ge</math>
 
 
'''\not\le''' produces a not less than or equal to sign. <math>\not\le</math>
 
 
'''\neq''' produces a not equal to sign. <math>\neq</math>
 
 
'''\inf''' produces an infinity sign.
 
 
'''\perp''' produces a perpendicular sign. <math>\perp</math>
 
 
'''\angle''' produces an angle sign. <math>\angle</math>
 
 
'''\triangle''' produces a triangle. <math>\triangle</math>
 
 
'''\ldots''' produces three dots at the bottom of a line (ellipsis). <math>\ldots</math>
 
 
'''\cdots''' produces three dots in the middle of a line (as in a series sum or product). <math>\cdots</math>
 
 
'''\times''' produces an <math>\times</math> as used in multiplication
 
 
'''\otimes''' produces a <math>\otimes</math>
 
 
On AoPSWiki, <math>\text\LaTeX</math> is in display mode by default, so there's no difference between <tt>\frac{}{}</tt> and <tt>\dfrac{}{}</tt>, for example.
 
Also note that you do not have to use braces, "{" and "}", when you only want one character in the operation.
 
 
===Examples===
 
* x^y is the same as x^{y}.  <math>x^y</math>
 
* x_y is the same as x_{y}.  <math>x_y</math>
 
* BUT x^10 is ''not'' the same as x^{10}.  <math>x^10</math> instead of <math>x^{10}</math>.
 
 
==Fonts==
 
 
Note: Using things in the Font families or font styles sections behaves similarly to \text (they get out of math mode), and also switches the style. Font sizes only work in \text{...} or things like \textsf{...}.
 
Note: Using things in the Font families or font styles sections behaves similarly to \text (they get out of math mode), and also switches the style. Font sizes only work in \text{...} or things like \textsf{...}.
  
Line 106: Line 75:
 
* Emphasis \emph{...}
 
* Emphasis \emph{...}
  
==Tutorials & Tools ==
+
== See Also ==
 
 
*[http://www.artofproblemsolving.com/LaTeX/AoPS_L_About.php AoPS LaTeX Guide]
 
*[http://www.artofproblemsolving.com/LaTeX/AoPS_L_HelpIndex.php AoPS LaTeX Help Index]
 
*[http://en.wikipedia.org/wiki/LaTeX Wikipedia Article]
 
*[http://sciencesoft.at/index.jsp?link=latex&lang=en&wiki=1 This] is a useful site that will change LaTeX input into a PNG image.
 
  
 +
* [[LaTeX]]
 +
* [[LaTeX on AoPS|AoPS LaTeX Guide]]
 +
* [//sciencesoft.at/index.jsp?link=latex&lang=en&wiki=1 This] is a useful site that will change LaTeX input into a PNG image.
  
 
{{tutorial}}
 
{{tutorial}}

Revision as of 08:30, 19 March 2025

Shortcut:

Math can be written in the wiki in the form of LaTeX, a typesetting language used primarily to type mathematical expressions in an elegant fashion. For example, without LaTeX, $\frac{35}{137}$ would have to be written as 35/137. To use LaTeX in the forums, enclose your LaTeX code with dollar signs: $your codes here$. You can also use double dollar signs or other normal $\LaTeX$ indicators: $$your codes here$$ or \[your codes here\]. (There are also deprecated [tex] tags, but let's not get into that) To use LaTeX on AoPS Wiki, you can enclose the code with dollar signs as in the forum, or you can also enclose your code with math tags, like so: $your codes here$. Note that can be used instead of $ $, and \[ \] instead of $$ $$. However, on the AoPS Wiki, dollar signs are preferred because they change into the tags $ and $$.

Useful Codes

See LaTeX:Symbols for a more complete list.

  • \boxed{answer} produces a box around your answer. $\boxed{answer}$
  • \frac{a}{b} produces a fraction with numerator $a$ and denominator $b$. $\frac{a}{b}$
  • ^\circ produces the degrees symbol. $a^{\circ}$
  • \text{text} produces text within LaTeX. $\mbox{text}$.
  • \sqrt{x} produces the square root of $x$. $\sqrt{x}$
  • \sqrt[n]{x} produces the $n$th root of $x$. $\sqrt[n]{x}$
  • a\equiv b \pmod{c} produces $a$ is equivalent to $b$ mod $c$. $a\equiv b \pmod{c}$ See Modular Arithmetic
  • \binom{9}{3} produces 9 choose 3.
  • x^{y} produces x to the power of y. $x^y$
  • x_{y} produces x with y in subscript. $x_y$
  • \implies produces the implication symbol. $\implies$
  • \iff produces a biconditional symbol. $\iff$
  • \rightarrow produces an arrow to the right. $\rightarrow$
  • \leftarrow produces an arrow to the left. $\leftarrow$
  • \uparrow produces an arrow pointing upwards. $\uparrow$
  • \downarrow produces an arrow pointing downwards. $\downarrow$
  • \updownarrow produces an arrow pointing up and down. $\updownarrow$
  • \not A produces a slash through the character following it. this is helpful for making symbols such as $\not =$ and $\not\ge$. $\not A$
  • \ge produces a not greater than or equal to sign. $\ge$
  • \le produces a not less than or equal to sign. $\le$
  • \neq produces a not equal to sign. Alternatively, you can use \not=. $\neq$
  • \infty produces an infinity sign.
  • \perp produces a perpendicular sign. $\perp$
  • \angle produces an angle sign. $\angle$
  • \triangle produces a triangle. $\triangle$
  • \ldots produces three dots at the bottom of a line (ellipsis). $\ldots$
  • \cdots produces three dots in the middle of a line (as in a series sum or product). $\cdots$
  • \cdot produces the multiplication symbol $\cdot$.

On AoPS Wiki, $\text\LaTeX$ is in display mode by default, so there's no difference between \frac{}{} and \dfrac{}{}, for example. Also note that you do not have to use braces, "{" and "}", when you only want one character in the operation. For example,

  • x^y is the same as x^{y}. $x^y$,
  • x_y is the same as x_{y}. $x_y$,
  • but x^10 ($x^10$) is not the same as x^{10} ($x^{10}$).

Fonts

Note: Using things in the Font families or font styles sections behaves similarly to \text (they get out of math mode), and also switches the style. Font sizes only work in \text{...} or things like \textsf{...}.

Font families

  • Roman (default): \textrm{...}
  • Sans-serif: \textsf{...}

Font sizes

To activate a font size, write '{<sizecommand> text that applies}', as in '{\tiny this is so tiny}'.

  • \tiny (5 pt.)
  • \scriptsize (7 pt.)
  • \footnotesize (8 pt.)
  • \small (9 pt.)
  • \normalsize (10 pt.)
  • \large (12 pt.)
  • \Large (14 pt.)
  • \LARGE (18 pt.)
  • \huge (20 pt.)
  • \Huge (24 pt.)

Font styles

  • Bold \textbf{...}
  • Italics \textit{...}
  • Slanted \textsl{...}
  • Small capitals \textsc{...}
  • Sans-serif \textsf{...}
  • Monospace \texttt{...}
  • Emphasis \emph{...}

See Also

This article is a tutorial about the AoPSWiki or AoPS Forum.