-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsouthesis.sty
65 lines (53 loc) · 1.86 KB
/
southesis.sty
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
% SOU Comuter Science Master's Thesis Style
\ProvidesPackage{southesis}[2011/11/22]
\usepackage{times}
\usepackage{setspace}
\usepackage[top=1.0in, left=1.5in, right=1.0in, bottom=1.0in, includehead, includefoot]{geometry}
\usepackage{apacite}
\usepackage{fancyhdr}
\usepackage[titletoc]{appendix}
\usepackage{titlesec}
% Put page numbers top-right
\pagestyle{myheadings}
% Redefine plain page style so that page numbers *always* top-right
\fancypagestyle{plain}{
\fancyhf{}
\fancyhead[R]{\thepage} %prints the page number on the right side of the header
\renewcommand{\headrulewidth}{0pt}
}
\renewcommand{\contentsname}{\begin{center}\large{TABLE OF CONTENTS}\end{center}}
\renewcommand{\listtablename}{\begin{center}\large{LIST OF TABLES}\end{center}}
\renewcommand{\listfigurename}{\begin{center}\large{LIST OF FIGURES}\end{center}}
\renewcommand{\chaptername}{CHAPTER}
\renewcommand{\appendixname}{APPENDIX}
% Chapter page format
\titlespacing*{\chapter}{0pt}{-50pt}{20pt}
\titleformat{\chapter}[display]{\center\normalfont\large\bfseries}{\chaptertitlename\ \thechapter}{12pt}{\large}
% Section format
\titleformat{\section}{\normalfont\large\bfseries}{\thesection}{12pt}{}
\titleformat{\subsection}{\normalfont\large}{\thesubsection}{12pt}{}
% Single-space block quotations and only indent on the left
\renewenvironment{quote}
{\list{}{\leftmargin=0.5in}\singlespacing\item[]}
{\endlist}
% Single-spaced lists
\let\oldenumerate=\enumerate
\let\oldendenumerate=\endenumerate
\renewenvironment{enumerate}
{\oldenumerate
\setlength{\itemsep}{0pt}
\setlength{\parskip}{0pt}}
{\oldendenumerate}
\let\olditemize=\itemize
\let\oldenditemize=\enditemize
\renewenvironment{itemize}
{\olditemize
\setlength{\itemsep}{0pt}
\setlength{\parskip}{0pt}}
{\oldenditemize}
% 1.5 line spacing
\onehalfspacing
% Do not right justify
\raggedright
\parindent=0.5in
\bibliographystyle{apacite}