blob: 15f3240046c6115680877884c14b2caf9c1b8083 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input grdef.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited 1994.
@
<<*>>=
<<license>>
-- test input for GraphicsDefaults package
--Operations to set graphic defaults:
adaptive == false
adaptive == true
clipPointsDefault(false)
clipPointsDefault(true)
drawToScale(true)
drawToScale(false)
maxPoints(500)
minPoints(21)
screenResolution(600)
--Operations which return default information:
adaptive()
clipPointsDefault()
drawToScale()
maxPoints()
minPoints()
screenResolution()
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}
|