diff options
Diffstat (limited to 'test/command/latex-stackengine.md')
-rw-r--r-- | test/command/latex-stackengine.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/command/latex-stackengine.md b/test/command/latex-stackengine.md new file mode 100644 index 000000000..21253bf61 --- /dev/null +++ b/test/command/latex-stackengine.md @@ -0,0 +1,18 @@ +# stackengine + +``` +% pandoc -f latex -t native +\addstackgap{Hello} World + +^D +[Para [Str "Hello",Space,Str "World"]] +``` + +``` +% pandoc -f latex -t native +Hello \addstackgap[12pt]{World} + +^D +[Para [Str "Hello",Space,Str "World"]] +``` + |