Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

iclr2024_conference.bst 26 KB

You have to be logged in to leave a comment. Sign In
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
  1. %% File: `iclr2024.bst'
  2. %% A copy of iclm2010.bst, which is a modification of `plainnl.bst' for use with natbib package
  3. %%
  4. %% Copyright 2010 Hal Daum\'e III
  5. %% Modified by J. Fürnkranz
  6. %% - Changed labels from (X and Y, 2000) to (X & Y, 2000)
  7. %%
  8. %% Copyright 1993-2007 Patrick W Daly
  9. %% Max-Planck-Institut f\"ur Sonnensystemforschung
  10. %% Max-Planck-Str. 2
  11. %% D-37191 Katlenburg-Lindau
  12. %% Germany
  13. %% E-mail: daly@mps.mpg.de
  14. %%
  15. %% This program can be redistributed and/or modified under the terms
  16. %% of the LaTeX Project Public License Distributed from CTAN
  17. %% archives in directory macros/latex/base/lppl.txt; either
  18. %% version 1 of the License, or any later version.
  19. %%
  20. % Version and source file information:
  21. % \ProvidesFile{icml2010.mbs}[2007/11/26 1.93 (PWD)]
  22. %
  23. % BibTeX `plainnat' family
  24. % version 0.99b for BibTeX versions 0.99a or later,
  25. % for LaTeX versions 2.09 and 2e.
  26. %
  27. % For use with the `natbib.sty' package; emulates the corresponding
  28. % member of the `plain' family, but with author-year citations.
  29. %
  30. % With version 6.0 of `natbib.sty', it may also be used for numerical
  31. % citations, while retaining the commands \citeauthor, \citefullauthor,
  32. % and \citeyear to print the corresponding information.
  33. %
  34. % For version 7.0 of `natbib.sty', the KEY field replaces missing
  35. % authors/editors, and the date is left blank in \bibitem.
  36. %
  37. % Includes field EID for the sequence/citation number of electronic journals
  38. % which is used instead of page numbers.
  39. %
  40. % Includes fields ISBN and ISSN.
  41. %
  42. % Includes field URL for Internet addresses.
  43. %
  44. % Includes field DOI for Digital Object Idenfifiers.
  45. %
  46. % Works best with the url.sty package of Donald Arseneau.
  47. %
  48. % Works with identical authors and year are further sorted by
  49. % citation key, to preserve any natural sequence.
  50. %
  51. ENTRY
  52. { address
  53. author
  54. booktitle
  55. chapter
  56. doi
  57. eid
  58. edition
  59. editor
  60. howpublished
  61. institution
  62. isbn
  63. issn
  64. journal
  65. key
  66. month
  67. note
  68. number
  69. organization
  70. pages
  71. publisher
  72. school
  73. series
  74. title
  75. type
  76. url
  77. volume
  78. year
  79. }
  80. {}
  81. { label extra.label sort.label short.list }
  82. INTEGERS { output.state before.all mid.sentence after.sentence after.block }
  83. FUNCTION {init.state.consts}
  84. { #0 'before.all :=
  85. #1 'mid.sentence :=
  86. #2 'after.sentence :=
  87. #3 'after.block :=
  88. }
  89. STRINGS { s t }
  90. FUNCTION {output.nonnull}
  91. { 's :=
  92. output.state mid.sentence =
  93. { ", " * write$ }
  94. { output.state after.block =
  95. { add.period$ write$
  96. newline$
  97. "\newblock " write$
  98. }
  99. { output.state before.all =
  100. 'write$
  101. { add.period$ " " * write$ }
  102. if$
  103. }
  104. if$
  105. mid.sentence 'output.state :=
  106. }
  107. if$
  108. s
  109. }
  110. FUNCTION {output}
  111. { duplicate$ empty$
  112. 'pop$
  113. 'output.nonnull
  114. if$
  115. }
  116. FUNCTION {output.check}
  117. { 't :=
  118. duplicate$ empty$
  119. { pop$ "empty " t * " in " * cite$ * warning$ }
  120. 'output.nonnull
  121. if$
  122. }
  123. FUNCTION {fin.entry}
  124. { add.period$
  125. write$
  126. newline$
  127. }
  128. FUNCTION {new.block}
  129. { output.state before.all =
  130. 'skip$
  131. { after.block 'output.state := }
  132. if$
  133. }
  134. FUNCTION {new.sentence}
  135. { output.state after.block =
  136. 'skip$
  137. { output.state before.all =
  138. 'skip$
  139. { after.sentence 'output.state := }
  140. if$
  141. }
  142. if$
  143. }
  144. FUNCTION {not}
  145. { { #0 }
  146. { #1 }
  147. if$
  148. }
  149. FUNCTION {and}
  150. { 'skip$
  151. { pop$ #0 }
  152. if$
  153. }
  154. FUNCTION {or}
  155. { { pop$ #1 }
  156. 'skip$
  157. if$
  158. }
  159. FUNCTION {new.block.checka}
  160. { empty$
  161. 'skip$
  162. 'new.block
  163. if$
  164. }
  165. FUNCTION {new.block.checkb}
  166. { empty$
  167. swap$ empty$
  168. and
  169. 'skip$
  170. 'new.block
  171. if$
  172. }
  173. FUNCTION {new.sentence.checka}
  174. { empty$
  175. 'skip$
  176. 'new.sentence
  177. if$
  178. }
  179. FUNCTION {new.sentence.checkb}
  180. { empty$
  181. swap$ empty$
  182. and
  183. 'skip$
  184. 'new.sentence
  185. if$
  186. }
  187. FUNCTION {field.or.null}
  188. { duplicate$ empty$
  189. { pop$ "" }
  190. 'skip$
  191. if$
  192. }
  193. FUNCTION {emphasize}
  194. { duplicate$ empty$
  195. { pop$ "" }
  196. { "\emph{" swap$ * "}" * }
  197. if$
  198. }
  199. INTEGERS { nameptr namesleft numnames }
  200. FUNCTION {format.names}
  201. { 's :=
  202. #1 'nameptr :=
  203. s num.names$ 'numnames :=
  204. numnames 'namesleft :=
  205. { namesleft #0 > }
  206. { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't :=
  207. nameptr #1 >
  208. { namesleft #1 >
  209. { ", " * t * }
  210. { numnames #2 >
  211. { "," * }
  212. 'skip$
  213. if$
  214. t "others" =
  215. { " et~al." * }
  216. { " and " * t * }
  217. if$
  218. }
  219. if$
  220. }
  221. 't
  222. if$
  223. nameptr #1 + 'nameptr :=
  224. namesleft #1 - 'namesleft :=
  225. }
  226. while$
  227. }
  228. FUNCTION {format.key}
  229. { empty$
  230. { key field.or.null }
  231. { "" }
  232. if$
  233. }
  234. FUNCTION {format.authors}
  235. { author empty$
  236. { "" }
  237. { author format.names }
  238. if$
  239. }
  240. FUNCTION {format.editors}
  241. { editor empty$
  242. { "" }
  243. { editor format.names
  244. editor num.names$ #1 >
  245. { " (eds.)" * }
  246. { " (ed.)" * }
  247. if$
  248. }
  249. if$
  250. }
  251. FUNCTION {format.isbn}
  252. { isbn empty$
  253. { "" }
  254. { new.block "ISBN " isbn * }
  255. if$
  256. }
  257. FUNCTION {format.issn}
  258. { issn empty$
  259. { "" }
  260. { new.block "ISSN " issn * }
  261. if$
  262. }
  263. FUNCTION {format.url}
  264. { url empty$
  265. { "" }
  266. { new.block "URL \url{" url * "}" * }
  267. if$
  268. }
  269. FUNCTION {format.doi}
  270. { doi empty$
  271. { "" }
  272. { new.block "\doi{" doi * "}" * }
  273. if$
  274. }
  275. FUNCTION {format.title}
  276. { title empty$
  277. { "" }
  278. { title "t" change.case$ }
  279. if$
  280. }
  281. FUNCTION {format.full.names}
  282. {'s :=
  283. #1 'nameptr :=
  284. s num.names$ 'numnames :=
  285. numnames 'namesleft :=
  286. { namesleft #0 > }
  287. { s nameptr
  288. "{vv~}{ll}" format.name$ 't :=
  289. nameptr #1 >
  290. {
  291. namesleft #1 >
  292. { ", " * t * }
  293. {
  294. numnames #2 >
  295. { "," * }
  296. 'skip$
  297. if$
  298. t "others" =
  299. { " et~al." * }
  300. { " and " * t * }
  301. if$
  302. }
  303. if$
  304. }
  305. 't
  306. if$
  307. nameptr #1 + 'nameptr :=
  308. namesleft #1 - 'namesleft :=
  309. }
  310. while$
  311. }
  312. FUNCTION {author.editor.full}
  313. { author empty$
  314. { editor empty$
  315. { "" }
  316. { editor format.full.names }
  317. if$
  318. }
  319. { author format.full.names }
  320. if$
  321. }
  322. FUNCTION {author.full}
  323. { author empty$
  324. { "" }
  325. { author format.full.names }
  326. if$
  327. }
  328. FUNCTION {editor.full}
  329. { editor empty$
  330. { "" }
  331. { editor format.full.names }
  332. if$
  333. }
  334. FUNCTION {make.full.names}
  335. { type$ "book" =
  336. type$ "inbook" =
  337. or
  338. 'author.editor.full
  339. { type$ "proceedings" =
  340. 'editor.full
  341. 'author.full
  342. if$
  343. }
  344. if$
  345. }
  346. FUNCTION {output.bibitem}
  347. { newline$
  348. "\bibitem[" write$
  349. label write$
  350. ")" make.full.names duplicate$ short.list =
  351. { pop$ }
  352. { * }
  353. if$
  354. "]{" * write$
  355. cite$ write$
  356. "}" write$
  357. newline$
  358. ""
  359. before.all 'output.state :=
  360. }
  361. FUNCTION {n.dashify}
  362. { 't :=
  363. ""
  364. { t empty$ not }
  365. { t #1 #1 substring$ "-" =
  366. { t #1 #2 substring$ "--" = not
  367. { "--" *
  368. t #2 global.max$ substring$ 't :=
  369. }
  370. { { t #1 #1 substring$ "-" = }
  371. { "-" *
  372. t #2 global.max$ substring$ 't :=
  373. }
  374. while$
  375. }
  376. if$
  377. }
  378. { t #1 #1 substring$ *
  379. t #2 global.max$ substring$ 't :=
  380. }
  381. if$
  382. }
  383. while$
  384. }
  385. FUNCTION {format.date}
  386. { year duplicate$ empty$
  387. { "empty year in " cite$ * warning$
  388. pop$ "" }
  389. 'skip$
  390. if$
  391. month empty$
  392. 'skip$
  393. { month
  394. " " * swap$ *
  395. }
  396. if$
  397. extra.label *
  398. }
  399. FUNCTION {format.btitle}
  400. { title emphasize
  401. }
  402. FUNCTION {tie.or.space.connect}
  403. { duplicate$ text.length$ #3 <
  404. { "~" }
  405. { " " }
  406. if$
  407. swap$ * *
  408. }
  409. FUNCTION {either.or.check}
  410. { empty$
  411. 'pop$
  412. { "can't use both " swap$ * " fields in " * cite$ * warning$ }
  413. if$
  414. }
  415. FUNCTION {format.bvolume}
  416. { volume empty$
  417. { "" }
  418. { "volume" volume tie.or.space.connect
  419. series empty$
  420. 'skip$
  421. { " of " * series emphasize * }
  422. if$
  423. "volume and number" number either.or.check
  424. }
  425. if$
  426. }
  427. FUNCTION {format.number.series}
  428. { volume empty$
  429. { number empty$
  430. { series field.or.null }
  431. { output.state mid.sentence =
  432. { "number" }
  433. { "Number" }
  434. if$
  435. number tie.or.space.connect
  436. series empty$
  437. { "there's a number but no series in " cite$ * warning$ }
  438. { " in " * series * }
  439. if$
  440. }
  441. if$
  442. }
  443. { "" }
  444. if$
  445. }
  446. FUNCTION {format.edition}
  447. { edition empty$
  448. { "" }
  449. { output.state mid.sentence =
  450. { edition "l" change.case$ " edition" * }
  451. { edition "t" change.case$ " edition" * }
  452. if$
  453. }
  454. if$
  455. }
  456. INTEGERS { multiresult }
  457. FUNCTION {multi.page.check}
  458. { 't :=
  459. #0 'multiresult :=
  460. { multiresult not
  461. t empty$ not
  462. and
  463. }
  464. { t #1 #1 substring$
  465. duplicate$ "-" =
  466. swap$ duplicate$ "," =
  467. swap$ "+" =
  468. or or
  469. { #1 'multiresult := }
  470. { t #2 global.max$ substring$ 't := }
  471. if$
  472. }
  473. while$
  474. multiresult
  475. }
  476. FUNCTION {format.pages}
  477. { pages empty$
  478. { "" }
  479. { pages multi.page.check
  480. { "pp.\ " pages n.dashify tie.or.space.connect }
  481. { "pp.\ " pages tie.or.space.connect }
  482. if$
  483. }
  484. if$
  485. }
  486. FUNCTION {format.eid}
  487. { eid empty$
  488. { "" }
  489. { "art." eid tie.or.space.connect }
  490. if$
  491. }
  492. FUNCTION {format.vol.num.pages}
  493. { volume field.or.null
  494. number empty$
  495. 'skip$
  496. { "\penalty0 (" number * ")" * *
  497. volume empty$
  498. { "there's a number but no volume in " cite$ * warning$ }
  499. 'skip$
  500. if$
  501. }
  502. if$
  503. pages empty$
  504. 'skip$
  505. { duplicate$ empty$
  506. { pop$ format.pages }
  507. { ":\penalty0 " * pages n.dashify * }
  508. if$
  509. }
  510. if$
  511. }
  512. FUNCTION {format.vol.num.eid}
  513. { volume field.or.null
  514. number empty$
  515. 'skip$
  516. { "\penalty0 (" number * ")" * *
  517. volume empty$
  518. { "there's a number but no volume in " cite$ * warning$ }
  519. 'skip$
  520. if$
  521. }
  522. if$
  523. eid empty$
  524. 'skip$
  525. { duplicate$ empty$
  526. { pop$ format.eid }
  527. { ":\penalty0 " * eid * }
  528. if$
  529. }
  530. if$
  531. }
  532. FUNCTION {format.chapter.pages}
  533. { chapter empty$
  534. 'format.pages
  535. { type empty$
  536. { "chapter" }
  537. { type "l" change.case$ }
  538. if$
  539. chapter tie.or.space.connect
  540. pages empty$
  541. 'skip$
  542. { ", " * format.pages * }
  543. if$
  544. }
  545. if$
  546. }
  547. FUNCTION {format.in.ed.booktitle}
  548. { booktitle empty$
  549. { "" }
  550. { editor empty$
  551. { "In " booktitle emphasize * }
  552. { "In " format.editors * ", " * booktitle emphasize * }
  553. if$
  554. }
  555. if$
  556. }
  557. FUNCTION {empty.misc.check}
  558. { author empty$ title empty$ howpublished empty$
  559. month empty$ year empty$ note empty$
  560. and and and and and
  561. key empty$ not and
  562. { "all relevant fields are empty in " cite$ * warning$ }
  563. 'skip$
  564. if$
  565. }
  566. FUNCTION {format.thesis.type}
  567. { type empty$
  568. 'skip$
  569. { pop$
  570. type "t" change.case$
  571. }
  572. if$
  573. }
  574. FUNCTION {format.tr.number}
  575. { type empty$
  576. { "Technical Report" }
  577. 'type
  578. if$
  579. number empty$
  580. { "t" change.case$ }
  581. { number tie.or.space.connect }
  582. if$
  583. }
  584. FUNCTION {format.article.crossref}
  585. { key empty$
  586. { journal empty$
  587. { "need key or journal for " cite$ * " to crossref " * crossref *
  588. warning$
  589. ""
  590. }
  591. { "In \emph{" journal * "}" * }
  592. if$
  593. }
  594. { "In " }
  595. if$
  596. " \citet{" * crossref * "}" *
  597. }
  598. FUNCTION {format.book.crossref}
  599. { volume empty$
  600. { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
  601. "In "
  602. }
  603. { "Volume" volume tie.or.space.connect
  604. " of " *
  605. }
  606. if$
  607. editor empty$
  608. editor field.or.null author field.or.null =
  609. or
  610. { key empty$
  611. { series empty$
  612. { "need editor, key, or series for " cite$ * " to crossref " *
  613. crossref * warning$
  614. "" *
  615. }
  616. { "\emph{" * series * "}" * }
  617. if$
  618. }
  619. 'skip$
  620. if$
  621. }
  622. 'skip$
  623. if$
  624. " \citet{" * crossref * "}" *
  625. }
  626. FUNCTION {format.incoll.inproc.crossref}
  627. { editor empty$
  628. editor field.or.null author field.or.null =
  629. or
  630. { key empty$
  631. { booktitle empty$
  632. { "need editor, key, or booktitle for " cite$ * " to crossref " *
  633. crossref * warning$
  634. ""
  635. }
  636. { "In \emph{" booktitle * "}" * }
  637. if$
  638. }
  639. { "In " }
  640. if$
  641. }
  642. { "In " }
  643. if$
  644. " \citet{" * crossref * "}" *
  645. }
  646. FUNCTION {article}
  647. { output.bibitem
  648. format.authors "author" output.check
  649. author format.key output
  650. new.block
  651. format.title "title" output.check
  652. new.block
  653. crossref missing$
  654. { journal emphasize "journal" output.check
  655. eid empty$
  656. { format.vol.num.pages output }
  657. { format.vol.num.eid output }
  658. if$
  659. format.date "year" output.check
  660. }
  661. { format.article.crossref output.nonnull
  662. eid empty$
  663. { format.pages output }
  664. { format.eid output }
  665. if$
  666. }
  667. if$
  668. format.issn output
  669. format.doi output
  670. format.url output
  671. new.block
  672. note output
  673. fin.entry
  674. }
  675. FUNCTION {book}
  676. { output.bibitem
  677. author empty$
  678. { format.editors "author and editor" output.check
  679. editor format.key output
  680. }
  681. { format.authors output.nonnull
  682. crossref missing$
  683. { "author and editor" editor either.or.check }
  684. 'skip$
  685. if$
  686. }
  687. if$
  688. new.block
  689. format.btitle "title" output.check
  690. crossref missing$
  691. { format.bvolume output
  692. new.block
  693. format.number.series output
  694. new.sentence
  695. publisher "publisher" output.check
  696. address output
  697. }
  698. { new.block
  699. format.book.crossref output.nonnull
  700. }
  701. if$
  702. format.edition output
  703. format.date "year" output.check
  704. format.isbn output
  705. format.doi output
  706. format.url output
  707. new.block
  708. note output
  709. fin.entry
  710. }
  711. FUNCTION {booklet}
  712. { output.bibitem
  713. format.authors output
  714. author format.key output
  715. new.block
  716. format.title "title" output.check
  717. howpublished address new.block.checkb
  718. howpublished output
  719. address output
  720. format.date output
  721. format.isbn output
  722. format.doi output
  723. format.url output
  724. new.block
  725. note output
  726. fin.entry
  727. }
  728. FUNCTION {inbook}
  729. { output.bibitem
  730. author empty$
  731. { format.editors "author and editor" output.check
  732. editor format.key output
  733. }
  734. { format.authors output.nonnull
  735. crossref missing$
  736. { "author and editor" editor either.or.check }
  737. 'skip$
  738. if$
  739. }
  740. if$
  741. new.block
  742. format.btitle "title" output.check
  743. crossref missing$
  744. { format.bvolume output
  745. format.chapter.pages "chapter and pages" output.check
  746. new.block
  747. format.number.series output
  748. new.sentence
  749. publisher "publisher" output.check
  750. address output
  751. }
  752. { format.chapter.pages "chapter and pages" output.check
  753. new.block
  754. format.book.crossref output.nonnull
  755. }
  756. if$
  757. format.edition output
  758. format.date "year" output.check
  759. format.isbn output
  760. format.doi output
  761. format.url output
  762. new.block
  763. note output
  764. fin.entry
  765. }
  766. FUNCTION {incollection}
  767. { output.bibitem
  768. format.authors "author" output.check
  769. author format.key output
  770. new.block
  771. format.title "title" output.check
  772. new.block
  773. crossref missing$
  774. { format.in.ed.booktitle "booktitle" output.check
  775. format.bvolume output
  776. format.number.series output
  777. format.chapter.pages output
  778. new.sentence
  779. publisher "publisher" output.check
  780. address output
  781. format.edition output
  782. format.date "year" output.check
  783. }
  784. { format.incoll.inproc.crossref output.nonnull
  785. format.chapter.pages output
  786. }
  787. if$
  788. format.isbn output
  789. format.doi output
  790. format.url output
  791. new.block
  792. note output
  793. fin.entry
  794. }
  795. FUNCTION {inproceedings}
  796. { output.bibitem
  797. format.authors "author" output.check
  798. author format.key output
  799. new.block
  800. format.title "title" output.check
  801. new.block
  802. crossref missing$
  803. { format.in.ed.booktitle "booktitle" output.check
  804. format.bvolume output
  805. format.number.series output
  806. format.pages output
  807. address empty$
  808. { organization publisher new.sentence.checkb
  809. organization output
  810. publisher output
  811. format.date "year" output.check
  812. }
  813. { address output.nonnull
  814. format.date "year" output.check
  815. new.sentence
  816. organization output
  817. publisher output
  818. }
  819. if$
  820. }
  821. { format.incoll.inproc.crossref output.nonnull
  822. format.pages output
  823. }
  824. if$
  825. format.isbn output
  826. format.doi output
  827. format.url output
  828. new.block
  829. note output
  830. fin.entry
  831. }
  832. FUNCTION {conference} { inproceedings }
  833. FUNCTION {manual}
  834. { output.bibitem
  835. format.authors output
  836. author format.key output
  837. new.block
  838. format.btitle "title" output.check
  839. organization address new.block.checkb
  840. organization output
  841. address output
  842. format.edition output
  843. format.date output
  844. format.url output
  845. new.block
  846. note output
  847. fin.entry
  848. }
  849. FUNCTION {mastersthesis}
  850. { output.bibitem
  851. format.authors "author" output.check
  852. author format.key output
  853. new.block
  854. format.title "title" output.check
  855. new.block
  856. "Master's thesis" format.thesis.type output.nonnull
  857. school "school" output.check
  858. address output
  859. format.date "year" output.check
  860. format.url output
  861. new.block
  862. note output
  863. fin.entry
  864. }
  865. FUNCTION {misc}
  866. { output.bibitem
  867. format.authors output
  868. author format.key output
  869. title howpublished new.block.checkb
  870. format.title output
  871. howpublished new.block.checka
  872. howpublished output
  873. format.date output
  874. format.issn output
  875. format.url output
  876. new.block
  877. note output
  878. fin.entry
  879. empty.misc.check
  880. }
  881. FUNCTION {phdthesis}
  882. { output.bibitem
  883. format.authors "author" output.check
  884. author format.key output
  885. new.block
  886. format.btitle "title" output.check
  887. new.block
  888. "PhD thesis" format.thesis.type output.nonnull
  889. school "school" output.check
  890. address output
  891. format.date "year" output.check
  892. format.url output
  893. new.block
  894. note output
  895. fin.entry
  896. }
  897. FUNCTION {proceedings}
  898. { output.bibitem
  899. format.editors output
  900. editor format.key output
  901. new.block
  902. format.btitle "title" output.check
  903. format.bvolume output
  904. format.number.series output
  905. address output
  906. format.date "year" output.check
  907. new.sentence
  908. organization output
  909. publisher output
  910. format.isbn output
  911. format.doi output
  912. format.url output
  913. new.block
  914. note output
  915. fin.entry
  916. }
  917. FUNCTION {techreport}
  918. { output.bibitem
  919. format.authors "author" output.check
  920. author format.key output
  921. new.block
  922. format.title "title" output.check
  923. new.block
  924. format.tr.number output.nonnull
  925. institution "institution" output.check
  926. address output
  927. format.date "year" output.check
  928. format.url output
  929. new.block
  930. note output
  931. fin.entry
  932. }
  933. FUNCTION {unpublished}
  934. { output.bibitem
  935. format.authors "author" output.check
  936. author format.key output
  937. new.block
  938. format.title "title" output.check
  939. new.block
  940. note "note" output.check
  941. format.date output
  942. format.url output
  943. fin.entry
  944. }
  945. FUNCTION {default.type} { misc }
  946. MACRO {jan} {"January"}
  947. MACRO {feb} {"February"}
  948. MACRO {mar} {"March"}
  949. MACRO {apr} {"April"}
  950. MACRO {may} {"May"}
  951. MACRO {jun} {"June"}
  952. MACRO {jul} {"July"}
  953. MACRO {aug} {"August"}
  954. MACRO {sep} {"September"}
  955. MACRO {oct} {"October"}
  956. MACRO {nov} {"November"}
  957. MACRO {dec} {"December"}
  958. MACRO {acmcs} {"ACM Computing Surveys"}
  959. MACRO {acta} {"Acta Informatica"}
  960. MACRO {cacm} {"Communications of the ACM"}
  961. MACRO {ibmjrd} {"IBM Journal of Research and Development"}
  962. MACRO {ibmsj} {"IBM Systems Journal"}
  963. MACRO {ieeese} {"IEEE Transactions on Software Engineering"}
  964. MACRO {ieeetc} {"IEEE Transactions on Computers"}
  965. MACRO {ieeetcad}
  966. {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"}
  967. MACRO {ipl} {"Information Processing Letters"}
  968. MACRO {jacm} {"Journal of the ACM"}
  969. MACRO {jcss} {"Journal of Computer and System Sciences"}
  970. MACRO {scp} {"Science of Computer Programming"}
  971. MACRO {sicomp} {"SIAM Journal on Computing"}
  972. MACRO {tocs} {"ACM Transactions on Computer Systems"}
  973. MACRO {tods} {"ACM Transactions on Database Systems"}
  974. MACRO {tog} {"ACM Transactions on Graphics"}
  975. MACRO {toms} {"ACM Transactions on Mathematical Software"}
  976. MACRO {toois} {"ACM Transactions on Office Information Systems"}
  977. MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"}
  978. MACRO {tcs} {"Theoretical Computer Science"}
  979. READ
  980. FUNCTION {sortify}
  981. { purify$
  982. "l" change.case$
  983. }
  984. INTEGERS { len }
  985. FUNCTION {chop.word}
  986. { 's :=
  987. 'len :=
  988. s #1 len substring$ =
  989. { s len #1 + global.max$ substring$ }
  990. 's
  991. if$
  992. }
  993. FUNCTION {format.lab.names}
  994. { 's :=
  995. s #1 "{vv~}{ll}" format.name$
  996. s num.names$ duplicate$
  997. #2 >
  998. { pop$ " et~al." * }
  999. { #2 <
  1000. 'skip$
  1001. { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
  1002. { " et~al." * }
  1003. { " \& " * s #2 "{vv~}{ll}" format.name$ * }
  1004. if$
  1005. }
  1006. if$
  1007. }
  1008. if$
  1009. }
  1010. FUNCTION {author.key.label}
  1011. { author empty$
  1012. { key empty$
  1013. { cite$ #1 #3 substring$ }
  1014. 'key
  1015. if$
  1016. }
  1017. { author format.lab.names }
  1018. if$
  1019. }
  1020. FUNCTION {author.editor.key.label}
  1021. { author empty$
  1022. { editor empty$
  1023. { key empty$
  1024. { cite$ #1 #3 substring$ }
  1025. 'key
  1026. if$
  1027. }
  1028. { editor format.lab.names }
  1029. if$
  1030. }
  1031. { author format.lab.names }
  1032. if$
  1033. }
  1034. FUNCTION {author.key.organization.label}
  1035. { author empty$
  1036. { key empty$
  1037. { organization empty$
  1038. { cite$ #1 #3 substring$ }
  1039. { "The " #4 organization chop.word #3 text.prefix$ }
  1040. if$
  1041. }
  1042. 'key
  1043. if$
  1044. }
  1045. { author format.lab.names }
  1046. if$
  1047. }
  1048. FUNCTION {editor.key.organization.label}
  1049. { editor empty$
  1050. { key empty$
  1051. { organization empty$
  1052. { cite$ #1 #3 substring$ }
  1053. { "The " #4 organization chop.word #3 text.prefix$ }
  1054. if$
  1055. }
  1056. 'key
  1057. if$
  1058. }
  1059. { editor format.lab.names }
  1060. if$
  1061. }
  1062. FUNCTION {calc.short.authors}
  1063. { type$ "book" =
  1064. type$ "inbook" =
  1065. or
  1066. 'author.editor.key.label
  1067. { type$ "proceedings" =
  1068. 'editor.key.organization.label
  1069. { type$ "manual" =
  1070. 'author.key.organization.label
  1071. 'author.key.label
  1072. if$
  1073. }
  1074. if$
  1075. }
  1076. if$
  1077. 'short.list :=
  1078. }
  1079. FUNCTION {calc.label}
  1080. { calc.short.authors
  1081. short.list
  1082. "("
  1083. *
  1084. year duplicate$ empty$
  1085. short.list key field.or.null = or
  1086. { pop$ "" }
  1087. 'skip$
  1088. if$
  1089. *
  1090. 'label :=
  1091. }
  1092. FUNCTION {sort.format.names}
  1093. { 's :=
  1094. #1 'nameptr :=
  1095. ""
  1096. s num.names$ 'numnames :=
  1097. numnames 'namesleft :=
  1098. { namesleft #0 > }
  1099. {
  1100. s nameptr "{vv{ } }{ll{ }}{ ff{ }}{ jj{ }}" format.name$ 't :=
  1101. nameptr #1 >
  1102. {
  1103. " " *
  1104. namesleft #1 = t "others" = and
  1105. { "zzzzz" * }
  1106. { numnames #2 > nameptr #2 = and
  1107. { "zz" * year field.or.null * " " * }
  1108. 'skip$
  1109. if$
  1110. t sortify *
  1111. }
  1112. if$
  1113. }
  1114. { t sortify * }
  1115. if$
  1116. nameptr #1 + 'nameptr :=
  1117. namesleft #1 - 'namesleft :=
  1118. }
  1119. while$
  1120. }
  1121. FUNCTION {sort.format.title}
  1122. { 't :=
  1123. "A " #2
  1124. "An " #3
  1125. "The " #4 t chop.word
  1126. chop.word
  1127. chop.word
  1128. sortify
  1129. #1 global.max$ substring$
  1130. }
  1131. FUNCTION {author.sort}
  1132. { author empty$
  1133. { key empty$
  1134. { "to sort, need author or key in " cite$ * warning$
  1135. ""
  1136. }
  1137. { key sortify }
  1138. if$
  1139. }
  1140. { author sort.format.names }
  1141. if$
  1142. }
  1143. FUNCTION {author.editor.sort}
  1144. { author empty$
  1145. { editor empty$
  1146. { key empty$
  1147. { "to sort, need author, editor, or key in " cite$ * warning$
  1148. ""
  1149. }
  1150. { key sortify }
  1151. if$
  1152. }
  1153. { editor sort.format.names }
  1154. if$
  1155. }
  1156. { author sort.format.names }
  1157. if$
  1158. }
  1159. FUNCTION {author.organization.sort}
  1160. { author empty$
  1161. { organization empty$
  1162. { key empty$
  1163. { "to sort, need author, organization, or key in " cite$ * warning$
  1164. ""
  1165. }
  1166. { key sortify }
  1167. if$
  1168. }
  1169. { "The " #4 organization chop.word sortify }
  1170. if$
  1171. }
  1172. { author sort.format.names }
  1173. if$
  1174. }
  1175. FUNCTION {editor.organization.sort}
  1176. { editor empty$
  1177. { organization empty$
  1178. { key empty$
  1179. { "to sort, need editor, organization, or key in " cite$ * warning$
  1180. ""
  1181. }
  1182. { key sortify }
  1183. if$
  1184. }
  1185. { "The " #4 organization chop.word sortify }
  1186. if$
  1187. }
  1188. { editor sort.format.names }
  1189. if$
  1190. }
  1191. FUNCTION {presort}
  1192. { calc.label
  1193. label sortify
  1194. " "
  1195. *
  1196. type$ "book" =
  1197. type$ "inbook" =
  1198. or
  1199. 'author.editor.sort
  1200. { type$ "proceedings" =
  1201. 'editor.organization.sort
  1202. { type$ "manual" =
  1203. 'author.organization.sort
  1204. 'author.sort
  1205. if$
  1206. }
  1207. if$
  1208. }
  1209. if$
  1210. " "
  1211. *
  1212. year field.or.null sortify
  1213. *
  1214. " "
  1215. *
  1216. cite$
  1217. *
  1218. #1 entry.max$ substring$
  1219. 'sort.label :=
  1220. sort.label *
  1221. #1 entry.max$ substring$
  1222. 'sort.key$ :=
  1223. }
  1224. ITERATE {presort}
  1225. SORT
  1226. STRINGS { longest.label last.label next.extra }
  1227. INTEGERS { longest.label.width last.extra.num number.label }
  1228. FUNCTION {initialize.longest.label}
  1229. { "" 'longest.label :=
  1230. #0 int.to.chr$ 'last.label :=
  1231. "" 'next.extra :=
  1232. #0 'longest.label.width :=
  1233. #0 'last.extra.num :=
  1234. #0 'number.label :=
  1235. }
  1236. FUNCTION {forward.pass}
  1237. { last.label label =
  1238. { last.extra.num #1 + 'last.extra.num :=
  1239. last.extra.num int.to.chr$ 'extra.label :=
  1240. }
  1241. { "a" chr.to.int$ 'last.extra.num :=
  1242. "" 'extra.label :=
  1243. label 'last.label :=
  1244. }
  1245. if$
  1246. number.label #1 + 'number.label :=
  1247. }
  1248. FUNCTION {reverse.pass}
  1249. { next.extra "b" =
  1250. { "a" 'extra.label := }
  1251. 'skip$
  1252. if$
  1253. extra.label 'next.extra :=
  1254. extra.label
  1255. duplicate$ empty$
  1256. 'skip$
  1257. { "{\natexlab{" swap$ * "}}" * }
  1258. if$
  1259. 'extra.label :=
  1260. label extra.label * 'label :=
  1261. }
  1262. EXECUTE {initialize.longest.label}
  1263. ITERATE {forward.pass}
  1264. REVERSE {reverse.pass}
  1265. FUNCTION {bib.sort.order}
  1266. { sort.label 'sort.key$ :=
  1267. }
  1268. ITERATE {bib.sort.order}
  1269. SORT
  1270. FUNCTION {begin.bib}
  1271. { preamble$ empty$
  1272. 'skip$
  1273. { preamble$ write$ newline$ }
  1274. if$
  1275. "\begin{thebibliography}{" number.label int.to.str$ * "}" *
  1276. write$ newline$
  1277. "\providecommand{\natexlab}[1]{#1}"
  1278. write$ newline$
  1279. "\providecommand{\url}[1]{\texttt{#1}}"
  1280. write$ newline$
  1281. "\expandafter\ifx\csname urlstyle\endcsname\relax"
  1282. write$ newline$
  1283. " \providecommand{\doi}[1]{doi: #1}\else"
  1284. write$ newline$
  1285. " \providecommand{\doi}{doi: \begingroup \urlstyle{rm}\Url}\fi"
  1286. write$ newline$
  1287. }
  1288. EXECUTE {begin.bib}
  1289. EXECUTE {init.state.consts}
  1290. ITERATE {call.type$}
  1291. FUNCTION {end.bib}
  1292. { newline$
  1293. "\end{thebibliography}" write$ newline$
  1294. }
  1295. EXECUTE {end.bib}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...