mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08:00
ad1a745f72
hfill, vfill, hskip, vskip, etc. Closes #9150.
52 lines
993 B
Markdown
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"
|
|
]
|
|
```
|