Weave.jl/test/documents/gadfly_formats_test_ref.tex

87 lines
1.4 KiB
TeX

\begin{juliacode}
using Gadfly
x = linspace(0, 2π, 200)
plot(x=x, y = sin(x), Geom.line)
\end{juliacode}
\begin{figure}[ht]
\center
\includegraphics[width=\linewidth]{figures/gadfly_formats_test_sin_fun_1.pdf}
\caption{sin(x) function.}
\label{fig:sin_fun}
\end{figure}
\begin{figure}[htpb]
\center
\includegraphics[width=\linewidth]{figures/gadfly_formats_test_2_1.pdf}
\caption{cos(x) function.}
\end{figure}
\begin{figure}[htpb]
\includegraphics[width=\linewidth]{figures/gadfly_formats_test_cos2_fun_1.pdf}
\label{fig:cos2_fun}
\end{figure}
\begin{juliaterm}
julia> x = linspace(0, 2π, 200)
200-element Array{Float64,1}:
0.0
0.0315738
0.0631476
0.0947214
0.126295
0.157869
0.189443
0.221017
0.25259
0.284164
6.03059
6.06217
6.09374
6.12532
6.15689
6.18846
6.22004
6.25161
6.28319
julia> plot(x=x, y = sin(x), Geom.line)
\end{juliacode}
\includegraphics[width=\linewidth]{figures/gadfly_formats_test_4_1.pdf}
\begin{juliacode}
julia> y = 20
20
julia> plot(x=x, y = cos(x), Geom.line)
\end{juliacode}
\includegraphics[width=\linewidth]{figures/gadfly_formats_test_4_2.pdf}
\begin{juliacode}
x = linspace(0, 2π, 200)
plot(x=x, y = sin(x), Geom.line)
y = 20
plot(x=x, y = cos(x), Geom.line)
\end{juliacode}
\begin{figure}[htpb]
\includegraphics[width=15cm]{figures/gadfly_formats_test_5_1.pdf}
\includegraphics[width=15cm]{figures/gadfly_formats_test_5_2.pdf}
\end{figure}