aboutsummaryrefslogtreecommitdiff
path: root/test/command/6844.md
blob: e7af336a39e72471423aa344b6061fd761f19ee0 (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
Negative numbers with siunitx

```
% pandoc -f latex -t native
\SI{123}{\celsius}

^D
[ Para [ Str "123\160\176C" ] ]
```

```
% pandoc -f latex -t native
\SI{-123}{\celsius}

^D
[ Para [ Str "\8722\&123\160\176C" ] ]
```

```
% pandoc -f latex -t native
\SI{+123}{\celsius}

^D
[ Para [ Str "123\160\176C" ] ]
```