forked from Augists/LaTeXThesis4SSDUT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
GBT7714.bst
2545 lines (2364 loc) · 53.9 KB
/
GBT7714.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
%% BUPTThesis.bst
%%
%% 北京理工大学研究生学位论文参考文献 BibTeX 样式
%%
%%
%% 直接采用了北京邮电大学的模板
%%
%%
%% 本样式基于 IEEEtran 和 ThuThesis 修改而成,基本满足北京邮电大学研究生论文格式要求
%%
%% 作者:
%% 张煜 (email:dazzlezhang@gmail.com)
%%
%% 更新记录:
%% $LastChangedBy: dazzlezhang $
%% $LastChangedDate: 2009-06-24 11:30:57 +0800 (三, 2009-06-24) $
%% $LastChangedRevision: 71 $
%% 一些设置的缺省值
% 英文姓名排版格式字符串, 按<last name全称>~<first name首字母><, Jr.>格式
FUNCTION {default.name.format.string} {"{vv~}{ll}{~f}{, Jj}"}
% 列出的最多作者数目, 即当作者数目超过下列数字时, 超出部分的作者姓名将略去
FUNCTION {default.max.num.names.before.forced.et.al} { #3 }
% 是否为盲审版本, #0 表示盲审将隐去作者信息, #1 表示非盲审
FUNCTION {default.is.for.peer.review} { #0 }
%%%%%%%%%%%%%%
% 一些辅助函数
%%%%%%%%%%%%%%
% #0 不在终端显示开始/完成的提示信息
% #1 显示提示信息
FUNCTION {is.print.banners.to.terminal} {#1}
%%%%%%%%%%%%%%%%
% 版本与提示信息
%%%%%%%%%%%%%%%%
% 版本信息
FUNCTION{bst.file.version} { "0.2" }
FUNCTION{bst.file.date} { "2009/01/25" }
FUNCTION{bst.file.website} {
"http://code.google.com/p/buptthesis/" }
% 开始提示信息
FUNCTION {banner.message}{
is.print.banners.to.terminal
{ "-- BUPTThesis.bst version" " " * bst.file.version *
" (" * bst.file.date * ") " * "by Yu Zhang." *
top$
"-- " bst.file.website *
top$
"-- See the " quote$ * "userguide.pdf" * quote$ *
" manual for usage information." *
top$
}
{ skip$ }
if$
}
% 完成提示信息
FUNCTION {completed.message} {
is.print.banners.to.terminal
{ "" top$ "Done." top$ }
{ skip$ }
if$
}
%%%%%%%%%%%%%%%%%%%
%% 预定义的字符串宏
%%%%%%%%%%%%%%%%%%%
% 英文月份
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"}
%%%%%%%%%%%%
%% 条目定义
%%%%%%%%%%%%
ENTRY { address % 地址
assignee % 标准授权人
author % 作者
booktitle % 专著/论文集名
chapter %
day %
dayfiled %
edition % 版本
editor % 编者
howpublished % 出版形式
esubtype % 电子文献子类
institution %
journal % 期刊
key %
language % 语言
month % 月
monthfiled %
nationality %
newsletter %
note %
number %
number2 %
organization %
pages %
publisher %
refdate %
update % 电子文档更新或修改日期
school %
series %
title %
translator %
type %
volume %
volume2 %
year %
year2 %
yearfiled %
url % URL
pubaddress % 出版地
CTLname_format_string % 作者英文姓名排版格式
CTLmax_names_forced_etal % 强制略去的最大作者数
CTLauthor_name_english % 作者英文姓名
CTLauthor_name_chinese % 作者中文姓名
CTLfor_peer_review % 是否匿名
}
{}
{ label }
%%%%%%%%%%%%%
%% 字符串常量
%%%%%%%%%%%%%
% FUNCTION {bbl.anonymous} { language empty$ { "Anon" } { "佚名" } if$ }
FUNCTION {bbl.anonymous} { "" }
FUNCTION {bbl.etal} { language empty$ { "et~al" } { "等" } if$ }
FUNCTION {bbl.sine.loco} { language empty$ { "S.~l." } { "出版地不详" } if$ }
FUNCTION {bbl.sine.nomine} { language empty$ { "s.~n." } { "出版者不详" } if$ }
FUNCTION {bbl.comma} { language empty$ { ", " } { "," } if$ }
FUNCTION {bbl.colon} { language empty$ { ": " } { ":" } if$ }
FUNCTION {bbl.period} { language empty$ { "." } { "." } if$ }
FUNCTION {bbl.parallel} { "~//~" }
FUNCTION {bbl.st} { "st" } % 序数词后缀
FUNCTION {bbl.nd} { "nd" } % 序数词后缀
FUNCTION {bbl.rd} { "rd" } % 序数词后缀
FUNCTION {bbl.th} { "th" } % 序数词后缀
FUNCTION {bbl.number} { "第" }
FUNCTION {bbl.author} { "作者" }
%%%%%%%%%%%%
%% 整型变量
%%%%%%%%%%%
INTEGERS { output.state before.all mid.sentence after.title after.sentence url.sentence after.block before.pages }
INTEGERS { number.label longest.label.width multiresult
nameptr namesleft numnames lastnamecapitalized namelength charptr }
INTEGERS { max.num.names.before.forced.et.al }
INTEGERS { is.for.peer.review }
%%%%%%%%%%%%%
%% 字符串变量
%%%%%%%%%%%%%
STRINGS { s
t
longest.label
thename
name.emph.author.en % 强调现实的作者英文姓名
name.emph.author.zh % 强调显示的作者中文姓名
name.format.string % 姓名的格式字符串
author.name.in.english % 作者英文姓名
author.name.in.chinese % 作者中文姓名
}
%%%%%%%%%%%%%%%%%%%%%
%% LaTeX 参考文献代码
%%%%%%%%%%%%%%%%%%%%%
% 输出 .bbl 文件开始
FUNCTION {begin.bib} {
"% Generated by BUPTThesis.bst, version: " bst.file.version *
" (" * bst.file.date * ")" *
write$ newline$ % 输出注释行,说明产生该bbl的bst及版本
preamble$ empty$ % 输出前导
'skip$
{ preamble$ write$ newline$ }
if$
"\begin{thebibliography}{" longest.label * "}" *
write$ newline$ % 输出 \begin{thebiliography}{x}
}
% 输出 .bbl 文件结束部分
FUNCTION {end.bib} {
newline$
"\end{thebibliography}"
write$ newline$
}
%%%%%%%%%%%%
%% 底层函数
%%%%%%%%%%%%
% 控制变量初始化
FUNCTION {initialize.controls} {
default.name.format.string 'name.format.string :=
default.max.num.names.before.forced.et.al 'max.num.names.before.forced.et.al :=
default.is.for.peer.review 'is.for.peer.review :=
}
% 初始化最长 label
FUNCTION {initialize.longest.label} {
"" 'longest.label :=
#1 'number.label :=
#0 'longest.label.width :=
}
% 最长 label pass
FUNCTION {longest.label.pass}
{ number.label int.to.str$ 'label :=
number.label #1 + 'number.label :=
label width$ longest.label.width >
{ label 'longest.label :=
label width$ 'longest.label.width :=
}
{ skip$ }
if$
}
% 逻辑非: 栈顶元素的逻辑非
FUNCTION {not} {
{ #0 }
{ #1 }
if$
}
% 逻辑与
FUNCTION {and} {
{ skip$ }
{ pop$ #0 }
if$
}
% 逻辑或
FUNCTION {or} {
{ pop$ #1 }
{ skip$ }
if$
}
% 返回 #1 : 栈顶字符是数字"0"~"9"
% 返回 #0 : 其他
FUNCTION {is.num} {
chr.to.int$
duplicate$ "0" chr.to.int$ < not
swap$ "9" chr.to.int$ > not and
}
% 栈顶整数乘以10
FUNCTION {bump.int.mag} {
#0 'multiresult := % 初始化乘运算结果 y <- 0
{ duplicate$ #0 > } % 栈顶整数 x = 0 时才停止循环
{ #1 - % x <- x - 1
multiresult #10 +
'multiresult := % y <- y + 10
}
while$
pop$ % 释放 x
multiresult % y 压栈返回
}
% 将栈顶字符("0"~"9")转换为整数(0~9)
FUNCTION {char.to.integer} {
duplicate$
is.num
{ chr.to.int$ "0" chr.to.int$ - }
{ "noninteger character " quote$ * swap$ * quote$ *
" in integer field of " * cite$ * warning$
#0 % 如果栈定字符不是("0"~"9"), 给出警告返回 0
}
if$
}
% 将栈顶字符串转换为整数
FUNCTION {string.to.integer} {
duplicate$ text.length$ 'namesleft := % namesleft <- 字符串长度
#1 'nameptr := % nameptr <- 1
#0 'numnames := % numnames <- 0
{ nameptr namesleft > not } % while( ! ( nameptr > namesleft ) )
{ duplicate$ nameptr #1 substring$ % 取第 nameptr 个字符 x
char.to.integer numnames bump.int.mag +
'numnames := % numnames <- chr2int( x ) + 10 * numnames
nameptr #1 +
'nameptr := % nameptr <- nameptr + 1
}
while$
pop$ % 释放栈顶元素
numnames % numnames 压栈返回
}
% convert the strings "yes" or "no" to #1 or #0 respectively
FUNCTION {yes.no.to.int}
{ "l" change.case$ duplicate$
"yes" =
{ pop$ #1 }
{ duplicate$ "no" =
{ pop$ #0 }
{ "unknown boolean " quote$ * swap$ * quote$ *
" in " * cite$ * warning$
#0
}
if$
}
if$
}
% 初始化状态常量
FUNCTION {initialize.status.constants}
{ #0 'before.all := % 起始
#1 'mid.sentence := % 句中
#2 'after.sentence := % 句末
#3 'after.block := % 块后
#4 'after.title := %
#5 'before.pages := %
}
FUNCTION {remove.char}
{ 't :=
's :=
""
{ s empty$ not }
{ s #1 #1 substring$
s #2 global.max$ substring$ 's :=
duplicate$ t = 'pop$
{ * }
if$
}
while$
}
STRINGS {z}
FUNCTION {remove.period}
{ 'z :=
""
{ z empty$ not }
{ z #1 #1 substring$
z #2 global.max$ substring$ 'z :=
duplicate$ "." = 'pop$
{ * }
if$
}
while$
}
FUNCTION {remove.dots} {
duplicate$ "input=" swap$ * warning$
"language=" language * warning$
language empty$
{ "." remove.char
duplicate$ "output('.')=" swap$ * warning$ }
{ "." remove.char
duplicate$ "output('.')=" swap$ * warning$
"." remove.char
duplicate$ "output('.')=" swap$ * warning$ }
if$
}
FUNCTION {bibinfo.check}
{ swap$
duplicate$ missing$
{
pop$ pop$
""
}
{ duplicate$ empty$
{
swap$ pop$
}
{ swap$
pop$
}
if$
}
if$
}
%%%%%%%%%%%%
%% 调试例程
%%%%%%%%%%%%
% 默认调试输出函数
FUNCTION {debug.output} {
"[DEBUG] " swap$ * top$
}
% 状态调试输出函数
FUNCTION {debug.output.status} {
"---- output.state="
output.state before.all =
{ "before.all" }
{ output.state mid.sentence =
{ "mid.sentence" }
{ output.state after.sentence =
{ "after.sentence" }
{ output.state url.sentence =
{ "url.sentence" }
{ output.state before.pages =
{ "before.pages" }
{ "after.block" }
if$
}
if$
}
if$
}
if$
}
if$
* debug.output
}
FUNCTION {output.year}
{ 't :=
number empty$
volume empty$
and
{ add.period$ write$ }
{ ", " * write$ }
if$
t
}
% STRINGS {z}
% FUNCTION {remove.dots}
% { 'z :=
% ""
% { z empty$ not }
% { z #1 #1 substring$
% z #2 global.max$ substring$ 'z :=
% duplicate$ bbl.period = 'pop$
% { * }
% if$
% }
% while$
% %z
% }
% 对于中文文献, 用全角句点替换英文句点
FUNCTION {replace.half.width.period} {
% % DEBUG
% duplicate$ "-- replace.half.width.period(" swap$ * ")" * debug.output
% % END OF DEBUG
language empty$
{ " " * } % 对于英文文献, 在句点后加一空格
{ duplicate$ text.length$ 'numnames := % numnames 等于字符串长度
% % DEBUG
% numnames int.to.str$ "---- text.length$=" swap$ * debug.output
% % END OF DEBUG
duplicate$ numnames #1 substring$ "." =
{ % % DEBUG
% "---- Found '.' at the end" debug.output
% % END OF DEBUG
numnames #1 -
#1 swap$ substring$
bbl.period *
}
{ skip$ }
if$
}
if$
% % DEBUG
% duplicate$ "---- Return=" swap$ * debug.output
% % END OF DEBUG
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 输出例程: 输出栈顶项并根据需要添加标点符号
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 非空项输出函数: 用于输出非空项
FUNCTION {output.nonnull} {
% % DEBUG
% duplicate$ "output.nonnull(" swap$ * ")" * debug.output
% debug.output.status
% % END OF DEBUG
swap$
% 根据当前输出状态添加前置标点符号
% before.all 起始, 不添加任何标点符号直接输出
% mid.sentence 句中, 前置逗号输出
% after.sentence 句末, 前置句号输出
% after.block 块后, 前置句号, 后置 \newblock 输出
% after.title
output.state mid.sentence =
{ bbl.comma * write$ } % mid.sentence 前置逗号
{ output.state after.block =
{ add.period$ % 块后, 后置句号
replace.half.width.period % 为中文文献替换句点
write$
newline$
% "\newblock " write$
} % 后置 \newblock 输出
{ output.state before.all =
{ write$ } % 起始, 不添加任何标点符号直接输出
{ output.state after.title =
{ bbl.parallel *
write$ }
{ output.state before.pages =
{ bbl.colon *
write$ }
{ add.period$ % 句末, 前置句号输出
replace.half.width.period
write$ } %
if$
}
if$
}
if$
}
if$
mid.sentence 'output.state :=
}
if$
% s
}
% 无警告输出函数
FUNCTION {output} {
duplicate$ empty$
{ pop$ } % 若输出项为空, 则舍去空输出项
{ output.nonnull } % 否则调用非空输出函数
if$
}
% 警告输出函数: 同 output, 但是对于空项给出警告提示
FUNCTION {output.warn}
{ 't :=
duplicate$ empty$
{ pop$ "empty " t * " in " * cite$ * warning$ }
{ output.nonnull }
if$
}
% 将数字字符串转换成序数词形式字符串(例如: "7" -> "7th")
FUNCTION {num.to.ordinal} {
duplicate$ #-1 #1 substring$ "1" =
{ bbl.st * }
{ duplicate$ #-1 #1 substring$ "2" =
{ bbl.nd * }
{ duplicate$ #-1 #1 substring$ "3" =
{ bbl.rd * }
{ bbl.th * }
if$
}
if$
}
if$
}
% 从字符串中提取前导数字的函数
% 如果栈顶字符串以数字开头(例如: "11th"), 则将字符串用其数字部分(即,"11")
% 替换. 否则, 保持原字符串不变. 用于版本转换函数(convert.edition)
% s 保存提取出的数字, t 保存剩余待扫描的字符串.
FUNCTION {extract.num} {
duplicate$ 't := % t <- 输入字符串
"" 's := % s <- ""
{ t empty$ not } % while( t != "" ) {
{ t #1 #1 substring$ % tmp <- t[0]
t #2 global.max$ substring$
't := % t <- t[2:global.max$]
duplicate$ is.num % if( is.num( tmp ) )
{ s swap$ * 's := } % s <- s & tmp
{ pop$ "" 't := } % else t <- ""
if$ % }
} %
while$ % if( s == "" )
s empty$ % ;
'skip$ % else
{ pop$ s } % return s
if$ %
}
% 将1st~10th单词形式的序数词转换成阿拉伯数字形式
FUNCTION {word.to.num} {
duplicate$ "l" change.case$
's := % s <- lower( arg )
s "first" = % if ( s == "first" )
{ pop$ "1" } % return "1"
{ skip$ }
if$
s "second" = % if ( s == "second" )
{ pop$ "2" } % return "2"
{ skip$ }
if$
s "third" =
{ pop$ "3" }
{ skip$ }
if$
s "fourth" =
{ pop$ "4" }
{ skip$ }
if$
s "fifth" =
{ pop$ "5" }
{ skip$ }
if$
s "sixth" =
{ pop$ "6" }
{ skip$ }
if$
s "seventh" =
{ pop$ "7" }
{ skip$ }
if$
s "eighth" =
{ pop$ "8" }
{ skip$ }
if$
s "ninth" =
{ pop$ "9" }
{ skip$ }
if$
s "tenth" =
{ pop$ "10" }
{ skip$ }
if$
}
% 转换字符串形式的序数词为数字形式的序数词
% 例如: 将 "Eleventh" 转换为 "11th"
FUNCTION {convert.edition} {
duplicate$ empty$ 'skip$
{ duplicate$ #1 #1 substring$
is.num % if( is.num( arg[1] ) ) {
{ extract.num % tmp <- extract.num( arg )
num.to.ordinal % tmp <- num.to.ordinal( tmp )
} % } else {
{ word.to.num % tmp <- word.to.num( arg )
duplicate$ #1 #1 substring$
is.num % if( is.num( tmp[1] ) )
{ num.to.ordinal } % tmp <- num.to.ordinal( tmp )
{ "edition ordinal word "
quote$ * edition * quote$ *
" may be too high (or improper) for conversion" *
" in " * cite$ * warning$ % else output warning
}
if$
}
if$
}
if$
}
FUNCTION {start.entry}
{ newline$
"\bibitem{" write$
cite$ write$
"}" write$
newline$
""
before.all 'output.state :=
}
FUNCTION {fin.entry}
{ add.period$
replace.half.width.period
write$
newline$
}
% FUNCTION {fin.entry}
% { duplicate$ empty$
% 'pop$
% 'write$
% if$
% 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 {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$
}
FUNCTION {format.language}
{ language empty$
'skip$
'skip$
if$
}
FUNCTION {is.space}
{ chr.to.int$
duplicate$ #32 =
{ pop$ #1 }
{ pop$ #0 }
if$
}
FUNCTION {is.lower.char}
{
chr.to.int$
duplicate$ #96 >
{ #123 <
{ #1 }
{ #0 }
if$
}
{ pop$ #0 }
if$
}
% 将last name转换为全大写
FUNCTION {capitalize.last.name} {
"u" change.case$
}
% FUNCTION {capitalize.last.name}
% {
% 'thename := % 输入参数 thename
% thename text.length$
% 'namelength := % namelength := thename 的长度
% #1 'charptr :=
% #0 'lastnamecapitalized :=
% ""
% { charptr #1 - namelength <
% % % debug
% % duplicate$ int.to.str$ "( charptr + #1 > namelength ) == " swap$ * warning$
% % % eod
% }
% {
% % % debug
% % "charptr = " charptr int.to.str$ *
% % ", lastnamecapitalized = " *
% % lastnamecapitalized int.to.str$ * warning$
% % % eod
% lastnamecapitalized #1 =
% { thename charptr namelength charptr - #1 + substring$ *
% namelength #1 + 'charptr :=
% % % debug
% % duplicate$ "top of the stack = " swap$ * warning$
% % % eod
% }
% { thename charptr #1 substring$
% % % debug
% % duplicate$ "the char = " swap$ * warning$
% % % eod
% duplicate$ is.lower.char
% % % debug
% % duplicate$ int.to.str$ "is.lower.char = " swap$ * warning$
% % % eod
% { "u" change.case$ * }
% { duplicate$ is.space
% % % debug
% % duplicate$ int.to.str$ "is.space = " swap$ * warning$
% % % eod
% { #1 'lastnamecapitalized :=
% *
% }
% { *
% }
% if$
% }
% if$
% % % debug
% % duplicate$ "top of the stack = " swap$ * warning$
% % % eod
% charptr #1 + 'charptr :=
% }
% if$
% }
% while$
% }
% 格式化盲审姓名
FUNCTION {format.names.for.peer.review} {
's := % s := author域
#1 'nameptr := % nameptr 是姓名指针,初始化为 1
s num.names$ 'numnames := % 利用 num.names$ 获得 s 中的作者数量存入 nameptr
numnames 'namesleft := % 未处理的姓名数 namesleft := numnames
% 循环处理所有姓名
{ namesleft #0 > } % if namesleft > #0 (还有姓名没有格式化)
{ s nameptr % 选择第 nameptr 个姓名
name.format.string % 按 name.format.string 的格式排版
format.name$ % 调用 format.name$
remove.period % 并删除缩写符号'.'
't := % 格式化后的姓名暂存于 t
language empty$
{ author.name.in.english }% 如果是英文文献将 author.name.in.english 压栈
{ author.name.in.chinese } % 否则将 author.name.in.chinese 压栈
if$
t = % 用当前的姓名与栈上的姓名做比较
{ nameptr int.to.str$ % 将作者序号转化为字符串
"\CJKnumber{" swap$ * "}" * % 使用中文数字
bbl.number swap$ * bbl.author * % 加上``第''和``作者''
% duplicate$ debug.output
}
{ skip$ }
if$
nameptr #1 + 'nameptr := % 姓名指针加 1
namesleft #1 - 'namesleft := % 剩余姓名数减 1
}
while$
}
% 格式化非盲审姓名
FUNCTION {format.names.for.non.peer.review} {
% 初始化
's := % s := author域
#1 'nameptr := % nameptr 是姓名指针,初始化为 1
s num.names$ 'numnames := % 利用 num.names$ 获得 s 中的作者数量存入 nameptr
numnames 'namesleft := % 未处理的姓名数 namesleft := numnames
% 循环处理所有姓名
{ namesleft #0 > } % if namesleft > #0 (还有姓名没有格式化)
{ s nameptr % 选择第 nameptr 个姓名
name.format.string % 按 name.format.string 的格式排版
format.name$ % 调用 format.name$
% language empty$
% { "u" change.case$ } % 如果不是语言为空, 做大写转换
% { skip$ }
% if$ % <language 判断结束>
remove.period % 并删除缩写符号'.'
't := % 格式化后的姓名暂存于 t
nameptr #1 >
{ nameptr max.num.names.before.forced.et.al #1 + =
{ "others" 't := % 如果当前作者的序数已经超出了最大列显作者数
#1 'namesleft := } % 则置未处理姓名数为#1, 以便跳出循环
{ skip$ } % 如果作者序数在允许范围内, 则跳过
if$ % <et al 判断结束>
bbl.comma * % 添加逗号
namesleft #1 > % 若当前姓名不是最后一个
{ t * } % 显示当前姓名
{ t "others" = % 若当前姓名是最后一个且后面有略去的姓名
{ bbl.etal * } % 添加", et~al"或",等"
{ t * } % 如果没有略去姓名,以句点结束
if$ % <others 判断结束>
}
if$ % <namesleft 判断结束>
}
{ t } % 如果是第一个作者, 直接将排版后的姓名压栈
if$
nameptr #1 + 'nameptr := % 姓名指针加 1
namesleft #1 - 'namesleft := % 剩余姓名数减 1
}
while$
}
% 格式化姓名
FUNCTION {format.names} {
is.for.peer.review
{ format.names.for.peer.review } % 格式化盲审姓名
{ format.names.for.non.peer.review } % 格式化非盲审姓名
if$
}
FUNCTION {format.authors}
{ author empty$
{ bbl.anonymous
"The author in " cite$ * " is missing." * warning$ }
{ author format.names }
if$
}
FUNCTION {format.editors}
{ editor empty$
{ bbl.anonymous
"The editor in " cite$ * " is missing." * warning$
}
{ editor format.names }
if$
}
FUNCTION {format.assignees} {
assignee empty$
{ "" }
{ assignee format.names }
if$
}
% 译者格式
FUNCTION {format.translators}
{ translator empty$
{ "" } % 无译者
{ new.block % 有译者
translator format.names ",译" *
}
if$
}
% 机构格式
FUNCTION {format.institution} {
institution empty$
{ "" }
{ institution }
if$
}
% 组织格式
FUNCTION {format.organization} {
organization empty$
{ "" }
{ organization }
if$
}
% 文献类型标志代码/电子文献载体标志代码
FUNCTION {bib.type.designator} {
% % DEBUG
% "bib.type.designator(type:" type$ * debug.output
% " url: " url empty$ { "<N/A>" }{ url } if$ * debug.output
% % END OF DEBUG
% 文献类型标志代码
type$ "book" = type$ "inbook" = or
{ "M" }
{ type$ "standard" =
{ "S" }
{ type$ "proceedings" = type$ "conference" = or type$ "inproceedings" = or
{ "C" }
{ type$ "patent" =
{ "P" }
{ type$ "phdthesis" = type$ "mastersthesis" = or
{ "D" }
{ type$ "techreport" =
{ "R" }
{ type$ "article" = type$ "periodical" = or
{ "J" }
{ type$ "online" = type$ "webpage" = or type$ "www" = or
{ "EB" }
{ type$ "electronic" =
{ esubtype empty$
{ url empty$
{ "" }
{ "EB" }
if$
}
{ esubtype "webpage" =
{ "EB" }