1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
%Fix and test to issues #18 and #21
\documentclass{article}
\usepackage{palatino}
\usepackage{minted}
\begin{document}
\section{wrap=True block}
\begin{minted}[mathescape, fontsize=\small, xleftmargin=0.5em]{python}
first_line = 1
second_line = 2
last_line = 'last'
\end{minted}
\section{wrap=False block}
\begin{minted}[mathescape, fontsize=\small, xleftmargin=0.5em]{python}
first_line = 1
second_line = 2
last_line = 'last'
\end{minted}
\begin{minted}[mathescape, fontsize=\small, xleftmargin=0.5em]{python}
plot(arange(10))
\end{minted}
\end{document}
|