pandoc/test/command/7181.md
John MacFarlane a9498a1568 LaTeX writer: support page,trim,clip attributes on images.
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.
2022-03-29 09:03:28 -07:00

237 B

% 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}