summaryrefslogtreecommitdiff
path: root/macros/latex209/contrib/misc/uscthesis.sty
blob: ce29bfe2a75885b013811cdc393829fbfb237b22 (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
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
%$% USCthesis.sty
%$% USC Thesis/Dissertation document-style
%$% $Header: USCthesis.sty,v 2.3 92/08/13 14:22:21 sdc Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% @LaTeX-style-file{
%%%    Author              = "Steven Douglas Cochran",
%%%    Version             = "2.3",
%%%    Date                = "13 August 1992",
%%%    Time                = "14:22:21 EDT",
%%%    Filename            = "USCthesis.sty",
%%%    Address             = "Digital Mapping Laboratory
%%%                           School of Computer Science
%%%                           Carnegie-Mellon University
%%%                           5000 Forbes Avenue
%%%                           Pittsburgh, PA 15213-3890
%%%                           USA",
%%%    Telephone           = "(412) 268-5654",
%%%    FAX                 = "",
%%%    checksum            = "54671 999 3568 32946",
%%%    Email               = "sdc+@CS.CMU.EDU (Internet)",
%%%    CodeTable           = "ISO/ASCII",
%%%    Keywords            = "LaTeX, Thesis, Dissertation",
%%%    Archives            = "shsu*",
%%%    Supported           = "yes",
%%%    Abstract            = "LaTeX document-style for typesetting
%%%                           Theses or Dissertations in accordance
%%%                           with the University of Southern
%%%                           California Regulations for Format and
%%%                           Presentation of Theses and Disertations.
%%%                           It provides some alternative ``bells and
%%%                           whistles'' such as support for
%%%                           multi-volume documents." 
%%%    Note                = "Requires Stephen Page's `doublespace'
%%%                           style option (or equivalent) in addition
%%%                           to the standard LaTeX `report' style."
%%%    SeeAlso             = "techreport.sty",
%%%    DocString           = "The checksum field above contains a CRC-16
%%%                           checksum as the first value, followed by
%%%                           the equivalent of the standard UNIX wc
%%%                           (word count) utility output of lines,
%%%                           words, and characters.  This is produced
%%%                           by Robert Solovay's checksum utility.",
%%% }
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%$% $Log:       USCthesis.sty,v $
%$%  Revision 2.3  92/08/13  14:22:21  sdc
%$%  Added \universityname for easy use outside USC.  Also the 
%$%  \if@techreport switch can be used to turn off the one-side-only
%$%  warning message (for better interface with the techreport style
%$%  option).  Placed a check for TeX-3.0 to allow an old TeX to work
%$%  without warnings.  Cleaned-up the code and comments a little.
%$%
%$%  Revision 2.2  92/06/29  10:59:15  sdc
%$%  Added standard file header for style.
%$%  
%$%  Revision 2.1  91/02/09  00:54:08  cochran
%$%  Fixed bug in interaction with techreport.sty.
%$%
%$%  Revision 2.0  91/01/03  16:12:48  cochran
%$%  Merged divergent branches by cochran@iris.usc.edu (1.10) and by
%$%  tli@almaak.usc.edu (1.11); these are common up to revision 1.8.
%$%  Removed fix in 1.11 which added Reference List to the TOC since
%$%  this is handled by the \references command.
%$%  
%$%    Changes by tli@almaak.usc.edu:
%$%  
%$%      1.11 (90/09/23) Change title font to 12pt.  Change author's
%$%      font to 12pt.  Fix Reference List so that it shows up in TOC.
%$%      Break the way that appendices show up in TOC.
%$%  
%$%      1.10 (90/07/10) Added a hack to make it work with TeX 3.0.
%$%  
%$%      1.9 (90/01/30) Make subsubsections show up with numbered
%$%      labels and in the TOC.
%$%  
%$%    Changes by cochran@iris.usc.edu:
%$%  
%$%      1.10 (90/12/29) Added commands and modified \title to allow
%$%        multiple volume dissertations.  Fixed bug which caused the
%$%        pagestyle of the TOC to be wrong if there were no
%$%        preceeding prefacesections. 
%$%  
%$%      1.9 (90/12/03)  Corrected title size to correspond to the
%$%        University Publications statement that the "Title must be
%$%        the same size as `FACULTY OF ...' and no bold print.  Also
%$%        added an optional argument to the \pageleft command to
%$%        allow the fine tuning of the gutter margin in the
%$%        techreport style option. 
%$%  
%$%  Revision 1.8  89/09/15  19:39:11  tli
%$%  Change spacing in accordance with University Publications.
%$%
%$%  Revision 1.7  89/01/27  13:56:04  tli
%$%  Too much space after a saying.
%$%
%$%  Revision 1.6  89/01/26  14:01:20  tli
%$%  Added the saying environment.
%$%
%$%  Revision 1.5  88/11/02  10:42:47  cochran
%$%  Minor corrections and removal of unnecessary \makeatletter and
%$%  \makeatother. 
%$%  
%$%  Revision 1.4  88/10/20  11:58:38  cochran
%$%  Updated to allow the user more control over spacing to the "blue
%$%  lines," and to be in accordance with the USC Regulations for
%$%  Format and Presentation of Theses and Disertations, published
%$%  March 1987.  
%$%  
%$%  Revision 1.3  88/03/16  10:49:19  cochran
%$%  Several small updates to \committee as suggested by peng@USC-IRIS.
%$%  
%$%  Revision 1.1  88/03/05  20:04:51  cochran
%$%  Set penalties, and new margin and page sizes.  Fixed bug which
%$%  caused a wrong contents page for long lists of figures or tables. 
%$%  
%$%  Revision 1.0  87/03/05  18:29:34  cochran
%$%  Created by combining the best (?) features of the dissertation
%$%  styles written by Herb Barad @ USC-SIPI and Howard Trickey @
%$%  Stanford University. 
%$%  
%$% NOTE:  This style assumes the existance of Stephen Page's
%$%        `doublespace' style option in addition to the standard
%$%        LaTeX `report' style.  
%%%
%%% Example:
%%%  
%%%    \documentstyle[12pt]{USCthesis}
%%%    \begin{document}
%%%    \title[Volume I]{Dissertation Title}
%%%    \author{Terry FullName Candidate}
%%%    \committee{J.~Smith & (Chairperson)\\*
%%%               N.~Jones\\*
%%%               S.~Foobar & (Outside Member)}
%%%    \begin{preface}
%%%      \prefacesection{Dedication}
%%%        This dissertation is dedicated to . . .
%%%      \prefacesection{Acknowledgements}
%%%        I would like to thank . . .
%%%      \begin{singlespace}
%%%        \tableofcontents
%%%        \listoftables
%%%        \listoffigures
%%%      \end{singlespace}
%%%      \prefacesection{Abstract}
%%%        This dissertation contains all knowledge about . . .
%%%    \end{preface}
%%%    \chapter{Introduction}
%%%         . . .
%%%    \chapter{Conclusions}
%%%         . . .
%%%    \begin{singlespace}
%%%      \references{plain}{mybib}
%%%      \appendix
%%%      \chapter{A Long Proof}
%%%         . . .
%%%    \end{singlespace}
%%%         . . .
%%%    \addvolumecontents{thesis_part2}
%%%    \addvolumecontents{thesis_part3}
%%%    \addvolumecontents[lof]{thesis_part2}
%%%    \end{document}
%%%
%%% Documentation:
%%%
%%%  This style file modifies the standard report style to follow the
%%%  "USC Regulations for Format and Presentation of Theses and
%%%  Dissertations" (July 1989) document published by the Office of
%%%  University Publications. 
%%%
%%%  The following options are available for use in the \documentstyle
%%%  (other options also available as report.sty options or as
%%%  option.sty files). 
%%%
%%%     `10pt' (default) `11pt' or `12pt' base typesize.
%%%
%%%     `dissertation' (default), or `thesis' title page.
%%%
%%%     `final' (default) or `proposal' layout.
%%%
%%%     `copyright' (default) or `nocopyright' message on title page.
%%%       This affects the `final' layout only. 
%%%
%%%     `fussy' (default) or `sloppy' word spacing.  This affects the
%%%       alignment at the right margin.  Fussy will sometimes write
%%%       over the blue line but is very useful for finding problem
%%%       areas during the development of the thesis.  Sloppy will
%%%       insure that no line passes the right margin, but may need
%%%       to over stretch the line and thus generate an underfilled
%%%       hbox message.
%%%
%%%     `clref' (default) or `opref' to set the open or closed format
%%%       of the entries in the references section. 
%%%
%%%  The following may be set PRIOR to the \begin{document} in order
%%%  to make adjustments to fit the text in the "blue lines".  The
%%%  values listed below are the defaults:  
%%%
%%%     \pagetop{1.01 true in}    % 1 inch plus allowance
%%%     \pageleft{1.51 true in}   % 1.5 inches plus allowance
%%%     \pageheight{8.73 true in} % 9 inches minus allowance
%%%     \pagewidth{5.92 true in}  % 6 inches minus allowance
%%%     \pagemargin{2.0}          % Number of (unstretched) lines
%%%                               %   between text and page number  
%%%     \setstretch{1.3}          % Set the "double" spacing
%%%
%%%  The following commands control what goes on the title page.
%%%    
%%%     \title[volume]{thesis title}
%%%             - The thesis title is set using the \title command.
%%%               The optional volume parameter allows the
%%%               specification of the volume on the title page for
%%%               long papers which are divided.
%%%
%%%     \author{author's full name}
%%%             - Authors name.
%%%
%%%     \universityname{UNIVERSITY OF SOUTHERN CALIFORNIA}
%%%             - The university's name (the above is the default).
%%%
%%%     \schoolname{name of the school granting the degree}
%%%             - "GRADUATE SCHOOL" is the default.  Changing this
%%%               also has the effect of turning off the \majorfield
%%%               entry.  This affects the `final' layout only. 
%%%
%%%     \degree{degree name}
%%%             - defaults to "Master of Science" or "Doctor of
%%%               Philosophy" depending on whether the `thesis' or
%%%               `dissertation' option is in effect.  This affects
%%%               the `final' layout only.
%%%
%%%     \majorfield{author's major}
%%%             - "Electrical Engineering" if omitted.  Changing the
%%%               \schoolname has the effect of turning off the
%%%               display of the major field.  If you specify this
%%%               command after changing the \schoolname, both will be
%%%               shown on the titlepage.  This affects the `final'
%%%               layout only.
%%%
%%%     \committee{name1\\* name2\\* name3}
%%%             - Currently this in only used on with the `proposal'
%%%               option, since the signature page MUST be the one
%%%               supplied by the University.  This affects the
%%%               `proposal' layout only.
%%%
%%%     \submitdate{month & year in which submitted to Graduate School} 
%%%             - current month & year if omitted.
%%%
%%%     \copyrightyear{year degree conferred (next year if submitted in Dec.)} 
%%%             - current year (or next year, in December) if omitted.
%%%               This affects only the `final' layout and only when
%%%               the `copyright' option is in effect. 
%%%
%%%  The PREFACE environment prints the titlepage and sets up the page
%%%  formatting for the preface pages.  To create a preface section
%%%  use the command:  
%%%
%%%     \prefacesection[optional TOC name]{name}
%%%    
%%%  To generate the Table of Contents, and the Lists of Tables and
%%%  Figures, use the commands: 
%%%
%%%     \tableofcontents[CONTENTS]
%%%     \listoftables*[LIST OF TABLES]
%%%     \listoffigures*[LIST OF FIGURES]
%%%
%%%  the bracketed names are used at the top of the sections and in
%%%  the Table of Contents for the tables and figures.  The optional
%%%  `*' in the latter commands suppresses their entry into the Table
%%%  of Contents.
%%%
%%%  When multiple volumes are present (as indicated by the use of the
%%%  optional argument of the \title command), the Table of Contents
%%%  may be augmented by specifying the name of the other parts of the
%%%  document with the command:
%%%
%%%     \addvolumecontents[toc]{volumename}
%%%
%%%  This command should be placed right after the \begin{document}
%%%  command to include prior volumes, and just before the
%%%  \end{document} command to include the contents of later volumes.
%%%  By default (if the optional [] section is ommited) it reads in
%%%  the volumename.toc file (if present).  Using [lof] or [lot] work
%%%  in the same way for the lists of figures and tables respectively.
%%%
%%%  To start the document at a page other than 1 (for later volumes)
%%%  you can use the command: 
%%%
%%%     \startingpagenumber{1}{1}
%%%
%%%  prior to the \begin{preface} command.  The first argument is the
%%%  page number of the titlepage and subsequent pages numbered with
%%%  roman numerals and the second is the number of the first page
%%%  after the preface section. The defaults are shown above. 
%%%
%%%  To include a reference section, use the following command:
%%%
%%%     \references*[Reference List]{style}{bibfile(s)}
%%%
%%%  where the `*' is optional and indicates that you DO NOT want this
%%%  section to appear in the Table-of-Contents.  "Reference List" is
%%%  the default name if the optional `[]' section of the command is
%%%  not specified (the USC Regulations suggest either `Reference
%%%  List' or `Bibliography').  Both of the remaining entries MUST be
%%%  specified.  {Style} is any of "plain", "unsrt", "alpha", "abbrv"
%%%  (or other *.bst format file).  The {bibfile(s)} are a list of one
%%%  or more *.bib filenames from which the references are to be taken. 
%%%
%%%  The `saying' environment is used to set a cutesy little quotation
%%%  at the start of the chapter, just after the chapter head.  To use:
%%%
%%%     \begin{saying}
%%%         If this exercise isn't just a joke, the title of \\
%%%         this appendix is a lie.
%%%     \end{saying}
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%%
%% Declare the dissertation style
%%
\typeout{Document Style: `USCthesis' Version 2.3  1992.08.13}

%%
%%  Define style option flags
%%
\@namedef{ds@10pt}{\def\@ptsize{0}}  % Default (defined in report.sty)
%% \ds@11pt and \ds@12pt are defined in report.sty

\newif\ifthesis
\def\ds@dissertation{\thesisfalse}   % Default
\def\ds@thesis{\thesistrue}

\newif\ifproposal
\def\ds@final{\proposalfalse}        % Default
\def\ds@proposal{\proposaltrue}

\newif\ifcopyright
\copyrighttrue
\def\ds@nocopyright{\copyrightfalse}
\def\ds@copyright{\copyrighttrue}    % Default

\fussy
\def\ds@fussy{\fussy}                % Default
\def\ds@sloppy{\sloppy}

\newif\ifopenbib
\def\ds@clref{\openbibfalse}         % Default
\def\ds@opref{\openbibtrue}

\newif\if@techreport                 % Internal switch for techreport
\def\ds@techreport{%		         style option.  Set switch, if
  \@techreporttrue                   %   the option is present, but
  \xdef\@optionfiles{%                   still add to the \@optionfiles
    \@optionfiles                    %   list.
    \@elt techreport.sty\relax
  }}

%%
%% Define the Layout adjustment commands.  Initialization of values is
%% made after loading the report style. 
%%
\def\pagetop#1{%
  \global \topmargin #1             % Nominal distance from page top to
  \global\advance \topmargin -1.0 true in} %   top of boxwith running head.  

\def\pageleft{%
  \@ifnextchar [%
    {\@pageleft}%
    {\@pageleft[0pt]}}

\def\@pageleft[#1]#2{%
  \if@twoside
    %% Values for two-sided printing: (1/2 inch gutter margin)
    \global \oddsidemargin #2          % Left margin on odd-numbered pages.
    \global\advance \oddsidemargin -1.0 true in 
    \global \evensidemargin #2         % Left margin on even-numbered pages.
    \global\advance \evensidemargin -1.5 true in 
    \global\advance \evensidemargin #1 % Adjustment for fine-tuning gutter
                                       %   margin 
    \flushbottom
    \ifproposal\else\if@techreport\else
       \typeout{Warning: Thesis/Dissertation should be
                           printed on one side only.}
    \fi\fi
  \else
    %% Values for one-sided printing:
    \global \oddsidemargin #2
    \global\advance \oddsidemargin -1.0 true in 
    \global \evensidemargin \oddsidemargin
    \raggedbottom
  \fi}

\def\pageheight{%
  \@ifnextchar [%
    {\@pageheight}%
    {\@pageheight[\baselineskip]}}

\def\@pageheight[#1]#2{%
  \global \footheight #1%
  \global \textheight #2%
  \global\advance \textheight -\footheight}

\def\pagewidth#1{\global \textwidth #1}

\def\pagemargin#1{\global \footskip #1\baselineskip}

%%
%% Load the standard `report' style, and `doublespace' macros.
%%
\input report.sty\relax
\input doublespace.sty\relax
\setstretch{1.3}   % Use 1.3 times the normal baseline-to-baseline skip

%%
%% Modify Penalties
%%
\brokenpenalty 10000       % Disallow page breaks at hyphens (this
			   % will give some underfull vbox's, so an
			   % alternative is to use \brokenpenalty=100
			   % and manually search for and fix such page
			   % breaks)  
\clubpenalty 10000         % Disallow club (orphan) lines
\displaywidowpenalty 10000 % Disallow widow lines before display
\widowpenalty 10000        % Disallow widow lines

%%
%% Disallow x- or -xx breaks.  But if used in an old TeX, we will just
%% have to do without and hope for the best. 
%%
\ifx\undefined\inputlineno\else
  \lefthyphenmin=2
  \righthyphenmin=3
\fi

%%
%% Set the Page Style Parameters
%%
\@addtoreset{equation}{chapter}   % Have the equation reset in each chapter
\headheight 0.0 true pt           % Height of box containing running head
\headsep    0.0 true pt           % Size of strut between head and text
\topskip   10.0 true pt           % Baselineskip for the first line of page
\itemsep    0.0 true pt           % Extra vertical space, in addition to
                                  %   \parskip, added between list items
\pagetop{1.01 true in}            % Set \topmargin
\pageleft{1.51 true in}           % Set \evensidemargin and \oddsidemargin
\pageheight{8.73 true in}         % Set \textheight and \footheight
\pagewidth{5.92 true in}          % Set \textwidth
\pagemargin{2.0}                  % Set \footskip

%%
%% Redefine some font sizes so that things don't get too big.
%%
\let\LARGE=\Large
\let\huge=\Large
\let\Huge=\Large

%%
%% Redefine plain style page to move the page number to the lower
%% right corner.
%%
\if@twoside
  \def\ps@plain{%
    \def\@oddhead{}%
    \def\@oddfoot{\hfil\rm\thepage}%
    \def\@evenhead{}
    \def\@evenfoot{\rm\thepage\hfil}}%
\else
  \def\ps@plain{%
    \def\@oddhead{}%
    \def\@oddfoot{\hfil\rm\thepage}%
    \def\@evenhead{}
    \let\@evenfoot\@oddfoot}%
\fi

%%
%% Define Title Page Macros
%%
%% \title and \author is defined in latex.tex, but we will need to
%% redefine \title to allow the optional argument.  Also, the \thanks
%% command is disabled and such footnotes will be thrown away or will
%% appear in the wrong place. 
%%
\def\title{%
  \@ifnextchar [%
    {\@title}%
    {\@title[\@empty]}}

\def\@title[#1]#2{%
  \gdef\@volume{#1}%
  \gdef\@title{#2}}

%%
%% The \addvolumecontents will add the contents of other volumes to
%% the current volume. This command should be placed after the
%% \begin{document} for earlier volumes and before the \end{document}
%% for later ones. 
%%
\def\thesisinput#1{%
  \if@filesw 
    \begingroup
      \let\thesisinput=\@gobble % Inhibit recursive \thesisinput's
      \@input{#1}%
    \endgroup
  \fi}

\def\addvolumecontents{%
  \@ifnextchar [%
    {\@addvolumecontents}%
    {\@addvolumecontents[toc]}}

\long\def\@addvolumecontents[#1]#2{%
  \if@filesw 
    \begingroup
      \let\label\@gobble
      \let\index\@gobble
      \let\glossary\@gobble
      \def\protect##1{\string\string\string##1\string\space \space}%
      \edef\@tempa{%
        \immediate\write\@auxout{%
          \string\@writefile{#1}{\protect \thesisinput{#2.#1}}}}%
      \@tempa
      \if@nobreak
        \ifvmode
          \nobreak
        \fi
      \fi
    \endgroup
  \fi
  \relax}

%%
%%  The \startingpagenumber command will change the default starting
%%  page number for the first (title) page of the current volume and
%%  for the first page after the preface section. 
%%
\def\@startpageA{1}
\def\@startpageB{1}

\def\startingpagenumber#1#2{%
  \gdef\@startpageA{#1}%
  \gdef\@startpageB{#2}}

%%
%% The following flag is used to suppress the major field name on the
%% title page when the default school is changed (only the GRADUATE
%% SCHOOL currently uses a major field).  Setting \majorfield after
%% \schoolname will reset the flag and allow the printing of another
%% school with a major field in addition. 
%%
\newif\ifshowmajorfield
\showmajorfieldtrue

\def\universityname#1{%
  \gdef\@university{\uppercase{#1}}}
\def\@university{UNIVERSITY OF SOUTHERN CALIFORNIA}

\def\schoolname#1{%
  \gdef\@schoolname{#1}%
  \showmajorfieldfalse}
\def\@schoolname{GRADUATE SCHOOL}

\def\degree#1{%
  \ifthesis 
    \gdef\@mastersdegree{#1}%
  \else 
    \gdef\@doctorsdegree{#1}}
\def\@mastersdegree{MASTER OF SCIENCE}
\def\@doctorsdegree{DOCTOR OF PHILOSOPHY}

\def\majorfield#1{%
  \gdef\@majorfield{#1}%
  \showmajorfieldtrue}
\def\@majorfield{Electrical Engineering}

\def\committee#1{\gdef\@committee{#1}}
\def\@committee{}

\def\submitdate#1{\gdef\@submitdate{#1}}
\def\@submitdate{%
  \ifcase \the\month
    \or January%
    \or February%
    \or March%
    \or April%
    \or May%
    \or June%
    \or July%
    \or August%
    \or September%
    \or October%
    \or November%
    \or December%
  \fi
  \space 
  \number \the\year}

\def\copyrightyear#1{\gdef\@copyrightyear{#1}}
%% December dissertations should have the next year as the copyright year
\ifnum \month=12
  \@tempcnta=\year
  \advance\@tempcnta by 1
  \edef\@copyrightyear{\number \the\@tempcnta}
\else
  \def\@copyrightyear{\number \the\year}
\fi

%%
%% Create the PREFACE environment.  The titlepage is generated when
%% the environment is first entered and the numbering is roman within
%% the preface.  The \endpreface switches to arabic numbering. 
%%
\def\preface{%
  \newpage
  \pagenumbering{roman}%
  \pagestyle{empty}%
  \begin{singlespace}%      
    \ifproposal
      \makeproptitle
      \setcounter{page}{1}%
      \addtocounter{page}{\@startpageA}% Advance page counter for title page.
    \else
      \maketitle
      \setcounter{page}{1}%
      \addtocounter{page}{\@startpageA}% Advance page counter for (signature
    \fi                                %   and) title.  At USC, the signature
 \newpage                              %   page is not counted!
    \ifx\@volume\@empty\else % Add Volume ID to contents if present.
      \addtocontents{toc}{\protect\contentsline{part}{\@volume}{}}%
    \fi
  \end{singlespace}%
  \pagestyle{plain}}

\def\endpreface{%
  \newpage
  \pagenumbering{arabic}%
  \pagestyle{plain}%
  \setcounter{page}{\@startpageB}}

%%
%% Define the PROPOSAL title page
%%
\def\makeproptitle{%
  \begin{titlepage}%
    \null
    \vskip 60.0 true pt%          To adjust centering.
    \begin{center}
      {\Large \@title \par}%      Set title in \Large size.
      \ifx\@volume\@empty\else
        \vskip 3em%               Vertical space before volume.
        \@volume
      \fi
      \vskip 3em%                 Vertical space after title.
      \ifthesis
        {Masters Thesis Proposal}%
      \else
        {Ph.D. Dissertation Proposal}%
      \fi\\*%
      {submitted by}%
      \vskip 3em                % Vertical space before author.
      {\lineskip .75em
       \@author 
       \par}%
      \vskip 1.5cm              % Vertical space before date.
      {\small 
        \@submitdate 
        \par}%
      \vskip 1.5in
      {{\bf Guidance Committee}\\*[1.0 true cm]%
      \begin{tabular}[t]{ll}\@committee
      \end{tabular}\par}%
    \end{center}%
    \par
    \vfil
    \end{titlepage}}

%%
%% Make the Dissertation titlepage
%%
\def\maketitle{%
  \begin{titlepage}%
    \setcounter{page}{0}%
    \null
    \vfill\vfill
    \begin{center}%
      {\@title \par}%         Set title the same size as "FACULTY OF ..."
      \ifx\@volume\@empty\else
        \vskip 0.16 true in
        \@volume
      \fi
      \vskip 0.16 true in
      by%
      \vskip 0.16 true in
      {\begin{tabular}[t]{c}\@author\\*[1.0 true in]%
       \hline
       \end{tabular}%
       \par}
      \vskip 1.0 true in
      \ifthesis
        A Thesis Presented to the%
      \else
        A Dissertation Presented to the%
      \fi\\*[0.1 true in]%
      FACULTY OF THE \@schoolname\\*[0.1 true in]%
      \@university\\*[0.1 true in]%
      In Partial Fulfillment of the\\*[0.1 true in]%
      Requirements for the Degree\\*[0.1 true in]%
      \ifthesis
        \@mastersdegree
      \else
        \@doctorsdegree
      \fi\\*[0.1 true in]%
      \ifshowmajorfield
        (\@majorfield)%
      \fi\\*[1.0 true cm]%
      \vfill
      {\bf \small \@submitdate \par}%   should be just month and year
    \end{center}%
    \par
    \vfill
    \ifcopyright
      \begin{center}%
        {\normalsize\ Copyright~ \@copyrightyear\ ~\@author}%
      \end{center}%
    \fi
  \end{titlepage}}

%%
%% Start a Preface Page
%%
\newdimen\prefacetopspace
\prefacetopspace=1.0 true in

\def\prefacesection{%
  \@ifnextchar [%
    {\@prefacesectionB}%
    {\@prefacesectionA}}

\def\@prefacesectionA#1{%
  \@prefacesectionB[#1]{#1}}

\def\@prefacesectionB[#1]#2{%
  \newpage
  \pagestyle{plain}%
  \null
  \vskip\prefacetopspace
  \begin{center}%
    \section*{#2}%
  \end{center}%
  \addcontentsline{toc}{chapter}{#1}}

%%
%% Make the Table of Contents and Figures/Tables pages
%%
\def\tableofcontents{%
  \@ifnextchar [%
    {\@starspeciallist{toc}}%
    {\@starspeciallist{toc}[Contents]}}

\def\listoftables{%
  \@ifstar
    {\@ifnextchar [%
       {\@starspeciallist{lot}}%
       {\@starspeciallist{lot}[List Of Tables]}}%
    {\@ifnextchar [%
       {\@speciallist{lot}}%
       {\@speciallist{lot}[List Of Tables]}}}

\def\listoffigures{%
  \@ifstar
    {\@ifnextchar [%
       {\@starspeciallist{lof}}%
       {\@starspeciallist{lof}[List Of Figures]}}%
    {\@ifnextchar [%
       {\@speciallist{lof}}%
       {\@speciallist{lof}[List Of Figures]}}}

\def\@starspeciallist#1[#2]{%
  \newpage
  \@restonecolfalse
  \if@twocolumn
    \@restonecoltrue
    \onecolumn
  \fi
  \chapter*{#2}%
  \@starttoc{#1}%
  \if@restonecol\twocolumn\fi}
  
\def\@speciallist#1[#2]{%
  \newpage
  \@restonecolfalse
  \if@twocolumn
    \@restonecoltrue
    \onecolumn
  \fi
  \chapter*{#2}%
  \addcontentsline{toc}{chapter}{#2}
  \@starttoc{#1}%
  \if@restonecol\twocolumn\fi}
  
%%
%% Redefine the report.sty chapter definitions to suppress hyphenation
%% in the titles. 
%%
\def\@makechapterhead#1{%
  \vspace*{50pt}%
  {\parindent 0pt 
   \raggedright
   \hyphenpenalty 10000%
   \ifnum \c@secnumdepth > \m@ne
     \Large\bf \@chapapp{} \thechapter\par
     \vskip 20pt
   \fi
   \Large\bf #1\par
   \nobreak
   \vskip 40pt}
  \hyphenpenalty 50}

\def\@makeschapterhead#1{%
  \vspace*{50pt}%
  {\parindent 0pt 
   \raggedright
   \hyphenpenalty 10000%
   \Large\bf #1\par
   \nobreak
   \vskip 40pt}
  \hyphenpenalty 50}

%%
%% Redefine the report.sty section definitions.  The \@startsection
%% command takes the arguments: 
%%
%%       {Name}{Level}{Indent}{BeforeSkip}{AfterSkip}{Style} 
%%
%% Also it takes a `*' which suppress the section counting, and if the
%% `*' is not present an optional [Altheading]{heading} pair.  
%%
\def\section{\@startsection{section}%                    Name
            {1}%                                         Level
            {\z@}%                                       Indent
            {-3.5ex plus -1ex minus -.2ex}%              BeforeSkip
            {2.3ex plus .2ex}%                           AfterSkip
            {\Large\bf\hyphenpenalty 10000}}%            Style   

\def\subsection{\@startsection{subsection}%              Name
               {2}%                                      Level
               {\z@}%                                    Indent
               {-3.5ex plus -1ex minus -.2ex}%           BeforeSkip
               {1.5ex plus .2ex}%                        AfterSkip
               {\large\bf\hyphenpenalty 10000}}%         Style

\def\subsubsection{\@startsection{subsubsection}%        Name
                  {3}%                                   Level
                  {\z@}%                                 Indent
                  {-3.5ex plus -1ex minus -.2ex}%        BeforeSkip
                  {1.5ex plus .2ex}%                     AfterSkip
                  {\normalsize\bf\hyphenpenalty 10000}}% Style

\def\paragraph{\@startsection{paragraph}%                Name
              {4}%                                       Level
              {\z@}%                                     Indent
              {3.25ex plus 1ex minus .2ex}%              BeforeSkip
              {-1em}%                                    AfterSkip
              {\normalsize\bf\hyphenpenalty 10000}}%     Style

\def\subparagraph{\@startsection{subparagraph}%          Name
                 {4}%                                    Level
                 {\parindent}%                           Indent
                 {3.25ex plus 1ex minus .2ex}%           BeforeSkip
                 {-1em}%                                 AfterSkip
                 {\normalsize\bf\hyphenpenalty 10000}}%  Style

%%
%% The value of the counter secnumdepth gives the depth of the
%% highest-level sectioning command that is to produce section
%% numbers. 
%%
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}

%%
%% Redefine the report.sty `Bibliography' as a `Reference List' chapter.
%%
\def\bibliographystyle#1{%   But first, turn off standard bib commands.
  \@latexerr{\string\bibliographystyle\space is undefined.
	     Use \string\references{#1}{bibfile list}}\@eha}
\def\bibliography#1{%
  \@latexerr{\string\bibliography\space is undefined.
	     Use \string\references{bibstyle}{#1}}\@eha}

\def\references{%
  \@ifstar
    {\@referencesA}%
    {\@referencesB}}

\def\@referencesA{%
  \@ifnextchar [%
    {\@referencesAA}%
    {\@referencesAA[Reference List]}}%

\def\@referencesAA[#1]#2#3{
  \gdef\@referencesname{#1}
  \if@filesw
    \immediate\write\@auxout{\string\bibstyle{#2}}%
    \immediate\write\@auxout{\string\bibdata{#3}}%
  \fi
  \@input{\jobname.bbl}}

\def\@referencesB{
  \@ifnextchar [
    {\@referencesBB}
    {\@referencesBB[Reference List]}}

\def\@referencesBB[#1]#2#3{
  \addcontentsline{toc}{chapter}{#1}
  \gdef\@referencesname{#1}
  \if@filesw
    \immediate\write\@auxout{\string\bibstyle{#2}}%
    \immediate\write\@auxout{\string\bibdata{#3}}%
  \fi
  \@input{\jobname.bbl}}

\def\@referencesname{Reference List}

\def\thebibliography#1{
  \chapter*{\@referencesname\@mkboth{\@referencesname}{\@referencesname}}
  \list{[\arabic{enumi}]}{
    \settowidth\labelwidth{[#1]}
    \leftmargin\labelwidth   \advance\leftmargin\labelsep
    \ifopenbib
      \listparindent -1.5em
      \advance\leftmargin-\listparindent
      \itemindent\listparindent
      \parsep 0pt%
    \fi
    \usecounter{enumi}}%
  \ifopenbib
    \def\newblock{\par}
    \let\\=\@centercr
    \@rightskip\@flushglue   \rightskip\@rightskip
    \leftskip\z@
  \else
    \def\newblock{\hskip .11em plus .33em minus -.07em}%
  \fi
  \sloppy
  \sfcode`\.=1000\relax}

\let\endthebibliography=\endlist

%%
%% APPENDIX
%%
%% The \appendix command must do the following:
%%    -- reset the chapter counter to zero
%%    -- set \@chapapp to Appendix (for messages)
%%    -- redefine the chapter counter to produce appendix numbers
%%    -- reset the section counter to zero
%%    -- redefine the \chapter command if appendix titles and headings
%%       are to look different from chapter titles and headings. 
%%
%% For USC, the Appendix appears VERY oddly in the table of contents.
%%
\def\appendix{
  \par
  \setcounter{chapter}{0}
  \setcounter{section}{0}
  \def\@chapapp{Appendix}
  \def\thechapter{\Alph{chapter}}
  \def\@chapter[##1]##2{
    \refstepcounter{chapter}
    \typeout{\@chapapp\space\thechapter.}
    \addtocontents{toc}{
      \protect\contentsline{chapter}{Appendix \thechapter}{\relax}}
    \addcontentsline{toc}{section}{##1}
    \chaptermark{##1}
    \addtocontents{lof}{\protect\addvspace{10pt}}% Adds between-chapter space
    \addtocontents{lot}{\protect\addvspace{10pt}}% to lists of figs & tables.
    \if@twocolumn
      \@topnewpage[\@makechapterhead{##2}]  
    \else \@makechapterhead{##2}
      \@afterheading                             % Routine called after chap
     \fi}}                                       %   and section heading.

%%
%%  Define the `saying' environment
%%  Used to set a cutesy little quotation at the start of the chapter
%%
\def\saying{%
  \trivlist
  \raggedleft
  \item[]\em}

\def\endsaying{%
  \endtrivlist
  \vspace{20pt}}

%%
%% Define the starting pagestyle
%%
\pagestyle{plain}