aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/command/siunitx-negative-numbers.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/command/siunitx-negative-numbers.md b/test/command/siunitx-negative-numbers.md
new file mode 100644
index 000000000..56cdbe31d
--- /dev/null
+++ b/test/command/siunitx-negative-numbers.md
@@ -0,0 +1,15 @@
+```
+% pandoc -f latex
+\SI{+33.3}{\m}
+
+\num{+5}
+
+\SI{-33.3}{\m}
+
+\num{-33}
+^D
+<p>33.3 m</p>
+<p>5</p>
+<p>-33.3 m</p>
+<p>-33</p>
+```