Weave.jl/test/documents/gadfly_formats_test_pandoc_...

66 lines
849 B
Markdown
Raw Normal View History

~~~~{.julia}
using Gadfly
x = linspace(0, 2π, 200)
plot(x=x, y = sin(x), Geom.line)
~~~~~~~~~~~~~
![sin(x) function.](figures/gadfly_formats_test_sin_fun_1.png)
![cos(x) function.](figures/gadfly_formats_test_2_1.png)
![](figures/gadfly_formats_test_cos2_fun_1.png)\
~~~~{.julia}
julia> x = linspace(0, 2π, 200)
2016-04-11 20:23:15 +02:00
linspace(0.0,6.283185307179586,200)
julia> plot(x=x, y = sin(x), Geom.line)
~~~~~~~~~~~~~
![](figures/gadfly_formats_test_4_1.png)\
~~~~{.julia}
julia> y = 20
2016-04-11 20:23:15 +02:00
20
julia> plot(x=x, y = cos(x), Geom.line)
~~~~~~~~~~~~~
![](figures/gadfly_formats_test_4_2.png)\
~~~~{.julia}
x = linspace(0, 2π, 200)
plot(x=x, y = sin(x), Geom.line)
2016-04-11 20:23:15 +02:00
~~~~~~~~~~~~~
![](figures/gadfly_formats_test_5_1.png)\
2016-04-11 20:23:15 +02:00
~~~~{.julia}
y = 20
plot(x=x, y = cos(x), Geom.line)
~~~~~~~~~~~~~
![](figures/gadfly_formats_test_5_2.png)\