summaryrefslogtreecommitdiffstats
path: root/tests/test_renderers/fixtures/amsmath.md
blob: fe3713eafc70a7b96f793855691880876afef8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Single Line:
.
\begin{equation} a \end{equation}
.
<document source="<src>/index.md">
    <target ids="equation-mock-uuid">
    <math_block classes="amsmath" docname="index" label="mock-uuid" nowrap="True" number="1" xml:space="preserve">
        \begin{equation} a \end{equation}
.

Multi Line:
.
\begin{equation}
a
\end{equation}
.
<document source="<src>/index.md">
    <target ids="equation-mock-uuid">
    <math_block classes="amsmath" docname="index" label="mock-uuid" nowrap="True" number="1" xml:space="preserve">
        \begin{equation}
        a
        \end{equation}
.

Multi Line no number:
.
\begin{equation*}
a
\end{equation*}
.
<document source="<src>/index.md">
    <math_block classes="amsmath" nowrap="True" number="True" xml:space="preserve">
        \begin{equation*}
        a
        \end{equation*}
.

In list:
.
- \begin{equation}
  a = 1
  \end{equation}
.
<document source="<src>/index.md">
    <bullet_list bullet="-">
        <list_item>
            <target ids="equation-mock-uuid">
            <math_block classes="amsmath" docname="index" label="mock-uuid" nowrap="True" number="1" xml:space="preserve">
                \begin{equation}
                  a = 1
                  \end{equation}
.