\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}