blob: fcea11992f298c339926a8d896ec3fbbf6927e60 (
plain)
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
%%---------------------------------------------------
%%-- RC Thesis
%%---------------------------------------------------
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{sambadoc}
%%---------------------------------------------------
%%-- Load the base class and modify current macros.
%%---------------------------------------------------
\newif\if@usecppsyntax \@usecppsyntaxfalse
\DeclareOption{cpp}{\@usecppsyntaxtrue}
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{scrreprt}}
\ProcessOptions
\LoadClass{scrreprt}
%%--Set the section number depth.
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{4}
%\setcounter{page}{2}
%%--Create a vertical skip for the distance between the title and
%%--the first line of text on the prolog pages.
\newskip\thesisvskip
\thesisvskip 36pt
%%--Set the margins. %\headheight6pt \headsep12pt
\usepackage[margin=20pt,head=20pt,headsep=20pt,foot=20pt]{geometry}
%%--Use typehtml for better specification of tables
\usepackage{typehtml}
%%--Change the marginpar.
\reversemarginpar
\let\old@marginpar=\marginpar
\def\marginpar#1{
\old@marginpar{\def\baselinestretch{1}\em\small #1}}
\renewcommand*{\scr@parskip}{%
\setlength{\parskip}{\baselineskip}%
\addtolength{\parskip}{\z@ \@plus .5\baselineskip}}
\setlength\parindent{0pt}
%%--Parameters that can be set by the user.
\def\samba@listtables{y}
\def\samba@listfigures{y}
\newcommand{\notablelist}{\gdef\samba@listtables{n}}
\newcommand{\nofigurelist}{\gdef\samba@listfigures{n}}
%%--Modify behavior of the figure and table environment.
\def\fps@figure{hbt}
\def\fnum@figure{{\bf \figurename~\thefigure}}
\def\fps@table{htb}
\def\fnum@table{{\bf \tablename~\thetable}}
\def\mathfigure{\thesisfiguretrue\figure}
\def\endmathfigure{\endfigure\thesisfigurefalse}
%%-----------------------------------------------
%%-- Modify the displayed math environments.
%%-----------------------------------------------
\newif\ifthesisfigure
\thesisfigurefalse
%%--------------------------------------------
%%-- Miscellaneous commands.
%%--------------------------------------------
%%--Commands to simplify font changing.
\newcommand{\sfup}{\sffamily\mdseries\upshape}
\newcommand{\sfsc}{\ttfamily\mdseries\scshape}
\newcommand{\sfit}{\sffamily\mdseries\itshape}
\newcommand{\rmup}{\rmfamily\mdseries\upshape}
\newcommand{\rmbf}{\rmfamily\bfseries\upshape}
\newcommand{\rmit}{\rmfamily\mdseries\itshape}
\newcommand{\ttup}{\ttfamily\mdseries\upshape}
\endinput
%%--The \tableofcontents.
\renewcommand\tableofcontents{%
\renewcommand{\contentsname}{Table of Contents}
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse
\fi
\oldchapter*{\contentsname
\@mkboth{\uppercase{\contentsname}}{\uppercase{\contentsname}}}%
\@starttoc{toc}%
\if@restonecol\twocolumn\fi}
%%--The \listoffigures command.
\renewcommand\listoffigures{%
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse
\fi
\oldchapter*{\listfigurename
\@mkboth{\uppercase{\listfigurename}}{\uppercase{\listfigurename}}}%
\@starttoc{lof}%
\if@restonecol\twocolumn\fi}
%%--The \listoftables command.
\renewcommand\listoftables{%
\if@twocolumn%
\@restonecoltrue\onecolumn%
\else%
\@restonecolfalse%
\fi%
\oldchapter*{\listtablename%
\@mkboth{\uppercase{\listtablename}}{\uppercase{\listtablename}}}%
\@starttoc{lot}%
\if@restonecol\twocolumn\fi}
\endinput
|