Subversion Repositories programming

Rev

Rev 389 | Rev 433 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
390 ira 1
\documentclass[letterpaper,12pt,oneside]{report}
389 ira 2
 
3
%% Packages to include
4
\usepackage{url} % support for URLs
5
\usepackage[dvipdfm]{hyperref} % support for links in pdf
6
\usepackage{setspace} % support to set spacing
7
%\usepackage[left=3cm,top=3cm,right=3cm,nohead,nofoot]{geometry} % set margins
390 ira 8
%\usepackage{booktabs} % support for nice tables
9
%\usepackage{nomencl} % nomenclature support
10
%\usepackage{SIunits} % SI Units support
11
%\usepackage{listings} % support for source code listings
389 ira 12
 
13
%% Page Spacing
14
\onehalfspacing
15
%\doubespacing
16
 
17
%% Double Spacing (use above methods if possible)
18
\parskip 1ex
19
%\renewcommand{\baselinestretch}{1.33}
20
 
21
 
22
%% Font to use
23
\usepackage{pslatex}
24
%\usepackage{cmbright}
25
%\usepackage{concrete}
26
%\usepackage{palatino}
27
%\usepackage{ae}
28
%\usepackage{pxfonts}
29
%\usepackage{txfonts}
30
 
31
 
32
\begin{document}
33
 
34
%% Generate Title Page
35
\title{Title Part 1:\linebreak
36
Sub Title}
37
\author{Ira W. Snyder}
38
\date{\today}
39
\maketitle
40
 
41
 
42
\section*{Unnumbered Section}
43
 
44
\section{Numbered Section}
45
 
46
This is a paragraph of text. Blah blah blah. \cite{www:ira}
47
 
390 ira 48
%\begin{tabular}{@{}ccc@{}} \toprule
49
%row one & second column & third column \\ \midrule
50
%row two & second column & third column \\ \bottomrule
51
%\end{tabular}
389 ira 52
 
390 ira 53
For some nice tips, read: \url{http://forums.gentoo.org/viewtopic-t-73004-highlight-tex+howto.html}
54
 
55
%% Include source code
56
%\begin{scriptsize}
57
%\lstinputlisting[language=tex,breaklines]{template.tex}
58
%\end{scriptsize}
59
 
60
 
389 ira 61
%% Choose Bibliography style
62
%\bibliographystyle{acm}
63
\bibliographystyle{plain}
64
%% Generate Bibliography
65
\bibliography{template}
66
 
67
\end{document}
68
 
69
% vim: set ts=4 sts=4 sw=4 expandtab nocindent noautoindent textwidth=80: