File: 02.test

package info (click to toggle)
haskell-texmath 0.12.8.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,344 kB
  • sloc: haskell: 12,645; makefile: 29
file content (29 lines) | stat: -rw-r--r-- 605 bytes parent folder | download
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
<<< tex
2 = \left(
 \frac{\left(3-x\right) \times 2}{3-x}
 \right)


>>> native
[ ENumber "2"
, ESymbol Rel "="
, EDelimited
    "("
    ")"
    [ Right
        (EFraction
           NormalFrac
           (EGrouped
              [ EDelimited
                  "("
                  ")"
                  [ Right (ENumber "3")
                  , Right (ESymbol Bin "\8722")
                  , Right (EIdentifier "x")
                  ]
              , ESymbol Bin "\215"
              , ENumber "2"
              ])
           (EGrouped [ ENumber "3" , ESymbol Bin "\8722" , EIdentifier "x" ]))
    ]
]