File: wrap_test.texw

package info (click to toggle)
python-pweave 0.30.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,064 kB
  • sloc: python: 30,281; makefile: 167
file content (31 lines) | stat: -rw-r--r-- 438 bytes parent folder | download
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

%Fix and test to issues #18 and #21

\documentclass{article}
\usepackage{palatino}
\usepackage{minted}


\begin{document}

\section{wrap=True block}

<<wrap=True>>=
first_line = 1
second_line = 2
last_line = 'last'
@

\section{wrap=False block}

<<wrap=False>>=
first_line = 1
second_line = 2
last_line = 'last'
@

<< not_evaled_plot, fig=True, caption='A plot caption', f_pos='h!', evaluate=False >>=
plot(arange(10))
@

\end{document}