IofT 1910W: Fall 2006
Writing Help
Writing resources and where to find help
Help with Grammar
Avoiding Plagiarism
There is a very good web site
http://plagiarismtest.org/
that will help you understand if you are plagiarizing others work
in your report. Take a look at it. The page for students has some
very clear definitions.
Reading and Evaluating Papers
Typesetting your papers with LaTeX
Tired of using Word? Do you want to learn how to create professional
looking documents with beautiful equations that are typeset as in the best
textbooks? Consider learning LaTeX.
- Visit TUG, the
TEX Users Group site. Here you can get documentation here
and visit the pages of different packages.
Look at the page "Getting Started with TeX and LaTeX".
Specially useful for beginners are:
- A
Simplified Introduction to LaTeX by Harvey J. Greenberg (PS file-1.1M)
-
The not so Short Introduction to LaTeX2e Or LaTeX2e in 95 minutes
by Tobias Oetiker. (PDF file).
-
LaTeX: from quick and dirty to style and finesse
by Prof Tony Roberts. It is short and basic and covers all you need to
write a project report.
-
Here is a set of basic latex instructions you'll need:
\documentclass[11pt]{article} % 11 points is a good size
\usepackage{fullpage} % more lines and longer lines per page
\begin{document}
\title{Whatever}
\author{your name}
\date{} % avoids printing the date
\maketitle
..... whatever you want to write. To divide in sections use
\section{title}
....
\end{document}
On Unix,
to generate the output run latex myfile
To preview the
output use xdvi myfile
Once happy, use
dvips -Pcmz myfile.dvi -o myfile.ps
to generate postscript. Convert to pdf by
doing ps2pdf myfile.ps
You can easily generate bibliographic citations, by creating a
bibliography file (.bib), specifying in your document what style you want,
for instance \bibliographystyle{plain} and the name of your
bibliography file \bibliography{mybibliofile} and running
bibtex myfile
After running bibtex, you need to run latex
again twice (latex goes through your file once, so forward references cannot
be filled in a single pass).
- MiKTEX
The best TEX and LaTEX distribution for Windows.
Look for a shareware editor
called Win Edt which is very good. Recommended for anyone
trying to learn Latex (lots of macros, and an integrated shell that allows
compilation of Latex files from the editor).
Additional useful tools are:
- Ghostscript
Postscript processor (supports Windows), used to print .ps files
or convert them to .pdf.
- GSview
Postscript viewer (supports Windows).
- CTAN,
the Comprehensive TEX Archive Network, is the home of all
packages, tools, and documentation.