Weave.jl/README.md

50 lines
2.0 KiB
Markdown
Raw Normal View History

# Weave
2014-12-01 21:41:12 +01:00
[![Build Status](https://travis-ci.org/mpastell/Weave.jl.svg?branch=master)](https://travis-ci.org/mpastell/Weave.jl)[![Coverage Status](https://img.shields.io/coveralls/mpastell/Weave.jl.svg)](https://coveralls.io/r/mpastell/Weave.jl?branch=master)
2014-12-04 16:54:56 +01:00
Weave is a scientific report generator/literate programming tool
2014-12-02 15:59:26 +01:00
for Julia. It resembles [Pweave](http://mpastell.com/pweave) and, Knitr
and Sweave.
2014-12-01 21:41:12 +01:00
2015-01-02 16:40:14 +01:00
You can write your documentation and code in input document using Nowed or Markdown syntax and use `weave` function to execute to document to capture results and figures.
2014-12-01 21:41:12 +01:00
**Current features**
2014-12-09 09:44:28 +01:00
* Noweb or markdown syntax for input documents.
2014-12-01 21:41:12 +01:00
* Execute code as terminal or "script" chunks.
* Capture Gadfly, PyPlot and Winston figures.
2014-12-09 09:44:28 +01:00
* Supports LaTex, Pandoc and Github markdown and reStructuredText output
2014-12-01 21:41:12 +01:00
## Usage
2014-12-22 16:03:33 +01:00
Run from julia using Gadfly for plots:
2014-12-01 21:41:12 +01:00
2016-04-20 21:19:01 +02:00
```julia
using Weave
2014-12-22 16:03:33 +01:00
weave(Pkg.dir("Weave","examples","gadfly_sample.mdw"))
2016-04-20 21:19:01 +02:00
```
If you have Pandoc installed you can also weave directly to html and pdf.
```julia
weave(Pkg.dir("Weave","examples","gadfly_md_sample.jmd"), informat="markdown",
out_path = :pwd, doctype = "md2html")
```
![Weave code and output](http://mpastell.com/images/weave_demo.png)
2014-12-02 09:55:32 +01:00
2015-01-02 16:40:14 +01:00
## Documentation
2014-12-05 17:58:15 +01:00
Documenter.jl with MKDocs generated documentation:
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://mpastell.github.io/Weave.jl/stable)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://mpastell.github.io/Weave.jl/latest)
2014-12-05 17:58:15 +01:00
## Contributing
I will probably add new features to Weave when I need them myself or if they are requested and not too difficult to implement. You can contribute by opening issues on Github or implementing things yourself and making a pull request. I'd also appreciate example documents written using Weave to add to examples.
2014-12-05 17:58:15 +01:00
## Contributors
2014-12-22 16:06:08 +01:00
You can see the list of contributors on Github: https://github.com/mpastell/Weave.jl/graphs/contributors. Thanks for the important additions, fixes and comments.