blob: cc1c930f85284b08dfd6fe05006c54a39f00263a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
```
% pandoc -f latex -t native
\newcommand{\inclgraph}{\includegraphics[width=0.8\textwidth]}
\begin{figure}[ht]
\inclgraph{setminus.png}
\caption{Set subtraction}
\label{fig:setminus}
\end{figure}
^D
[ Figure
( "fig:setminus" , [] , [ ( "latex-placement" , "ht" ) ] )
(Caption
Nothing [ Plain [ Str "Set" , Space , Str "subtraction" ] ])
[ Plain
[ Image
( "" , [] , [ ( "width" , "80%" ) ] )
[]
( "setminus.png" , "" )
]
]
]
```
|