Subversion Repositories programming

Rev

Rev 390 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
389 ira 1
\documentclass[letterpaper,12pt]{report}
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
8
 
9
%% Page Spacing
10
\onehalfspacing
11
%\doubespacing
12
 
13
%% Double Spacing (use above methods if possible)
14
\parskip 1ex
15
%\renewcommand{\baselinestretch}{1.33}
16
 
17
 
18
%% Font to use
19
\usepackage{pslatex}
20
%\usepackage{cmbright}
21
%\usepackage{concrete}
22
%\usepackage{palatino}
23
%\usepackage{ae}
24
%\usepackage{pxfonts}
25
%\usepackage{txfonts}
26
 
27
 
28
\begin{document}
29
 
30
%% Generate Title Page
31
\title{Title Part 1:\linebreak
32
Sub Title}
33
\author{Ira W. Snyder}
34
\date{\today}
35
\maketitle
36
 
37
 
38
\section*{Unnumbered Section}
39
 
40
\section{Numbered Section}
41
 
42
This is a paragraph of text. Blah blah blah. \cite{www:ira}
43
 
44
 
45
%% Choose Bibliography style
46
%\bibliographystyle{acm}
47
\bibliographystyle{plain}
48
%% Generate Bibliography
49
\bibliography{template}
50
 
51
\end{document}
52
 
53
% vim: set ts=4 sts=4 sw=4 expandtab nocindent noautoindent textwidth=80: