-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathieee.cls
1418 lines (1320 loc) · 54.9 KB
/
ieee.cls
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% =========================================================================
% -------------------------------------------------------------------------
% XX X
% X
% XX XXX XXX XXX XXX X XXXX
% X X X X X X X X X X X
% X XXXXX XXXXX XXXXX X X XXX
% X X X X XX X X X X
% XXX XXX XXX XXX XX XXX X XXXX
% -------------------------------------------------------------------------
% =========================================================================
% ieee.cls --- For formatting IEEE conference & journal papers
% --- Compiled by Gregory Plett, Sept 1997
%
% This class was inspired by one first compiled by Gerry Murray and
% Silvano Balemi for LaTeX209. It was later updated for use with
% LaTeX2e, and some bugs were fixed, all by Istvan Kollar. Lastly,
% I have tried to make the class easier to use by paper authors.
% Significant new functionality has been added. Many routines are
% "borrowed" from other people's packages and modified extensively.
% When I rembered where I got the routines from, I gave the author
% credit.
%
% After I made many changes on my own, I found a version by Peter
% N"uchter, and tried to retain some amount of compatibility with his
% version. To be completely compatible with him, you may need to
% manually:
% \usepackage{rawfonts}\usepackage{oldlfont}
% \AtBeginDocument{\parindent1.0em} (?)
%
%===========================================================================
%
% Usage:
% \documentclass[main-mode,sub-mode,misc-options]{ieee}
% \usepackage{your own packages}
% \begin{document}
% \bibliographystyle{IEEEbib}
% \title[short]{regular}
% \author[short]{full}
% \maketitle
% \begin{abstract}...\end{abstract}
% \begin{keywords}...\end{keywords}
% \section{...}
% \PARstart ... or \PARstartCal ...
% ...
% \begin{biography}[picname.ps]{Author's name}...\end{biography}
% \end{document}
%
% The document class options are:
%
% main-mode: One of the following is required. (draft is the default)
% draft: Double-spaced, single column with date/time stamp.
% submission: Double-spaced, suitable for submission for review.
% compressed: Same as "submission", only single spaced.
% final: Double-column, for assessing page-length and
% format of final version.
%
% sub-mode:
% techreport: This can modify "final" to produce a two-col
% technical report.
% internal: This can modify "submission", "compressed" or "final".
% It changes the header to notify the reader that
% this is a version of the manuscript to be used for
% internal review processes only, and not to be
% distributed.
% submitted: This can modify "compressed" or "final". It changes
% the header to notify the reader that this
% is a preprint and not to be distributed.
% inpress: This can modify "compressed" or "final". It changes the
% header to notify the reader that this paper has
% been accepted for publishing, but it is not yet to be
% distributed.
% reprint: This can modify "final". It changes the header
% to notify the reader where the paper is reprinted from.
%
% misc-options:
% narroweqnarray: Changes the spacing around the "=" sign in
% equation arrays to make it the same as in displayed math.
% inline: Compresses the horizontal spacing of inline math equations.
% notitlepage: No separate title page. (default)
% titlepage: Separate title page.
% anonymous: Omit all author information from main part of paper.
% Author info only prints on titlepage.
% 9pt,10pt,11pt,12pt: Choose the appropriate type size. You should
% not need to do this as the "correct" size is automatically
% chosen. However, if you want, you may use these to change
% the type size of the main text. "9pt" is a bit of a hack
% to retain backward-compatibility.
% invited: If the paper is an "invited" paper, then this option
% prints "(Invited Paper)" under the authors' names.
%
% For regular IEEE submissions, define the journal name as:
% \journal{IEEE Trans. Inst. Meas.}
%
% To specify the conference place and date:
% \confplacedate{Ottawa, Canada, May 19--21, 1997}
%
% Before \maketitle, define:
% \title{Title of paper}
% \author{Author1\member{Fellow}\authorinfo{Department of
% Electrical Engineering\\ Some University, Somewhere, CA 94305
% USA} \and Author2\member{Senior Member}\authorinfo{Deptartment of
% Measurement and Instrument Eng., Another University, ...}}
%
% Note, the contents of \authorinfo tends to vary depending on if it is
% a conference or journal paper. The amount of manual changes are
% small, and must be done by a human anyway. The example given is for an
% IMTC conference.
%
% See also IEEEbib.bst and ieeefig.sty
% Also very useful for document preparation is the style file "endfloat",
% available on all CTAN TeX archives.
%
%===========================================================================
% modified 1 Dec 1997:
% - fixed first page in reprint mode to be same lenght as other pages
% - added "invited" misc-option
% modified 5 Sept 1997:
% - added the inpress, reprint and internal sub-modes
% - removed IMTC-conf and CDC-conf to separate files
% modified 1 Sept 1997:
% - included Babel package compatibility
% - removed paper title from header on first page of draft
% manuscript
% - removed the fixed option "letterpaper" to allow a4paper (etc)
% modified 1 Aug 1997:
% - included the CDC-conf option
%===========================================================================
% **************************************************************************
% ****** ******************************************
% ***** LaTeX2e INITIALIZATION *****************************************
% ****** ******************************************
% **************************************************************************
\typeout{Document Class `ieee' <Modified: 1997, Gregory L. Plett>.}
\NeedsTeXFormat{LaTeX2e}[1993/11/11] % Oldest acceptable version of LaTeX2e
\ProvidesClass{ieee}[1997/09/05] % Name of package provided, date
\def\i@@@cls{exists}
% Initial Code & Declaration of Options
% -------------------------------------
\newif\ifev@l \ev@lfalse % true if "final" mode.
\newif\ifsubm@t \subm@tfalse % true if "submission" mode.
\newif\ifdr@ft \dr@fttrue % true if "draft" mode.
\newif\ifc@mpress \c@mpressfalse % true if "compressed" mode.
\newif\if@technote \@technotefalse % true if "technote" sub-mode.
\newif\ifintern@l \intern@lfalse % true if "internal" sub-mode.
\newif\ifprepr@nt \prepr@ntfalse % true if "preprint" sub-mode.
\newif\ifinpr@ss \inpr@ssfalse % true if "inpress" sub-mode.
\newif\ifrepr@nt \repr@ntfalse % true if "reprint" sub-mode.
\newif\iftitlep@ge \titlep@gefalse % true if has own titlepage
\newif\if@non \@nonfalse % true if anonymous
\newif\ifixpt \ixptfalse % true if trying to do 9 pt
\newif\if@nvited \@nvitedfalse % true if an invited paper
% Main options
% ------------
\DeclareOption{draft}{\ev@lfalse\subm@tfalse\dr@fttrue%
\typeout{ieee: `Draft' mode selected.}}
\DeclareOption{submission}{\ev@lfalse\dr@ftfalse\subm@ttrue%
\typeout{ieee: `Submission' mode selected.}}
\DeclareOption{compressed}{\ev@lfalse\dr@ftfalse\subm@tfalse\c@mpresstrue%
\typeout{ieee: `Compressed' mode selected.}}
\DeclareOption{final}{\ev@ltrue\dr@ftfalse\subm@tfalse%
\typeout{ieee: `Final' mode selected.}}
\DeclareOption{evaluation}{\ev@ltrue\dr@ftfalse\subm@tfalse%
\typeout{ieee: `Final' mode selected.}} % synonym for final
% Sub options
% -----------
\DeclareOption{technote}{\@technotetrue%
\typeout{ieee: `Technote' sub-mode selected.}}
\DeclareOption{internal}{\intern@ltrue\prepr@ntfalse\inpr@ssfalse\repr@ntfalse%
\typeout{ieee: `Internal-Review' sub-mode selected.}}
\DeclareOption{submitted}{\intern@lfalse\prepr@nttrue\inpr@ssfalse\repr@ntfalse%
\typeout{ieee: `Submitted' sub-mode selected.}}
\DeclareOption{preprint}{\intern@lfalse\prepr@nttrue\inpr@ssfalse\repr@ntfalse%
\typeout{ieee: `Submitted' sub-mode selected.}} % synonym for submitted
\DeclareOption{inpress}{\intern@lfalse\prepr@ntfalse\inpr@sstrue\repr@ntfalse%
\typeout{ieee: `Inpress' sub-mode selected.}}
\DeclareOption{reprint}{\intern@lfalse\prepr@ntfalse\inpr@ssfalse\repr@nttrue%
\typeout{ieee: `Reprint' sub-mode selected.}}
% Misc options
% ------------
% regular or compressed "=" spacing in
\def\eqnarr@ysep{\arraycolsep} % eqnarray (this is the default)
% NOTE: we must use "def" and not "="
% as arraycolsep not yet defined.
\DeclareOption{narroweqnarray}{\gdef\eqnarr@ysep{0.28em\relax}%
\typeout{ieee: Narrow equation arrays selected.}}
\DeclareOption{inline}{\everymath{\thinmuskip=2mu plus 1mu
\medmuskip=3mu plus 1mu minus 2mu
\thickmuskip=4mu plus 2mu\relax}%
\typeout{ieee: Narrower inline equations selected.}}
\DeclareOption{notitlepage}{\titlep@gefalse%
\typeout{ieee: No separate title page.}}
\DeclareOption{titlepage}{\titlep@getrue%
\typeout{ieee: Use separate title page.}}
\DeclareOption{anonymous}{\@nontrue\AtBeginDocument{\glpexclude{biography}}
\typeout{ieee: Omit author information from paper.}}
\DeclareOption{invited}{\@nvitedtrue%
\typeout{ieee: (Invited Paper).}}
\DeclareOption{9pt}{\ixpttrue%
\typeout{ieee: Trying to emulate old `9pt' document class.}}
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
% Execution of Options/Package Loading
% ------------------------------------
\newlength\narrowcol
\newlength\parindentsave % recover parindent in blsone text
\ProcessOptions
\ifev@l % if "final" mode...
\if@technote\ixpttrue\typeout{ieee: Trying to emulate old `9pt'
document class.}\fi%
\LoadClass[twoside,final,twocolumn,10pt]{article}
\else % if "draft"/"submission"/(compressed) mode...
\ifixpt
\LoadClass[oneside,final,onecolumn,10pt]{article}
\else
\LoadClass[oneside,final,onecolumn,12pt]{article}
\fi
\fi
\RequirePackage[final]{graphicx}
\RequirePackage{ifthen}
% Re-Definitions of English words which must be done before
% the Babel package (optional) is loaded.
% ---------------------------------------------------------
\def\keywordsname{Index Terms}
\def\indexterms#1{\def\keywordsname{#1}}
\def\appendicesname{Appendices}
\def\figurename{Fig.}
% **************************************************************************
% ***** Check Sub-Options for Compatibility w/ Main-Options ************
% **************************************************************************
\if@technote\ifev@l\else\ClassError{ieee}{`technote' sub-mode may be
used only with the `final' ^^Jmain-mode. It may not be used
with either the `draft,' `submission,' or ^^J`compressed'
main-modes}{}\endinput\fi\fi
\ifintern@l\ifdr@ft\ClassError{ieee}{`internal' sub-mode may be
used only with the ^^J`submission,' `compressed,' or `final' main-modes.
It may not be used ^^Jwith the `draft' main-mode}{}\endinput\fi\fi
\ifprepr@nt\ifc@mpress\else\ifev@l\else\ClassError{ieee}{`submitted'
sub-mode may be used only with the ^^J`compressed' or `final'
main-modes. It may not be used with either the ^^J`draft' or
`submission' main-modes}{}\endinput\fi\fi\fi
\ifinpr@ss\ifc@mpress\else\ifev@l\else\ClassError{ieee}{`inpress'
sub-mode may be used only with the `compressed' ^^Jor `final'
main-modes. It may not be used with either the `draft' or
^^J`submission' main-modes}{}\endinput\fi\fi\fi
\ifrepr@nt\ifev@l\else\ClassError{ieee}{`reprint'
sub-mode may be used only with the `final' ^^Jmain-mode. It may not be
used with either the `draft,' `submission,' or ^^J`compressed'
main-modes}{}\endinput\fi\fi
% **************************************************************************
% ***** Page Layout Definition *****************************************
% **************************************************************************
%% Layout definitions (mostly) common to all options.
\hoffset 0in \voffset 0in
\headheight 12pt \headsep 7mm
\marginparsep 10pt \marginparwidth 20pt
\marginparpush 25pt
\columnsep 4mm
\parindent 1.0em
\lineskip 1pt
\normallineskip 1pt
\def\baselinestretch{1}
\partopsep \z@
\topsep 1.3ex
\parsep \z@
\itemsep \z@
\setlength{\parindentsave}{\parindent}
\ifev@l % if "evaluation" mode
% if camera-ready or A4paper ...
\ifdim\paperwidth<211mm
\oddsidemargin -11.4mm \evensidemargin -11.4mm
% for regular US Letter, not camera-ready
\else
\oddsidemargin -8.45mm \evensidemargin -8.45mm
\fi
\ifrepr@nt
\textheight 237.5mm % leave 6mm for cpyright on first page
\else
\textheight 243.5mm
\fi
\voffset -0.5in
\textwidth 182.0mm
\topmargin -12pt
\setlength{\narrowcol}{89mm}
\else % if "draft"/"submission" mode...
\ifc@mpress % and "compressed"
\oddsidemargin -0.25in \evensidemargin -0.25in
\textheight 9in \textwidth 7in
\topmargin -0.25in
\setlength{\narrowcol}{7in}
\else % and NOT "compressed"
\renewcommand\baselinestretch{1.8}\renewcommand{\arraystretch}{0.8}
\parindent=1.8\parindent
\oddsidemargin 0pt \evensidemargin 0pt
\headheight 12pt \headsep 0.375in
\topmargin 0pt
\textheight 8.5in \textwidth 6.5in
\marginparsep 0in \marginparwidth 0pt
\marginparpush 5pt
\setlength{\narrowcol}{6.5in}
\fi
\fi
\def\normalstyle{\rmfamily}
% **************************************************************************
% ***** Font Definition ************************************************
% **************************************************************************
%% The 9-point option is being faked since it is not supported by the
%% article base class.
%% Check if we have selected 9 points
\ifixpt
\typeout{-- This is a 9 point document}
\gdef\@ptsize{9}
\def\@normalsize{\@setsize\normalsize{10.7pt}\ixpt\@ixpt
\abovedisplayskip 1em plus2pt minus5pt\belowdisplayskip \abovedisplayskip
\abovedisplayshortskip \z@ plus3pt\belowdisplayshortskip .6em plus3pt minus3pt
\topsep \belowdisplayshortskip%!PN
}
\def\small{\@setsize\small{9.12pt}\viiipt\@viipt}
\def\footnotesize{\@setsize\footnotesize{8.15pt}\viipt\@vipt}
\def\scriptsize{\@setsize\scriptsize{8pt}\vipt\@vpt}
\def\tiny{\@setsize\tiny{5pt}\vpt\@vpt}
\def\large{\@setsize\large{12pt}\xpt\@xpt}
\def\Large{\@setsize\Large{14pt}\xiipt\@xiipt}
\def\LARGE{\@setsize\LARGE{18pt}\xivpt\@xivpt}
\def\huge{\@setsize\huge{22pt}\xviipt\@xviipt}
\def\Huge{\@setsize\Huge{25pt}\xxpt\@xxpt}
\fi
%%
%% Check if we have selected 10 points
\def\@tempa{0}\if\@ptsize\@tempa
\typeout{-- This is a 10 point document}
\def\@normalsize{\@setsize\normalsize{11.9pt}\xpt\@xpt
\abovedisplayskip 1em plus2pt minus5pt\belowdisplayskip \abovedisplayskip
\abovedisplayshortskip \z@ plus3pt\belowdisplayshortskip .6em plus3pt minus3pt
\topsep \belowdisplayshortskip%!PN
}
\def\small{\@setsize\small{9.2pt}\viiipt\@viiipt}
\def\footnotesize{\@setsize\footnotesize{8.8pt}\viiipt\@viiipt}
\def\scriptsize{\@setsize\scriptsize{8pt}\viipt\@viipt}
\def\tiny{\@setsize\tiny{6pt}\vpt\@vpt}
\def\normalsize{\@setsize\normalsize{11.9pt}\xpt\@xpt}
\def\large{\@setsize\large{14pt}\xiipt\@xiipt}
\def\Large{\@setsize\Large{18pt}\xivpt\@xivpt}
\def\LARGE{\@setsize\LARGE{22pt}\xviipt\@xviipt}
\def\huge{\@setsize\huge{22pt}\xxpt\@xxpt}
\def\Huge{\@setsize\Huge{28pt}\xxvpt\@xxvpt}
\fi
%%
%% Check if we have selected 11 points
\def\@tempa{1}\if\@ptsize\@tempa
\typeout{-- This is an 11 point document}
\def\@normalsize{\@setsize\normalsize{13.6pt}\xipt\@xipt
\abovedisplayskip 1em plus2pt minus5pt\belowdisplayskip \abovedisplayskip
\abovedisplayshortskip \z@ plus3pt\belowdisplayshortskip .6em plus3pt minus3pt
\topsep \belowdisplayshortskip%!PN
}
\def\small{\@setsize\small{12pt}\xpt\@xpt}
\def\footnotesize{\@setsize\footnotesize{11pt}\ixpt\@ixpt}
\def\scriptsize{\@setsize\scriptsize{9.5pt}\viiipt\@viiipt}
\def\tiny{\@setsize\tiny{7pt}\vipt\@vipt}
\def\normalsize{\@setsize\normalsize{13.6pt}\xipt\@xipt}
\def\large{\@setsize\large{14pt}\xiipt\@xiipt}
\def\Large{\@setsize\Large{18pt}\xivpt\@xivpt}
\def\LARGE{\@setsize\LARGE{22pt}\xviipt\@xviipt}
\def\huge{\@setsize\huge{25pt}\xxpt\@xxpt}
\def\Huge{\@setsize\Huge{30pt}\xxvpt\@xxvpt}
\fi
%%
%% Check if we have selected 12 points
\def\@tempa{2}\if\@ptsize\@tempa
\typeout{-- This is a 12 point document}
\def\@normalsize{\@setsize\normalsize{14pt}\xiipt\@xiipt
\abovedisplayskip 1em plus3pt minus6pt\belowdisplayskip \abovedisplayskip
\abovedisplayshortskip \z@ plus3pt\belowdisplayshortskip .6em plus4pt minus4pt
\topsep \belowdisplayshortskip%!PN
}
\def\small{\@setsize\small{11.4pt}\xpt\@xpt}
\def\footnotesize{\@setsize\footnotesize{10pt}\ixpt\@ixpt}
\def\scriptsize{\@setsize\scriptsize{9pt}\viiipt\@viiipt}
\def\tiny{\@setsize\tiny{8pt}\vipt\@vipt}
\def\normalsize{\@setsize\normalsize{14pt}\xiipt\@xiipt}
\def\large{\@setsize\large{18pt}\xivpt\@xivpt}
\def\Large{\@setsize\Large{22pt}\xviipt\@xviipt}
\def\LARGE{\@setsize\LARGE{25pt}\xxpt\@xxpt}
\def\huge{\@setsize\huge{30pt}\xxvpt\@xxvpt}
\let\Huge=\huge
\fi
\AtBeginDocument{\normalsize\normalstyle\ps@headings\pagenumbering{arabic}}
% **************************************************************************
% ***** List Definition ************************************************
% **************************************************************************
%% Change aspect of lists with
%% 1) \itemindent, label indentation wrt to left list margin
%% 2) \leftmargini, the indentation of the whole list (on left, first level)
\ifev@l
\itemindent -1em
\leftmargini 2em
\leftmarginii 1em
\leftmarginiii 1.5em
\leftmarginiv 1.5em
\leftmarginv 1.0em
\leftmarginvi 1.0em
\else
\itemindent -1em
\leftmargini 3em
\leftmarginii 3em
\leftmarginiii 3em
\leftmarginiv 3em
\leftmarginv 3em
\leftmarginvi 3em
\fi
%\itemindent 2em % Alternative values: sometimes used..
%\leftmargini 0em
\labelsep 5pt
\leftmargin\leftmargini
\labelwidth \z@
\def\@listI{\leftmargin\leftmargini} \@listI
\def\@listi{\leftmargin\leftmargini \topsep \z@ plus 1pt minus 1pt}
\def\@listii{\leftmargin\leftmarginii\labelwidth\leftmarginii
\advance\labelwidth-\labelsep \topsep \z@}
\def\@listiii{\leftmargin\leftmarginiii\labelwidth\leftmarginiii
\advance\labelwidth-\labelsep \topsep \z@}
\def\@listiv{\leftmargin\leftmarginiv\labelwidth\leftmarginiv
\advance\labelwidth-\labelsep \topsep \z@}
\def\@listv{\leftmargin\leftmarginv\labelwidth\leftmarginv
\advance\labelwidth-\labelsep \topsep \z@}
\def\@listvi{\leftmargin\leftmarginvi\labelwidth\leftmarginvi
\advance\labelwidth-\labelsep \topsep \z@}
\def\labelenumi{\theenumi.} \def\theenumi{\arabic{enumi}}
\def\labelenumii{(\theenumii)} \def\theenumii{\alph{enumii}}
\def\labelenumiii{\theenumiii.} \def\theenumiii{\roman{enumiii}}
\def\labelenumiv{\theenumiv.} \def\theenumiv{\Alph{enumiv}}
\def\p@enumii{\theenumi}
\def\p@enumiii{\theenumi(\theenumii)}
\def\p@enumiv{\p@enumiii\theenumiii}
\def\labelitemi{$\scriptstyle\bullet$}
\def\labelitemii{\bf --}
\def\labelitemiii{$\ast$}
\def\labelitemiv{$\cdot$}
%% \itemindent is set to \z@ by list, so define new temporary variable
\newdimen\tmpitemindent
\def\verse{\let\\=\@centercr
\list{}{\itemsep\z@ \itemindent -1.5em \listparindent \itemindent
\rightmargin\leftmargin\advance\leftmargin 1.5em}\item[]}
\let\endverse\endlist
\def\quotation{\list{}{\listparindent 1.5em \itemindent\listparindent
\rightmargin\leftmargin \parsep 0pt plus 1pt}\item[]}
\let\endquotation=\endlist
\def\quote{\list{}{\rightmargin\leftmargin}\item[]}
\let\endquote=\endlist
\def\@mklab#1{#1}
\def\description{\tmpitemindent\itemindent\list{}{\itemindent\tmpitemindent
\labelwidth\z@\def\makelabel##1{\hspace\labelsep\emph{##1}}}}
\def\enddescription{\endlist\par}
\def\enumerate{\tmpitemindent\itemindent\ifnum \@enumdepth >3 \@toodeep\else
\advance\@enumdepth \@ne \edef\@enumctr{enum\romannumeral\the\@enumdepth}%
\list{\csname label\@enumctr\endcsname}{\itemindent\tmpitemindent
\usecounter{\@enumctr}\def\makelabel##1{\hspace\labelsep\hfil{##1}}}\fi}
\def\endenumerate{\endlist\par}
\def\itemize{\tmpitemindent\itemindent\ifnum \@itemdepth >3 \@toodeep\else
\advance\@itemdepth\@ne
\edef\@itemitem{labelitem\romannumeral\the\@itemdepth}%
\list{\csname\@itemitem\endcsname}{\itemindent\tmpitemindent
\def\makelabel##1{\hspace\labelsep\hfil\emph{##1}}}\fi}
\def\enditemize{\endlist\par}
\newif\if@restonecol
\def\titlepage{\@restonecolfalse\if@twocolumn\@restonecoltrue\onecolumn
\else \newpage \fi \thispagestyle{coverpagestyle}\c@page\z@}
\def\endtitlepage{\if@restonecol\twocolumn \else \newpage \fi%
\if@twoside\mbox{}\thispagestyle{coverpagestyle}\c@page\z@\cleardoublepage\fi}
\arraycolsep 5pt
\tabcolsep 6pt
\arrayrulewidth .4pt
\doublerulesep 2pt
\tabbingsep\labelsep
% **************************************************************************
% ***** Footnote Definition ********************************************
% **************************************************************************
\skip\footins 10pt plus 5pt minus 2pt
\footnotesep 7pt
\footskip 6mm
\skip\@mpfootins = \skip\footins
\fboxsep = 3pt \fboxrule = .4pt
\long\def\@makefntext#1{\parindent .8em\indent$^{\@thefnmark}$#1}
\def\footnoterule{}
% Reset baselinestretch within footnotes.
% Originally stolen from Stanford University thesis style.
% --------------------------------------------------------
\long\def\@footnotetext#1{\insert\footins{\blsone%
\footnotesize\interlinepenalty\interfootnotelinepenalty
\splittopskip\footnotesep
\splitmaxdepth \dp\strutbox \floatingpenalty \@MM
\hsize\columnwidth \@parboxrestore
\edef\@currentlabel{\csname p@footnote\endcsname\@thefnmark}\@makefntext
\let\par\\
{\rule{\z@}{\footnotesep}\ignorespaces
#1\strut}}}
% **************************************************************************
% ***** Keep track of Sections *****************************************
% **************************************************************************
\if@technote
\setcounter{secnumdepth}{3}
\else
\setcounter{secnumdepth}{4}
\fi
\def\thesection{\Roman{section}}
\def\thesubsection{\thesection-\Alph{subsection}}
\def\thesubsubsection{\thesubsection.\arabic{subsubsection}}
\def\thesubsubsectiondis{\Alph{subsection}.\arabic{subsubsection}}
\def\theparagraph{\thesubsubsection.\alph{paragraph}}
\def\theparagraphdis{\thesubsubsectiondis.\alph{paragraph}}
\def\theequation{\arabic{equation}}
% **************************************************************************
% ***** Table of Contents, List of Figures/Tables Definitions **********
% **************************************************************************
\def\@pnumwidth{1.55em}
\def\@tocrmarg {2.55em}
\def\@dotsep{4.5}
\setcounter{tocdepth}{3}
\def\tableofcontents{\section*{\contentsname}\@starttoc{toc}}
\def\l@section#1#2{\addpenalty{\@secpenalty} \addvspace{1.0em plus 1pt}
\@tempdima 1.8em \begingroup \parindent \z@ \rightskip \@pnumwidth
\parfillskip-\@pnumwidth \bf\leavevmode #1\hfil\hbox to\@pnumwidth{\hss #2}
\par \endgroup}
\def\l@subsection{\@dottedtocline{2}{1.5em}{2.3em}}
\def\l@subsubsection{\@dottedtocline{3}{3.8em}{3.2em}}
\def\listoffigures{\section*{\listfigurename}\@starttoc{lof}}
\def\l@figure{\@dottedtocline{1}{1em}{1.8em}}
\def\listoftables{\section*{\listtablename}\@starttoc{lot}}
\let\l@table\l@figure
% **************************************************************************
% ***** Float Definitions **********************************************
% **************************************************************************
%% Normal Floats %% Double Column Floats
\floatsep 12pt plus 2pt minus 2pt \dblfloatsep 12pt plus 2pt minus 2pt
\textfloatsep 20pt plus 2pt minus 4pt \dbltextfloatsep 20pt plus 2pt minus 4pt
%\@maxsep 20pt \@dblmaxsep 20pt %!PN
\@fptop 0pt plus 1fil \@dblfptop 0pt plus 1fil
\@fpsep 8pt plus 2fil \@dblfpsep 8pt plus 2fil
\@fpbot 0pt plus 1fil \@dblfpbot 0pt plus 1fil
\def\topfraction{1.0} \def\dbltopfraction{1.0}
\def\floatpagefraction{0.8} \def\dblfloatpagefraction{0.8}
\setcounter{topnumber}{2} \setcounter{dbltopnumber}{4}
%
\intextsep 12pt plus 2pt minus 2pt
\setcounter{bottomnumber}{2}
\def\bottomfraction{.4}
\setcounter{totalnumber}{4}
\def\textfraction{.2}
% Reset baselinestretch within floats.
% Originally stolen from Stanford University thesis style.
% --------------------------------------------------------
\def\@xfloat#1[#2]{\ifhmode \@bsphack\@floatpenalty -\@Mii\else
\@floatpenalty-\@Miii\fi\def\@captype{#1}\ifinner
\@parmoderr\@floatpenalty\z@
\else\@next\@currbox\@freelist{\@tempcnta\csname ftype@#1\endcsname
\multiply\@tempcnta\@xxxii\advance\@tempcnta\sixt@@n
\@tfor \@tempa :=#2\do
{\if\@tempa h\advance\@tempcnta \@ne\fi
\if\@tempa t\advance\@tempcnta \tw@\fi
\if\@tempa b\advance\@tempcnta 4\relax\fi
\if\@tempa p\advance\@tempcnta 8\relax\fi
}\global\count\@currbox\@tempcnta}\@fltovf\fi
\global\setbox\@currbox\vbox\bgroup
\def\baselinestretch{1}\small\normalsize
\hsize\columnwidth \@parboxrestore}
% **************************************************************************
% ***** Caption Definition *********************************************
% **************************************************************************
% some journals do not have centered captions for figures.
\newif\ifc@ptionleft \c@ptionlefttrue
\def\leftfigcaptions{\c@ptionlefttrue}
\def\centerfigcaptions{\c@ptionleftfalse}
\long\def\caption{\refstepcounter\@captype \@dblarg{\@caption\@captype}}
\long\def\@caption#1[#2]#3{\par\addcontentsline{\csname ext@#1\endcsname}{#1}{%
\protect\numberline{\csname the#1\endcsname}{\ignorespaces #2}}
\begingroup \@parboxrestore \normalsize
\@makecaption{\csname fnum@#1\endcsname}{\ignorespaces #3}{#1}\par
\endgroup}
\def\tablestring{table}
\def\figurestring{figure}
% changed by GLP to allow table captions to be set to a specific maximum
% width "\captionwidth", if defined.
\newlength{\captionindent}
\long\def\@makecaption#1#2#3{
\ifx\figurestring#3
\vskip 5pt
\setbox\@tempboxa\hbox{\small #1.~ #2}
\ifdim \wd\@tempboxa >\hsize
\setbox\@tempboxa\hbox{\small #1.~ }
%\setlength\captionindent{\wd\@tempboxa} \divide\captionindent by 2
%\parbox[t]{\hsize}{\small \hangindent \captionindent \hangafter=1%
\parbox[t]{\hsize}{\small
\unhbox\@tempboxa#2}
\else \hbox
to\hsize{\small\ifc@ptionleft\else\hfil\fi\box\@tempboxa\hfil}
\fi
\else
\begin{center}
\ifx\captionwidth\undefined {\small #1}\\{\small\scshape #2}
\else
\begin{minipage}{\captionwidth}
\begin{center}{\small #1}\\{\small\scshape #2}\end{center}
\end{minipage}
\fi
\end{center}\vskip 4pt
\fi}
\def\thefigure{\@arabic\c@figure}
\def\fps@figure{tbp}
\def\ftype@figure{1}
\def\ext@figure{lof}
\def\fnum@figure{\figurename\ \thefigure}
\def\figure{\@float{figure}}
\let\endfigure\end@float
\@namedef{figure*}{\@dblfloat{figure}}
\@namedef{endfigure*}{\end@dblfloat}
\def\thetable{\@Roman\c@table}
\def\fps@table{tbp}
\def\ftype@table{2}
\def\ext@table{lot}
\def\fnum@table{TABLE~\thetable}
\def\table{\@float{table}}
\let\endtable\end@float
\@namedef{table*}{\@dblfloat{table}}
\@namedef{endtable*}{\end@dblfloat}
% **************************************************************************
% ***** Header/Footer Definition ***************************************
% **************************************************************************
% compute the time in hours and minutes; make new vars \timehh and \timemm
\newcount\timehh\newcount\timemm\timehh=\time\divide\timehh by 60
\timemm=\time\count255=\timehh\multiply\count255 by-60\advance\timemm by
\count255\ifnum\timehh>12\def\apm{pm}\advance\timehh by-12\else
\def\apm{am}\fi
\def\t@me{\number\timehh\,:\,\ifnum\timemm<10 0\fi\number\timemm\,\apm}
% default definitions
% -------------------
\def\theevenhe@d{\footnotesize\thepage \hfil \leftmark\hbox{}}
\def\theoddhe@d{\hbox{}\footnotesize\rightmark \hfil \thepage}
\def\theevenf@@t{}
\def\theoddf@@t{}
\def\theeventphe@d{\footnotesize\thepage \hfil \hbox{}}
\def\theoddtphe@d{\hbox{}\footnotesize \hfil \thepage}
\def\theeventpf@@t{}
\def\theoddtpf@@t{}
\def\theevencphe@d{}
\def\theoddcphe@d{}
\def\theevencpf@@t{}
\def\theoddcpf@@t{}
\def\internalmsg{Preliminary version for evaluation: Please do not
circulate without the permission of the author(s)}
\def\submittedmsg{SUBMITTED FOR PUBLICATION TO:}
\def\acceptedmsg{ACCEPTED FOR PUBLICATION:}
\def\inpressmsg{(IN PRESS)}
\def\reprintmsg{REPRINTED FROM:}
% default cover page style (optional cover page)
% ----------------------------------------------
\def\ps@coverpagestyle{
\def\@oddhead{\theoddcphe@d} \def\@evenhead{\theevencphe@d}
\def\@oddfoot{\theoddcpf@@t} \def\@evenfoot{\theevencpf@@t}
}
% default title page style (first page of paper)
% ----------------------------------------------
\def\ps@titlepagestyle{
\def\@oddhead{\theoddtphe@d} \def\@evenhead{\theeventphe@d}
\def\@oddfoot{\theoddtpf@@t} \def\@evenfoot{\theeventpf@@t}
}
% default regular page style
% --------------------------
\if@twoside
\def\ps@headings{
\def\@oddhead{\theoddhe@d}
\def\@evenhead{\theevenhe@d}
\def\@oddfoot{\theoddf@@t} \def\@evenfoot{\theevenf@@t}
}
\else
\def\ps@headings{
\def\@oddhead{\theoddhe@d}
\def\@oddfoot{\theoddf@@t}
\def\@evenhead{} \def\@evenfoot{}
}
\fi
% For draft mode (no sub-modes allowed)
% -------------------------------------
\ifdr@ft
\def\leftmark{\sh@rttitle}\let\rightmark\leftmark
\def\theoddf@@t{\footnotesize\today---\t@me\hfil DRAFT}
\def\theevenf@@t{\footnotesize DRAFT\hfil\today---\t@me}
\def\theoddtpf@@t{\footnotesize\today---\t@me\hfil DRAFT}
\def\theeventpf@@t{\footnotesize DRAFT\hfil\today---\t@me}
\fi
% For submission mode (default plus internal sub-modes allowed)
% -------------------------------------------------------------
\ifsubm@t
\def\leftmark{\sh@rttitle}\def\rightmark{\titl@line}
\ifintern@l
\def\theeventphe@d{\footnotesize\thepage \hfil \rightmark\hbox{}}
\def\theoddtphe@d{\hbox{}\footnotesize\rightmark \hfil \thepage}
\def\rightmark{\vbox to 0pt{\vss\hbox{\internalmsg} \hbox{\sh@rttitle}}}
\def\leftmark{\vbox to 0pt{\vss\hbox{\internalmsg}
\hbox{\phantom{\internalmsg}\llap{\sh@rttitle}}}}
\else % put date on first page.
\edef\TODAY{\uppercase{\today}}
\def\theeventphe@d{\footnotesize\thepage \hfil \submittedmsg\
\@journal\@titletext, \TODAY}
\def\theoddtphe@d{\footnotesize\submittedmsg\
\@journal\@titletext, \TODAY\hfil \thepage}
\def\theevencphe@d{\footnotesize\hbox{} \hfil \submittedmsg\
\@journal\@titletext, \TODAY}
\def\theoddcphe@d{\footnotesize\submittedmsg\
\@journal\@titletext, \TODAY\hfil \hbox{}}
\fi
\fi
% For compressed mode (default, internal, submitted and
% inpress sub-modes allowed)
% -----------------------------------------------------
\ifc@mpress
\def\leftmark{\sh@rttitle}\def\rightmark{\titl@line}
\ifintern@l
\def\theeventphe@d{\footnotesize\thepage \hfil \rightmark\hbox{}}
\def\theoddtphe@d{\hbox{}\footnotesize\rightmark \hfil \thepage}
\def\rightmark{\vbox to 0pt{\vss\hbox{\internalmsg} \hbox{\sh@rttitle}}}
\def\leftmark{\vbox to 0pt{\vss\hbox{\internalmsg}
\hbox{\phantom{\internalmsg}\llap{\sh@rttitle}}}}
\fi
\ifprepr@nt
\edef\TODAY{\uppercase{\today}}
\def\theeventphe@d{\footnotesize\thepage \hfil \submittedmsg\
\@journal\@titletext, \TODAY}
\def\theoddtphe@d{\footnotesize\submittedmsg\
\@journal\@titletext, \TODAY\hfil \thepage}
\def\theevencphe@d{\footnotesize\hbox{} \hfil \submittedmsg\
\@journal\@titletext, \TODAY}
\def\theoddcphe@d{\footnotesize\submittedmsg\
\@journal\@titletext, \TODAY\hfil \hbox{}}
\fi
\ifinpr@ss
\def\leftmark{\acceptedmsg\ \@journal\@titletext, \inpressmsg}
\def\theeventphe@d{\footnotesize\thepage \hfil \leftmark\hbox{}}
\def\theoddtphe@d{\hbox{}\footnotesize\leftmark \hfil \thepage}
\fi
\fi
% For final (evaluate) mode (default, techreport, internal,
% submitted, inpress and reprint sub-modes allowed)
% ---------------------------------------------------------
\ifev@l
\edef\TODAY{\uppercase{\today}}
\def\leftmark{\@journal\@titletext}\def\rightmark{\titl@line}
\def\theeventphe@d{\footnotesize\thepage \hfil \leftmark\hbox{}}
\def\theoddtphe@d{\hbox{}\footnotesize\leftmark \hfil \thepage}
\if@technote % make header a little bigger
\def\theevenhe@d{\small\thepage \hfil \leftmark\hbox{}}
\def\theoddhe@d{\hbox{}\small\rightmark \hfil \thepage}
\def\theeventphe@d{\small\thepage \hfil \leftmark\hbox{}}
\def\theoddtphe@d{\hbox{}\small\leftmark \hfil \thepage}
\fi
\ifintern@l
\def\theeventphe@d{\footnotesize\thepage \hfil \rightmark\hbox{}}
\def\theoddtphe@d{\hbox{}\footnotesize\rightmark \hfil \thepage}
\def\rightmark{\vbox to 0pt{\vss\hbox{\internalmsg} \hbox{\sh@rttitle}}}
\def\leftmark{\vbox to 0pt{\vss\hbox{\internalmsg}
\hbox{\phantom{\internalmsg}\llap{\sh@rttitle}}}}
\fi
\ifprepr@nt
\def\leftmark{\submittedmsg\ \@journal\@titletext, \TODAY}
\fi
\ifinpr@ss
\def\leftmark{\acceptedmsg\ \@journal\@titletext, \inpressmsg}
\fi
\ifrepr@nt
% reset page size on second and following pages b/c no copyright info
\let\oldshipout\shipout
\gdef\shipout{\global\textheight 243.5mm\oldshipout}
\def\theeventpf@@t{\footnotesize\hfil\@ieeecopyright\hfil}
\def\theoddtpf@@t{\footnotesize\hfil\@ieeecopyright\hfil}
\def\leftmark{\reprintmsg\ \@journal\@titletext}
\fi
\fi
%% Defines the command for putting the header. footernote{TEXT} is the same
%% as markboth{TEXT}{TEXT}. Here for compatibility with other style files.
\def\markboth#1#2{\def\leftmark{#1}\def\rightmark{#2}}
\def\footernote#1{\markboth{#1}{#1}}
% **************************************************************************
% ***** Citation/Bibliography Definitions ******************************
% **************************************************************************
%% separate citations with "], ["
\def\@citex[#1]#2{\if@filesw\immediate\write\@auxout{\string\citation{#2}}\fi
\def\@citea{}\@cite{\@for\@citeb:=#2\do {\@citea\def\@citea{],
[}\@ifundefined {b@\@citeb}{{\bf ?}\@warning {Citation `\@citeb' on
page \thepage \space undefined}}%
{\csname b@\@citeb\endcsname}}}{#1}}
\def\@cite#1#2{[{#1\if@tempswa, #2\fi}]}
%% Allow short (name-less) citations, when used in conjunction with a
%% bibliography style that creates labels like \citename{<names>, }<year>
\let\@internalcite\cite
\def\cite{\def\citename##1{##1}\@internalcite}
\def\shortcite{\def\citename##1{}\@internalcite}
\def\@biblabel#1{\def\citename##1{##1}[#1]\hfill}
\def\thebibliography#1{\section*{\refname}\footnotesize\list
{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin\labelwidth
\advance\leftmargin\labelsep \itemsep 0pt plus .5pt
\usecounter{enumi}}
\def\newblock{\hskip .11em plus .33em minus .07em}
\sloppy\clubpenalty4000\widowpenalty4000
\sfcode`\.=1000\relax
\ifev@l\else\normalsize\fi %added by GLP
}
\let\endthebibliography=\endlist
% **************************************************************************
% ***** Appendix/Appendices Definitions ********************************
% **************************************************************************
%% appendix command for one single appendix
\def\appendix{\par
\setcounter{section}{0}\setcounter{subsection}{0}
\def\thesection{\Alph{section}} \section*{\appendixname}
}
%% appendices command for multiple appendicies
\def\appendices{\par
\setcounter{section}{0}\setcounter{subsection}{0}
\def\thesection{\Alph{section}} \section*{\appendicesname}
}
% **************************************************************************
% ***** Title Definitions **********************************************
% **************************************************************************
\def\titl@line{\sh@rttitle} %for the header at the top of the page.
\def\@title{\typeout{ieee: Warning! No \noexpand\title given!}}
\def\title{\@ifnextchar [{\titlea}{\titleb}}
\def\titlea[#1]#2{\gdef\@title{#2}\gdef\sh@rttitle{\uppercase{#1}}}
\def\titleb#1{\gdef\@title{#1}\gdef\sh@rttitle{\uppercase{#1}}}
\def\authorinfo#1{\let\\\relax\thanks{#1}}
\ifev@l
\if@technote
\def\member#1{}
\else
\def\member#1{, \emph{#1, IEEE}}
\fi
\else
\def\member#1{}
\fi
\def\and{\unskip% % \begin{tabular}
\end{tabular}%
\hskip 0pt plus 0.1pt%
\begin{tabular}[t]{@{}c@{}}\ }%
\def\@author{\typeout{ieee: Warning! No \noexpand\author given!}}
\def\author{\@ifnextchar [{\authora}{\authorb}}
\def\authora[#1]#2{\gdef\@author{#2}%
\if@non\else\gdef\titl@line{#1: \sh@rttitle}\fi}
\def\authorb#1{\gdef\@author{#1}}
\long\def\maketitle{%
\begingroup
\let\@thanks\@empty
\renewcommand\thefootnote{} % the \thanks{} mark type is empty
\iftitlep@ge\begin{titlepage}\@maketitlepage\@thanks\end{titlepage}%
\let\@thanks\@empty\fi
\thispagestyle{titlepagestyle}
\if@twocolumn
\if@technote
%\if@twoside\newpage\cleardoublepage\else\newpage\fi%
\newpage\global\@topnum\z@
\ifrepr@nt
\ifx\@loginfo\undefined\typeout{ieee: Warning! No \noexpand\loginfo
given!}\else\let\\\relax\thanks{\@loginfo}\fi%
\fi
\@maketitle
\else
\ifnum \col@number=\@ne
\ifrepr@nt
\ifx\@loginfo\undefined\typeout{ieee: Warning! No \noexpand\loginfo
given!}\else\let\\\relax\thanks{\@loginfo}\fi%
\fi
\@maketitle
\else \twocolumn[%
\ifrepr@nt%
\ifx\@loginfo\undefined\typeout{ieee: Warning! No \noexpand\loginfo%
given!}\else\let\\\relax\thanks{\@loginfo}\fi%
\fi%
\@maketitle]%
\fi
\fi
\else
\newpage
\global\@topnum\z@ % Prevents figures from going at top of page.
\ifrepr@nt
\ifx\@loginfo\undefined\typeout{ieee: Warning! No \noexpand\loginfo
given!}\else\let\\\relax\thanks{\@loginfo}\fi
\fi
\@maketitle
\fi
\thispagestyle{titlepagestyle}%
\@thanks
\endgroup
\setcounter{footnote}{0}%
\global\let\thanks\relax \global\let\maketitle\relax
\global\let\@maketitle\relax \global\let\@thanks\@empty
\global\let\@author\@empty \global\let\@date\@empty
\global\let\@title\@empty \global\let\title\relax
\global\let\author\relax \global\let\date\relax
\global\let\and\relax
}
\long\def\@maketitle{\unskip\newpage%
\begin{center}\blsone
\let \footnote \thanks
\if@technote
{\bfseries\@title\par}\if@non\else\vskip 1.3em{\lineskip .5em
\noindent\begin{tabular}[t]{@{}c@{}}\@author\end{tabular}}\fi\par
\else\unskip
\noindent{\Huge\@title\par}%
\if@non\else\vskip1.0em%
\noindent{\large\lineskip .5em%
\begin{tabular}[t]{@{}c@{}}\@author\end{tabular}}%
\fi\par%
\if@nvited\vskip1.0em\noindent\emph{\large(Invited Paper)}\par\fi
\fi
\ifrepr@nt
\ifx\@lognumber\undefined\typeout{ieee: Warning! No
\noexpand\pubitemident or \noexpand\lognumber
given!}\else\thanks{\@lognumber}\fi%
\fi
\end{center}\par\vskip 0.5em}%
\long\def\@maketitlepage{\newpage%
\mbox{}\vfil
\begin{center}\blsone
\let \footnote \thanks
\if@technote
{\bfseries\@title\par}\vskip 1.3em{\lineskip .5em
\noindent\begin{tabular}[t]{@{}c@{}}\@author\end{tabular}\par}
\else
\vskip0.2em{\Huge\@title\par}\vskip1.0em%
\iftitlep@ge\vfil\fi
\noindent{\large\lineskip .5em%
\begin{tabular}[t]{@{}c@{}}\@author\end{tabular}\par}%