diff options
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/latex-multicols.md | 14 | ||||
-rw-r--r-- | test/command/latex-stackengine.md | 18 |
2 files changed, 32 insertions, 0 deletions
diff --git a/test/command/latex-multicols.md b/test/command/latex-multicols.md new file mode 100644 index 000000000..81e5577fd --- /dev/null +++ b/test/command/latex-multicols.md @@ -0,0 +1,14 @@ +# `\begin{multicols}` + +``` +% pandoc -f latex -t native +\begin{multicols}{2} +Hello +\end{multicols} +^D +[Div ("",["columns"],[]) + [Div ("",["column"],[]) + [Div ("",["column"],[]) + [Para [Str "Hello"]]]]] +``` + 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"]] +``` + |