\documentclass{article} \usepackage{fullpage} \begin{document} % Replace the title "A Concurrent Algorithm for Resource Allocation" with your own title. \title{A Concurrent Algorithm for Resource Allocation} % Replace "Franck van Breugel" with your name. \author{Franck van Breugel\\ Department of Computer Science and Engineering, York University\\ 4700 Keele Street, Toronto, Ontario, Canada, M3J 1P3} % \today represents today's date. \date{\today} \maketitle % Within the abstract environment, that is, between \begin{abstract} and \end{abstract}, % add your abstract. The abstract should provide a summary of the paper. You may want % to write the abstract last. \begin{abstract} \end{abstract} % Below the \section{Introduction}, add your introduction. You may want to describe % the "problem" that the algorithm solves and sketch how the algorithm "solves" it. \section{Introduction} % Below you can add other sections using \section{Title of section}. In those sections, % you present the algorithm is pseudocode, use examples to explain the algorithm, etc. % Below the \section{Related work}, discuss some related work. This is optional, that % is, you may want to remove this section. \section{Related work} % Below the \section{Conclusion}, add your conclusion. \section{Conclusion} % Create a file named assignment1.bib. A sample, named assignment1.bib, can be found on % the course website. To refer to a paper in your text, use \cite{Hanke99}, where you % replace the key "Hanke99" with the key of your own reference. For example, \cite{Hanke99} % gives rise to a citation. You probably want to remove this citation. % Samples of various types of entries of a BiBTeX file can be found in sample.bib on the % course website. \bibliographystyle{plain} \bibliography{assignment1} \end{document} % To turn your LaTeX document into PDF, use % latex assignment1 % bibtex assignment1 % latex assignment1 % latex assignment1 (needed if you see the warning % "LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right.") % dvips assignment1.dvi -o assignment1.ps % ps2pdf assignment1.ps