Subversion Repositories programming

Rev

Rev 390 | 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
 
433 ira 21
%% Disable Indentation
22
\parindent 0in
389 ira 23
 
433 ira 24
%% Extra PDF options
25
\pdfpagewidth 8.5in
26
\pdfpageheight 11in
27
 
28
 
389 ira 29
%% Font to use
30
\usepackage{pslatex}
31
%\usepackage{cmbright}
32
%\usepackage{concrete}
33
%\usepackage{palatino}
34
%\usepackage{ae}
35
%\usepackage{pxfonts}
36
%\usepackage{txfonts}
37
 
38
 
39
\begin{document}
40
 
41
%% Generate Title Page
42
\title{Title Part 1:\linebreak
43
Sub Title}
44
\author{Ira W. Snyder}
45
\date{\today}
46
\maketitle
47
 
48
 
49
\section*{Unnumbered Section}
50
 
51
\section{Numbered Section}
52
 
53
This is a paragraph of text. Blah blah blah. \cite{www:ira}
54
 
390 ira 55
%\begin{tabular}{@{}ccc@{}} \toprule
56
%row one & second column & third column \\ \midrule
57
%row two & second column & third column \\ \bottomrule
58
%\end{tabular}
389 ira 59
 
390 ira 60
For some nice tips, read: \url{http://forums.gentoo.org/viewtopic-t-73004-highlight-tex+howto.html}
61
 
433 ira 62
More tips!!!: \url{http://www.artofproblemsolving.com/LaTeX/AoPS\_L\_GuideLay.php}
63
 
390 ira 64
%% Include source code
65
%\begin{scriptsize}
66
%\lstinputlisting[language=tex,breaklines]{template.tex}
67
%\end{scriptsize}
68
 
69
 
389 ira 70
%% Choose Bibliography style
71
%\bibliographystyle{acm}
72
\bibliographystyle{plain}
73
%% Generate Bibliography
74
\bibliography{template}
75
 
76
\end{document}
77
 
78
% vim: set ts=4 sts=4 sw=4 expandtab nocindent noautoindent textwidth=80: