a9498a1568
These are actually supported by `\includegraphics`, though this is not well documented. See https://tex.stackexchange.com/questions/7938/pdflatex-includegraphics-and-multi-page-pdf-files Partially addresses #7181.
11 lines
237 B
Markdown
11 lines
237 B
Markdown
```
|
|
% pandoc -t latex
|
|
![Global frog population.](slides.pdf){page=13,trim=1cm,clip,width=4cm}
|
|
^D
|
|
\begin{figure}
|
|
\centering
|
|
\includegraphics[page=13,trim=1cm,clip,width=4cm]{slides.pdf}
|
|
\caption{Global frog population.}
|
|
\end{figure}
|
|
|
|
```
|