%tex based on webpage from LaTeX Community
%website: <http://www.latex-community.org/index.php?option=com_content&view=article&id=342%3Awriting-a-latex-class-file-to-produce-a-form&catid=54%3Alatex-document-classes&Itemid=112>
%Originally Written by Nicola Talbot
%Friday, 20 November 2009 11:55
%slight edit with the addition of comments as presented in the website
%from: Cristian B Gonzalez (avoided doing research by doing this)
%Saturaday, 15 March 2014 22:45
%It is three pages long and has a box on page one that's continued on page two. All the boxes are of fixed height and shouldn't shrink or expand to fit the text. A sample document might be created as follows:
\documentclass{complicatedform}
%title{Writing a LaTeX Class File to Produce a Form}
\begin{document}
\collaborator{Dr A Person}{CMP}{1234}
\collaborator{Prof A.N. Other}{ENV}{5678}
\otherfunding{This proposal has also been submitted to
the intergalactic federation of Nog last year.}
\begin{projectdescription}
This is a really interesting project!
\end{projectdescription}
\training{The student will be trained in intergalactic space
exploration.}
\monitored{Telepathically}
\end{document}
Note that in this example, a blank form to be filled in by hand can be obtained using:
\documentclass{complicatedform}
\begin{document}
\begin{projectdescription}
\end{projectdescription}
\end{document}