diff options
Diffstat (limited to 'src/input/fib.input.pamphlet')
-rw-r--r-- | src/input/fib.input.pamphlet | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/input/fib.input.pamphlet b/src/input/fib.input.pamphlet new file mode 100644 index 00000000..10224c4d --- /dev/null +++ b/src/input/fib.input.pamphlet @@ -0,0 +1,29 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input fib.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{License} +<<license>>= +--Copyright The Numerical Algorithms Group Limited 1994. +@ +<<*>>= +<<license>> + +)cl all +fib(n | n=0)==1 +fib(n | n=1)==1 +fib(n | n>1)==fib(n-1)+fib(n-2) +fibs == [fib i for i in 0..] +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |