Using Weave
You can write your documentation and code in input document using Markdown, Noweb or script syntax and use weave
function to execute to document to capture results and figures.
Weave
Weave document with markup and julia code using Plots.jl
for plots, out_path = :pwd
makes the results appear in the current working directory.
#First add depencies for the example
using Pkg; Pkg.add.(["Plots", "DSP"])
using Weave
weave(joinpath(dirname(pathof(Weave)), "../examples", "FIR_design.jmd"), out_path=:pwd)
Weave.weave
— Method.weave(source ; doctype = :auto,
informat=:auto, out_path=:doc, args = Dict(),
mod::Union{Module, Symbol} = Main,
fig_path = "figures", fig_ext = nothing,
cache_path = "cache", cache=:off,
template = nothing, highlight_theme = nothing, css = nothing,
pandoc_options = "",
latex_cmd = "xelatex")
Weave an input document to output file.
doctype
: :auto = set based on file extension or specify one of the supported formats. Seelist_out_formats()
informat
: :auto = set based on file extension or set to"noweb"
,"markdown"
orscript
out_path
: Path where the output is generated. Can be::doc
: Path of the source document,:pwd
: Julia working directory,"somepath"
: output directory as a String e.g"/home/mpastell/weaveout"
or filename as string e.g. ~/outpath/outfile.tex.args
: dictionary of arguments to pass to document. Available as WEAVE_ARGSmod
: Module where Weaveeval
s code. Defaults to:sandbox
to create new sandbox module, you can also pass a module e.g.Main
.fig_path
: where figures will be generated, relative to out_pathfig_ext
: Extension for saved figures e.g.".pdf"
,".png"
. Default setting depends ondoctype
.cache_path
: where of cached output will be saved.cache
: controls caching of code::off
= no caching,:all
= cache everything,:user
= cache based on chunk options,:refresh
, run all code chunks and save new cache.throw_errors
iffalse
errors are included in output document and the whole document is executed. iftrue
errors are thrown when they occur.template
: Template (file path) for md2html or md2tex formats.highlight_theme
: Theme (Highlights.AbstractTheme) for used syntax highlightingcss
: CSS (file path) used for md2html formatpandoc_options
= String array of options to pass to pandoc forpandoc2html
andpandoc2pdf
formats e.g. ["–toc", "-N"]latex_cmd
the command used to make pdf from .tex
Note: Run Weave from terminal and not using IJulia, Juno or ESS, they tend to mess with capturing output.
Tangle
Tangling extracts the code from document:
Weave.tangle
— Method.tangle(source ; out_path=:doc, informat="noweb")
Tangle source code from input document to .jl file.
informat
:"noweb"
of"markdown"
out_path
: Path where the output is generated. Can be::doc
: Path of the source document,:pwd
: Julia working directory,"somepath"
, directory name as a string e.g"/home/mpastell/weaveout"
or filename as string e.g. ~/outpath/outfile.jl.
Supported output formats
Weave sets the output format based on the file extension, but you can also set it using doctype
option. The rules for detecting the format are:
ext == ".jl" && return "md2html"
contains(ext, ".md") && return "md2html"
contains(ext, ".rst") && return "rst"
contains(ext, ".tex") && return "texminted"
contains(ext, ".txt") && return "asciidoc"
return "pandoc"
You can get a list of supported output formats:
list_out_formats()
github: Github markdown
md2tex: Julia markdown to latex
pandoc2html: Markdown to HTML (requires Pandoc 2)
pandoc: Pandoc markdown
pandoc2pdf: Pandoc markdown
tex: Latex with custom code environments
texminted: Latex using minted for highlighting
md2html: Julia markdown to html
rst: reStructuredText and Sphinx
multimarkdown: MultiMarkdown
md2pdf: Julia markdown to latex
asciidoc: AsciiDoc
hugo: Hugo markdown (using shortcodes)
Weave.list_out_formats
— Method.list_out_formats()
List supported output formats
Document syntax
Weave uses markdown, Noweb or script syntax for defining the code chunks and documentation chunks. You can also weave Jupyter notebooks. The format is detected based on the file extension, but you can also set it manually using the informat
parameter.
The rules for autodetection are:
ext == ".jl" && return "script"
ext == ".jmd" && return "markdown"
ext == ".ipynb" && return "notebook"
return "noweb"
Documentation chunks
In Markdown and Noweb input formats documentation chunks are the parts that aren't inside code delimiters. Documentation chunks can be written with several different markup languages.
Code chunks
Markdown format
Markdown code chunks are defined using fenced code blocks with options following on the same line. e.g. to hide code from output you can use:
`
julia; echo=false
Noweb format
Code chunks start with a line marked with <<>>=
or <<options>>=
and end with line marked with @
. The code between the start and end markers is executed and the output is captured to the output document. See chunk options.
Script format
Weave also support script input format with a markup in comments. These scripts can be executed normally using Julia or published with Weave. Documentation is in lines starting with #'
, #%%
or # %%
, and code is executed and results are included in the weaved document.
All lines that are not documentation are treated as code. You can set chunk options using lines starting with #+
just before code e.g. #+ term=true
.
The format is identical to Pweave and the concept is similar to publishing documents with MATLAB or using Knitr's spin. Weave will remove the first empty space from each line of documentation.
Inline code
You can also add inline code to your documents using
`j juliacode`
syntax. The code will be replaced with the output of running the code. If the code produces figures the filename or base64 encoded string will be added to output e.g. to include a Plots figure in markdown you can use:
![A plot](`j plot(1:10)`)
Setting document options in header
You can use a YAML header in the beginning of the input document delimited with "–-" to set the document title, author and date e.g. and default document options. Each of Weave command line arguments and chunk options can be set in header using options
field. Below is an example that sets document out_path
and doctype
using the header.
---
title : Weave example
author : Matti Pastell
date: 15th December 2016
options:
out_path : reports/example.md
doctype : github
---
You can also set format specific options. Here is how to set different outpath for md2html
and md2pdf
and set `figext` for both:
---
options:
md2html:
out_path : html
md2pdf:
out_path : pdf
fig_ext : .png
---
Passing arguments to documents
You can pass arguments as dictionary to the weaved document using the args
argument to weave
. The dictionary will be available as WEAVE_ARGS
variable in the document.
This makes it possible to create the same report easily for e.g. different date ranges of input data from a database or from files with similar format giving the filename as input.
In order to pass a filename to a document you need call weave
using:
weave("mydoc.jmd", args = Dict("filename" => "somedata.h5"))
and you can access the filename from document as follows:
```julia
print(WEAVE_ARGS["filename"])
```
You can use the out_path
argument to control the name of the output document.
Include Weave document in Julia
You can call include_weave
on a Weave document to run the contents of all code chunks in Julia.
Weave.include_weave
— Function.include_weave(doc, informat=:auto)
Include code from Weave document calling include_string
on all code from doc. Code is run in the path of the include document.