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