Wikitext: Difference between revisions

No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 3: Line 3:
Inline code can by represented with <nowiki><code></code></nowiki><br>
Inline code can by represented with <nowiki><code></code></nowiki><br>
Code blocks should be like:
Code blocks should be like:
<pre>
<pre>
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
Line 10: Line 11:


==Math==
==Math==
Math is written in standard latex syntax inside of <nowiki><math></math></nowiki>.
Math is written in standard latex syntax inside of <nowiki><math></math></nowiki>.
I use a modified version of SimpleMathJax: https://github.com/dli7319/SimpleMathJax3.
 
* Beware: Do not use <code>||</code>, use <code>\Vert</code> instead.
* Beware: Do not use <code>||</code>, use <code>\Vert</code> instead.
* The attribute <code>display</code> can be used to control the rendering style. See [[Mediawikiwiki: Extension:Math/Displaystyle]].
** <code>display="inline"</code> renders inline math inline.
** <code>display="block"</code> renders display math which separate and centered.
** Omitting display will render display math inline.


==Images==
==Images==
See [[Mediawiki: Help:Images]].
See [[Mediawikiwiki: Help:Images]].


==Line Breaks==
==Line Breaks==
Line 28: Line 35:
They should be centralized somewhere else such as in a references section.
They should be centralized somewhere else such as in a references section.
Instead you can use [[Wikipedia: Help:Footnotes#List-defined_references]].
Instead you can use [[Wikipedia: Help:Footnotes#List-defined_references]].
<syntaxhighlight lang="xml">
{{reflist|refs=
<ref name="name1">Content</ref>
<ref name="name2">Content</ref>
<ref name="name...n">Content</ref>
}}
</syntaxhighlight>