adding tex report template, this should probably be changed into a package by someone with latex-fu

This commit is contained in:
Edgar Bering 2010-02-05 20:59:59 -05:00
parent 935ef5bc4f
commit 5cbb7a7f4e
1 changed files with 29 additions and 0 deletions

29
csc-report-template.tex Normal file
View File

@ -0,0 +1,29 @@
\documentclass[titlepage]{article}
\usepackage{amsmath}
\usepackage{color}
\usepackage{listings}
\usepackage[pdftex]{graphicx}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\newcommand{\tab}{\hspace*{2em}}
\begin{document}
\begin{titlepage}
\begin{center}
\includegraphics[width=0.3\textwidth]{./logo.jpg} \tab\tab \includegraphics[width=0.5\textwidth]{./csc.png}
\HRule \\[0.4cm]
{\huge \bfseries University of Waterloo \\Computer Science Club }\\NAME OF DOCUMENT\\[0.4cm]
\HRule \\[1.5cm]
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
\emph{Author:}\\
Calum T. Dalek
\end{flushleft}
\end{minipage}
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
\end{flushright}
\end{minipage}
\vfill
{\large Last Modified: \today}
\end{center}
\end{titlepage}
\end{document}