Weave.jl/doc/src/getting_started.md

1.1 KiB

Getting started

The best way to get started using Weave.jl is to look at the example input and output documents. Examples for different formats are included in the packages examples directory.

First have a look at source document using markdown code chunks and Gadfly for figures: gadfly_md_sample.jmd and then see the output in different formats:

Producing pdf output requires that you have pdflatex installed.

Add depencies for the example if needed:

Pkg.add.(["Cairo", "Fontconfig", "Gadfly"])

Weave the files to your working directory using:

using Weave
#Markdown
weave(Pkg.dir("Weave","examples","gadfly_md_sample.jmd"), out_path = :pwd,
  doctype = "pandoc")
#HTML
weave(Pkg.dir("Weave","examples","gadfly_md_sample.jmd"), out_path = :pwd,
  doctype = "md2html")
#pdf
weave(Pkg.dir("Weave","examples","gadfly_md_sample.jmd"), out_path = :pwd,
  doctype = "md2pdf")