pandoc/test/command/4594.md

25 lines
411 B
Markdown
Raw Normal View History

```
% 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.
```