-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.cls
1387 lines (1278 loc) · 46.4 KB
/
thesis.cls
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% thesis.cls - LaTeX2e class for CU Theses.
%% To conform to the University of Colorado at Boulder
%% Graduate School SPECIFICATIONS (April 2010) for
%% Preparation of Master's Thesis and Doctoral Dissertations
%% Version 1.00 written by John P. Weiss, 1997
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% version 1.16, Nicholas Long, October 2023 -- Merged in the
%% latest updates from CU's hosted version of this class.
%% This version is nearly identical as prospectus.cls, but
%% now includes the PhD fulfillment text.
%% version 1.15, Nicholas Long, May 2022 -- Added listings and
%% acronyms to table of contents. Added fourth and
%% fifth readers. This version also updated the cover
%% to focus to be a prospectus.
%% version 1.14, Ken Anderson, August 2020 -- removed signature
%% page; instead list committee members on title page.
%% Changes made to comply with new Graduate School
%% guidelines.
%% version 1.13, Hongcheng Ni, March 2014 -- made compatible with
%% hyperref.
%% version 1.12, Hongcheng Ni, March 2014 -- added title before
%% the advisor's name in the signature page.
%% version 1.11, Bruce Fast, April 2008 -- changed left margin
%% from 1.75" to 1", and added \IRBprotocol option
%% version 1.10, E. Joshua Rigler, January 2003 -- making it safe
%% for folks who inadvertently load setspace.sty, changed
%% \latex@xfloat to \latexx@xfloat
%% version 1.09, BF, November 2000 -- conforms to revised specs
%% no significant changes required
%% version 1.08, Steven V Penton, September 1999 -- added
%% \readerFive; moved list of tables in front of figures
%% version 1.07, BF, January 1999 -- fixed \LoFisShort etc.
%% version 1.06, BF, November 1998 -- fixed level 4 headers;
%% SubSubSections, inline4 & nonum4. Eliminated
%% unwanted space before chapter/section numbers.
%% version 1.05, BF, August 1998 -- Footnotes and floats
%% (captions) now singlespaced, fixing an omission
%% in v1.04. Fixed value of \belowcaptionskip,
%% for table captions.
%% version 1.04, BF, July 1998, Adjusted doublespacing
%% (no longer uses setspace.sty) and margin values.
%% version 1.03, May 1998, Bruce Fast -- Added optional
%% \readerThree{}, \readerFour{}; LoF/LoT debugging;
%% doublespaced abstract
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
\ProvidesClass{thesis}[2023/10/16] % version 1.16
\typeout{}
\typeout{--------------------------------------------------------------}
\typeout{ +---+ Thesis Style (thesis.cls) version 1.14}
\typeout{ +---+ for University of Colorado Ph.D. theses/dissertations.}
\typeout{ * Conforms to the University of Colorado at Boulder Graduate}
\typeout{ * School "SPECIFICATIONS for Preparation of Master's Thesis}
\typeout{ * and Doctoral Dissertations" (rev. October 2023).}
\typeout{--------------------------------------------------------------}
\typeout{ URL: http://www.colorado.edu/oit/software-hardware/tex-latex}
\typeout{}
% Certain options are not handled here but are passed on to report.cls
% by \PassOptionToClass.
\DeclareOption{fleqn}{ \PassOptionsToClass{fleqn}{report} }
\DeclareOption{leqno}{ \PassOptionsToClass{leqno}{report} }
\DeclareOption{openbib}{ \PassOptionsToClass{openbib}{report} }
\DeclareOption{draft}{ \PassOptionsToClass{draft}{report} }
\DeclareOption{final}{ \PassOptionsToClass{final}{report} }
\DeclareOption{openright}{ \PassOptionsToClass{openright}{report} }
\DeclareOption{openany}{ \PassOptionsToClass{openany}{report} }
\DeclareOption{10pt}{ \PassOptionsToClass{10pt}{report} }
\DeclareOption{11pt}{ \PassOptionsToClass{11pt}{report} }
\DeclareOption{12pt}{ \PassOptionsToClass{12pt}{report} }
% Invalid options - normally used in report.cls and others, but not here:
\DeclareOption{titlepage}
{\ClassWarning{thesis}{Title page always generated. Option ignored.}}
\DeclareOption{notitlepage}
{\ClassWarning{thesis}{Option 'notitlepage' not available for thesis.}}
\DeclareOption{twoside}
{\ClassWarning{thesis}{Option 'twoside' not available for thesis.}}
\DeclareOption{twocolumn}
{\ClassWarning{thesis}{Option 'twocolumn' not available for thesis.}}
\DeclareOption{landscape}
{\ClassWarning{thesis}{Option 'landscape' not available for thesis.}}
\DeclareOption{legalpaper}
{\ClassWarning{thesis}{Option 'legalpaper' not available for thesis.}}
\DeclareOption{a4paper}
{\ClassWarning{thesis}{Option 'a4paper' not available for this class.}}
\DeclareOption{a5paper}
{\ClassWarning{thesis}{Option 'a5paper' not available for this class.}}
\DeclareOption{executivepaper}
{\ClassWarning{thesis}{Option 'executivepaper' not available.}}
\DeclareOption{b5paper}
{\ClassWarning{thesis}{Option 'b5paper' not available for this class.}}
\DeclareOption{letterpaper}
{\ClassWarning{thesis}{Option 'letterpaper' superfluous. Ignored.}}
\DeclareOption{onecolumn}
{\ClassWarning{thesis}{Option 'onecolumn' superfluous. Ignored.}}
\DeclareOption{oneside}
{\ClassWarning{thesis}{Option 'oneside' superfluous. Ignored.}}
%%%%%%%%%%% CUSTOM OPTIONS:
% Options for no decimal numbering, or decimal number nested over 3 deep:
\newif\if@AllHeadings
\newif\if@NumberStdHeadings
\newif\if@PerChptrNumbering
\newif\if@emphisbold
\newif\if@boldhead
\newif\if@fixedHeadSz
\newif\if@headSizeTwelvePt
\newif\if@ChapterDefault
\newif\if@SectionDefault
\newif\if@SubSectionDefault
\newif\if@OtherHeadingDefault
\newif\if@centerChapter
\newif\if@centerSection
\newif\if@inlineSubSubSection
\newif\if@numberSubSubSection
\newif\if@chapterCaps
\@AllHeadingsfalse
\@NumberStdHeadingstrue
\@PerChptrNumberingtrue
\@emphisboldtrue
\@boldheadtrue
\@fixedHeadSzfalse
\@centerChaptertrue
\@centerSectionfalse
\@inlineSubSubSectionfalse
\@numberSubSubSectiontrue
\@chapterCapsfalse
\@headSizeTwelvePttrue
\DeclareOption{consecutivenumbering}{ \@PerChptrNumberingfalse }
\DeclareOption{inlineh4}{ \@inlineSubSubSectiontrue }
\DeclareOption{nonumh4}{ \@numberSubSubSectionfalse }
\DeclareOption{centerh1}{ \@centerSectiontrue }
\DeclareOption{chapleft}{ \@centerSectiontrue }
\DeclareOption{chapup}{ \@chapterCapstrue }
\DeclareOption{emph2underline}{ \@emphisboldfalse }
\DeclareOption{plainhead}{ \@boldheadfalse }
\DeclareOption{fixedheadsize}{ \@fixedHeadSztrue }
\DeclareOption{varheadsize}{\@headSizeTwelvePtfalse}% Hidden option. Don't use.
\DeclareOption{numberchapteronly}{
\@PerChptrNumberingfalse\@NumberStdHeadingsfalse\@AllHeadingsfalse
\@centerChaptertrue\@centerSectiontrue
\@inlineSubSubSectiontrue\@numberSubSubSectionfalse }
\DeclareOption{allheadings}{
\@PerChptrNumberingtrue\@NumberStdHeadingstrue\@AllHeadingstrue
\@centerChaptertrue\@centerSectionfalse
\@inlineSubSubSectionfalse\@numberSubSubSectiontrue}
\DeclareOption{typewriterstyle}{ \@emphisboldfalse
\@PerChptrNumberingfalse\@NumberStdHeadingsfalse\@AllHeadingsfalse
\@centerChaptertrue\@centerSectiontrue\@chapterCapstrue
\@inlineSubSubSectiontrue\@numberSubSubSectionfalse
\@boldheadfalse\@fixedHeadSztrue}
\DeclareOption{modernstyle}{ \@emphisboldtrue
\@PerChptrNumberingtrue\@NumberStdHeadingstrue\@AllHeadingsfalse
\@centerChaptertrue\@centerSectionfalse\@chapterCapsfalse
\@inlineSubSubSectiontrue\@numberSubSubSectionfalse
\@boldheadtrue\@fixedHeadSzfalse}
\DeclareOption{defaultstyle}{ \@emphisboldtrue
\@PerChptrNumberingtrue\@NumberStdHeadingstrue\@AllHeadingsfalse
\@centerChaptertrue\@centerSectionfalse\@chapterCapsfalse
\@inlineSubSubSectionfalse\@numberSubSubSectiontrue
\@boldheadtrue\@fixedHeadSzfalse}
% Now we load the report class with certain options by default. It
% will process any other options specified. Then, we process the
% options for this class file. Lastly, we load in the font option
% file for the given font size.
\ProcessOptions
\LoadClass[letterpaper,oneside,onecolumn]{report}[1996/10/31]
% Other required LaTeX2e packages: if your computer doesn't already
% have these, you can copy them to your own directory (URL above):
\RequirePackage{indentfirst} % indentfirst.sty, 1995/11/23
\RequirePackage{ifthen} % ifthen.sty, 1996/08/02
\RequirePackage[ULforem,normalbf]{ulem} % ulem.sty, 1995/12/17
%%%%%% SPECIAL INTERNAL COMMANDS. Needed by later routines.
% Create a command to be used for default arguments.
\newcommand*{\th@DefArg}{aWfdRvV11f66GL00K5}
% Now create a command to check for the default argument, and call the
% command [in the first arg] appropriately. Used for section heading
% commands.
\newcommand{\th@ExecChkOptArg}[3]{
\ifthenelse{\equal{\th@DefArg}{#2}}{
#1{#3}
}{
#1[#2]{#3}}
}
% Controls the heading styles. You can change the size to suit your needs.
\if@fixedHeadSz
\newcommand*{\th@ChSz}{\normalsize}
\newcommand*{\th@ScSz}{\normalsize}
\else\if@headSizeTwelvePt
\newcommand*{\th@ChSz}{\normalsize\fontsize{12}{12}\selectfont}
\newcommand*{\th@ScSz}{\normalsize\fontsize{12}{12}\selectfont}
\else
\newcommand*{\th@ChSz}{\normalsize\Large}
\newcommand*{\th@ScSz}{\normalsize\large}
\fi\fi
\if@boldhead
\newcommand*{\th@HdFnt}{\normalfont\bfseries}
\else
\newcommand*{\th@HdFnt}{\normalfont}
\fi
% The style commands proper. Controlled by a flag.
\newif\if@thInHeading
\@thInHeadingfalse
\newcommand*{\th@ChapterStyle}{\if@thInHeading\th@HdFnt\th@ChSz\fi}
\newcommand*{\th@SectionStyle}{\if@thInHeading\th@HdFnt\th@ScSz\fi}
\newcommand*{\th@SubSectionStyle}{\if@thInHeading\normalsize\th@HdFnt\fi}
\newcommand*{\th@OtherSecHeadStyles}{\if@thInHeading\normalsize\th@HdFnt\fi}
% Re-define the emphasis commands to use either BOLDFACE or UNDERLINING,
% depending on the startup flags.
\newcommand*{\EmphReset}{
\if@emphisbold
\let\em\bfseries
\let\emph\textbf
\else
\ULforem
\fi
}
% Makes the chapter heading label, putting it in the desired style.
% We need to define it here, since we need it before redefining the
% chapter commands.
\newcommand*{\th@DoChapCenter}{\if@centerChapter\centering\fi}
\newcommand*{\th@ChapHead}[1]{
\protect\th@ChapterStyle
\protect\th@DoChapCenter #1}
%%%%%%% DEFINE DOUBLE-SPACING (THE DEFAULT) AND OTHER SPACING:
\def\setspace@size{\ifx\@currsize\normalsize\@normalsize\else\@currsize\fi}
\def\doublespacing{ \ifcase \@ptsize \relax
\def \baselinestretch {2.004}% 10pt
\or \def \baselinestretch {1.771}% 11pt
\or \def \baselinestretch {1.660}% 12pt
\fi \setspace@size}
\def\singlespacing{\def \baselinestretch {1} \setspace@size \vskip \baselineskip}
\def\setstretch#1{\renewcommand{\baselinestretch}{#1}}
\def\@setsize#1#2#3#4{\@nomath#1
\let\@currsize#1 \baselineskip #2
\baselineskip \baselinestretch\baselineskip
\parskip \baselinestretch\parskip
\setbox\strutbox \hbox{ \vrule height.7\baselineskip depth.3\baselineskip
width\z@} \skip\footins \baselinestretch\skip\footins
\normalbaselineskip\baselineskip#3#4}
%%%%%%%%% floats & footnotes singlespaced %%%%%%%%%
\let\latexx@xfloat=\@xfloat
\def\@xfloat #1[#2]{\latexx@xfloat #1[#2]
\def\baselinestretch{1}\@normalsize \normalsize}
\long\def\@footnotetext#1{
\insert\footins{
\def\baselinestretch {1}
\reset@font\footnotesize
\interlinepenalty\interfootnotelinepenalty
\splittopskip\footnotesep
\splitmaxdepth \dp\strutbox \floatingpenalty \@MM
\hsize\columnwidth \@parboxrestore
\protected@edef\@currentlabel{
\csname p@footnote\endcsname\@thefnmark}
\color@begingroup \@makefntext{
\rule\z@\footnotesep\ignorespaces#1\@finalstrut\strutbox}
\color@endgroup}}
\long\def\@mpfootnotetext#1{
\global\setbox\@mpfootins\vbox{
\unvbox \@mpfootins
\def\baselinestretch {1}
\reset@font\footnotesize
\hsize\columnwidth \@parboxrestore
\protected@edef\@currentlabel{
\csname p@mpfootnote\endcsname\@thefnmark}
\color@begingroup \@makefntext{
\rule\z@\footnotesep\ignorespaces#1\@finalstrut\strutbox}
\color@endgroup}}
%%%%%%%% single / double spacing %%%%%%%%%
\def\singlespace{ \vskip \baselineskip \def\baselinestretch {1}
\setspace@size \vskip -\baselineskip }
\def\endsinglespace{\par}
\def\spacing#1{ \par \begingroup \def\baselinestretch {#1} \setspace@size }
\def\endspacing{ \par \vskip \parskip \vskip \baselineskip
\endgroup \vskip -\parskip \vskip -\baselineskip }
\def\doublespace{ \ifcase \@ptsize \relax
\spacing{2.004}% 10pt
\or \spacing{1.771}% 11pt
\or \spacing{1.660}% 12pt
\fi }
\let\enddoublespace=\endspacing
%%%%% SET THE OVERALL DOCUMENT PROPERTIES, such as page numbering,
% margins... Initialize several global document properties, but do so
% *before* the beginning of the document to forces these changes.
\AtBeginDocument{
\setlength{\topmargin}{-0.30in}
\setlength{\headheight}{0.20in}
\setlength{\headsep}{0.0in}
\setlength{\topskip}{0.40in} % first line, down from page number
\setlength{\textheight}{9.10in} % 9"-(topmargin+headsep+headheight)
\setlength{\footskip}{0pt}
\setlength{\oddsidemargin}{0.00in}
\setlength{\evensidemargin}{0.00in}
\setlength{\parindent}{0.40in} % somewhere between 0.3" and 0.5"
\setlength{\textwidth}{6.50in}
\setlength{\leftmargini}{3.5em}
\setlength{\leftmarginii}{2.2em}
\setlength{\leftmarginiii}{2.2em}
\setlength{\leftmarginiv}{2.2em}
\setlength{\leftmarginv}{2.2em}
\setlength{\leftmarginvi}{2.2em}
\setlength{\leftmargin}{\leftmargini}
\setlength{\labelsep}{.5em}
\setlength{\labelwidth}{ 1.5em}
\pagenumbering{arabic}
\pagestyle{myheadings}
\markright{}
\onecolumn
\raggedbottom
\normalsize
\normalfont
\EmphReset % bold or underlined?
\doublespacing % footnotes and floats still singlespaced
\setcounter{tocdepth}{2}
\setcounter{secnumdepth}{\value{th@SecNum}}
% Redefine the bibliography command here, just in case someone
% uses a custom *.sty file that redefines bibliography command
\let\th@OldBib\thebibliography
\let\endth@OldBib\endthebibliography
\renewenvironment*{thebibliography}[1]{
\begin{th@OldBib}{#1}
\ULforem% set \em to underline
\begin{singlespace}
\addcontentsline{toc}{part}{\bibnameToC}
}{
\end{singlespace}
\EmphReset% set \em back to the user-specified default.
\end{th@OldBib}
}
}
%%%%%%%%%%% ADDITIONAL STUFF:
\setcounter{tocdepth}{2}
\newcommand*{\@normalsize}{\normalsize}
\doublespacing
% Figures and Tables
\setcounter{topnumber}{1}
\renewcommand*{\topfraction}{.4}
\setcounter{totalnumber}{2}
\renewcommand*{\textfraction}{.5}
\renewcommand*{\floatpagefraction}{.3}
\setcounter{dbltopnumber}{1}
\renewcommand*{\dbltopfraction}{.4}
\renewcommand*{\dblfloatpagefraction}{.3}
\setlength{\abovecaptionskip}{10pt}
\setlength{\belowcaptionskip}{10pt}
% Re-define some formatting commands to produce lists, labels,
% and numberings that are more to the Grad School's liking.
% Set up some titles on the table of contents page.
\renewcommand*{\figurename}{Figure}
\renewcommand*{\tablename}{Table}
\newcommand*{\figurenameToC}{\normalsize\th@HdFnt\figurename\normalfont}
\newcommand*{\tablenameToC}{\normalsize\th@HdFnt\tablename\normalfont}
\if@chapterCaps
\renewcommand*{\contentsname}{\th@ChapHead{CONTENTS}}
\renewcommand*{\listfigurename}{\th@ChapHead{FIGURES}}
\renewcommand*{\listtablename}{\th@ChapHead{TABLES}}
\renewcommand*{\appendixname}{\th@ChapHead{APPENDIX}}
\renewcommand*{\bibname}{\th@ChapHead{BIBLIOGRAPHY}}
\renewcommand*{\chaptername}{\th@ChapHead{CHAPTER}}
\newcommand*{\chapternameToC}{
\normalsize\th@HdFnt CHAPTER\normalfont}
\newcommand*{\bibnameToC}{
\normalsize\th@HdFnt BIBLIOGRAPHY\normalfont}
\newcommand*{\appendixnameToC}{
\normalsize\th@HdFnt APPENDIX\normalfont}
\else
\renewcommand*{\contentsname}{\th@ChapHead{Contents}}
\renewcommand*{\listfigurename}{\th@ChapHead{Figures}}
\renewcommand*{\listtablename}{\th@ChapHead{Tables}}
\renewcommand*{\appendixname}{\th@ChapHead{Appendix}}
\renewcommand*{\bibname}{\th@ChapHead{Bibliography}}
\renewcommand*{\chaptername}{\th@ChapHead{Chapter}}
\newcommand*{\chapternameToC}{
\normalsize\th@HdFnt Chapter\normalfont}
\newcommand*{\bibnameToC}{
\normalsize\th@HdFnt Bibliography\normalfont}
\newcommand*{\appendixnameToC}{
\normalsize\th@HdFnt Appendix\normalfont}
\fi
% Adds the appropriate label to the ToC/LoF/LoT
\addtocontents{lof}{\protect\contentsline {part}
{\protect\figurenameToC}{\protect\relax}{}}
\addtocontents{lot}{\protect\contentsline {part}
{\protect\tablenameToC}{\protect\relax}{}}
\addtocontents{toc}{\protect\contentsline {part}
{\protect\chapternameToC}{\protect\relax}{}}
% NUMBERING STYLES, DEFAULT VALUES
% Using macros of the form \th@Def* avoids conflicts with
% LaTeX internals which use \theDef* forms...
\newcounter{th@SecNum}
\setcounter{th@SecNum}{3}
\if@NumberStdHeadings
\@centerSectionfalse% Force this.
\newcommand*{\th@DefTheChapter}{\arabic{chapter}}
\newcommand*{\th@DefTheSection}{\th@DefTheChapter.\arabic{section}}
\newcommand*{\th@DefTheSubsection}{\th@DefTheSection.\arabic{subsection}}
\else
\@AllHeadingsfalse% Just to be safe...
\newcommand*{\th@DefTheChapter}{\Roman{chapter}}
\newcommand*{\th@DefTheSection}{\relax}
\newcommand*{\th@DefTheSubsection}{\relax}
\fi
\if@AllHeadings
\@inlineSubSubSectionfalse% Force this...
\@numberSubSubSectiontrue% ...and this.
\newcommand*{\th@DefTheSubsubsection}
{\th@DefTheSubsection.\arabic{subsubsection}}
\newcommand*{\th@DefTheParagraph}
{\th@DefTheSubsubsection.\arabic{paragraph}}
\newcommand*{\th@DefTheSubparagraph}
{\th@DefTheParagraph.\arabic{subparagraph}}
\else
\newcommand*{\th@DefTheParagraph}{\relax}
\newcommand*{\th@DefTheSubparagraph}{\relax}
\if@numberSubSubSection
\newcommand*{\th@DefTheSubsubsection}
{\th@DefTheSubsection.\arabic{subsubsection}}
\else
\newcommand*{\th@DefTheSubsubsection}{\relax}
\fi
\fi
\renewcommand*{\thechapter}{\th@DefTheChapter}
\renewcommand*{\thesection}{\th@DefTheSection}
\renewcommand*{\thesubsection}{\th@DefTheSubsection}
\renewcommand*{\thesubsubsection}{\th@DefTheSubsubsection}
\renewcommand*{\theparagraph}{\th@DefTheParagraph}
\renewcommand*{\thesubparagraph}{\th@DefTheSubparagraph}
% Figure, Table, and Equation numbering.
\if@PerChptrNumbering\else
\newcounter{th@SaveFigure}
\newcounter{th@SaveTable}
\newcounter{th@SaveEquation}
\renewcommand*{\thefigure}{\arabic{figure}}
\renewcommand*{\thetable}{\arabic{table}}
\renewcommand*{\theequation}{\arabic{equation}}
\fi
% Enumerated List labels
\renewcommand*{\theenumi}{\arabic{enumi}}
\renewcommand*{\theenumii}{\alph{enumii}}
\renewcommand*{\theenumiii}{\roman{enumiii}}
\renewcommand*{\theenumiv}{\alph{enumiv}}
\renewcommand*{\labelenumi}{(\theenumi)}
\renewcommand*{\labelenumii}{(\theenumii)}
\renewcommand*{\labelenumiii}{(\theenumiii)}
\renewcommand*{\labelenumiv}{(\theenumiii.\theenumiv)}
% Itemized list labels.
\renewcommand*{\labelitemi}{\textbullet}
\renewcommand*{\labelitemii}{\textasteriskcentered}
\renewcommand*{\labelitemiii}{\normalfont \bfseries \textendash}
\renewcommand*{\labelitemiv}{\textperiodcentered}
% Margins for lists
\setlength{\leftmargini}{3.5em}
\setlength{\leftmarginiii}{2.2em}
\setlength{\leftmarginiv}{2.2em}
\setlength{\leftmarginv}{2.2em}
\setlength{\leftmarginvi}{2.2em}
\setlength{\leftmargin}{\leftmargini}
\setlength{\labelwidth}{1.5em}
% Redefine certain commands and environments from report.cls.
% This is where things get messy. We rename each command we modify,
% then redefine the command using the old version as subset.
% VERSE, QUOTATION, and QUOTE must be single-spaced.
% These rename the internal commands for the \begin{...} and
% \end{...} environment commands.
\let\th@OldVerse\verse
\let\th@OldQuotation\quotation
\let\th@OldQuote\quote
\let\endth@OldVerse\endverse
\let\endth@OldQuotation\endquotation
\let\endth@OldQuote\endquote
% Note - the ``\begin{singlespace}'' and ``\end{singlespace}''
% are defined in setspace.sty.
\renewenvironment*{verse}{\begin{th@OldVerse}\begin{singlespace}}
{\end{singlespace}\end{th@OldVerse}}
\renewenvironment*{quotation}{\begin{th@OldQuotation} \begin{singlespace}}
{\end{singlespace}\end{th@OldQuotation}}
\renewenvironment*{quote}{\begin{th@OldQuote} \begin{singlespace}}
{\end{singlespace} \end{th@OldQuote}}
% Theorems and Axioms: They must NOT be italicized. To do this
% robustly, I've needed to use some in-depth TeXnology. Check out a
% good LaTeX book for info on the \@namedef and \@nameuse commands.
\let\th@OldNewtheorem\newtheorem
% Check for the calling format: \newtheorem{}[]{}
\def\newtheorem#1{ \@ifnextchar[{\th@nuthrmOM{#1}}{\th@newtheoremTwo{#1}}%]
}
% Calling format: \newtheorem{}{}[]; checks for the optional arg at the end.
\def\th@newtheoremTwo#1#2{
\@ifnextchar[{\th@nuthrmO{#1}{#2}}{\th@nuthrm{#1}{#2}}%]
}
% Standard call. No optional args.
\def\th@nuthrm#1#2{
\th@OldNewtheorem{th@#1}{#2}
\th@correctTheorem{end#1}{#1}{endth@#1}{th@#1}
}
% Optional arg at end.
\def\th@nuthrmO#1#2[#3]{
\th@OldNewtheorem{th@#1}{#2}[#3]
\th@correctTheorem{end#1}{#1}{endth@#1}{th@#1}
}
% Optional arg in the middle.
\def\th@nuthrmOM#1[#2]#3{
\th@OldNewtheorem{th@#1}[th@#2]{#3}
\th@correctTheorem{end#1}{#1}{endth@#1}{th@#1}
}
\def\th@execThrmOpt#1[#2]{
\@nameuse{#1}[#2] \normalsize\normalfont
}
\newcommand*{\th@correctTheorem}[4]{
\@namedef{#1}{\@nameuse{#3}}
\@namedef{#2}{\@ifnextchar[{\th@execThrmOpt{#4}}{ %%}
\@nameuse{#4} \normalsize\normalfont}
}
}
% APPENDIX command
\newcounter{th@SectionSave}
\let\th@OldAppCmd\appendix
\renewcommand{\appendix}{
\setcounter{th@SectionSave}{\value{section}}
\th@OldAppCmd
\if@NumberStdHeadings\else
\setcounter{section}{\value{th@SectionSave}}
\fi
\addtocontents{toc}{\protect\contentsline {part}
{\protect\appendixnameToC}{\protect\relax}{}}
\renewcommand*{\th@DefTheChapter}{\Alph{chapter}}
}
%%%%%%%%%%%%%%% BIBLIOGRAPHY: Used to be redefined here.
% Moved to permit use of different bibliography .sty and .bst files.
% It's now in the '\AtBeginDocument' command.
%%%%%%%%%%%%%%% SECTION HEADINGS (including several new options):
% New if-s
\newif\if@AlwaysFalse
\@AlwaysFalsefalse
\newif\if@CenterHeading
\@CenterHeadingfalse
\newif\if@UseStarCmd
\@UseStarCmdfalse
%%%%%%%%%%%%%%% GENERAL AND SETUP COMMANDS.
% Makes a heading.
% The optional argument (#1) is a centering flag. The heading gets
% centered if it's present and set to true.
% The second arg is the style command.
% The third arg is the heading proper.
\newcommand*{\th@MakeHeading}[2]{
\protect #1
\if@CenterHeading\begin{center}\typeout{centered}\fi
#2
\if@CenterHeading\end{center}\fi
}
% Makes a heading.
% The entire thing is something of a mess. We want all ToC entries to
% be in normal text. We also want references in normal text. But, we
% want the heading numbers to appear in the correct size and font. To
% get this to happen is a chore.
% The args are, in order:
% The command to execute (#1),
% The heading style command (#2),
% The optional arg passed to the heading command proper (#3).
% E.g. if you execute a \section[foo]{bigfoo}, #3=="foo".
% The heading text itself (#4).
% The name of the current command (#5). E.g. "chapter".
% The internal command that generates the number label (#6).
% There are also two important flags used by this command. The first
% is \@UseStarCmd. Set this to "true" if this is the starred version
% of the command. The second flag is \@thInHeading. This gets set
% 'true' inside the section heading commands and turned off at the end
% of the command.
\newcommand*{\th@Heading}[6]{
\@thInHeadingtrue
% Alter the '\the...' command.
\@namedef{the#5}{\protect#2 #6}
\if@UseStarCmd
#1*{\th@MakeHeading{\protect#2}{#4}}
\else
\ifthenelse{\equal{\th@DefArg}{#3}}{
#1[\normalsize\normalfont#4]{
\th@MakeHeading{\protect#2}{#4}}
}{
#1[\normalsize\normalfont#3]{
\th@MakeHeading{\protect#2}{#4}}
}
\fi
% Reset the '\the...' command, but don't enforce
% '\normalsize\normalfont' anywhere, as this messes up
% cross-references in footnotes.
\@namedef{the#5}{#6}
\@thInHeadingfalse
\@CenterHeadingfalse
\normalsize\normalfont
}
%%%%%%%%%%% CHAPTER HEADING:
% The chapter command definitely needs some re-defining. The primary
% purpose is to control numbering in figures, tables, and equations.
\let\th@OldChapter\chapter
% The \@ifstar{}{} is a LaTeX tool to check the character following
% the command and see if it's a '*'.
\renewcommand*{\chapter}{\@ifstar{\th@ChapterS}{\th@Chapter}}
% Special if-s; used internally for chapters.
\newif\if@THshortChapter
\@THshortChapterfalse
% We define a special command for stepping the chapter counter,
% zeroing the figure, table, and equation counters only if necessary.
\newcommand*{\th@PreChCmd}{
\if@PerChptrNumbering
\relax
\else
\setcounter{th@SaveTable}{\value{table}}
\setcounter{th@SaveFigure}{\value{figure}}
\setcounter{th@SaveEquation}{\value{equation}}
\fi
}
\newcommand*{\th@PostChCmd}{
\if@THshortChapter
\typeout{Short Chapter (page numbered)}
\@THshortChapterfalse
\thispagestyle{myheadings}
\else
\thispagestyle{empty}
\fi
\if@PerChptrNumbering
\relax
\else
\setcounter{table}{\value{th@SaveTable}}
\setcounter{figure}{\value{th@SaveFigure}}
\setcounter{equation}{\value{th@SaveEquation}}
\fi
\normalsize\normalfont
\@UseStarCmdfalse
}
\if@chapterCaps
\newcommand*{\th@Chapter}[2][\th@DefArg]{
\th@PreChCmd
\@UseStarCmdfalse
\if@centerChapter\@CenterHeadingtrue\else\@CenterHeadingfalse\fi
\th@Heading{\th@OldChapter}{\th@ChapterStyle}{#1}
{\uppercase\expandafter{#2}}{chapter}{\th@DefTheChapter}
\th@PostChCmd
}
\newcommand*{\th@ChapterS}[1]{
\th@PreChCmd
\@UseStarCmdtrue
\if@centerChapter\@CenterHeadingtrue\else\@CenterHeadingfalse\fi
\th@Heading{\th@OldChapter}{\th@ChapterStyle}{\th@DefArg}
{\uppercase\expandafter{#1}}{chapter}{\th@DefTheChapter}
\th@PostChCmd
}
\else
\newcommand*{\th@Chapter}[2][\th@DefArg]{
\th@PreChCmd
\@UseStarCmdfalse
\if@centerChapter\@CenterHeadingtrue\else\@CenterHeadingfalse\fi
\th@Heading{\th@OldChapter}{\th@ChapterStyle}{#1}
{#2}{chapter}{\th@DefTheChapter}
\th@PostChCmd
}
\newcommand*{\th@ChapterS}[1]{
\th@PreChCmd
\@UseStarCmdtrue
\if@centerChapter\@CenterHeadingtrue\else\@CenterHeadingfalse\fi
\th@Heading{\th@OldChapter}{\th@ChapterStyle}{\th@DefArg}
{#1}{chapter}{\th@DefTheChapter}
\th@PostChCmd
}
\fi
%%%%%%%%% SECTION HEADING COMMANDS. We need to use the starred version
% and add the numbering and toc-entry ourselves. We need to do this
% for all of the subsequent heading commands. If we don't we'll get
% weird-looking ToC entries and references.
\let\th@OldSection\section
\renewcommand*{\section}{\@ifstar{\th@SectionS}{\th@Section}}
\newcommand*{\th@Section}[2][\th@DefArg]{
\@UseStarCmdfalse
\if@centerSection\@CenterHeadingtrue\else\@CenterHeadingfalse\fi
\th@Heading{\th@OldSection}{\th@SectionStyle}{#1}{#2}
{section}{\th@DefTheSection}
\normalsize\normalfont
}
\newcommand*{\th@SectionS}[1]{
\@UseStarCmdtrue
\if@centerSection\@CenterHeadingtrue\else\@CenterHeadingfalse\fi
\th@Heading{\th@OldSection}{\th@SectionStyle}{\th@DefArg}
{#1}{section}{\th@DefTheSection}
\@UseStarCmdfalse
\normalsize\normalfont
}
%%%%%%%%%% SUBSECTION HEADING COMMANDS.
\let\th@OldSubSection\subsection
\renewcommand*{\subsection}{
\@ifstar{\th@SubSectionS}{\th@SubSection}
}
\newcommand*{\th@SubSection}[2][\th@DefArg]{
\@UseStarCmdfalse
\@CenterHeadingfalse
\th@Heading{\th@OldSubSection}{\th@SubSectionStyle}
{#1}{#2}{subsection}{\th@DefTheSubsection}
\normalsize\normalfont
}
\newcommand*{\th@SubSectionS}[1]{
\@UseStarCmdtrue
\@CenterHeadingfalse
\th@Heading{\th@OldSubSection}{\th@SubSectionStyle}
{\th@DefArg}{#1}{subsection}{\th@DefTheSubsection}
\@UseStarCmdfalse
\normalsize\normalfont
}
%%%%%%%%%% SUBSUBSECTION HEADING COMMANDS. No starred version permitted.
% No ToC entry. We also need to check and see if we should number
% it or not and if we should inline it or not.
\let\th@OldSubSubSection\subsubsection
\newlength{\th@SubSubSecSpc}
\if@numberSubSubSection
\renewcommand*{\thesubsubsection}{\th@DefTheSubsubsection}
\newcommand*{\th@PreSubsubsecCmd}{\@UseStarCmdfalse}
\setcounter{th@SecNum}{4}
\setlength{\th@SubSubSecSpc}{0.5em}
\else
\renewcommand*{\thesubsubsection}{\relax}
\newcommand*{\th@PreSubsubsecCmd}{\@UseStarCmdtrue}
\setlength{\th@SubSubSecSpc}{0em}
\fi
\newif\if@shutoffSSSect
\@shutoffSSSectfalse
\if@inlineSubSubSection
\renewcommand*{\subsubsection}[2][\th@DefArg]{
\refstepcounter{subsubsection}
\vspace{4\parsep}
\underline{%
\@thInHeadingtrue\th@OtherSecHeadStyles%
\thesubsubsection\hspace{\th@SubSubSecSpc}#2}\hspace{2mm}
\ignorespaces\normalsize\normalfont
}
\else
\renewcommand*{\subsubsection}[2][\th@DefArg]{
\th@PreSubsubsecCmd
\@CenterHeadingfalse
\th@Heading{\th@OldSubSubSection}{\th@OtherSecHeadStyles}
{\th@DefArg}{#2}{subsubsection}{\th@DefTheSubsubsection}
\@UseStarCmdfalse\normalsize\normalfont
}
\fi
% We don't need to do much for paragraph and subparagraph. We won't
% even define a *-version or permit entries in the ToC.
\if@AllHeadings
\let\th@OldParagraph\paragraph
\renewcommand*{\paragraph}[2][\th@DefArg]{
\@UseStarCmdfalse
\@CenterHeadingfalse
\th@Heading{\th@OldParagraph}
{\@thInHeadingtrue\th@OtherSecHeadStyles}
{\th@DefArg}{\underline{#2}}{paragraph}
{\hspace*{\parindent}\th@DefTheParagraph}
\@UseStarCmdfalse
\@namedef{theparagraph}{\th@DefTheParagraph
\protect\normalsize\protect\normalfont}
\normalsize\normalfont
}
\let\th@OldSubParagraph\subparagraph
\renewcommand*{\subparagraph}[2][\th@DefArg]{
\@UseStarCmdfalse
\@CenterHeadingfalse
\th@Heading{\th@OldSubParagraph}
{\@thInHeadingtrue\th@OtherSecHeadStyles}
{\th@DefArg}{\underline{#2}}{subparagraph}
{\th@DefTheSubparagraph}
\@UseStarCmdfalse
\@namedef{thesubparagraph}{\th@DefTheSubparagraph
\protect\normalsize\protect\normalfont}
\normalsize\normalfont
}
\setcounter{th@SecNum}{5}
\else
\renewcommand*{\paragraph}[2][\th@DefArg]{
{\normalfont\normalsize\bfseries #2}\hspace*{0.89em}}
\renewcommand*{\subparagraph}[2][\th@DefArg]{
{\normalfont\normalsize\bfseries #2}\hspace*{0.89em}}
\fi
%%%%%%%%%% COMMANDS CHANGED FOR THIS CLASS
%%%%%% Unavailable commands
\renewcommand*{\theindex}{\ClassWarning{thesis}
{Indexing not available in this class.}}
\renewcommand*{\twocolumn}{\ClassWarning{thesis}
{Twocolumn not available in this class.}}
\renewcommand*{\thepart}{\ClassWarning{thesis}
{``thepart'' not available in this class.}}
\renewcommand*{\part}{\ClassWarning{thesis}
{``thepart'' not available in this class.}}
%%%%%% New commands
% This forces a page number on the first page of a chapter, etc.
\newcommand*{\forcepageno}{\thispagestyle{myheadings}}
\newcommand*{\OnePageChapter}{\forcepageno}
%%%%%%%%%%% THESIS PROLOGUE PAGES:
% Stores the second arg in the command specified by the first arg.
\newcommand{\th@StoreIn}[2]{ \gdef#1{#2} }
% Default values of storage variables. Emits an error message.
% This part of the class is long...
\newcommand*{\th@title}{
\ClassError{thesis}{
You must specify a title!}
{Use the \protect\title{} command in the preamble.}
}
\newcommand*{\th@fwdname}{
\ClassError{thesis}{
You must specify your name!}
{Use the \protect\author{}{} command in the \MessageBreak
preamble. The first arg is your first name and \MessageBreak
middle initial. The second arg is your last name.}
}
\newcommand*{\th@revname}{
\ClassError{thesis}{
You must specify your name!}
{Use the \protect\author{}{} command in the \MessageBreak
preamble. The first arg is your first name and \MessageBreak
middle initial. The second arg is your last name.}
}
\newcommand*{\th@deptname}{
\ClassError{thesis}{
You must specify the name of the department \MessageBreak
granting your degree and what type of \MessageBreak
organization it is within the University.}
{Use the \protect\dept{}{} command in the \MessageBreak
preamble. The second arg is the name of the \MessageBreak
department. The first arg is the department's \MessageBreak
official designation, e.g. 'College of', \MessageBreak
'Department of', 'School of', etc.}
}
\newcommand*{\th@deptorg}{
\ClassError{thesis}{
You must specify the name of the department \MessageBreak
granting your degree and what type of \MessageBreak
organization it is within the University.}
{Use the \protect\dept{}{} command in the \MessageBreak
preamble. The second arg is the name of the \MessageBreak
department. The first arg is the department's \MessageBreak
official designation, e.g. 'College of', \MessageBreak
'Department of', 'School of', etc.}
}
\newcommand*{\th@advisor}{
\ClassError{thesis}{
You must specify your research advisor's name \MessageBreak
and full title.}
{Use the \protect\advisor{}{} command in the \MessageBreak
preamble. The first arg is your advisor's \MessageBreak
full title. The second arg is your advisor's \MessageBreak
name.}
}
\newcommand*{\th@advisortitle}{
\ClassError{thesis}{
You must specify your research advisor's name \MessageBreak
and full title.}
{Use the \protect\advisor{}{} command in the \MessageBreak
preamble. The first arg is your advisor's \MessageBreak
full title. The second arg is your advisor's \MessageBreak
name.}
}
\newcommand*{\th@reader}{
\ClassError{thesis}{
You must specify the name of the other \MessageBreak
committee member who will be signing your \MessageBreak
thesis.}
{Use the \protect\reader{} command in the preamble.}
}
\newcommand*{\th@readerThree}{none} % optional
\newcommand*{\th@readerFour}{none} % optional
\newcommand*{\th@readerFive}{none} % optional
\newcommand*{\th@readerSix}{none} % optional
\newcommand*{\th@IRBprotocol}{none} % optional
\newcommand*{\th@fulldegree}{
\ClassError{thesis}{
You must specify the type of degree you are \MessageBreak
receiving.}
{Use the \protect\degree{}{} command in the \MessageBreak
preamble. The first arg is the unabbreviated \MessageBreak
name of the degree itself, e.g. \MessageBreak
'Doctor of Philosophy'. The second arg is the \MessageBreak
degree abbreviation followed by the subject, e.g.\MessageBreak
'Ph. D., Biology'.}
}
\newcommand*{\th@degree}{
\ClassError{thesis}{
You must specify the type of degree you are \MessageBreak
receiving.}
{Use the \protect\degree{}{} command in the \MessageBreak
preamble. The first arg is the unabbreviated \MessageBreak
name of the degree itself, e.g. \MessageBreak
'Doctor of Philosophy'. The second arg is the \MessageBreak
degree abbreviation followed by the subject, \MessageBreak
e.g. 'Ph. D., Biology'.}
}
\newcommand{\th@otherdegrees}{
\ClassError{thesis}{
You must specify other degrees you hold!}
{Use the \protect\otherdegrees{} command in the \MessageBreak
preamble. Break each line using the \protect\\ \MessageBreak
command.}
}
\newcommand{\th@abstractStash}{
\ClassError{thesis}{
You must specify an abstract!}
{Use the \protect\abstractpage[]{} command in the \MessageBreak
preamble. If your abstract runs over a page, \MessageBreak
use the optional argument with the word 'long'.}
}
\newcommand*{\th@degreeyear}{\number\the\year}
\newcommand*{\th@signature}[1]{ \begin{center}
\normalsize