aboutsummaryrefslogtreecommitdiff
path: root/test/command/6844.md
blob: 0431cfed8c5e5cf62071fd7ba3d5113f24072636 (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"]]
```