pandoc/test/command/4594.md
2018-04-25 23:04:08 -07:00

24 lines
411 B
Markdown

```
% pandoc -f markdown -t latex
Some **bold** text here.
\begin{figure}[htbp]
\centering
\def\svgwidth{\columnwidth}
\import{img/}{vectors.pdf_tex}
\caption{Some caption.}
\end{figure}
Some *italic* text here.
^D
Some \textbf{bold} text here.
\begin{figure}[htbp]
\centering
\def\svgwidth{\columnwidth}
\import{img/}{vectors.pdf_tex}
\caption{Some caption.}
\end{figure}
Some \emph{italic} text here.
```