-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutdiss2.sty
executable file
·1015 lines (894 loc) · 31.7 KB
/
utdiss2.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% utdiss2.sty (August 2002)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Doctoral Dissertation Format Macros for The Univ. of Texas at Austin
% By Young U. Ryu
% and some fixes by Miguel A. Lerma (malerma@math.utexas.edu)
% and some more fixes by Craig McCluskey (mccluskey@mail.utexas.edu).
%
% This file was first modified in October, 2001 by Craig W. McCluskey
% to meet the Graduate School requirements of March, 2001. The name of
% the file was changed to utdiss2.sty to distinguish it from the
% original utdiss.sty of June 1991 and Miguel A. Lerma's utdiss1.sty.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% How to Use -
%
% \documentclass[12pt]{report}
%
% \usepackage{utdiss2}
%
%
% Note: This style file does not guarantee the satisfaction
% of all requirements specified by the Graduate School
% of the University of Texas at Austin.
%
\typeout{*}
\typeout{* U.T. Austin Doctoral Dissertation Format by Young. U. Ryu,}
\typeout{* June 1991. With some fixes by Miguel A. Lerma, Fall 1995, }
\typeout{* Spring 1996, Summer 1996, Spring 1997, Summer 1997, Spring 1998.}
\typeout{*}
\typeout{* Modified to new Graduate School standards Fall 2001}
\typeout{* by Craig McCluskey mccluskey@mail.utexas.edu }
\typeout{* - this is utdiss2-05.sty}
\typeout{*}
%%%%%%%%%%%%%%%%%%%%%
% Dimension Setting %
%%%%%%%%%%%%%%%%%%%%%
% Top margin is now set in the disstemplate.tex file.
% 29 Nov 2001 cwm
\oddsidemargin 0.625in \evensidemargin 0.625in
\textwidth 5.5in
\headheight .21in
\headsep .29in % \headheight + \headsep = 0.5in
\textheight 8in % \textheight includes \footskip
\footskip .5in
\skip\footins 22.8pt plus 4pt minus 2pt
\parindent .5in
\parskip 5 pt plus 1.5pt minus .5pt
\itemsep 0 pt plus .5pt
\pagenumbering{roman}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Macros to Modify Some Default Settings of `report.sty'. %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Macros to make:
% the text height of the first page of every chapter
% = \textheight - \footskip
%
\newlength{\regular@textheight}
\setlength{\regular@textheight}{\textheight}
%
\addtolength{\regular@textheight}{-\footskip}
% Added -\footskip to move bottom
% page numbers on non-first-page-of-chapter
% pages up so they meet the Graduate School
% spec. 24 Sep 2001 cwm
\newlength{\short@textheight}
\setlength{\short@textheight}{\textheight}
\addtolength{\short@textheight}{-\footskip}
\def\short@page{%
\setlength{\textheight}{\short@textheight}
\global \pagestyle{plain} % Added to put page numbers
% at bottom of short pages.
% 24 Sep 2001 cwm
\global \@colht\textheight
\global \@colroom\textheight
\global \vsize\textheight}
\def\regular@page{%
\setlength{\textheight}{\regular@textheight}
\global \pagestyle{plain} % Added to put page numbers
% at bottom of regular pages.
% 24 Sep 2001 cwm
\global \@colht\textheight
\global \@colroom\textheight
\global \vsize\textheight}
\newcounter{regular@short}
\let\old@opcol\@opcol
\def\@opcol{%
\ifnum\value{regular@short}=0 \regular@page\old@opcol
\else\short@page\old@opcol\fi}
% Regarding the space after the zero in the value setting above:
%
% "For best results, ALWAYS PUT A BLANK SPACE AFTER A NUMERIC CONSTANT;
% this blank space tells TeX that the constant is complete, and
% such a space will never "get through" to the output."
% " ... a missing space ... might cause TeX to expand macros when you
% don't want any expansion, and such anomalies can cause subtle and
% confusing errors"
% - the TeXbook, p. 208. cwm
%
% Macros to set spacing of text and quotations.
% ^^^^ ^^^ ^^^^^^^^^^
\def\single@space{%
\vskip\baselineskip
\baselineskip=15.5pt plus .5pt minus .2pt
\vskip-\baselineskip}
\def\endsingle@space{\par}
\def\oneandonehalf@space{%
\vskip\baselineskip
\baselineskip=20.5pt plus .5pt minus .2pt
\vskip-\baselineskip}
\def\endoneandonehalf@space{\par}
\def\double@space{%
\vskip\baselineskip
\baselineskip=23.5pt plus .5pt minus .2pt
\vskip-\baselineskip}
\def\enddouble@space{\par}
%
% Spacing for quotations
%
\let\old@quote\quote
\let\endold@quote\endquote
\let\old@quotation\quotation
\let\endold@quotation\endquotation
\def\singlespacequote{%
\def\quote{\old@quote\single@space}
\def\endquote{\endsingle@space\endold@quote}
\def\quotation{\old@quotation\single@space}
\def\endquotation{\endsingle@space\endold@quotation}}
\def\oneandonehalfspacequote{%
\def\quote{\old@quote\oneandonehalf@space}
\def\endquote{\endoneandonehalf@space\endold@quote}
\def\quotation{\old@quotation\oneandonehalf@space}
\def\endquotation{\endoneandonehalf@space\endold@quotation}}
%
% Regular text spacing
%
\def\doublespacing{%
\def\default@spacing{\baselineskip=23.5pt plus .5pt minus .2pt}}
\def\oneandonehalfspacing{%
\def\default@spacing{\baselineskip=20.5pt plus .5pt minus .2pt}}
\def\singlespacing{%
\def\default@spacing{\baselineskip=15.5pt plus .5pt minus .2pt}}
%
% Macros to adjust the shape of table of contents.
% Adopted from macros of Stefan Timphus.
% Modified by Young U. Ryu so that entries are correctly indented.
% If there are 10 or more sections,
% 10 or more subsections for a section, etc. etc.
% enter `\longtocentry' somewhere before `\begin{document}'.
%
% Choose one of the following two \newlength commands depending
% upon how you want your Table of Contents to look.
% 05 Oct 2001 cwm
%\newlength{\one@num}\setlength{\one@num}{0pt} % 1.5em % indent of \section
\newlength{\one@num}\setlength{\one@num}{18pt} % This line makes indent of
% \section such that section
% numbers in Table of Contents
% are centered under the word,
% "Chapter" in the TOC line of
% their chapter.
\newlength{\two@num}\settowidth{\two@num}{9.9...}
\newlength{\three@num}\settowidth{\three@num}{9.9.9...}
\newlength{\four@num}\settowidth{\four@num}{9.9.9.9...}
\newlength{\five@num}\settowidth{\five@num}{9.9.9.9.9...}
\newlength{\six@num}\settowidth{\six@num}{9.9.9.9.9.9...}
\def\longtocentry{%
\settowidth{\two@num}{99.99...}
\settowidth{\three@num}{99.99.99...}
\settowidth{\four@num}{99.99.99.99...}
\settowidth{\five@num}{99.99.99.99.99...}
\settowidth{\six@num}{99.99.99.99.99.99...}}
\newlength{\c@onenum}
\setlength{\c@onenum}{\one@num}
\newlength{\c@twonum}
\setlength{\c@twonum}{\c@onenum}\addtolength{\c@twonum}{\two@num}
\newlength{\c@threenum}
\setlength{\c@threenum}{\c@twonum}\addtolength{\c@threenum}{\three@num}
\newlength{\c@fournum}
\setlength{\c@fournum}{\c@threenum}\addtolength{\c@fournum}{\four@num}
\newlength{\c@fivenum}
\setlength{\c@fivenum}{\c@fournum}\addtolength{\c@fivenum}{\five@num}
\def\l@section{\@dottedtocline{1}{\c@onenum}{\two@num}}
\def\l@subsection{\@dottedtocline{2}{\c@twonum}{\three@num}}
% Old definition of subsubsection.
%\def\l@subsubsection{\@dottedtocline{3}{\c@threenum}{\four@num}}
\def\l@subsubsection{\@dottedtocline{2}{\c@threenum}{\four@num}}
\def\l@paragraph{\@dottedtocline{4}{\c@fournum}{\five@num}}
\def\l@subparagraph{\@dottedtocline{5}{\c@fivenum}{\six@num}}
%
% Define \nopage@addcontentsline to not place page numbers
% in the table of contents.
%
\def\nopage@addcontentsline#1#2#3{\addtocontents{#1}%
{\protect \contentsline {#2}{#3}{}}}
%
% Stolen from `report.sty'. Modified to change the size of left skip
% for \chapter title which is longer than one line.
%
\newlength{\toc@chap@indent}
\settowidth{\toc@chap@indent}{\bf\@chapapp\space\thechapter.\hspace*{1em}}
\def\l@chapter#1#2{\addpenalty{-\@highpenalty}
\vskip 1.0em plus 1pt
\@tempdima=\toc@chap@indent
\begingroup
\parindent \z@
\rightskip \@pnumwidth
\parfillskip -\@pnumwidth
\bf \leavevmode
\advance\leftskip\@tempdima \hskip -\leftskip #1\nobreak\hfil
\nobreak\hbox to\@pnumwidth{\hss #2}\par
\penalty\@highpenalty \endgroup}
\def\@makechapterhead#1{ \vspace*{0pt} {\parindent 0pt \centering
\ifnum \c@secnumdepth >\m@ne \Large\bf \@chapapp{} \thechapter
\par \vskip 15pt \fi \Large \bf #1\par \nobreak \vskip 35pt}}
\def\@makeschapterhead#1{\vspace*{0pt} {\parindent 0pt \centering
\Large \bf #1\par \nobreak \vskip 30pt}}
\def\chapter{%
\clearpage
\short@page \setcounter{regular@short}{0} %<<--
\default@spacing
%
% Comment out one of the two lines below to determine indention of
% first lines of chapters. 28 Sep 2001 cwm
%
\global\@topnum\z@ \@afterindenttrue % Indent 1st line of chapter.
% \global\@topnum\z@ \@afterindentfalse % Do NOT indent 1st line
% of chapter.
\secdef\@chapter\@schapter}
\def\shortchapter{%
\clearpage
\short@page \setcounter{regular@short}{1} %<<--
\default@spacing
%
% Comment out one of the two lines below to determine indention of
% first lines of short chapters. 28 Sep 2001 cwm
%
\global\@topnum\z@ \@afterindenttrue % Indent 1st line of short
% chapter.
% \global\@topnum\z@ \@afterindentfalse % Do NOT indent 1st line
% of short chapter.
\secdef\@chapter\@schapter}
\newcount\chap@or@app\chap@or@app=1
\def\appendixname{Appendix}
\def\appendix{\clearpage
\typeout{Appendix.}
\short@page % <- 9/13/96 (MAL)
\markboth{}{}\pagestyle{myheadings} % <- The appendix must
\thispagestyle{plain} % <- be numbered.
\vspace*{\fill}
\centerline{\large\bf Appendix}
\vspace*{\fill}
\addcontentsline{toc}{chapter}{Appendix} % <-
\setcounter{chapter}{0}
\setcounter{section}{0}
\def\@chapapp{\appendixname}
\chap@or@app=2
% \def\thechapter{\Alph{chapter}}} % Commented out 15 Aug 02 cwm
% as a partial solution to
% the problem of labeling
% one appendix as Appendix A.
}
\def\appendices{\clearpage
\typeout{Appendices.}
\short@page \setcounter{regular@short}{1} % <- 9/13/96 (MAL)
\markboth{}{}\pagestyle{myheadings} % <- The appendices must
\thispagestyle{plain} % <- be numbered.
\vspace*{\fill}
\centerline{\large\bf Appendices}
\vspace*{\fill}
\addcontentsline{toc}{chapter}{Appendices} % <-
\setcounter{chapter}{0}
\setcounter{section}{0}
\def\@chapapp{\appendixname}
\chap@or@app=2
\def\thechapter{\Alph{chapter}}}
% Redefinition of \@part for using by \part (M.A.L.)
%
\newcount\with@parts\with@parts=0 % <- this would allow to restart
% page number with Chapter 1 (MAL)
\def\@part[#1]#2{%
\short@page % <- Added 4/21/97 (MAL)
\ifnum \c@secnumdepth >-2 \relax
\refstepcounter{part}% % Added \partname~ below (M.A.L.)
\addcontentsline{toc}{part}{\partname~\thepart\hspace{1em}#1}%
\else
\addcontentsline{toc}{part}{#1}%
\fi
\markboth{}{}
{\centering
\interlinepenalty \@M
\reset@font
\ifnum \c@secnumdepth >-2 \relax
\huge\bfseries \partname~\thepart
\par
\vskip 20\p@
\fi
\Huge \bfseries #2\par}%
\ifnum\value{part}=1 \pagenumbering{arabic}% % if Part I
\with@parts=1 \fi% % <- to avoid restarting page number with chapter 1
\@endpart}
%
%%%% End redefinition of \@part
\newcommand\fpage{% % First page of a
\clearpage % new ``major'' section
\short@page %
\thispagestyle{plain} % (7/16/97 M.A.L.)
}
\newcounter{no@chapters} % (7/16/97 M.A.L.)
\setcounter{no@chapters}{0} %
\newcommand\nochapters{% %
\setcounter{no@chapters}{1} % (7/16/97 M.A.L.)
\fpage \setcounter{regular@short}{0} %
%
% Comment out one of the two lines below to determine indention of
% first lines of text with no chapters.
% 28 Sep 2001 cwm
%
\global\@topnum\z@ \@afterindenttrue % Indent 1st lines.
% \global\@topnum\z@ \@afterindentfalse % Do NOT indent 1st lines.
%
\pagenumbering{arabic} % Added for using with
\markboth{}{}\pagestyle{myheadings} % no chapters
\addtocontents{toc}{\protect\addvspace{10pt}} % (4/22/97, MAL)
\renewcommand{\thesection}{\arabic{section}} % A few additional
\renewcommand{\theequation}{\arabic{equation}} % changes to improve
\renewcommand{\thefigure}{\@arabic\c@figure} % numbering
\renewcommand{\thetable}{\@arabic\c@table} % (5/16/97 M.A.L.)
\default@spacing % (6/30/97 M.A.L.)
%
} %
\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
\refstepcounter{chapter}
\typeout{\@chapapp\space\thechapter.}
\addcontentsline{toc}{chapter}{\@chapapp\space\thechapter.\hspace*{1em}#1}\else
\addcontentsline{toc}{chapter}{#1}\fi
% \chaptermark{#1}
\addtocontents{lof}{\protect\addvspace{10pt}}
\addtocontents{lot}{\protect\addvspace{10pt}}
\@makechapterhead{#2} \@afterheading
\ifnum\chap@or@app=1 \ifnum\value{chapter}=1 % if Chapter 1
\markboth{}{}\pagestyle{myheadings}
\ifnum\with@parts=0 \pagenumbering{arabic}\fi% Restart page number only
% if there are no parts (MAL)
\fi\fi
\thispagestyle{plain}}
\def\@schapter#1{\thispagestyle{plain}
\@makeschapterhead{#1} \@afterheading}
% Commented out section below so first paragraphs of (sub)sections ARE
% indented. 24 Sep 2001 cwm
%
%
% %%% Stolen from latex.tex (to unindent the first para of (sub)sections)
% %
% \def\@startsection#1#2#3#4#5#6{\if@noskipsec \leavevmode \fi
% \par \@tempskipa #4\relax
% \@afterindentfalse
% \if@nobreak \everypar{}
% \else\addpenalty{\@secpenalty}\addvspace{\@tempskipa}\fi
% \@ifstar{\@ssect{#3}{#4}{#5}{#6}}%
% {\@dblarg{\@sect{#1}{#2}{#3}{#4}{#5}{#6}}}}
\def\section{%
\ifnum\value{no@chapters}=1 \fpage \fi% % (7/16/97 M.A.L.)
\@startsection{section}{1}{\z@}%
{4.6ex plus -1ex minus -.2ex}{.3ex plus .2ex}{\large\bf}}
\def\subsection{\@startsection{subsection}{2}{\z@}%
{3.9ex plus -1ex minus -.2ex}{.2ex plus .2ex}{\normalsize\bf}}
% Changed definition of subsubsection below from first line (commented
% out) to second line. For some reason (buried in the depths of TeX,
% most likely) using the parameter 3 causes the subsubsections to not
% be numbered. Changing it to a 2 puts numbers on subsubsections.
% 13 Mar 2002 cwm
%
%\def\subsubsection{\@startsection{subsubsection}{3}{\z@}%
\def\subsubsection{\@startsection{subsubsection}{2}{\z@}%
% {3.25ex plus -1ex minus -.2ex}{-1.5ex plus .2ex}{\normalsize\it}}
% {3.25ex plus -1ex minus -.2ex}{.1ex plus .2ex}{\normalsize\it}}
% Change formatting of subsubsection headings
% to same as subsections.
% 13 Mar 2002 cwm
{3.9ex plus -1ex minus -.2ex}{.2ex plus .2ex}{\normalsize\bf}}
\def\thebibliography#1{\chapter*{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
\list
{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin\labelwidth
\advance\leftmargin\labelsep
\usecounter{enumi}} \def\newblock{\hskip .11em plus .33em minus -.07em}% \sloppy \sfcode`\.=1000 \relax}
\let\endthebibliography=\endlist}
% Redefinition of ``theindex'' 9/14/96 (MAL)
%
\newlength{\s@short@textheight}
\setlength{\s@short@textheight}{\short@textheight}
\addtolength{\s@short@textheight}{-\footskip}
\def\ishort@page{%
\setlength{\textheight}{\s@short@textheight}
\addtolength{\footskip}{\footskip}
\global \@colht\textheight
\global \@colroom\textheight
\global \vsize\textheight}
\newcounter{regular@short@col}
\def\index@opcol@def{%
\def\@opcol{%
\ifnum\value{regular@short@col}=0 \old@opcol\regular@page
\else\old@opcol%
\ishort@page\addtocounter{regular@short@col}{-1}%
\fi}%
}
\renewenvironment{theindex}
{\if@twocolumn
\@restonecolfalse
\else
\@restonecoltrue
\fi
\let\current@opcol\@opcol % <-
\columnseprule \z@
\columnsep 35\p@
\twocolumn[\@makeschapterhead{\indexname}]%
\@mkboth{\uppercase{\indexname}}%
{\uppercase{\indexname}}%
\addcontentsline{toc}{chapter}{\indexname}% % <-
\ishort@page % <-
\setcounter{regular@short@col}{1}% % <-
\index@opcol@def% % <-
\thispagestyle{plain}\parindent\z@
\parskip\z@ \@plus .3\p@\relax
%
% Uncomment one of the following two command lines if you
% want something other than a double-spaced index.
% 05 Oct 2001 cwm
%
\single@space % for single-spaced index.
% \oneandonehalf@space % for one-and-one-half spaced index.
\let\item\@idxitem}
{\let\@opcol\current@opcol% % <-
\if@restonecol\onecolumn\else\clearpage\fi}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Define Masters Thesis.
%
\def\masterthesis{%
\typeout{* *}
\typeout{* *}
\typeout{* This is a master thesis *}
\typeout{* *}
\typeout{* *}
\def\doc@type{thesis} % for master thesis
\def\DOC@TYPE{THESIS} % the document type
% is "thesis" (MAL, 3/12/98)
%
%\def\previous@degrees{B.S.}
%\def\target@degree{M.A.}
%\def\d@gree{MASTER OF ARTS}
% Must not have default of previous degree, degree, or degreeabbr
% in order for the entries in disstemplate.tex to be read correctly
% when creating master's document.
% 08 Apr 2002 cwm
%
\def\certif@words{ } % 13 Mar 2002 cwm
%
\def\approvalwords{%
\leftline{\hbox to 2.5in{}APPROVED BY\hfill} %
\leftline{\hbox to 2.5in{}SUPERVISING COMMITTEE:\hfill} %
} %
\def\pubnum{} % (M.A.L. 3/18/98)
} % End of definition of master's thesis.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Define Masters Report.
%
\def\masterreport{%
\typeout{* *}
\typeout{* *}
\typeout{* This is a master report *}
\typeout{* *}
\typeout{* *}
\def\doc@type{report} % for master report
\def\DOC@TYPE{REPORT} % the document type
% is "report" (MAL, 3/12/98)
%
%\def\previous@degrees{B.S.}
%\def\target@degree{M.A.}
%\def\d@gree{MASTER OF ARTS}
% Must not have default of previous degree, degree, or degreeabbr
% in order for the entries in disstemplate.tex to be read correctly
% when creating master's document.
% 08 Apr 2002 cwm
%
\def\certif@words{ } % 13 Mar 2002 cwm
%
\def\approvalwords{%
\leftline{\hbox to 2.5in{}APPROVED BY\hfill} %
\leftline{\hbox to 2.5in{}SUPERVISING COMMITTEE:\hfill} %
} %
\def\pubnum{} % (M.A.L. 3/18/98)
} % End of definition of master's report.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Define Dissertation.
%
\def\dissertation{% % (M.A.L., 3/18/98)
\typeout{* *}
\typeout{* *}
\typeout{* This is a dissertation *}
\typeout{* *}
\typeout{* *}
\def\doc@type{dissertation} % for dissertation
\def\DOC@TYPE{DISSERTATION} % the document type
% is "dissertation"
%
\def\previous@degrees{B.S., M.S.}
\def\target@degree{Ph.D.}
\def\d@gree{DOCTOR OF PHILOSOPHY}
%
\def\certif@words{ % 26 Aug 2001 cwm
\centerline{The Dissertation Committee for \au@thor}
\centerline{certifies that this is the approved version\
of the following dissertation:}
}
%
\def\approvalwords{% % 22 Jul 2001 cwm
\leftline{\hbox to 2.5in{}Committee:\hfill} %
} %
\def\pubnum{\centerline{Publication No. \rule{1.5in}{0.4pt}}} %% original line
} % End of definition of dissertation.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% PRELIMINARY DATA (AND/OR THEIR DEFAULTS) FOR DISSERTATION %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Default Data of Author, Dissertation, etc.
%
\dissertation % by default the document is a dissertation (MAL 3/18/98)
\def\au@thor{\bf Author Name Required !!!}
\def\AU@THOR{\bf \uppercase{Author Name Required !!!}}
\def\ti@tle{\bf Title Required !!!}
%\def\TI@TLE{\bf \uppercase{Title Required !!!}}
\def\graduation@month{\ifcase\month\or
May\or May\or May\or May\or May\or August\or August\or
August\or December\or December\or December\or December\fi}
\def\graduation@year{\number\year}
\def\add@ress{\bf Permanent Address Required !!!}
\def\type@ist{the author}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Input Data of Author, Dissertation, etc. %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
\def\doctype#1{\def\doc@type{#1}\def\DOC@TYPE{\uppercase{#1}}}
\def\author#1{\def\au@thor{#1}\def\AU@THOR{\uppercase{#1}}}
% new definition of TI@TLE, must be double spaced (M.A.L. 8/14/96)
%\def\title#1{\def\TI@TLE{\double@space\uppercase{#1}}}
%
% The Graduate School now permits mixed case.
% New definition of ti@tle. 22 Jul 2001 cwm
\def\title#1{\def\ti@tle{\double@space{#1}}}
\def\previousdegrees#1{\def\previous@degrees{#1}}
\def\degreeabbr#1{\def\target@degree{#1}}
\def\degree#1{\def\d@gree{#1}}
\def\graduationmonth#1{\def\graduation@month{#1}}
\def\graduationyear#1{\def\graduation@year{#1}}
\def\address#1{\def\add@ress{#1}}
\def\typist#1{\def\type@ist{#1}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Process information for Committee Certification page %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\supervisora{\bf Supervisor Required}
\def\supervisorb{}
\def\supervisorc{}
\def\committeemembera{}
\def\committeememberb{}
\def\committeememberc{}
\def\committeememberd{}
\def\committeemembere{}
\def\committeememberf{}
\newcount\numberofsupervisors\numberofsupervisors=1
\newcount\supervisornumbercounter
\newcount\numberofmembers\numberofmembers=0
\newcount\membernumbercounter
\def\signline{%
\leftline{\hbox to 2.5in{}\hrulefill} % 26 Aug 2001 cwm
\endgraf
}
\def\signturelines{%
%
% Work on supervisor lines.
%
\supervisornumbercounter=0
{\loop\ifnum\supervisornumbercounter<\numberofsupervisors
\advance\supervisornumbercounter by1
\signline
\vspace*{-18pt}
\ifnum\supervisornumbercounter=1
\leftline{\hbox to 2.53in{}{\supervisora, Supervisor}}
\fi
\ifnum\supervisornumbercounter=2
\leftline{\hbox to 2.53in{}{\supervisorb, Supervisor}}
\fi
\ifnum\supervisornumbercounter=3
\leftline{\hbox to 2.53in{}{\supervisorc, Supervisor}}
\fi
\repeat}
%
% Work on other member lines.
%
\membernumbercounter=0
{\loop\ifnum\membernumbercounter<\numberofmembers
\advance\membernumbercounter by1
\signline
\vspace*{-18pt}
\ifnum\membernumbercounter=1
\leftline{\hbox to 2.53in{}{\committeemembera}}
\fi
\ifnum\membernumbercounter=2
\leftline{\hbox to 2.53in{}{\committeememberb}}
\fi
\ifnum\membernumbercounter=3
\leftline{\hbox to 2.53in{}{\committeememberc}}
\fi
\ifnum\membernumbercounter=4
\leftline{\hbox to 2.53in{}{\committeememberd}}
\fi
\ifnum\membernumbercounter=5
\leftline{\hbox to 2.53in{}{\committeemembere}}
\fi
\ifnum\membernumbercounter=6
\leftline{\hbox to 2.53in{}{\committeememberf}}
\fi
\repeat}
}
%
% Read in \supervisor variable. Count and separate supervisor's
% and co-supervisors' names. 04 Oct 2001 cwm
%
\def\supervisor{%
\@ifnextchar [{\greaterthan1supervisor}{\onesupervisor}}
\def\greaterthan1supervisor[#1]{%
\@ifnextchar [{\threesupervisors[#1]}{\twosupervisors[#1]}}
\def\onesupervisor#1{%
\def\supervisora{#1}}
\def\twosupervisors[#1]#2{%
\def\supervisora{#1}
\def\supervisorb{#2}
\numberofsupervisors=2}
\def\threesupervisors[#1][#2]#3{%
\def\supervisora{#1}
\def\supervisorb{#2}
\def\supervisorc{#3}
\numberofsupervisors=3}
%
% Read in \committeemembers variable. Count and separate committee
% members' names. 04 Oct 2001 cwm
%
\def\committeemembers{%
\@ifnextchar [{\morethanonemember}
{\onecommitteemember}}
\def\morethanonemember[#1]{%
\@ifnextchar [{\morethantwomembers[#1]}
{\twocommitteemembers[#1]}}
\def\morethantwomembers[#1][#2]{%
\@ifnextchar [{\morethanthreemembers[#1][#2]}
{\threecommitteemembers[#1][#2]}}
\def\morethanthreemembers[#1][#2][#3]{%
\@ifnextchar [{\morethanfourmembers[#1][#2][#3]}
{\fourcommitteemembers[#1][#2][#3]}}
\def\morethanfourmembers[#1][#2][#3][#4]{%
\@ifnextchar [{\sixcommitteemembers[#1][#2][#3][#4]}
{\fivecommitteemembers[#1][#2][#3][#4]}}
\def\onecommitteemember#1{%
\def\committeemembera{#1}
\numberofmembers=1}
\def\twocommitteemembers[#1]#2{%
\def\committeemembera{#1}
\def\committeememberb{#2}
\numberofmembers=2}
\def\threecommitteemembers[#1][#2]#3{%
\def\committeemembera{#1}
\def\committeememberb{#2}
\def\committeememberc{#3}
\numberofmembers=3}
\def\fourcommitteemembers[#1][#2][#3]#4{%
\def\committeemembera{#1}
\def\committeememberb{#2}
\def\committeememberc{#3}
\def\committeememberd{#4}
\numberofmembers=4}
\def\fivecommitteemembers[#1][#2][#3][#4]#5{%
\def\committeemembera{#1}
\def\committeememberb{#2}
\def\committeememberc{#3}
\def\committeememberd{#4}
\def\committeemembere{#5}
\numberofmembers=5}
\def\sixcommitteemembers[#1][#2][#3][#4][#5]#6{%
\def\committeemembera{#1}
\def\committeememberb{#2}
\def\committeememberc{#3}
\def\committeememberd{#4}
\def\committeemembere{#5}
\def\committeemembere{#6}
\numberofmembers=6}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% COMPONENTS OF DISSERTATION %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Committee Certification Page 22 Jul 2001 cwm
%
\def\commcertpage{\thispagestyle{empty}
\certif@words
\vspace*{75pt}
\baselineskip=16.5pt plus .5pt minus .2 pt
\baselineskip=28.5pt plus .5pt minus .2 pt
\begin{center}
%
% The Graduate School now permits mixed case in the title.
% Note: The title printed on
% the Committee Certification Page,
% the Title Page, and,
% the Abstract Page
% must all be the same.
%
% \large\bf\TI@TLE % All capitals title.
\large\bf\ti@tle % Mixed case title.
\end{center}
\vspace*{55pt}
\approvalwords
%\bigskip\medskip\smallskip
\bigskip
\signturelines
\clearpage}
%
% Copyright Page
%
\def\copyrightpage{\thispagestyle{empty}
\vspace*{\fill}
\centerline{Copyright}
\vspace*{5pt}
\centerline{by}
\vspace*{5pt}
\centerline{\au@thor}
\vspace*{5pt}
\centerline{\graduation@year}
\vfill\clearpage}
%
% Dedication Page
%
\newenvironment{dedication}{\thispagestyle{empty}
\vspace*{170pt}\begin{center}\default@spacing}%
{\end{center}\clearpage}
%
% Title Page
%
\def\titlepage{\thispagestyle{empty}
\vspace*{5pt}
\baselineskip=22.5pt plus .5pt minus .2 pt
\begin{center}
\baselineskip=28.5pt plus .5pt minus .2 pt
%
% The Graduate School now permits mixed case in the title.
% Note: The title printed on
% the Committee Certification Page,
% the Title Page, and,
% the Abstract Page
% must all be the same.
%
% \large\bf\TI@TLE % All capitals title.
\large\bf\ti@tle % Mixed case title.
\end{center}
\vspace{25pt}
\centerline{\large\bf by}
\vspace{25pt}
% \centerline{\large\bf\AU@THOR, \previous@degrees}
\centerline{\large\bf\au@thor}
\vfill
\begin{center}
{\bf\DOC@TYPE}\\
Presented to the Faculty of the Graduate School of\\
The University of Texas at Austin\\
in Partial Fulfillment\\
of the Requirements\\
for the Degree of
\end{center}
\centerline{\bf\d@gree}
\vfill
\centerline{THE UNIVERSITY OF TEXAS AT AUSTIN}
\centerline{\graduation@month\ \graduation@year}
\clearpage
\setcounter{regular@short}{1}}
%
% Acknowledgments
%
\def\acknowledgments{%
\shortchapter*{Acknowledgments}
\addcontentsline{toc}{chapter}{Acknowledgments}
\pagestyle{plain}}
%
% Preface
%
\def\preface{%
\shortchapter*{Preface}
\addcontentsline{toc}{chapter}{Preface}
\pagestyle{plain}}
%
% Abstract Page
% Here it has been necessary to change the name of the keyword
% for the abstract, otherwise it resets automatically the page
% number to 1 (Miguel A. Lerma).
\def\utabstract{\clearpage % <-
\short@page
\setcounter{regular@short}{1}
\pagestyle{plain}
\addcontentsline{toc}{chapter}{Abstract}
\baselineskip 14pt plus .5pt minus .2 pt
\begin{center}
\baselineskip=22.5pt plus .5pt minus .2 pt
%
% The Graduate School now permits mixed case in the title.
% Note: The title printed on
% the Committee Certification Page,
% the Title Page, and,
% the Abstract Page
% must all be the same.
%
% \large\bf\TI@TLE % All capitals title.
\large\bf\ti@tle % Mixed case title.
\end{center}
\vspace*{25pt}
\vspace*{25pt}
\centerline{\au@thor, \target@degree} % <-
\vspace*{5pt} % (MAL 7/25/98)
\centerline{The University of Texas at Austin, \graduation@year} % <-
%
\vspace{10pt}
\begin{center}
{ \ifnum\numberofsupervisors=1 % One supervisor
{Supervisor: \supervisora }
\else\ifnum\numberofsupervisors=2 % Two supervisors
{\begin{tabular}{ll}
Supervisors: & \supervisora \\
& \supervisorb
\end{tabular} }
\else
{\begin{tabular}{ll} % Three supervisors
Supervisors: & \supervisora \\
& \supervisorb \\
& \supervisorc
\end{tabular}}
\fi \fi }
\end{center} \vskip 15pt
\default@spacing
\indent}
% \noindent}
% May, 2001 guidelines for Master's explicitly says indent;
% March, 2001 guidelines of Ph.D. shows indented on Sample Form D.
% To actually get indentation on first line of the abstract, the
% command \indent must also be in disstemplate.tex after the command
% \utabstract and before the abstract's text.
% 13 Mar 2002 cwm
% A reminder (Miguel A. Lerma).
\def\abstract{\typeout{WARNING: Please, use the keyword %
'utabstract' instead of 'abstract'!}}
%
% Table of Contents page
%
\def\tableofcontents{%
\shortchapter*{Table of Contents}
\pagestyle{plain}
\baselineskip=12pt plus .5pt minus .5pt
\@starttoc{toc}}
%
% List of Figures page
%
\def\listoffigures{%
\shortchapter*{List of Figures}
\addcontentsline{toc}{chapter}{List of Figures}
\pagestyle{plain}
\baselineskip=12pt plus .5pt minus .5pt
\@starttoc{lof}}
%
% List of Tables page
%
\def\listoftables{%
\shortchapter*{List of Tables}
\addcontentsline{toc}{chapter}{List of Tables}
\pagestyle{plain}
\baselineskip=12pt plus .5pt minus .5pt