Add missing file into git.
This commit is contained in:
parent
2e965941ed
commit
099ce69b04
37
test/latex-math.txt
Normal file
37
test/latex-math.txt
Normal file
@ -0,0 +1,37 @@
|
||||
|
||||
# LaTeX Math
|
||||
|
||||
With the flag `MD_FLAG_LATEXMATHSPANS`, MD4C enables extension for recognition
|
||||
of LaTeX style math spans.
|
||||
|
||||
A math span is is any text wrapped in dollars or double dollars (`$...$` or
|
||||
`$$...$$`).
|
||||
|
||||
```````````````````````````````` example
|
||||
$a+b=c$ Hello, world!
|
||||
.
|
||||
<p><equation>a+b=c</equation> Hello, world!</p>
|
||||
````````````````````````````````
|
||||
|
||||
If the double dollar sign is used, the math span is a display math span.
|
||||
|
||||
```````````````````````````````` example
|
||||
This is a display equation: $$\int_a^b x dx$$.
|
||||
.
|
||||
<p>This is a display equation: <equation type="display">\int_a^b x dx</equation>.</p>
|
||||
````````````````````````````````
|
||||
|
||||
Math spans may span multiple lines as they are normal spans.
|
||||
|
||||
```````````````````````````````` example
|
||||
$$
|
||||
\int_a^b f(x) dx
|
||||
$$
|
||||
<p><equation type="display">\int_a^b f(x) dx </equation></p>
|
||||
````````````````````````````````
|
||||
|
||||
Note though that many (simple) renderers may output the math spans just as a
|
||||
verbatim text. (This includes the HTML renderer used by the `md2html` utility.)
|
||||
|
||||
Only advanced renderers which implement LaTeX math syntax can be expected to
|
||||
provide better results.
|
Loading…
Reference in New Issue
Block a user