\documentclass[12pt]{article} \setlength{\oddsidemargin}{0in} \setlength{\textwidth}{6.7in} \setlength{\topmargin}{0in} \setlength{\textheight}{9in} \setlength{\headheight}{0in} \setlength{\headsep}{0in} \setlength{\parskip}{5pt plus 2pt minus 3pt} \setlength{\parindent}{0in} \usepackage{amssymb} \begin{document} \renewcommand{\baselinestretch}{1.1} \newtheorem{definition}{Definition} \newtheorem{theorem}{Theorem} \newtheorem{lemma}[theorem]{Lemma} \newtheorem{corollary}[theorem]{Corollary} \newtheorem{claim}[theorem]{Claim} \newtheorem{fact}[theorem]{Fact} % to get nice proofs ... \newcommand{\qedsymb}{\mbox{ }~\hfill~{\rule{2mm}{2mm}}} \newenvironment{proof}{\begin{trivlist} \item[\hspace{\labelsep}{\bf\noindent Proof: }] }{\qedsymb\end{trivlist}} \begin{table}\centering \begin{tabular*}{6.5in}{@{\extracolsep{\fill}}|llr|} \hline Com S 611 & \hspace*{0.5 in} & Spring Semester 2007 \\ Discrete Algorithms for Mobile and Wireless Networks & & \\ & & \\ \multicolumn{3}{|c|}{ {Lecture 4: Thursday, 25th January 2007}} \\ & & \\ Instructor: Soma Chaudhuri & & Scribe: Aaron Sterling \\ \hline \end{tabular*} \end{table} \section{Introduction} Initial text goes here. \section{A new topic} \subsection{A subtopic} Here is an enumeration. \begin{enumerate} \item the next item is in math mode \item $lim_{n \rightarrow \infty} (1 - 1/n)^{n-1}$ \end{enumerate} \noindent Here is an itemization. \begin{itemize} \item item 1 \item item 2 \end{itemize} \section{another new topic} \begin{definition} We define something here. \end{definition} Here is our first theorem. \begin{theorem} The statement of the theorem goes here. \end{theorem} \begin{proof} The proof goes here. \end{proof} \end{document}