Subversion Repositories programming

Rev

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