Made rcParams const

pull/7/head
Matti Pastell 2014-11-27 11:51:21 +02:00
parent 0c34c3d085
commit 550008d910
3 changed files with 27 additions and 25 deletions

Binary file not shown.

View File

@ -17,7 +17,7 @@ type Report
end
global const report = Report("", false, "", "", {}, "", "")
const report = Report("", false, "", "", {}, "", "")
function listformats()
pweave.listformats()

View File

@ -1,24 +1,26 @@
rcParams = {"figdir"=> "figures",
"usematplotlib"=> true,
"storeresults"=> false,
"cachedir"=> "cache",
"chunk"=> {"defaultoptions"=> {
"echo"=> true,
"results"=> "verbatim",
"fig"=> true,
"include"=> true,
"evaluate"=> true,
"caption"=> false,
"term"=> false,
"name"=> nothing,
"wrap"=> true,
"f_pos"=> "htpb",
"f_size"=> (8, 6),
"f_env"=> nothing,
"f_spines"=> true,
"complete"=> true,
"engine"=> "julia",
"option_string"=> ""
}
}
}
const rcParams = {"figdir"=> "figures",
"usematplotlib"=> true,
"storeresults"=> false,
"cachedir"=> "cache",
"chunk"=>
{"defaultoptions"=>
{
"echo"=> true,
"results"=> "verbatim",
"fig"=> true,
"include"=> true,
"evaluate"=> true,
"caption"=> false,
"term"=> false,
"name"=> nothing,
"wrap"=> true,
"f_pos"=> "htpb",
"f_size"=> (8, 6),
"f_env"=> nothing,
"f_spines"=> true,
"complete"=> true,
"engine"=> "julia",
"option_string"=> ""
}
}
}