Files
pandoc/test/command/9150.md
T
John MacFarlane ad1a745f72 LaTeX reader: better handle spacing commands...
hfill, vfill, hskip, vskip, etc.

Closes #9150.
2023-10-21 18:44:28 -07:00

52 lines
993 B
Markdown

```
% pandoc -f latex -t native
\hfill {\Large \textbf{Theoretische Grundlagen der Informatik}}
^D
[ Para
[ Span
( "" , [] , [] )
[ Strong
[ Str "Theoretische"
, Space
, Str "Grundlagen"
, Space
, Str "der"
, Space
, Str "Informatik"
]
]
]
]
```
```
% pandoc -f latex+raw_tex -t native
\hfill {\Large \textbf{Theoretische Grundlagen der Informatik}}
^D
[ Para
[ RawInline (Format "latex") "\\hfill "
, Span
( "" , [] , [] )
[ RawInline (Format "latex") "\\Large "
, Strong
[ Str "Theoretische"
, Space
, Str "Grundlagen"
, Space
, Str "der"
, Space
, Str "Informatik"
]
]
]
]
```
```
% pandoc -f latex+raw_tex -t native
\hskip 2pt plus 1pt minus 1pt
^D
[ RawBlock (Format "latex") "\\hskip 2pt plus 1pt minus 1pt"
]
```