aboutsummaryrefslogtreecommitdiff
path: root/test/command/4594.md
blob: 3f08b6c12e07858790354febc19493f363c8f26a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
```
% 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.
```