mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 13:45:49 +00:00
25 lines
411 B
Markdown
25 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.
|
|
```
|