Scons and noweb
LaTeX
Python
Literate Programming
I was curious to see how I could integrate noweb and Scons.
You can download my little Sconstruct for this, Sconstruct.example. It defines two builders. NoWeave is used to produce TeX or LaTeX documents, while NoTangle extracts the non-document artefacts, i.e. programs, config files, scripts … It also includes productions for generating a sample program about Ackermann function:
= env.NoWeave('ack.tex', 'ack.nw')
ackdoc = env.NoTangle('ack.py', 'ack.nw')
ackcode = env.NoTangle('ackTest.py', 'ack.nw') acktest
The noweb source is ack.nw and the companion BibTeX file is ack.bib
It contains the doc chunks describing the function, the source code chunck for the relevant Python code and the code chunk for the unit test.
You can try it out executing
$ scons -f Sconstruct.example
You will get the following artefacts, ack.py, ack.tex, ackTest.py and ack.pdf
Remember to run BibTeX first…