-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathis-alpha.bst
2020 lines (1576 loc) · 40.3 KB
/
is-alpha.bst
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
%% =====================================================================
%% WARNING: Do NOT edit this file. It was produced automatically by
%% Nelson H. F. Beebe <[email protected]>
%% from file://plot79.math.utah.edu/u/sy/beebe/tex/bib/merge/xbtxbst.doc
%% on Wed May 15 10:36:04 MDT 1996.
%% =====================================================================
%%%=====================================================================
%%% @BibTeX-style-file{
%%% author = "Nelson H. F. Beebe",
%%% version = "2.03",
%%% date = "15 May 1996",
%%% time = "10:35:51 MDT",
%%% filename = "is-alpha.bst",
%%% address = "Center for Scientific Computing
%%% Department of Mathematics
%%% University of Utah
%%% Salt Lake City, UT 84112
%%% USA",
%%% telephone = "+1 801 581 5254",
%%% FAX = "+1 801 581 4148",
%%% URL = "http://www.math.utah.edu/~beebe",
%%% checksum = "49675 2020 5086 41225",
%%% email = "[email protected] (Internet)",
%%% codetable = "ISO/ASCII",
%%% keywords = "BibTeX, style, bibliography",
%%% supported = "yes",
%%% docstring = "This file is a modification of the standard
%%% BibTeX btxbst.doc file, or is a .bst file
%%% derived from that modification. It contains
%%% optional added support for CODEN, ISBN, ISSN,
%%% LCCN, and PRICE fields, extended PAGES
%%% fields, the PERIODICAL entry, and extended
%%% citation label suffixing.
%%%
%%% In addition, date formatting supports a day
%%% keyword, so that bibliography entries can be
%%% written with
%%%
%%% day = {23},
%%% month = aug,
%%%
%%% instead of the language-dependent awkward
%%% forms required by the standard styles
%%%
%%% month = {23~} # aug,
%%% month = aug # {~23},
%%%
%%% These older forms are, of course, still
%%% handled correctly.
%%%
%%% The UNIX C preprocessor can be used to
%%% extract the standard styles, as follows:
%%%
%%% cpp -P -DPLAIN xbtxbst.doc >plain.bst
%%% cpp -P -DUNSRT xbtxbst.doc >unsrt.bst
%%% cpp -P -DALPHA xbtxbst.doc >alpha.bst
%%% cpp -P -DABBRV xbtxbst.doc >abbrv.bst
%%%
%%% To obtain correct file header checksums, pipe
%%% the output through the checksum program, e.g.
%%%
%%% cpp -P -DPLAIN xbtxbst.doc | checksum >plain.bst
%%%
%%% The accompanying UNIX Makefile automates this
%%% job, and provides some extra leading comments
%%% in the generated style files warning the user
%%% not to modify them.
%%%
%%% Additional optional definitions are recognized
%%% to provide extensions to the standard styles:
%%%
%%% -D_CODEN for CODEN output
%%%
%%% -D_ISBN for ISBN output
%%%
%%% -D_ISSN for ISSN output
%%%
%%% -D_LCCN for LCCN output
%%%
%%% -D_PRICE for price output,
%%%
%%% -D_BOOKPAGES for book, techreport, manual,
%%% and thesis pages output.
%%%
%%% -D_URL to get World-Wide Web Uniform
%%% Resource Locator (URL) output.
%%%
%%% -D_NUMERIC_SUFFIXES to get numeric
%%% label suffixes -1, -2, ..., -26, instead of
%%% letters a, b, ..., z, so as to correctly
%%% handle alpha-style bibliographies with more
%%% than 26 entries for a single author in one
%%% year. Change letter suffix code to switch
%%% to numeric suffixes if more than 26 letters
%%% are used, so that no matter which scheme is
%%% selected, correct output will always be
%%% obtained.
%%%
%%% The CODEN, ISBN, ISSN, LCCN, PRICE, and URL
%%% values are wrapped inside macros \showCODEN{}
%%% etc. that the user can provide alternate
%%% definitions of to change the formatting, or
%%% to suppress their output altogether. That
%%% way, output identical to that of the four
%%% standard BibTeX style files can be obtained
%%% with these extended files, if these macros
%%% are defined to expand to empty strings.
%%%
%%% URL handling is slightly more complex,
%%% because URLs can contain characters which TeX
%%% must handle in verbatim mode in a typewriter
%%% font, and such text cannot readily appear
%%% inside nested macro arguments. Consequently,
%%% URLs are formatted in the .bbl file like
%%% this:
%%% \ifshowURL {\showURL \path|...|} \fi
%%% where \showURL takes no argument, and
%%% normally expands to the 4-character string
%%% URL<space>. The grouping braces ensure that
%%% any font changes made by \showURL remain
%%% localized. Vertical bar is chosen as the
%%% verbatim path delimiter, because it cannot
%%% appear in URLs. The other prohibited ISO
%%% Latin 1 characters are the non-printing
%%% control characters 0..31, plus those in the
%%% range 128..255, plus the ten special
%%% characters
%%%
%%% { } [ ] \ ^ ~ < > `
%%%
%%% See Internet RFC 1630 (June 1994) for more
%%% details. (Backquote is not even mentioned
%%% there.)
%%%
%%% As an example of font changes, in LaTeX 2e
%%% you might define
%%% \newcommand{\showURL}{URL
%%% \let \oldtt = \tt
%%% \renewcommand{\tt}{\oldtt \itshape}}
%%% to get URLs set in a typewriter italic font.
%%%
%%% If desired, a sed script can be used to
%%% eliminate non-essential comments (this
%%% reduces the file size by 2/3); a command
%%% filter step like
%%% sed -e '/^%$/d' -e '/^%[^%].*$/d'
%%% will accomplish that job.
%%%
%%% The checksum field above contains a CRC-16
%%% checksum as the first value, followed by the
%%% equivalent of the standard UNIX wc (word
%%% count) utility output of lines, words, and
%%% characters. This is produced by Robert
%%% Solovay's checksum utility."
%%% }
%%% ====================================================================
%%% Revision history (reverse time order):
%%%
%%% 2.03 [15-May-1996]
%%% Add CODEN support, ISBN and ISSN output for Article entries,
%%% and ISBN output for TechReport entries (yes, these sometimes
%%% do have ISBNs).
%%%
%%% Add wrapper macros \showXYZ{} (XYZ = CODEN, ISBN, ISSN, LCCN,
%%% PRICE, and URL) defined inside the thebibliography environment
%%% to expand to XYZ (except for PRICE) and their arguments,
%%% PROVIDED they are not already defined. That way, the user can
%%% provide alternate definitions outside the thebibliography
%%% environment, for example, to suppress particular ones, or
%%% to alter the font used.
%%%
%%% Substantially revise leading comments to better document the
%%% extensions.
%%%
%%% 2.02 [01-Apr-1996]
%%% Add day keyword support with new code in format.date function.
%%% Oren Patashnik will include this new keyword in standard styles
%%% in BibTeX 1.0.
%%%
%%% Add new function collapse.pagerange, and use it to collapse
%%% page ranges with identical initial and final numbers to a
%%% single number, so that bibliography files can distinguish
%%% between one-page documents, and documents missing final page
%%% numbers.
%%%
%%% 2.01 [25-Oct-1994]
%%% Add URL output support.
%%%
%%% 2.00 [12-Oct-1994]
%%% Add support for pages in theses and manuals, treating them
%%% like Book and InBook pages.
%%%
%%% Correct ISSN support: a typo caused output of ISBN instead of
%%% ISSN.
%%%
%%% Wherever ISBNs are output, also output an ISSN, if one
%%% exists, and vice versa. The reason is that some periodicals
%%% (e.g. The X Resource, published by O'Reilly and Associates)
%%% have both ISSN and ISBN numbers, and can be purchased either
%%% as journal subscriptions, or as single volumes.
%%%
%%% For InProceedings and Proceedings output, issue a warning for
%%% a missing publisher: even though that field is optional, a
%%% bibliographic reference without it is incomplete.
%%%
%%% Remove harmless, but unneeded, single horizontal space before
%%% price output added with version 1.03.
%%%
%%% Change Proceedings and InProceedings to treat address values
%%% as publisher addresses, as they are with every other document
%%% type, rather than as conference addresses, which belong in
%%% the title field (that is how major libraries, including OCLC
%%% and Library of Congress, with nearly 60M holdings, represent
%%% them). The need for this change has been discussed with
%%% BibTeX's author, Oren Patashnik, and there is a good
%%% possibility that BibTeX 1.0 will contain the change
%%% implemented here. This is an INCOMPATIBLE change that will
%%% produce different .bbl file formatting. However, the TUG and
%%% BibNet bibliography projects have consistently used address
%%% to me publisher/organization/institution address, and so
%%% already conform to the new practice.
%%%
%%% 1.05 [30-May-1994]
%%% Add NUMERIC_SUFFIXES support.
%%%
%%% Change all preprocessor statements to put else and endif
%%% labels inside C-style comments to conform to 1989 ISO/ANSI C
%%% Standard.
%%%
%%% 1.04 [11-Nov-1993]
%%% Add underscore prefix to new processor symbols to prevent
%%% substitution in comments
%%%
%%% 1.03 [11-Oct-1993]
%%% Add support for LCCN (Library of Congress Catalog Number)
%%% and price fields, and make ISBN, ISSN, LCCN, and price
%%% selectable by preprocessor conditionals.
%%%
%%% 1.02 [12-Sep-1991]
%%% Merge in Barbara N. Beeton's suggestion for hyphen-less
%%% line breaks around volume(number):page.
%%%
%%% 1.01 [10-Sep-1991]
%%% Update file comment header and use Solovay checksum program.
%%%
%%% 1.00 [17-Oct-1990]
%%% Original version merging hand-edits of is-xxx.bst files into
%%% this master file, xbtxbst.doc.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% BibTeX `plain' family
%% version 0.99b for BibTeX versions 0.99a or later, LaTeX version 2.09.
%% Copyright (C) 1985, all rights reserved.
%% Copying of this file is authorized only if either
%% (1) you make absolutely no changes to your copy, including name, or
%% (2) if you do make changes, you name it something other than
%% btxbst.doc, plain.bst, unsrt.bst, alpha.bst, and abbrv.bst.
%% This restriction helps ensure that all standard styles are identical.
%% The file btxbst.doc has the documentation for this style.
ENTRY
{ address
author
booktitle
chapter
coden
day
edition
editor
howpublished
institution
isbn
issn
journal
key
lccn
month
note
number
organization
pages
price
publisher
school
series
title
type
URL
volume
year
}
{}
{ label extra.label sort.label }
INTEGERS { output.state before.all mid.sentence after.sentence after.block }
FUNCTION {init.state.consts}
{ #0 'before.all :=
#1 'mid.sentence :=
#2 'after.sentence :=
#3 'after.block :=
}
STRINGS { b e new.pages original.t s t }
FUNCTION {output.nonnull}
{ 's :=
output.state mid.sentence =
{ ", " * write$ }
{ output.state after.block =
{ add.period$ write$
newline$
"\newblock " write$
}
{ output.state before.all =
'write$
{ add.period$ " " * write$ }
if$
}
if$
mid.sentence 'output.state :=
}
if$
s
}
FUNCTION {output}
{ duplicate$ empty$
'pop$
'output.nonnull
if$
}
FUNCTION {output.check}
{ 't :=
duplicate$ empty$
{ pop$ "empty " t * " in " * cite$ * warning$ }
'output.nonnull
if$
}
FUNCTION {output.bibitem}
{ newline$
"\bibitem[" write$
label write$
"]{" write$
cite$ write$
"}" write$
newline$
""
before.all 'output.state :=
}
FUNCTION {fin.entry}
{ add.period$
write$
newline$
}
FUNCTION {new.block}
{ output.state before.all =
'skip$
{ after.block 'output.state := }
if$
}
FUNCTION {new.sentence}
{ output.state after.block =
'skip$
{ output.state before.all =
'skip$
{ after.sentence 'output.state := }
if$
}
if$
}
FUNCTION {not}
{ { #0 }
{ #1 }
if$
}
FUNCTION {and}
{ 'skip$
{ pop$ #0 }
if$
}
FUNCTION {or}
{ { pop$ #1 }
'skip$
if$
}
FUNCTION {new.block.checka}
{ empty$
'skip$
'new.block
if$
}
FUNCTION {new.block.checkb}
{ empty$
swap$ empty$
and
'skip$
'new.block
if$
}
FUNCTION {new.sentence.checka}
{ empty$
'skip$
'new.sentence
if$
}
FUNCTION {new.sentence.checkb}
{ empty$
swap$ empty$
and
'skip$
'new.sentence
if$
}
FUNCTION {field.or.null}
{ duplicate$ empty$
{ pop$ "" }
'skip$
if$
}
FUNCTION {emphasize}
{ duplicate$ empty$
{ pop$ "" }
{ "{\em " swap$ * "}" * }
if$
}
INTEGERS { nameptr namesleft numnames }
FUNCTION {format.names}
{ 's :=
#1 'nameptr :=
s num.names$ 'numnames :=
numnames 'namesleft :=
{ namesleft #0 > }
{ s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't :=
nameptr #1 >
{ namesleft #1 >
{ ", " * t * }
{ numnames #2 >
{ "," * }
'skip$
if$
t "others" =
{ " et~al." * }
{ " and " * t * }
if$
}
if$
}
't
if$
nameptr #1 + 'nameptr :=
namesleft #1 - 'namesleft :=
}
while$
}
FUNCTION {format.authors}
{ author empty$
{ "" }
{ author format.names }
if$
}
FUNCTION {format.coden}
{ coden empty$
{ "" }
{ new.block "\showCODEN{" coden * "}" *}
if$
}
FUNCTION {format.editors}
{ editor empty$
{ "" }
{ editor format.names
editor num.names$ #1 >
{ ", editors" * }
{ ", editor" * }
if$
}
if$
}
FUNCTION {format.isbn}
{ isbn empty$
{ "" }
{ new.block "\showISBN{" isbn * "}" *}
if$
}
FUNCTION {format.issn}
{ issn empty$
{ "" }
{ new.block "\showISSN{" issn * "}" *}
if$
}
FUNCTION {format.lccn}
{ lccn empty$
{ "" }
{ new.block "\showLCCN{" lccn * "}" *}
if$
}
FUNCTION {format.price}
{ price empty$
{ "" }
{ new.block "\showPRICE{" price * "}" *}
if$
}
FUNCTION {format.url}
{ url empty$
{ "" }
{ new.block "\ifshowURL {\showURL \path|" url * "|}\fi" *}
if$
}
FUNCTION {format.title}
{ title empty$
{ "" }
{ title "t" change.case$ }
if$
}
FUNCTION {collapse.pagerange}
{ 't := % save input page range string
t 'original.t := % save original page range
"" 'b := % beginning page number
"" 'e := % ending page number
{ t empty$ not } % while-loop Boolean condition
{ % while-loop body
t #1 #2 substring$ "--" = % have we found the en-dash?
{
t #3 global.max$ substring$ 'e := % yes, save ending page number
"" 't := % and set t to empty string to terminate loop
}
{
b t #1 #1 substring$ * 'b := % no, just accumulate this character
t #2 global.max$ substring$ 't := % and set t to the remaining string
}
if$
}
while$ % on exit, t has ending page number string
e b = % are beginning and ending numbers the same?
{ b } % yes, return the beginning page number string
{ original.t } % no, return the original page number string
if$
}
FUNCTION {n.dashify}
{ 't :=
""
{ t empty$ not }
{ t #1 #1 substring$ "-" =
{ t #1 #2 substring$ "--" = not
{ "--" *
t #2 global.max$ substring$ 't :=
}
{ { t #1 #1 substring$ "-" = }
{ "-" *
t #2 global.max$ substring$ 't :=
}
while$
}
if$
}
{ t #1 #1 substring$ *
t #2 global.max$ substring$ 't :=
}
if$
}
while$
}
FUNCTION {format.date}
{ year empty$
{ month empty$
{
day empty$
{ "" }
{ "there's a day but no month or year in " cite$ * warning$ }
if$
}
{ "there's a month but no year in " cite$ * warning$
month
day empty$
{ }
{ " " * day * }
if$
}
if$
}
{ month empty$
{
day empty$
{ year }
{ "there's a day and year but no month in " cite$ * warning$ }
if$
}
{
month " " *
day empty$
{ }
{ day * ", " * }
if$
year *
}
if$
}
if$
}
FUNCTION {format.btitle}
{ title emphasize
}
FUNCTION {tie.or.space.connect}
{ duplicate$ text.length$ #3 <
{ "~" }
{ " " }
if$
swap$ * *
}
FUNCTION {either.or.check}
{ empty$
'pop$
{ "can't use both " swap$ * " fields in " * cite$ * warning$ }
if$
}
FUNCTION {format.bvolume}
{ volume empty$
{ "" }
{ "volume" volume tie.or.space.connect
series empty$
'skip$
{ " of " * series emphasize * }
if$
"volume and number" number either.or.check
}
if$
}
FUNCTION {format.number.series}
{ volume empty$
{ number empty$
{ series field.or.null }
{ output.state mid.sentence =
{ "number" }
{ "Number" }
if$
number tie.or.space.connect
series empty$
{ "there's a number but no series in " cite$ * warning$ }
{ " in " * series * }
if$
}
if$
}
{ "" }
if$
}
FUNCTION {format.edition}
{ edition empty$
{ "" }
{ output.state mid.sentence =
{ edition "l" change.case$ " edition" * }
{ edition "t" change.case$ " edition" * }
if$
}
if$
}
INTEGERS { multiresult }
FUNCTION {multi.page.check}
{ 't :=
#0 'multiresult :=
{ multiresult not
t empty$ not
and
}
{ t #1 #1 substring$
duplicate$ "-" =
swap$ duplicate$ "," =
swap$ "+" =
or or
{ #1 'multiresult := }
{ t #2 global.max$ substring$ 't := }
if$
}
while$
multiresult
}
FUNCTION {format.book.pages}
{ pages empty$
{ "" }
{ new.block pages " pp." * }
if$
}
FUNCTION {format.pages}
{ pages empty$
{ "" }
{
pages multi.page.check
{ pages collapse.pagerange 'new.pages := }
{ pages 'new.pages := }
if$
new.pages multi.page.check
{ "pages" new.pages n.dashify tie.or.space.connect }
{ "page" new.pages tie.or.space.connect }
if$
}
if$
}
FUNCTION {format.vol.num.pages}
{ volume field.or.null
number empty$
'skip$
{ "\penalty0 (" number * ")" * *
volume empty$
{ "there's a number but no volume in " cite$ * warning$ }
'skip$
if$
}
if$
pages empty$
'skip$
{ duplicate$ empty$
{ pop$ format.pages }
{ ":\penalty0 " * pages collapse.pagerange n.dashify * }
if$
}
if$
}
FUNCTION {format.chapter.pages}
{ chapter empty$
'format.pages
{ type empty$
{ "chapter" }
{ type "l" change.case$ }
if$
chapter tie.or.space.connect
pages empty$
'skip$
{ ", " * format.pages * }
if$
}
if$
}
FUNCTION {format.in.ed.booktitle}
{ booktitle empty$
{ "" }
{ editor empty$
{ "In " booktitle emphasize * }
{ "In " format.editors * ", " * booktitle emphasize * }
if$
}
if$
}
FUNCTION {empty.misc.check}
{ author empty$ title empty$ howpublished empty$
month empty$ year empty$ note empty$
and and and and and
key empty$ not and
{ "all relevant fields are empty in " cite$ * warning$ }
'skip$
if$
}
FUNCTION {format.thesis.type}
{ type empty$
'skip$
{ pop$
type "t" change.case$
}
if$
}
FUNCTION {format.tr.number}
{ type empty$
{ "Technical Report" }
'type
if$
number empty$
{ "t" change.case$ }
{ number tie.or.space.connect }
if$
}
FUNCTION {format.article.crossref}
{ key empty$
{ journal empty$
{ "need key or journal for " cite$ * " to crossref " * crossref *
warning$
""
}
{ "In {\em " journal * "\/}" * }
if$
}
{ "In " key * }
if$
" \cite{" * crossref * "}" *
}
FUNCTION {format.crossref.editor}
{ editor #1 "{vv~}{ll}" format.name$
editor num.names$ duplicate$
#2 >
{ pop$ " et~al." * }
{ #2 <
'skip$
{ editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
{ " et~al." * }
{ " and " * editor #2 "{vv~}{ll}" format.name$ * }
if$
}
if$
}
if$
}
FUNCTION {format.book.crossref}
{ volume empty$
{ "empty volume in " cite$ * "'s crossref of " * crossref * warning$
"In "
}
{ "Volume" volume tie.or.space.connect
" of " *
}
if$
editor empty$
editor field.or.null author field.or.null =
or
{ key empty$
{ series empty$
{ "need editor, key, or series for " cite$ * " to crossref " *
crossref * warning$
"" *
}
{ "{\em " * series * "\/}" * }
if$
}
{ key * }
if$
}
{ format.crossref.editor * }
if$
" \cite{" * crossref * "}" *
}
FUNCTION {format.incoll.inproc.crossref}
{ editor empty$
editor field.or.null author field.or.null =
or
{ key empty$
{ booktitle empty$
{ "need editor, key, or booktitle for " cite$ * " to crossref " *
crossref * warning$
""
}
{ "In {\em " booktitle * "\/}" * }
if$
}
{ "In " key * }
if$
}
{ "In " format.crossref.editor * }
if$
" \cite{" * crossref * "}" *
}
FUNCTION {article}
{ output.bibitem
format.authors "author" output.check
new.block
format.title "title" output.check
new.block
crossref missing$
{ journal emphasize "journal" output.check
format.vol.num.pages output
format.date "year" output.check
}
{ format.article.crossref output.nonnull
format.pages output
}
if$
format.coden output