aboutsummaryrefslogtreecommitdiff
path: root/src/input/multiple.input.pamphlet
blob: ec8ba0d5d11731c72a83525533a3c054a57febc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input multiple.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited 1991.
@
<<*>>=
<<license>>

)clear all
draw(sin(x),x=0..2*%pi)
v1 := %
draw(cos(x),x=0..2*%pi,curveColor==light red())
v2 := %
graphs v1
--g1 := elt(graphs v1,1)::GraphImage
g1 := getGraph(v1,1)
putGraph(v2,g1,2)
makeViewport2D(v2)
--title(v2,"sine and cosine")
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}