-
Notifications
You must be signed in to change notification settings - Fork 1
/
preamble.tex
119 lines (82 loc) · 3.65 KB
/
preamble.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Filename : preamble.tex
%
% Description: Preamble file to :
% a. specify related packages
% b. set margins, commands, etc.
%
% Note : Edit the margin settings for your own printer
% You may add your own commands, environments (it is assumed that you know what you're doing.)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\documentclass[12pt,titlepage,onepage, letterpaper]{article}
\documentclass[12pt,titlepage,onepage, letterpaper]{report}
%
%-- specify related packages
%
%
% \usepackage[utf8x]{inputenc}
%
\usepackage{pdfpages}
\usepackage{float}
\usepackage{morefloats}
\usepackage{apacite} %-- APA style citation
%-- refer to http://www.ctan.org/tex-archive/biblio/bibtex/contrib/apacite/
%
% \usepackage{ucs}
%
\usepackage{amsmath} %-- American Math Society packages
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{pdflscape}
% changed from lscape to pdflscape then recompile
\usepackage{graphicx} %-- graphicx package needed for including figures in JPG or PNG format
%
%\usepackage{graphics} %-- graphics related package (this was commented out) use when image is in EPS format
%
\usepackage{verbatim} %-- this package allows you to have multiple lines of comments by
%-- example:
% \begin{comment}
% ...your text here...
% \end{comment}
\usepackage{color} %-- allows use of color with text
%-- example: \textcolor{red}{This is the colored text in red.}
\usepackage{url} %-- allows use of URLs example: \url{https:\ccs1.dlsu.edu.ph}
%
%-- set margins, you may need to edit this for your own printer
%
\topmargin 0.0in
\oddsidemargin 0.0in
\evensidemargin 0.0in
\voffset 0.0in
\hoffset 0.5625in
\textwidth 5.75in
\textheight 8.5in
\parskip 1em
\parindent 0.25in
\bibliographystyle{apacite} %-- use APA citation scheme
\hyphenation{ana-lysis know-ledge} %-- LaTeX may not hyphenate correctly some words you use in your document
%-- use \hyphenation to instruct LaTeX how to do it correctly, example above
\newcommand{\degree}{^{\circ}} %-- use \newcommand to create your own "commands"
%-- \newcommand works like the #define you learned in your COMPRO1 class
\newcommand{\etal}{et al.}
%\newcommand{\sinag}{\emph{Sinag}}
%\newcommand{\sinagtwo}{\emph{Sinag2}}
\newcommand{\figref}[1]{Figure \ref{#1}}
\newcommand{\appref}[1]{Appendix \ref{#1}}
%-- \newcommand{\Section}[1]{\section{#1}\setcounter{figure}{0}\setcounter{table}{0}}
%\newcommand{\shade}{\multicolumn{1}{|>{\columncolor[gray]{0.25}}c|}{}}
%\newcommand{\tableheader}[1]{\rowcolor{black}\color{white}{#1}}
%\newcommand{\cell}[2]{\multicolumn{1}{#1}{#2}}
%\newcommand{\definition}[2]{\textbf{\textit{#1}} --- #2}
%\newcommand{\itembit}[1]{\item \textbf{\textit{#1}}}
%\newcommand{\sgdef}[2]{\parbox[t][][t]{1.75in}{\textbf{#1}} \> \parbox[t][][t]{4.0in}{#2}\\\\}
%\newenvironment{sinagglossary}{\begin{flushleft}
%\begin{tabbing}
%\hspace{1.75in}\=\\}{\end{tabbing}\end{flushleft}}
\newcommand{\thestitle}[1]{{\Large \textsc{#1}}}
%---
% \renewcommand{\thefigure}{\thesection.\arabic{figure}}
% \renewcommand{\thetable}{\thesection.\arabic{table}}
% \renewcommand{\contentsname}{Table of Contents}