Subversion Repositories programming

Rev

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

Rev Author Line No. Line
437 ira 1
\documentclass[letterpaper,12pt,oneside,pdftex]{article}
2
 
3
%% My Commands
4
\newcommand{\myname}{Ira W. Snyder}
5
\newcommand{\myemail}{iwsnyder@csupomona.edu}
6
\newcommand{\mytitle}{REPLACE ME}
7
 
8
\newcommand{\emaillink}[1]{\href{mailto:#1}{$<$#1$>$}}
439 ira 9
\newcommand{\sourcecode}[1]{
10
    \begin{scriptsize}
11
        % Automatically line-numbered input
12
        \listinginput{1}{#1}
13
    \end{scriptsize}
14
}
15
\newcommand{\plaintext}[1]{
16
    \begin{scriptsize}
17
        % Verbatim input, preserving tabs to 8 spaces. To use
18
        % 4-space tabs, switch the 8 to a 4.
19
        \verbatimtabinput[8]{#1}
20
    \end{scriptsize}
21
}
22
\newcommand{\fullbox}[1]{\fbox{\begin{minipage}{\textwidth}#1\end{minipage}}}
437 ira 23
 
24
%% Packages to include
25
 
26
%% Font to use
27
%\usepackage{pslatex}
28
%\usepackage{cmbright}
29
%\usepackage{concrete}
30
%\usepackage{palatino}
31
%\usepackage{ae}
32
%\usepackage{pxfonts}
33
%\usepackage{txfonts}
34
 
35
% Fix spacing with 12pt docs
36
\usepackage{exscale}
37
 
38
% Extra spacing options
39
%\usepackage{setspace}
40
%\singlespacing
41
%\onehalfspacing
42
%\doublespacing
43
 
44
% Remove space at the beginning of paragraphs
439 ira 45
\usepackage{parskip}
437 ira 46
 
47
% Set Margins
48
\usepackage[left=3cm,top=3cm,right=3cm,nohead,nofoot]{geometry}
49
 
50
% Support for nicer tables
51
%\usepackage{booktabs}
52
 
53
% Support for source code listings
439 ira 54
\usepackage{moreverb}
437 ira 55
 
56
% Support for removing all page numbers
57
\usepackage{nopageno}
58
 
59
% Support for URLs (unneeded with hyperref)
60
%\usepackage{url}
61
 
62
% Support PDF HyperText References
63
\usepackage[pdftex,bookmarks,breaklinks=true,%
64
            pdftitle={\mytitle},pdfauthor={\myname},%
65
            colorlinks]{hyperref}
66
 
67
 
68
%% Generate Title Page
69
\title{\mytitle}
70
\author{\myname\\\emaillink{\myemail}}
71
\date{\today}
72
 
73
\begin{document}
74
 
75
% Switch font families
76
\sffamily
77
 
78
% Title Page
79
\maketitle
80
 
81
% TODO: Main Body Text Goes Here!!!
82
 
83
\end{document}
84
 
85
% vim: set ts=4 sts=4 sw=4 expandtab nocindent noautoindent textwidth=80: