blob: 6423b40e8180352dbeb55b2b892aaea117fba56e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
```
% pandoc -f latex -t native
\begin{figure}
\centering
\includegraphics[width=0.5\linewidth,height=0.5\textheight]{figures/placeholder}
\caption{Example figure}
\end{figure}
^D
[ Figure
( "" , [] , [] )
(Caption
Nothing [ Plain [ Str "Example" , Space , Str "figure" ] ])
[ Plain
[ Image
( "" , [] , [ ( "width" , "50%" ) , ( "height" , "50%" ) ] )
[]
( "figures/placeholder" , "" )
]
]
]
```
|