Community Central
Community Central
(help page cleanup)
m (Forgot to put 'Yardım:'.)
Tag: Help
(38 intermediate revisions by 25 users not shown)
Line 1: Line 1:
  +
'''Math formulas''' can be displayed on articles using the '''<code><nowiki><math></nowiki></code>''' tag.
#REDIRECT [[Help:Contents]]
 
  +
  +
For the technically inclined, MediaWiki (which is used by Fandom wikis) uses a subset of AMS-LaTeX markup, a superset of LaTeX markup which is in turn a superset of TeX markup, for mathematical formulas.
  +
  +
== Step by step ==
  +
* Open [[Help:Editing|source editing mode]] for an article.
  +
* Write your math code in the following format: <code><nowiki><math>math to be displayed</math></nowiki></code>.
  +
* For example, the equation '3 x 2 = 6' can be displayed using:
  +
*:<code><nowiki><math>{3 ~ \times ~ 2 ~ = ~ 6}</math></nowiki></code>
  +
* Which generates this:
  +
*:<math>{3 ~ \times ~ 2 ~ = ~ 6}</math>
  +
* For details on how to write the math formulas themselves, see [[wikipedia:Help:Displaying a formula|Help:Displaying a formula, on Wikipedia]].
  +
  +
== Notes ==
  +
* Large formulas may become wider than the maximum page width. Consider breaking them into multiple lines when possible.
  +
** Another solution is to place the formula inside a simple div with "overflow-x:scroll" set, so that a scrollbar show up. For example:
  +
  +
<pre style="margin-left:6em;">
  +
<div style="overflow-x:scroll;">
  +
<math> ... </math>
  +
</div>
  +
</pre>
  +
  +
* In-line formulas can have poor vertical alignment relative to the rest of the text. A work-around is described [[wikipedia:Help:Displaying a formula#Alignment with normal text flow|on Wikipedia]].
  +
  +
== See also ==
  +
* [[Help:Editing|Help on editing]]
  +
* [[Help:Tables|Help on tables]]
  +
* [[Wikipedia:Help:Displaying a formula|Wikipedia's math documentation]]
  +
  +
== Further help and feedback ==
  +
{{Help and feedback section}}[[de:Hilfe:Mathematik]]
  +
[[es:Ayuda:Matemáticas]]
  +
[[fr:Aide:Math]]
  +
[[ja:ヘルプ:数式]]
  +
[[pt:Ajuda:Matemática]]
  +
[[ru:Справка:Math]]
  +
[[tr:Yardım:Matematik]]
  +
[[uk:Довідка:Math]]
  +
[[vi:Trợ giúp:Toán học]]
  +
[[zh:Help:數學公式]]
  +
[[Category:Editing]]
  +
[[Category:Source editing]]
  +
[[Category:Help]]

Revision as of 13:44, 9 December 2019

Math formulas can be displayed on articles using the <math> tag.

For the technically inclined, MediaWiki (which is used by Fandom wikis) uses a subset of AMS-LaTeX markup, a superset of LaTeX markup which is in turn a superset of TeX markup, for mathematical formulas.

Step by step

  • Open source editing mode for an article.
  • Write your math code in the following format: <math>math to be displayed</math>.
  • For example, the equation '3 x 2 = 6' can be displayed using:
    <math>{3 ~ \times ~ 2 ~ = ~ 6}</math>
  • Which generates this:
  • For details on how to write the math formulas themselves, see Help:Displaying a formula, on Wikipedia.

Notes

  • Large formulas may become wider than the maximum page width. Consider breaking them into multiple lines when possible.
    • Another solution is to place the formula inside a simple div with "overflow-x:scroll" set, so that a scrollbar show up. For example:
<div style="overflow-x:scroll;">
<math> ... </math>
</div>
  • In-line formulas can have poor vertical alignment relative to the rest of the text. A work-around is described on Wikipedia.

See also

Further help and feedback