-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcje.bst
1192 lines (1063 loc) · 25.3 KB
/
cje.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
% BibTeX bibliography style `cje' (Canadian Journal of Economics)
% this file is based on the `harvard' family of files
% version 0.99a for BibTeX versions 0.99a or later, LaTeX version 2.09.
% Copyright (C) 1991, 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, abbrv.bst, agsm.bst,
% dcu.bst, cje.bst, aer.bst, or kluwer.bst.
% This restriction helps ensure that all standard styles are identical.
% ACKNOWLEDGEMENT:
% This document is a modified version of alpha.bst to which it owes much of
% its functionality.
% AUTHOR
% Peter Williams, Key Centre for Design Quality, Sydney University
% e-mail: [email protected]
ENTRY
{ address author booktitle chapter edition editor howpublished institution
journal key month note number organization pages publisher school
series title type volume year}
{ field.used }
{ canonical.label extra.label sort.label list.year }
INTEGERS {quoted italic bold plain attribute
space comma tiedcomma semicolon colon period block empty separator
prev.separator next.separator next.attribute}
STRINGS { s temp f name.list first.name.format later.name.formats name.style}
FUNCTION {init.state.consts}
{
#100 'quoted :=
#200 'italic :=
#300 'bold :=
#400 'plain :=
#7 'space :=
#6 'comma :=
% #5 'tiedcomma :=
% #4 'semicolon :=
% #3 'colon :=
#2 'period :=
#1 'block :=
#0 'empty :=
}
FUNCTION {output2}
{
% Wrap the attribute.
attribute bold = {"{\bf " swap$ * "}" *} {} if$
attribute italic = {"{\it " swap$ * "}" *} {} if$
attribute quoted = {"`" swap$ * "'" *} {} if$
% Append additional separators
separator comma = {"," * space 'separator :=} {} if$
% separator tiedcomma = {",~" * empty 'separator :=} {} if$
separator space = {" " *} {} if$
write$
separator block = {newline$ "\newblock " write$} {} if$
% Update variables, and put the new string back on the stack
next.attribute 'attribute :=
next.separator 'separator :=
temp
}
% <string> <separator> <string> <attribute> <final separator> output <string>
FUNCTION {output.nonnull}
{ 'next.separator :=
'next.attribute :=
'temp :=
'prev.separator :=
% If the new separator is stronger than the previous one, use it.
prev.separator separator < {prev.separator 'separator :=} {} if$
% Append most separators to the string.
separator block = {add.period$} {} if$
separator period = {add.period$ space 'separator :=} {} if$
separator comma = {"," * space 'separator :=} {} if$
% separator semicolon = {";" * space 'separator :=} {} if$
% separator colon = {":" * space 'separator :=} {} if$
output2
}
FUNCTION {output}
{ 'next.separator :=
'next.attribute :=
duplicate$ empty$
{pop$ pop$}
{next.attribute next.separator output.nonnull}
if$
}
FUNCTION {output.check}
{ 's :=
'next.separator :=
'next.attribute :=
duplicate$ empty$
{pop$ pop$ "empty " s * " in " * cite$ * warning$ }
{next.attribute next.separator output.nonnull}
if$
}
FUNCTION {item.check}
{ 'temp :=
empty$
{ "empty " temp * " in " * cite$ * warning$ }
{}
if$
}
FUNCTION {plain.space} { plain space }
FUNCTION {plain.space.output} { plain.space output }
FUNCTION {fin.entry}
{ block note plain.space.output
empty 'separator :=
empty "" plain empty output.nonnull pop$
newline$
}
FUNCTION {not}
{ { #0 }
{ #1 }
if$
}
FUNCTION {and}
{ {}
{ pop$ #0 }
if$
}
FUNCTION {or}
{ { pop$ #1 }
{}
if$
}
FUNCTION {field.or.null}
{ duplicate$ empty$
{ pop$ "" }
{}
if$
}
FUNCTION {emphasize}
{ duplicate$ empty$
{ pop$ "" }
{ "{\em " swap$ * "}" * }
if$
}
FUNCTION {quote}
{ duplicate$ empty$
{ pop$ "" }
{ add.period$ "`" swap$ * "'" * }
if$
}
INTEGERS { nameptr namesleft numnames }
FUNCTION {format.names}
{ 'name.list :=
'name.style :=
'later.name.formats :=
's := % binary separator
'first.name.format :=
#1 'nameptr :=
name.list num.names$ 'numnames :=
% If we're to make this entry bold or something, prepend to the string of names
name.style "" = {} {"{" name.style *} if$
numnames 'namesleft :=
{ namesleft #0 > }
{ name.list nameptr nameptr #1 = {first.name.format} {later.name.formats} if$
format.name$ 'temp :=
nameptr #1 >
{ namesleft #1 >
{ ", " * temp * }
{ temp "others" =
{ " et~al." * }
{nameptr #2 = % handle ", and" vs " and "
{s * temp *}
{", and " * temp * }
if$
}
if$
}
if$
}
'temp
if$
nameptr #1 + 'nameptr :=
namesleft #1 - 'namesleft :=
}
while$
% If we're to make this entry bold or something, append to the string of names
name.style "" = {} {"}" * *} if$
}
FUNCTION {format.authors}
{ author empty$
{ "" }
{ extra.label "\bysame" =
{"\bysame"}
{ "{vv~}{ll}{, jj}{, ff}" ", and " "{ff~}{vv~}{ll}{, jj}" "" author
format.names }
if$
}
if$
}
FUNCTION {format.editors}
{ editor empty$
{ "" }
{ "{vv~}{ll}{, jj}{, ff}" ", and " "{ff~}{vv~}{ll}{, jj}" ""
editor format.names
editor num.names$ #1 >
{ ", eds" * }
{ ", ed." * }
if$
}
if$
}
FUNCTION {format.editors.reverse}
{ editor empty$
{ "" }
{ "ed. "
"{ff~}{vv~}{ll}{, jj}" " and " "{ff~}{vv~}{ll}{, jj}" ""
editor format.names
*
}
if$
}
FUNCTION {format.title}
{ space
title empty$
{ "" }
{ title "t" change.case$}
if$
quoted period
}
FUNCTION {n.dashify}
{ 'temp :=
""
{ temp empty$ not }
{ temp #1 #1 substring$ "-" =
{ temp #1 #2 substring$ "--" = not
{ "--" *
temp #2 global.max$ substring$ 'temp :=
}
{ { temp #1 #1 substring$ "-" = }
{ "-" *
temp #2 global.max$ substring$ 'temp :=
}
while$
}
if$
}
{ temp #1 #1 substring$ *
temp #2 global.max$ substring$ 'temp :=
}
if$
}
while$
}
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$
{ "" }
{ "vol." volume tie.or.space.connect
series empty$
{}
{ " of " * series emphasize * }
if$
"volume and number" number either.or.check
}
if$
}
FUNCTION {mid.sentence.q}
{
separator empty = separator block = separator period = or or not
}
FUNCTION {format.number.series}
{ volume empty$
{ number empty$
{series field.or.null}
{ mid.sentence.q
{ "number" }
{ "Number" }
if$
number tie.or.space.connect
series empty$
{ "there's a number but no series in " cite$ * warning$ }
{ add.period$ " In " * series quote * }
if$
}
if$
}
{ "" }
if$
}
FUNCTION {format.edition}
{ edition empty$
{ "" }
{ edition
mid.sentence.q { "l"} { "t"} if$
change.case$ " ed." *
}
if$
}
FUNCTION {format.publisher.address}
{
publisher empty$ address empty$ and
{}
{ space
address empty$ {"("} {"(" address *} if$
publisher empty$ address empty$ or {} {": " *} if$
publisher empty$ {} {publisher *} if$
")" * plain.space output.nonnull
}
if$
}
INTEGERS { multiresult }
FUNCTION {multi.page.check}
{ 'temp :=
#0 'multiresult :=
{ multiresult not
temp empty$ not
and
}
{ temp #1 #1 substring$
duplicate$ "-" =
swap$ duplicate$ "," =
swap$ "+" =
or or
{ #1 'multiresult := }
{ temp #2 global.max$ substring$ 'temp := }
if$
}
while$
multiresult
}
FUNCTION {format.pages}
{ pages empty$
{ "" }
{ pages multi.page.check
{ "pp.~" pages n.dashify * }
{ "p.~" pages * }
if$
}
if$
}
FUNCTION {output.vol.num.pages}
{ space
volume field.or.null
number empty$
{}
{ "(" number * ")" * *
volume empty$
{ "there's a number but no volume in " cite$ * warning$ }
{}
if$
}
if$
pages empty$
{}
{ duplicate$ empty$
{ pop$ format.pages }
{ ",~" * pages n.dashify * }
if$
}
if$
plain.space.output
}
FUNCTION {format.chapter.pages}
{ chapter empty$
'format.pages
{ type empty$
{ "chapter" }
{ type "l" change.case$ }
if$
chapter tie.or.space.connect
pages empty$
{}
{ ", " * format.pages * }
if$
}
if$
}
FUNCTION {output.in.ed.booktitle}
{ booktitle empty$
{ booktitle "booktitle" item.check }
{ space "In" plain.space output.nonnull
editor empty$
{ space booktitle quoted space output.nonnull}
{ space booktitle italic comma output.nonnull
comma format.editors.reverse plain.space output.nonnull}
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$ }
{}
if$
}
FUNCTION {format.thesis.type}
{ type empty$
{}
{ pop$
type "t" change.case$
}
if$
}
FUNCTION {format.tr.number}
{ type empty$
{ "Technical Report" }
'type
if$
number empty$
{ }
{ 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 {\it " journal * "\/} \cite{" * crossref * "}" *}
if$
}
{ add.period$ "In \citeasnoun{" crossref * "}" * }
if$
}
FUNCTION {format.book.crossref}
{ volume empty$
{ "empty volume in " cite$ * "'s crossref of " * crossref * warning$
"in "
}
{ "Vol." 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$
"" *
}
{ "{\it " * series * "\/} \cite{" * crossref * "}" *}
if$
}
{ " \citeasnoun{" * crossref * "}" * }
if$
}
{ " \citeasnoun{" * crossref * "}" * }
if$
}
FUNCTION {output.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$
}
{ period "In {\it " booktitle * "\/}" * " \cite{" * crossref * "}" * plain.space output.nonnull}
if$
}
{ period "In \citeasnoun{" crossref * "}" * plain.space output.nonnull}
if$
}
{ period "In \citeasnoun{" crossref * "}" * plain.space output.nonnull}
if$
}
INTEGERS { len }
FUNCTION {chop.word}
{ 's :=
'len :=
s #1 len substring$ =
{ s len #1 + global.max$ substring$ }
's
if$
}
INTEGERS { author.field editor.field organization.field title.field key.field }
FUNCTION {init.field.constants}
{ #0 'author.field :=
#1 'editor.field :=
#2 'organization.field :=
#3 'title.field :=
#4 'key.field :=
}
FUNCTION {format.lab.names.abbr}
{ 'name.list :=
name.list num.names$ 'numnames :=
numnames #1 >
{ numnames #2 >
{ name.list #1 "{vv~}{ll}" format.name$ " et al." * }
{ name.list #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
{ name.list #1 "{vv~}{ll}" format.name$ " et al." * }
{ name.list #1 "{vv~}{ll}" format.name$ " and " *
name.list #2 "{vv~}{ll}" format.name$ *
}
if$
}
if$
field.used editor.field = {", eds" *} {} if$
}
{
name.list #1 "{vv~}{ll}" format.name$
field.used editor.field = {", ed" *} {} if$
}
if$
}
FUNCTION {format.lab.names.full}
{ 'name.list :=
#1 'nameptr :=
name.list num.names$ 'numnames :=
numnames 'namesleft :=
{ namesleft #0 > }
{ name.list nameptr "{vv~}{ll}" format.name$ 'temp :=
nameptr #1 >
{ namesleft #1 >
{ ", " * temp * }
{ temp "others" =
{ " et~al." * }
{ " and " * temp * }
if$
}
if$
}
'temp
if$
nameptr #1 + 'nameptr :=
namesleft #1 - 'namesleft :=
}
while$
numnames #1 > field.used editor.field = and {", eds" *} {} if$
numnames #1 = field.used editor.field = and {", ed" *} {} if$
}
FUNCTION {make.list.label}
{ author.field field.used =
{ format.authors }
{ editor.field field.used =
{ format.editors }
{ organization.field field.used =
{ "The " #4 organization chop.word}
{ title.field field.used =
{ format.btitle }
{ key.field field.used =
{ key #3 text.prefix$ }
{ "Internal error :001 on " cite$ * " label" * warning$ }
if$
}
if$
}
if$
}
if$
}
if$
}
FUNCTION {make.full.label}
{ author.field field.used =
{ author format.lab.names.full }
{ editor.field field.used =
{ editor format.lab.names.full }
{ organization.field field.used =
{ "The " #4 organization chop.word #3 text.prefix$ }
{ title.field field.used =
{ format.btitle }
{ key.field field.used =
{ key #3 text.prefix$ }
{ "Internal error :001 on " cite$ * " label" * warning$ }
if$
}
if$
}
if$
}
if$
}
if$
}
FUNCTION {make.abbr.label}
{ author.field field.used =
{ author format.lab.names.abbr }
{ editor.field field.used =
{ editor format.lab.names.abbr }
{ organization.field field.used =
{ "The " #4 organization chop.word #3 text.prefix$ }
{ title.field field.used =
{ format.btitle }
{ key.field field.used =
{ key #3 text.prefix$ }
{ "Internal error :001 on " cite$ * " label" * warning$ }
if$
}
if$
}
if$
}
if$
}
if$
}
FUNCTION {output.bibitem}
{ newline$
"\harvarditem[" write$
make.abbr.label write$
"]{" write$
make.full.label write$
"}{" write$
list.year write$
"}{" write$
cite$ write$
"}" write$
newline$
""
empty 'separator :=
plain 'attribute :=
% FUNCTION {list.label.output}
space make.list.label plain.space output.nonnull
"n.d." list.year =
{}
{ space "(" list.year * ")" * plain.space output.nonnull}
if$
}
FUNCTION {format.title.if.not.sortkey}
{title.field field.used =
{}
{ format.title output }
if$}
FUNCTION {format.title.if.not.sortkey.check}
{title.field field.used =
{}
{ format.title "title" output.check }
if$}
FUNCTION {article}
{ output.bibitem
author "author" item.check
format.title.if.not.sortkey.check
crossref missing$
{ space journal italic space "journal" output.check
pages empty$
{}
{output.vol.num.pages}
if$
}
{ space format.article.crossref plain.space output.nonnull
comma format.pages plain.space.output
}
if$
fin.entry
}
FUNCTION {book}
{ output.bibitem
author empty$
{ editor "author and editor" item.check }
{ crossref missing$
{ "author and editor" editor either.or.check }
{}
if$
}
if$
title.field field.used =
{}
{ space title italic space "title" output.check }
if$
crossref missing$
{
space format.number.series plain.space.output
comma format.edition plain.space.output
comma format.bvolume plain.space.output
format.publisher.address
}
{ space format.book.crossref plain.space output.nonnull
comma format.edition plain.space.output
}
if$
fin.entry
}
FUNCTION {booklet}
{ output.bibitem
format.title.if.not.sortkey.check
space howpublished plain.space.output
space address plain.space.output
fin.entry
}
FUNCTION {inbook}
{ output.bibitem
author empty$
{ editor "author and editor" item.check }
{ crossref missing$
{ "author and editor" editor either.or.check }
{}
if$
}
if$
title.field field.used =
{}
{ space title italic space "title" output.check }
if$
crossref missing$
{ space format.number.series plain.space.output
comma format.edition plain.space.output
comma format.bvolume plain comma output
format.publisher.address
% space publisher plain.space "publisher" output.check
% space address plain.space.output
}
{ space format.book.crossref plain.space output.nonnull
comma format.edition plain.space.output
}
if$
format.chapter.pages "chapter and pages" output.check
fin.entry
}
FUNCTION {incollection}
{ output.bibitem
format.title.if.not.sortkey.check
author "author" item.check
crossref missing$
{ output.in.ed.booktitle
comma format.edition plain.space.output
comma format.bvolume plain.space.output
space format.number.series plain.space.output
format.publisher.address
}
{ output.incoll.inproc.crossref }
if$
space format.chapter.pages plain.space.output
fin.entry
}
FUNCTION {inproceedings}
{ output.bibitem
format.title.if.not.sortkey.check
author "author" item.check
crossref missing$
{ output.in.ed.booktitle
comma format.bvolume plain.space.output
space format.number.series plain.space.output
address empty$
{ space organization plain.space.output
space publisher plain.space.output
}
{ space organization plain.space.output
space publisher plain.space.output
space address plain.space output.nonnull
}
if$
}
{ output.incoll.inproc.crossref}
if$
space format.pages plain.space.output
fin.entry
}
FUNCTION {conference} { inproceedings }
FUNCTION {manual}
{ output.bibitem
title.field field.used =
{}
{author empty$ {comma}{space} if$
title italic space "title" output.check }
if$
organization.field field.used = organization empty$ or
{} {space organization plain.space output.nonnull} if$
comma format.edition plain.space.output
format.publisher.address
fin.entry
}
FUNCTION {mastersthesis}
{ output.bibitem
author "author" item.check
format.title.if.not.sortkey.check space "Master's thesis" format.thesis.type plain.space output.nonnull
comma school plain.space "school" output.check
comma address plain.space.output
fin.entry
}
FUNCTION {misc}
{ output.bibitem
format.title.if.not.sortkey
space howpublished plain.space.output
fin.entry
empty.misc.check
}
FUNCTION {phdthesis}
{ output.bibitem
author "author" item.check
format.title.if.not.sortkey.check
space "PhD dissertation" format.thesis.type plain.space output.nonnull
comma school plain.space "school" output.check
comma address plain.space.output
fin.entry
}
FUNCTION {proceedings}
{ output.bibitem
title.field field.used =
{}
{ space title italic space "title" output.check }
if$
comma format.bvolume plain.space.output
space format.number.series plain.space.output
address empty$
{ editor empty$
{}
{ space organization plain.space.output
}
if$
space publisher plain.space.output
}
{ editor empty$
{}
{ space organization plain.space.output }
if$
space publisher plain.space.output
space address plain.space output.nonnull
}
if$
fin.entry
}
FUNCTION {techreport}
{ output.bibitem
author "author" item.check
format.title.if.not.sortkey.check
space format.tr.number plain.space output.nonnull
institution empty$
{}
{ comma institution plain.space "institution" output.check }
if$
comma address plain.space.output
comma month plain.space.output
fin.entry
}
FUNCTION {unpublished}
{ output.bibitem
author "author" item.check
format.title.if.not.sortkey.check
note "note" item.check
fin.entry
}
FUNCTION {default.type} { misc }
MACRO {jan} {"January"}
MACRO {feb} {"February"}
MACRO {mar} {"March"}
MACRO {apr} {"April"}
MACRO {may} {"May"}
MACRO {jun} {"June"}
MACRO {jul} {"July"}
MACRO {aug} {"August"}
MACRO {sep} {"September"}
MACRO {oct} {"October"}
MACRO {nov} {"November"}
MACRO {dec} {"December"}
READ
EXECUTE {init.field.constants}
FUNCTION {sortify}
{ purify$
"l" change.case$
}
FUNCTION {author.key.label}
{ author empty$
{ title empty$
{ key.field 'field.used := }
{ title.field 'field.used := }
if$
}
{ author.field 'field.used := }
if$
}
FUNCTION {author.editor.key.label}
{ author empty$
{ editor empty$
{ title empty$
{ key.field 'field.used := }
{ title.field 'field.used := }
if$
}
{ editor.field 'field.used := }
if$
}
{ author.field 'field.used := }
if$
}
FUNCTION {author.key.organization.label}
{ author empty$
{ organization empty$
{ title empty$
{ key.field 'field.used := }
{ title.field 'field.used := }
if$
}
{ organization.field 'field.used := }
if$
}
{ author.field 'field.used := }
if$
}