-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUSCthesis.sty
1211 lines (1131 loc) · 39.7 KB
/
USCthesis.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
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
%$% USCthesis.sty
%$% USC Thesis/Dissertation document-style
%$% $Header: /export/home/tobor-01/boyoon/cvsroot/paper/thesis/USCthesis.sty,v 1.1.1.1 2003/11/12 19:13:56 boyoon Exp $
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% @LaTeX-style-file{
%%% Author = "Brian P. Gerkey",
%%% Version = "3.1",
%%% Date = "30 August 2002",
%%% Time = "14:22:21 EDT",
%%% Filename = "USCthesis.sty",
%%% Address = "Robotics Research Lab
%%% School of Computer Science
%%% University of Southern California
%%% 941 W. 37th Pl.
%%% SAL 300, Mailcode 0781
%%% Los Angeles, CA 90089-0781
%%% USA",
%%% Telephone = "(213) 740-6243",
%%% FAX = "",
%%% Email = "gerkey@robotics.usc.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 Dissertations.
%%% It provides some alternative ``bells and
%%% whistles'' such as support for
%%% multi-volume documents."
%%% Note = "Requires the `doublespace' and `tabularx'
%%% packages, in addition to the standard LaTeX
%%% `report' class."
%%% SeeAlso = "techreport.sty",
%%% }
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%$% $Log: USCthesis.sty,v $
%$% Revision 1.4.0 2020/06/25 00:00:00 Calvin Ardi
%$% Page: margins are now 1" all around (before: accounted for margin
%$% gutter)
%$% Page: footer margin for page numbers are 0.5" from the bottom
%$% Title page: remove horizontal rule
%$% Title page: now properly centered on the page
%$% PDF: fix pdfbookmarks for chapters, formatted as "[Title]" (was:
%$% "Chapter [Title]")
%$% Prefacesection: fixed layout/formatting to be consistent with all
%$% other sections/chapters
%$%
%$% Revision 1.3.1 2016/06/15 19:00:00 Masoud Moshref
%$% Remove \reference command. Use biblatex package insteaad
%$% Fix appendix and prefacesection to work with hyperref package
%$%
%$% Revision 1.3 2010/08/12 19:00:00 Marcos Vieira
%$% Fix Title to be double spaced
%$% Fix default to be 'FACULTY OF USC GRADUATE SCHOOL'
%$% Fix default to be 'References' (Reference List has been deprecated)
%$% Fix the thickness of the front page line
%$%
%$% Revision 1.2.1 2008/03/14 13:47:00 dlatimer
%$% updated TOC to have title "Table of Contents"
%$% updated TOC to have chapters be formatted "Chapter X: Blah"
%$%
%$% Revision 1.1.1.1 2003/11/12 19:13:56 boyoon
%$% imported version
%$%
%$% Revision 1.2 2003/07/16 17:35:55 gerkey
%$% updated uscthesis
%$%
%$% Revision 1.16 2003/07/16 17:25:17 gerkey
%$% changed version num
%$%
%$% Revision 1.15 2003/07/12 04:28:48 gerkey
%$% made prefacesection titles left-justified, rather than centered
%$%
%$% Revision 1.14 2003/06/12 23:30:55 gerkey
%$% added proquest package
%$%
%$% Revision 1.13 2003/06/12 20:00:20 gerkey
%$% foo
%$%
%$% Revision 1.12 2003/06/12 17:23:11 gerkey
%$% foo
%$%
%$% Revision 1.11 2003/04/28 23:41:05 gerkey
%$% fixed spacing between Copyright and author name
%$%
%$% Revision 1.10 2003/04/28 23:33:55 gerkey
%$% took out incorrect documentation
%$%
%$% Revision 1.9 2002/08/30 19:43:04 gerkey
%$% slight changes
%$%
%$% Revision 1.8 2002/08/30 19:24:38 gerkey
%$% removed extra inter-chapter spacing in LOF and LOT by redefining report.cls's
%$% \chapter command.
%$%
%$% Revision 1.7 2002/08/30 17:55:55 gerkey
%$% changed (fixed) page margins and used \setstretch{2.0} to get "real"
%$% double-spacing, per Yaser's comments. except for spacing in lof and lot,
%$% we're in compliance with 2002 guidelines.
%$%
%$% Revision 1.6 2002/08/27 19:47:38 gerkey
%$% made the following fixes:
%$% - body uses true doublespacing
%$% - listoffigures and listoftables entries are singlespaced, with
%$% doublespacing between entries
%$% - cover page re-formatted to match guidelines
%$%
%$% Revision 1.5 2002/08/19 18:49:15 gerkey
%$% fixed two user-reported bugs in order to adhere to the 2002 guidelines:
%$%
%$% - Submission date on cover is now normal, not bold
%$%
%$% - Copyright notice on cover is now not centered; rather the "Copyright 2002"
%$% is on the left, and the author name is on the right.
%$%
%$% Revision 1.4 2001/11/08 22:19:37 gerkey
%$% changed comments and docs
%$%
%$% Revision 1.3 2001/11/08 01:25:29 gerkey
%$% rejigged to start from v.2.3
%$%
%%
%%
%$% Revision 3.0 2001/11/07 16:47:08 brian gerkey (gerkey@usc.edu)
%$% Converted from a LaTeX 2.09 style to a LaTeX2e package
%$%
%$% - AFAIK, there are no changes to style, layout, or default options;
%$% just some hacking to adhere to the LaTeX2e package interface.
%$%
%$% - Usage is now as follows:
%$% \documentclass{report}
%$% \usepackage[<options>]{USCthesis}
%$% \begin{document}
%$% <options> can be any of the old options (e.g., proposal, fussy),
%$% as documented below.
%$%
%% Added some comments. And corrected some spelling.
%$%
%$% 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 Dissertations, 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' package in addition to the standard
%$% LaTeX `report' document class.
%%%
%%% Example:
%%%
%%% \documentclass[11pt]{report}
%%% \usepackage[proposal]{USCthesis}
%%% \usepackage[backend=bibtex,style=numeric,hyperref=true]{biblatex}
%%% \addbibresource{mybib.bib}
%%% \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 . . .
%%% \tableofcontents
%%% \listoftables
%%% \listoffigures
%%% \prefacesection{Abstract}
%%% This dissertation contains all knowledge about . . .
%%% \end{preface}
%%% \chapter{Introduction}
%%% . . .
%%% \chapter{Conclusions}
%%% . . .
%%% %\cleardoublepage % Might need to use this command to fix References TOC page number
%%% \begin{singlespace}
%%% \printbibliography[title={References},heading=bibintoc]
%%% \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 class 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
%%% \usepackage[<options>]{USCthesis} (other formatting options,
%%% such as specifying the base typesize, should be given as
%%% \documentclass[<options>]{report})
%%%
%%% `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.
%%%
%%% `flushbottom' (default) or `raggedbottom' to make text either flush
%%% or ragged at the bottom of each page.
%%%
%%% 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.1 true in} % 1 inch plus allowance
%%% \pageleft{1.6 true in} % 1.5 inches plus allowance
%%% \pageheight{8.5 true in} % 9 inches minus allowance
%%% \pagewidth{5.85 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
%%%
%%% These values vary according to the printer being used (even
%%% different instances of the same brand will transfer the paper
%%% just a little differently). The best way to adjust them is to
%%% run three or four pages of the "blue line" paper through the
%%% printer that will be used. Choose pages with full amount of
%%% text. Then adjust the \pageleft (and \pagewidth if necessary) by
%%% the average amount necessary over the pages. Next do the same
%%% for \pagetop and \pageheight. Leave enough allowance to allow
%%% for the paper to shift a little, usually a little more in the
%%% direction of travel. Set the \pagemargin and \setstretch to
%%% values that look good and will pass the reviewer.
%%%
%%% 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}
%%% - "USC 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.
%%%
%%% 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 biblatex package:
%%%
%%% 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}
%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% make it a modern package - BPG
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{USCthesis}[2020/06/25 v1.4.0]
%%
%% Declare the dissertation style
%%
\typeout{Dissertation/thesis package USCthesis Version 1.4.0 as
of 25 June 2020}
%%
%% the following option-parsing code is changed to conform to the LaTeX2e
%% package interface - BPG
%%
%% Define style option flags
%%
\newif\ifthesis
\DeclareOption{dissertation}{
\thesisfalse % Default
}
\DeclareOption{thesis} {
\thesistrue
}
\newif\ifproposal
\DeclareOption{final} {
\proposalfalse % Default
}
\DeclareOption{proposal} {
\proposaltrue
}
\newif\ifcopyright
\DeclareOption{copyright} {
\copyrighttrue
}
\DeclareOption{nocopyright} {
\copyrightfalse
}
\DeclareOption{fussy} {
\fussy % Default
}
\DeclareOption{sloppy} {
\sloppy
}
\newif\ifflushbottom
\DeclareOption{flushbottom} {
\flushbottomtrue % Default
}
\DeclareOption{raggedbottom} {
\flushbottomfalse
}
\newif\ifopenbib
\DeclareOption{opref} {
\openbibtrue
}
\DeclareOption{clref} {
\def\ds@clref{\openbibfalse} % Default
}
\newif\if@techreport
\DeclareOption{techreport} {
\@techreporttrue % the option is present, but
\xdef\@optionfiles{% still add to the \@optionfiles
\@optionfiles % list.
\@elt techreport.sty\relax
}}
% set the defaults
\ExecuteOptions{dissertation,final,copyright,fussy,clref,flushbottom}
\ProcessOptions
%%
%% 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}
%
% \footheight disappears in LaTeX2e (it was never used in 2.09 anyway). as
% such, \pageheight now takes just one arg and doesn't manipulate \footheight
% - BPG
%\def\@pageheight[#1]#2{%
%\global \footheight #1%
%\global \textheight #2%
%\global\advance \textheight -\footheight}
\def\pageheight#1{\global \textheight #1}
\def\pagewidth#1{\global \textwidth #1}
\def\pagemargin#1{\global \footskip #1\baselineskip}
%%
%% Let the user declare the document to be of \documentclass{report},
%% then \usepackage{USCthesis} -BPG
%%
%%\usepackage{doublespace}
\usepackage{setspace}
\usepackage{tabularx}
%%
%% 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
\footskip 0.5 true in % page number must be 0.5" from bottom
\pagetop{1.0 true in} % 1 inch plus allowance
\pageleft{1.0 true in} % 1.5 inches plus allowance
\pageheight{9 true in} % 9 inches minus allowance
\pagewidth{6.5 true in} % 6 inches minus allowance
%\pagemargin{2.0} % Number of (unstretched) lines
% between text and page number
\setstretch{2.0} % get "real" double spacing?
\ifflushbottom
\flushbottom
\fi
%%
%% 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 USC 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{USC 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.
%%
\newenvironment{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}}{%
\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}
{\huge \@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{%
\large % title page should be 11pt or 12pt. this should do.
\begin{titlepage}%
\setcounter{page}{0}%
\null
\vfill%\vfill
\begin{center}%
% Added by Marcos
\begin{doublespace}
%\doublespacing
{\LARGE\bfseries \@title \par}% Set title the same size as "FACULTY OF ..."
\ifx\@volume\@empty\else
\vskip 0.16 true in
\@volume
\fi
% changed to 0.16 by Marcos
\vskip 0.5 true in
by%
\vskip 0.16 true in
% remove tabular environment to get it aligned within
% bounding box ---calvin 2019-04-04
% \@author\\*[.66 true in]%
\textsc{\Large \@author}\\Ph.D. candidate
%\rule{5.8 true in}{0.010 true in}
% remove the horizontal rule per Manuscript formatting guidelines
% ---calvin 2020-06-12
\par
\vskip 1.0 true in
% Added by Marcos
\end{doublespace}
%\singlespace
\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
\vskip 0.75 true in
\@submitdate% should be just month and year
\end{center}%
\par
\vfill
\ifcopyright
\noindent Copyright~ \@copyrightyear \hfill \@author
\fi
\end{titlepage}}
%%
%% Start a Preface Page
%%
\newdimen\prefacetopspace
% spacing from the top for preface pages (abstract, acknowledgements,
% etc.) should be the same as chapters (\@makechapterhead)
% ---calvin 2020-02-25
\prefacetopspace=50 pt
\def\prefacesection{%
\@ifnextchar [%
{\@prefacesectionB}%
{\@prefacesectionA}}
\def\@prefacesectionA#1{%
\@prefacesectionB[#1]{#1}}
\def\@prefacesectionB[#1]#2{%
% old way of doing a preface section ---calvin 2019-12-21
% \newpage
% \pagestyle{plain}%
% \phantomsection
% \addcontentsline{toc}{chapter}{#1}
% \null
% \vskip\prefacetopspace
% %\begin{center}%
% \section*{#2}%
% %\end{center}%
% to make the sections look consistent with the other chapters and
% bibliography (top margin, etc.), we'll use \chapter instead of
% \section.
\newpage
% next 2 lines are after \newpage so bookmarks go to the same
% consistent spot as chapters, LOF, LOT, etc. ---calvin 2020-02-25
\phantomsection
\addcontentsline{toc}{chapter}{#1}
%
\pagestyle{plain}%
\null
\vskip\prefacetopspace%
\section*{\Large #2}%
\vskip 30 pt
}
%%
%% Make the Table of Contents and Figures/Tables pages
%%
%\def\tableofcontents{%
% \begin{singlespace}
% \@ifnextchar [%
% {\@starspeciallist{toc}}%
% {\@starspeciallist{toc}[Table of Contents]}
% \end{singlespace}}
% Table of Contents now looks consistent with other Chapters and
% prefacesections. We want a PDF bookmark, but not an actual line entry in
% the Table of Contents. ---calvin 2019-12-21
\def\tableofcontents{%
\newpage
\pdfbookmark{Contents}{Contents}%
\chapter*{Contents}%
\begin{singlespace}
\vskip -1em
\@starttoc{toc}%
\end{singlespace}
}
\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]}}}
% add a bit of glue to avoid overflow/overfull hboxes in the TOC
% ---calvin 2020-06-14
\def\@tocrmarg{2.55em plus 3em}
% redefine commands used to generate entries in lof and lot, in order to make
% them singlespace within each entry (leaving doublespace between entries)
\renewcommand*\l@figure[2]{
\begin{singlespace}
\@dottedtocline{1}{1.5em}{2.3em}{#1}{#2}
\end{singlespace}
}
\let\l@table\l@figure
\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