by nutomic
--- original +++ modified @@ -2,34 +2,37 @@ Additionally, Ibis supports the following syntax: -### Footnotes - -Here is a footnote reference,[^1] and another.[^longnote] - -Here is an inline note.^[my note is here!] - -[^1]: Here is the footnote. - -[^longnote]: Here's one with multiple blocks. - -### Subscript - -log~2~(a) - -### Superscript - -Markdown^TM^ - -### Link to Articles +| Name | Write this... | to get this | +|----------|----------------|---------------| +| Link to Ibis article | `[[Main_Page@ibis.wiki]]` | [[Main_Page@ibis.wiki]] | +| Subscript | `log~2~(a)` | log~2~(a) | +| Superscript | `Markdown^TM^` | Markdown^TM^ | +| Inline LaTeX | `$$\vec E$$` | $$\vec E$$ | +| Inline Footnote | `Inline inline note.^[my note is here!]` | Inline inline note.^[my note is here!] | -[[Main_Page@ibis.wiki]] +### Block LaTeX -### Mathematics using LaTeX +``` +$$ +\oint_S \vec E \cdot \mathrm d\vec A = \frac{1}{\epsilon_0}Q +$$ +``` -$$\vec E$$ +becomes: $$ \oint_S \vec E \cdot \mathrm d\vec A = \frac{1}{\epsilon_0}Q $$ +### Footnotes with reference + +``` +Footnote[^my_note] +[^my_note]: Here is the footnote. +``` +becomes: + +Footnote[^my_note] + +[^my_note]: Here is the footnote.