-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.txt
1080 lines (1079 loc) · 66.7 KB
/
index.txt
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
%% COMMENT This is an index of sources for bibliographic data
%% Blank lines and lines beginning with "%" are ignored.
%% Sample entries:
%% alice_user ./texfiles/alice_user.tex
%% bob_user http://bob_server.com/cv.tex
adler__robert_j ./texfiles/adler__robert_j.tex
agresti__alan ./texfiles/agresti__alan.tex
ait-sahalia__yacine ./texfiles/ait-sahalia__yacine.tex
aitchison__john ./texfiles/aitchison__john.tex
aitken__alexander_c ./texfiles/aitken__alexander_c.tex
akaike__hirotugu ./texfiles/akaike__hirotugu.tex
akritas__michael_g ./texfiles/akritas__michael_g.tex
alam__khursheed ./texfiles/alam__khursheed.tex
albert__arthur_e ./texfiles/albert__arthur_e.tex
aldous__david_j ./texfiles/aldous__david_j.tex
alexander__kenneth_s ./texfiles/alexander__kenneth_s.tex
allen__roy_g_d ./texfiles/allen__roy_g_d.tex
allison__david_b ./texfiles/allison__david_b.tex
amit__yali ./texfiles/amit__yali.tex
andersen__erik_sparre ./texfiles/andersen__erik_sparre.tex
anderson__oskar ./texfiles/anderson__oskar.tex
anderson__richard_l ./texfiles/anderson__richard_l.tex
anderson__theodore_w ./texfiles/anderson__theodore_w.tex
anscombe__francis_j ./texfiles/anscombe__francis_j.tex
antoniadis__anestis ./texfiles/antoniadis__anestis.tex
arcones__miguel_a ./texfiles/arcones__miguel_a.tex
arjas__elja ./texfiles/arjas__elja.tex
armitage__peter ./texfiles/armitage__peter.tex
arnold__barry_c ./texfiles/arnold__barry_c.tex
arnold__kenneth_j ./texfiles/arnold__kenneth_j.tex
arratia__richard_a ./texfiles/arratia__richard_a.tex
arrow__kenneth_j ./texfiles/arrow__kenneth_j.tex
asmussen__soren ./texfiles/asmussen__soren.tex
athreya__krishna_b ./texfiles/athreya__krishna_b.tex
babu__g_jogesh ./texfiles/babu__g_jogesh.tex
bahadur__r_raj ./texfiles/bahadur__r_raj.tex
bai__zhidong ./texfiles/bai__zhidong.tex
bailey__rosemary_a ./texfiles/bailey__rosemary_a.tex
baker__george_a ./texfiles/baker__george_a.tex
balakrishnan__narayanaswamy ./texfiles/balakrishnan__narayanaswamy.tex
bancroft__theodore_a ./texfiles/bancroft__theodore_a.tex
banerjee__k_s ./texfiles/banerjee__k_s.tex
banks__david_l ./texfiles/banks__david_l.tex
banuelos__rodrigo ./texfiles/banuelos__rodrigo.tex
barankin__edward_w ./texfiles/barankin__edward_w.tex
barbour__andrew_d ./texfiles/barbour__andrew_d.tex
barlow__martin_t ./texfiles/barlow__martin_t.tex
barlow__richard_e ./texfiles/barlow__richard_e.tex
barnard__george_a ./texfiles/barnard__george_a.tex
barndorff-nielson__o_e ./texfiles/barndorff-nielson__o_e.tex
bartholomew__david_j ./texfiles/bartholomew__david_j.tex
bartky__walter_s ./texfiles/bartky__walter_s.tex
bartlett__maurice_s ./texfiles/bartlett__maurice_s.tex
bartlett__peter_l ./texfiles/bartlett__peter_l.tex
barton__david_e ./texfiles/barton__david_e.tex
bartoszynski__robert ./texfiles/bartoszynski__robert.tex
basawa__ishwar_v ./texfiles/basawa__ishwar_v.tex
bass__richard_f ./texfiles/bass__richard_f.tex
basu__asit_p ./texfiles/basu__asit_p.tex
basu__debabrata ./texfiles/basu__debabrata.tex
baten__william_d ./texfiles/baten__william_d.tex
bather__john_a ./texfiles/bather__john_a.tex
baxendale__peter_h ./texfiles/baxendale__peter_h.tex
baxter__glen_e ./texfiles/baxter__glen_e.tex
bayarri__m_j ./texfiles/bayarri__m_j.tex
bechhofer__robert_e ./texfiles/bechhofer__robert_e.tex
bell__charles_b ./texfiles/bell__charles_b.tex
belyaev__yuri_k ./texfiles/belyaev__yuri_k.tex
ben_arous__gerard ./texfiles/ben_arous__gerard.tex
beran__rudolf_j ./texfiles/beran__rudolf_j.tex
berger__james_o ./texfiles/berger__james_o.tex
berger__roger_l ./texfiles/berger__roger_l.tex
bergstrom__harald ./texfiles/bergstrom__harald.tex
berk__robert_h ./texfiles/berk__robert_h.tex
berkson__joseph ./texfiles/berkson__joseph.tex
berliner__l_mark ./texfiles/berliner__l_mark.tex
berman__simeon_m ./texfiles/berman__simeon_m.tex
berry__donald_a ./texfiles/berry__donald_a.tex
besag__julian_e ./texfiles/besag__julian_e.tex
bhansali__r_j ./texfiles/bhansali__r_j.tex
bhattacharya__p_k ./texfiles/bhattacharya__p_k.tex
bhattacharya__r_n ./texfiles/bhattacharya__r_n.tex
bhattacharyya__gouri_k ./texfiles/bhattacharyya__gouri_k.tex
bickel__peter_j ./texfiles/bickel__peter_j.tex
billard__lynne ./texfiles/billard__lynne.tex
billingsley__patrick ./texfiles/billingsley__patrick.tex
bingham__christopher ./texfiles/bingham__christopher.tex
birge__lucien ./texfiles/birge__lucien.tex
birnbaum__allan ./texfiles/birnbaum__allan.tex
birnbaum__z_william ./texfiles/birnbaum__z_william.tex
blackwell__david_h ./texfiles/blackwell__david_h.tex
bliss__chester_i ./texfiles/bliss__chester_i.tex
block__henry_w ./texfiles/block__henry_w.tex
blom__gunnar ./texfiles/blom__gunnar.tex
bloomfield__peter ./texfiles/bloomfield__peter.tex
blum__julius_r ./texfiles/blum__julius_r.tex
blumenthal__robert_m ./texfiles/blumenthal__robert_m.tex
blumenthal__saul ./texfiles/blumenthal__saul.tex
blyth__colin_r ./texfiles/blyth__colin_r.tex
bock__mary_ellen ./texfiles/bock__mary_ellen.tex
boente__graciela ./texfiles/boente__graciela.tex
bolthausen__erwin ./texfiles/bolthausen__erwin.tex
bookstein__fred_l ./texfiles/bookstein__fred_l.tex
bose__arup ./texfiles/bose__arup.tex
bose__r_c ./texfiles/bose__r_c.tex
bovier__anton ./texfiles/bovier__anton.tex
bowker__albert_h ./texfiles/bowker__albert_h.tex
bowman__kimiko_o ./texfiles/bowman__kimiko_o.tex
box__george_e_p ./texfiles/box__george_e_p.tex
bradley__ralph_a ./texfiles/bradley__ralph_a.tex
bradley__richard_c ./texfiles/bradley__richard_c.tex
bramson__maury ./texfiles/bramson__maury.tex
breiman__leo ./texfiles/breiman__leo.tex
brillinger__david_r ./texfiles/brillinger__david_r.tex
brockett__patrick_l ./texfiles/brockett__patrick_l.tex
brockwell__peter_j ./texfiles/brockwell__peter_j.tex
brown__bruce_m ./texfiles/brown__bruce_m.tex
brown__george_w ./texfiles/brown__george_w.tex
brown__lawrence_d ./texfiles/brown__lawrence_d.tex
brown__mark ./texfiles/brown__mark.tex
brown__philip_j ./texfiles/brown__philip_j.tex
brunk__h_d ./texfiles/brunk__h_d.tex
bruss__f_thomas ./texfiles/bruss__f_thomas.tex
budhiraja_amarjit ./texfiles/budhiraja_amarjit.tex
buehler__robert_j ./texfiles/buehler__robert_j.tex
buehler__wolfgang_j ./texfiles/buehler__wolfgang_j.tex
buehlmann__peter_l ./texfiles/buehlmann__peter_l.tex
buja__andreas ./texfiles/buja__andreas.tex
burdzy__krzysztof ./texfiles/burdzy__krzysztof.tex
burkholder__donald_l ./texfiles/burkholder__donald_l.tex
burr__irving_w ./texfiles/burr__irving_w.tex
cacoullos__theophilos ./texfiles/cacoullos__theophilos.tex
cai__jianwen ./texfiles/cai__jianwen.tex
cai__t_tony ./texfiles/cai__t_tony.tex
cambanis__stamatis ./texfiles/cambanis__stamatis.tex
camp__burton_h ./texfiles/camp__burton_h.tex
carmona__rene_a ./texfiles/carmona__rene_a.tex
carriquiry__alicia_l ./texfiles/carriquiry__alicia_l.tex
carroll__raymond_j ./texfiles/carroll__raymond_j.tex
carver__harry_c ./texfiles/carver__harry_c.tex
casella__george_c ./texfiles/casella__george_c.tex
chakravarti__indra_m ./texfiles/chakravarti__indra_m.tex
chambers__john_m ./texfiles/chambers__john_m.tex
chan__kung-sik ./texfiles/chan__kung-sik.tex
chan__lai_k ./texfiles/chan__lai_k.tex
chan__ngai_h ./texfiles/chan__ngai_h.tex
chang__theodore_c ./texfiles/chang__theodore_c.tex
chao__anne ./texfiles/chao__anne.tex
chao__min-te ./texfiles/chao__min-te.tex
chapman__douglas_g ./texfiles/chapman__douglas_g.tex
chaudhuri__probal ./texfiles/chaudhuri__probal.tex
chen__jiahua ./texfiles/chen__jiahua.tex
chen__kani ./texfiles/chen__kani.tex
chen__louis_h ./texfiles/chen__louis_h.tex
chen__ming-hui ./texfiles/chen__ming-hui.tex
chen__rong ./texfiles/chen__rong.tex
chen__song_xi ./texfiles/chen__song_xi.tex
chen__xia ./texfiles/chen__xia.tex
chen__xiru ./texfiles/chen__xiru.tex
chen__zhen-qing ./texfiles/chen__zhen-qing.tex
cheng__ching-shui ./texfiles/cheng__ching-shui.tex
cheng__ming-yen ./texfiles/cheng__ming-yen.tex
chernoff__herman ./texfiles/chernoff__herman.tex
chiang__chin_long ./texfiles/chiang__chin_long.tex
chow__y_s ./texfiles/chow__y_s.tex
christensen__ronald ./texfiles/christensen__ronald.tex
chung__kai-lai ./texfiles/chung__kai-lai.tex
cinlar__erhan ./texfiles/cinlar__erhan.tex
claeskens__gerda ./texfiles/claeskens__gerda.tex
cleveland__william_s ./texfiles/cleveland__william_s.tex
clifford__peter ./texfiles/clifford__peter.tex
cochran__william_g ./texfiles/cochran__william_g.tex
cohen__arthur ./texfiles/cohen__arthur.tex
cohn__harry ./texfiles/cohn__harry.tex
cook__r_dennis ./texfiles/cook__r_dennis.tex
copeland__arthur_h ./texfiles/copeland__arthur_h.tex
cornfield__jerome ./texfiles/cornfield__jerome.tex
cover__thomas_m ./texfiles/cover__thomas_m.tex
cox__david_r ./texfiles/cox__david_r.tex
cox__gertrude_m ./texfiles/cox__gertrude_m.tex
cox__j_theodore ./texfiles/cox__j_theodore.tex
craig__allen_t ./texfiles/craig__allen_t.tex
craig__cecil_c ./texfiles/craig__cecil_c.tex
cramer__harald ./texfiles/cramer__harald.tex
crathorne__arthur_r ./texfiles/crathorne__arthur_r.tex
cressie__noel_a_c ./texfiles/cressie__noel_a_c.tex
csorgo__miklos ./texfiles/csorgo__miklos.tex
csorgo__sandor ./texfiles/csorgo__sandor.tex
curtiss__john_h ./texfiles/curtiss__john_h.tex
cuzick__jack ./texfiles/cuzick__jack.tex
dabrowska__dorota_m ./texfiles/dabrowska__dorota_m.tex
dahlhaus__rainer ./texfiles/dahlhaus__rainer.tex
dai__jim_g ./texfiles/dai__jim_g.tex
dalenius__tore ./texfiles/dalenius__tore.tex
daley__daryl_j ./texfiles/daley__daryl_j.tex
daly__joseph_f ./texfiles/daly__joseph_f.tex
daniel__cuthbert ./texfiles/daniel__cuthbert.tex
daniels__henry_e ./texfiles/daniels__henry_e.tex
dantzig__george_b ./texfiles/dantzig__george_b.tex
darling__donald_a ./texfiles/darling__donald_a.tex
darmois__georges ./texfiles/darmois__georges.tex
das_gupta__somesh ./texfiles/das_gupta__somesh.tex
dasgupta__anirban ./texfiles/dasgupta__anirban.tex
datta__gauri_s ./texfiles/datta__gauri_s.tex
datta__somnath ./texfiles/datta__somnath.tex
david__florence_n ./texfiles/david__florence_n.tex
david__herbert_t ./texfiles/david__herbert_t.tex
davidian__marie ./texfiles/davidian__marie.tex
davis__burgess_j ./texfiles/davis__burgess_j.tex
davis__mark_h_a ./texfiles/davis__mark_h_a.tex
davis__richard_a ./texfiles/davis__richard_a.tex
davison__anthony_c ./texfiles/davison__anthony_c.tex
dawid__a_philip ./texfiles/dawid__a_philip.tex
dawson__donald_a ./texfiles/dawson__donald_a.tex
de_acosta__alejandro ./texfiles/de_acosta__alejandro.tex
de_finetti__bruno ./texfiles/de_finetti__bruno.tex
de_haan__laurens ./texfiles/de_haan__laurens.tex
de_la_pena__victor_h ./texfiles/de_la_pena__victor_h.tex
de_leeuw__jan ./texfiles/de_leeuw__jan.tex
dean__angela_m ./texfiles/dean__angela_m.tex
degroot__morris_h ./texfiles/degroot__morris_h.tex
deheuvels__paul ./texfiles/deheuvels__paul.tex
delaigle__aurore ./texfiles/delaigle__aurore.tex
delbaen__freddy ./texfiles/delbaen__freddy.tex
dembo__amir ./texfiles/dembo__amir.tex
deming__w_edwards ./texfiles/deming__w_edwards.tex
dempster__arthur_p ./texfiles/dempster__arthur_p.tex
den_hollander__frank ./texfiles/den_hollander__frank.tex
derman__cyrus ./texfiles/derman__cyrus.tex
deshpande__jayant_v ./texfiles/deshpande__jayant_v.tex
dette__holger ./texfiles/dette__holger.tex
dey__dipak_k ./texfiles/dey__dipak_k.tex
diaconis__persi_w ./texfiles/diaconis__persi_w.tex
diciccio__thomas_j ./texfiles/diciccio__thomas_j.tex
dickey__james_m ./texfiles/dickey__james_m.tex
dieulefait__carlos_e ./texfiles/dieulefait__carlos_e.tex
dixon__wilfrid_j ./texfiles/dixon__wilfrid_j.tex
dodd__edward_l ./texfiles/dodd__edward_l.tex
dodge__harold_f ./texfiles/dodge__harold_f.tex
doksum__kjell_a ./texfiles/doksum__kjell_a.tex
doney__ronald_a ./texfiles/doney__ronald_a.tex
donnelly__peter_j ./texfiles/donnelly__peter_j.tex
donoho__david_l ./texfiles/donoho__david_l.tex
donoho__miriam_gasko ./texfiles/donoho__miriam_gasko.tex
doob__joseph_l ./texfiles/doob__joseph_l.tex
doss__hani ./texfiles/doss__hani.tex
draper__david ./texfiles/draper__david.tex
draper__norman_r ./texfiles/draper__norman_r.tex
dryden__ian_l ./texfiles/dryden__ian_l.tex
duan__naihua ./texfiles/duan__naihua.tex
dubins__lester_e ./texfiles/dubins__lester_e.tex
dudewicz__edward_j ./texfiles/dudewicz__edward_j.tex
dudley__richard_m ./texfiles/dudley__richard_m.tex
dugue__daniel ./texfiles/dugue__daniel.tex
dumouchel__william ./texfiles/dumouchel__william.tex
duncan__acheson_j ./texfiles/duncan__acheson_j.tex
duncan__david_b ./texfiles/duncan__david_b.tex
dunson__david_b ./tex_files/dunson__david_b.tex
dupac__vaclav ./tex_files/dupac__vaclav.tex
dupuis__paul ./tex_files/dupuis__paul.tex
durbin__james ./tex_files/durbin__james.tex
durrett__richard_t ./tex_files/durrett__richard_t.tex
dvoretzky__aryeh ./tex_files/dvoretzky__aryeh.tex
dwass__meyer ./tex_files/dwass__meyer.tex
dwyer__paul_s ./tex_files/dwyer__paul_s.tex
dykstra__richard_l ./tex_files/dykstra__richard_l.tex
dynkin__eugene_b ./tex_files/dynkin__eugene_b.tex
eagleson__geoffrey_k ./tex_files/eagleson__geoffrey_k.tex
eaton__morris_l ./tex_files/eaton__morris_l.tex
eddy__william_f ./tex_files/eddy__william_f.tex
efromovich__sam ./tex_files/efromovich__sam.tex
efron__bradley ./tex_files/efron__bradley.tex
einmahl__john_h_j ./tex_files/einmahl__john_h_j.tex
einmahl__uwe ./tex_files/einmahl__uwe.tex
eisenhart__churchill ./tex_files/eisenhart__churchill.tex
elashoff__robert_m ./tex_files/elashoff__robert_m.tex
elfving__gustav ./tex_files/elfving__gustav.tex
ellis__richard_s ./tex_files/ellis__richard_s.tex
elston__robert_c ./tex_files/elston__robert_c.tex
embrechts__paul ./tex_files/embrechts__paul.tex
epstein__benjamin ./tex_files/epstein__benjamin.tex
esary__james_d ./tex_files/esary__james_d.tex
esseen__carl-gustav ./tex_files/esseen__carl-gustav.tex
ethier__stewart_n ./tex_files/ethier__stewart_n.tex
eubank__randall_l ./tex_files/eubank__randall_l.tex
evans__steven_n ./tex_files/evans__steven_n.tex
fabian__vaclav ./tex_files/fabian__vaclav.tex
fan__jianqing ./tex_files/fan__jianqing.tex
fang__kai-tai ./tex_files/fang__kai-tai.tex
farrell__roger_h ./tex_files/farrell__roger_h.tex
federer__walter_t ./tex_files/federer__walter_t.tex
feigin__paul_d ./tex_files/feigin__paul_d.tex
feller__william ./tex_files/feller__william.tex
ferguson__thomas_s ./tex_files/ferguson__thomas_s.tex
ferrari__pablo_a ./tex_files/ferrari__pablo_a.tex
feuerverger__andrey ./tex_files/feuerverger__andrey.tex
fienberg__stephen_e ./tex_files/fienberg__stephen_e.tex
fill__james_a ./tex_files/fill__james_a.tex
finney__david_j ./tex_files/finney__david_j.tex
fishburn__peter_c ./tex_files/fishburn__peter_c.tex
fisher__irving ./tex_files/fisher__irving.tex
fisher__lloyd_d ./tex_files/fisher__lloyd_d.tex
fisz__marek ./tex_files/fisz__marek.tex
fitzsimmons__patrick_j ./tex_files/fitzsimmons__patrick_j.tex
fix__evelyn ./tex_files/fix__evelyn.tex
flournoy__nancy ./tex_files/flournoy__nancy.tex
follmer__hans ./tex_files/follmer__hans.tex
fortet__robert ./tex_files/fortet__robert.tex
foster__dean_p ./tex_files/foster__dean_p.tex
fouque__jean-pierre ./tex_files/fouque__jean-pierre.tex
fox__martin ./tex_files/fox__martin.tex
fraser__donald_a_s ./tex_files/fraser__donald_a_s.tex
freedman__david_a ./tex_files/freedman__david_a.tex
friedman__milton ./tex_files/friedman__milton.tex
frisch__ragnar_a ./tex_files/frisch__ragnar_a.tex
fristedt__bert ./tex_files/fristedt__bert.tex
fry__thornton_c ./tex_files/fry__thornton_c.tex
fu__james_c ./tex_files/fu__james_c.tex
fujikoshi__yasunori ./tex_files/fujikoshi__yasunori.tex
fuller__wayne_a ./tex_files/fuller__wayne_a.tex
fung__wing-kam ./tex_files/fung__wing-kam.tex
gabriel__k_ruben ./tex_files/gabriel__k_ruben.tex
gaenssler__peter_e ./tex_files/gaenssler__peter_e.tex
galambos__janos ./tex_files/galambos__janos.tex
gani__joseph_m ./tex_files/gani__joseph_m.tex
gart__john_j ./tex_files/gart__john_j.tex
gastwirth__joseph_l ./tex_files/gastwirth__joseph_l.tex
gaver__donald_p ./tex_files/gaver__donald_p.tex
geary__robert_c ./tex_files/geary__robert_c.tex
geiringer__hilda ./tex_files/geiringer__hilda.tex
geisser__seymour ./tex_files/geisser__seymour.tex
gelfand__alan_e ./tex_files/gelfand__alan_e.tex
gelman__andrew ./tex_files/gelman__andrew.tex
geman__donald_j ./tex_files/geman__donald_j.tex
geman__stuart_a ./tex_files/geman__stuart_a.tex
genest__christian ./tex_files/genest__christian.tex
genovese__christopher_r ./tex_files/genovese__christopher_r.tex
genton__marc_g ./tex_files/genton__marc_g.tex
george__edward_i ./tex_files/george__edward_i.tex
getoor__ronald_k ./tex_files/getoor__ronald_k.tex
ghosal__subhashis ./tex_files/ghosal__subhashis.tex
ghosh__bhaskar_k ./tex_files/ghosh__bhaskar_k.tex
ghosh__jayanta_k ./tex_files/ghosh__jayanta_k.tex
ghosh__malay ./tex_files/ghosh__malay.tex
ghurye__sudhish_g ./tex_files/ghurye__sudhish_g.tex
gidas__basilis ./tex_files/gidas__basilis.tex
gijbels__irene ./tex_files/gijbels__irene.tex
gilford__dorothy_m ./tex_files/gilford__dorothy_m.tex
gill__richard_d ./tex_files/gill__richard_d.tex
gine-masdeu__evarist ./tex_files/gine-masdeu__evarist.tex
giri__narayan_c ./tex_files/giri__narayan_c.tex
girshick__meyer_a ./tex_files/girshick__meyer_a.tex
glaz__joseph ./tex_files/glaz__joseph.tex
gleser__leon_j ./tex_files/gleser__leon_j.tex
glynn__peter_w ./tex_files/glynn__peter_w.tex
gnanadesikan__ramanathan ./tex_files/gnanadesikan__ramanathan.tex
gnedenko__boris_v ./tex_files/gnedenko__boris_v.tex
gneiting__tilmann ./tex_files/gneiting__tilmann.tex
godambe__v_p ./tex_files/godambe__v_p.tex
goel__prem_k ./tex_files/goel__prem_k.tex
goetze__friedrich ./tex_files/goetze__friedrich.tex
goldstein__larry ./tex_files/goldstein__larry.tex
good__irving_j ./tex_files/good__irving_j.tex
goodman__leo_a ./tex_files/goodman__leo_a.tex
goodman__victor_w ./tex_files/goodman__victor_w.tex
gordon__louis ./tex_files/gordon__louis.tex
gorostiza__luis_g ./tex_files/gorostiza__luis_g.tex
govindarajulu__z ./tex_files/govindarajulu__z.tex
gray__lawrence_f ./tex_files/gray__lawrence_f.tex
gray__robert_m ./tex_files/gray__robert_m.tex
graybill__franklin_a ./tex_files/graybill__franklin_a.tex
green__peter_j ./tex_files/green__peter_j.tex
greenberg__bernard_g ./tex_files/greenberg__bernard_g.tex
greenhouse__samuel_w ./tex_files/greenhouse__samuel_w.tex
greenwood__priscilla_e ./tex_files/greenwood__priscilla_e.tex
grenander__ulf ./tex_files/grenander__ulf.tex
griffeath__david ./tex_files/griffeath__david.tex
griffiths__robert_c ./tex_files/griffiths__robert_c.tex
grimmett__geoffrey_r ./tex_files/grimmett__geoffrey_r.tex
groeneboom__piet ./tex_files/groeneboom__piet.tex
grubbs__frank_e ./tex_files/grubbs__frank_e.tex
gumbel__emil_j ./tex_files/gumbel__emil_j.tex
gundy__richard_f ./tex_files/gundy__richard_f.tex
gupta__shanti_s ./tex_files/gupta__shanti_s.tex
gurland__john ./tex_files/gurland__john.tex
gut__allan ./tex_files/gut__allan.tex
guttman__irwin ./tex_files/guttman__irwin.tex
guttman__louis ./tex_files/guttman__louis.tex
haavelmo__trygve_m ./tex_files/haavelmo__trygve_m.tex
haberman__shelby_j ./tex_files/haberman__shelby_j.tex
haerdle__wolfgang_k ./tex_files/haerdle__wolfgang_k.tex
hahn__marjorie_g ./tex_files/hahn__marjorie_g.tex
hajek__jaroslav ./tex_files/hajek__jaroslav.tex
hald__anders_h ./tex_files/hald__anders_h.tex
hall__peter_g ./tex_files/hall__peter_g.tex
hall__w_j ./tex_files/hall__w_j.tex
hallin__marc ./tex_files/hallin__marc.tex
halperin__max ./tex_files/halperin__max.tex
hammersley__j_m ./tex_files/hammersley__j_m.tex
hannan__james_f ./tex_files/hannan__james_f.tex
hansen__morris_h ./tex_files/hansen__morris_h.tex
hanson__david_l ./tex_files/hanson__david_l.tex
harkness__william_l ./tex_files/harkness__william_l.tex
harrington__david_p ./tex_files/harrington__david_p.tex
harris__bernard ./tex_files/harris__bernard.tex
harris__theodore_e ./tex_files/harris__theodore_e.tex
harrison__j_michael ./tex_files/harrison__j_michael.tex
harshbarger__boyd ./tex_files/harshbarger__boyd.tex
hart__jeffrey_d ./tex_files/hart__jeffrey_d.tex
harter__h_leon ./tex_files/harter__h_leon.tex
hartigan__john_a ./tex_files/hartigan__john_a.tex
hartley__h_o ./tex_files/hartley__h_o.tex
harville__david_a ./tex_files/harville__david_a.tex
hastie__trevor_j ./tex_files/hastie__trevor_j.tex
he__xuming ./tex_files/he__xuming.tex
heathcote__christopher_r ./tex_files/heathcote__christopher_r.tex
heckman__nancy_e ./tex_files/heckman__nancy_e.tex
hedayat__a_s ./tex_files/hedayat__a_s.tex
heitjan__daniel_f ./tex_files/heitjan__daniel_f.tex
hemelrijk__jan ./tex_files/hemelrijk__jan.tex
henderson__robert ./tex_files/henderson__robert.tex
herzberg__agnes_m ./tex_files/herzberg__agnes_m.tex
hettmansperger__thomas_p ./tex_files/hettmansperger__thomas_p.tex
heyde__christopher_c ./tex_files/heyde__christopher_c.tex
hickernell__fred_j ./tex_files/hickernell__fred_j.tex
hildreth__clifford_g ./tex_files/hildreth__clifford_g.tex
hill__bruce_m ./tex_files/hill__bruce_m.tex
hill__theodore_p ./tex_files/hill__theodore_p.tex
hinich__melvin_j ./tex_files/hinich__melvin_j.tex
hinkley__david_v ./tex_files/hinkley__david_v.tex
hobert__james_p ./tex_files/hobert__james_p.tex
hodges_jr__joseph_l ./tex_files/hodges_jr__joseph_l.tex
hoeffding__wassily ./tex_files/hoeffding__wassily.tex
hoel__paul_g ./tex_files/hoel__paul_g.tex
hogg__robert_v ./tex_files/hogg__robert_v.tex
holland__paul_w ./tex_files/holland__paul_w.tex
hollander__myles ./tex_files/hollander__myles.tex
holley__richard_a ./tex_files/holley__richard_a.tex
holmes__susan ./tex_files/holmes__susan.tex
hoppe__fred_m ./tex_files/hoppe__fred_m.tex
horst__a_paul ./tex_files/horst__a_paul.tex
horvath__lajos ./tex_files/horvath__lajos.tex
hosoya__yuzo ./tex_files/hosoya__yuzo.tex
hotelling__harold ./tex_files/hotelling__harold.tex
houdre__christian ./tex_files/houdre__christian.tex
hsing__tailen ./tex_files/hsing__tailen.tex
hsiung__agnes_chao ./tex_files/hsiung__agnes_chao.tex
hsu__pao-lu ./tex_files/hsu__pao-lu.tex
hu__feifang ./tex_files/hu__feifang.tex
hu__inchi ./tex_files/hu__inchi.tex
huang__jianhua_z ./tex_files/huang__jianhua_z.tex
huber__peter_j ./tex_files/huber__peter_j.tex
huntington__edward_v ./tex_files/huntington__edward_v.tex
hurwitz__william_n ./tex_files/hurwitz__william_n.tex
huskova__marie ./tex_files/huskova__marie.tex
hwang__j_t_gene ./tex_files/hwang__j_t_gene.tex
ibragimov__ildar_a ./tex_files/ibragimov__ildar_a.tex
ibrahim__joseph_g ./tex_files/ibrahim__joseph_g.tex
iglehart__donald_l ./tex_files/iglehart__donald_l.tex
ingraham__mark_h ./tex_files/ingraham__mark_h.tex
irwin__j_o ./tex_files/irwin__j_o.tex
jackson__dunham ./tex_files/jackson__dunham.tex
jacobs__konrad ./tex_files/jacobs__konrad.tex
jagers__peter ./tex_files/jagers__peter.tex
jain__naresh_c ./tex_files/jain__naresh_c.tex
jakubowski__adam ./tex_files/jakubowski__adam.tex
james__alan_t ./tex_files/james__alan_t.tex
james__lancelot_f ./tex_files/james__lancelot_f.tex
jammalamadaka__s_rao ./tex_files/jammalamadaka__s_rao.tex
jenkins__gwilym_m ./tex_files/jenkins__gwilym_m.tex
jennrich__robert_i ./tex_files/jennrich__robert_i.tex
jewell__nicholas_p ./tex_files/jewell__nicholas_p.tex
jiang__jiming ./tex_files/jiang__jiming.tex
jin__jiashun ./tex_files/jin__jiashun.tex
johansen__soren ./tex_files/johansen__soren.tex
john__peter_w_m ./tex_files/john__peter_w_m.tex
johns_jr__m_vernon ./tex_files/johns_jr__m_vernon.tex
johnson__norman_l ./tex_files/johnson__norman_l.tex
johnson__richard_a ./tex_files/johnson__richard_a.tex
johnson__wesley_o ./tex_files/johnson__wesley_o.tex
johnstone__iain_m ./tex_files/johnstone__iain_m.tex
jones__m_chris ./tex_files/jones__m_chris.tex
jordan__charles ./tex_files/jordan__charles.tex
jordan__michael_i ./tex_files/jordan__michael_i.tex
joshi__v_m ./tex_files/joshi__v_m.tex
junker__brian_w ./tex_files/junker__brian_w.tex
jureckova__jana ./tex_files/jureckova__jana.tex
kac__mark ./tex_files/kac__mark.tex
kadane__joseph_b ./tex_files/kadane__joseph_b.tex
kailath__thomas ./tex_files/kailath__thomas.tex
kalbfleisch__john_d ./tex_files/kalbfleisch__john_d.tex
kallenberg__olav_h ./tex_files/kallenberg__olav_h.tex
kallianpur__gopinath ./tex_files/kallianpur__gopinath.tex
kampe_de_feriet__marie-joseph ./tex_files/kampe_de_feriet__marie-joseph.tex
karatzas__ioannis ./tex_files/karatzas__ioannis.tex
kariya__takeaki ./tex_files/kariya__takeaki.tex
karlin__samuel ./tex_files/karlin__samuel.tex
karr__alan_f ./tex_files/karr__alan_f.tex
kaspi__haya ./tex_files/kaspi__haya.tex
kass__robert_e ./tex_files/kass__robert_e.tex
katz__leo ./tex_files/katz__leo.tex
kawata__tatsuo ./tex_files/kawata__tatsuo.tex
keener__robert_w ./tex_files/keener__robert_w.tex
keiding__niels ./tex_files/keiding__niels.tex
keilson__julian ./tex_files/keilson__julian.tex
kelley__truman_l ./tex_files/kelley__truman_l.tex
kemperman__johannes_h_b ./tex_files/kemperman__johannes_h_b.tex
kempthorne__oscar ./tex_files/kempthorne__oscar.tex
kendall__david_g ./tex_files/kendall__david_g.tex
kendall__maurice_g ./tex_files/kendall__maurice_g.tex
kendall__wilfrid_s ./tex_files/kendall__wilfrid_s.tex
kent__john_t ./tex_files/kent__john_t.tex
kesten__harry ./tex_files/kesten__harry.tex
khasminskii__rafail_z ./tex_files/khasminskii__rafail_z.tex
khatri__c_g ./tex_files/khatri__c_g.tex
khmaladze__estate_v ./tex_files/khmaladze__estate_v.tex
kiefer__jack_c ./tex_files/kiefer__jack_c.tex
kingman__john_f_c ./tex_files/kingman__john_f_c.tex
kitagawa__tosio ./tex_files/kitagawa__tosio.tex
klaassen__chris_a_j ./tex_files/klaassen__chris_a_j.tex
klass__michael_j ./tex_files/klass__michael_j.tex
klebaner__fima_c ./tex_files/klebaner__fima_c.tex
klonecki__witold ./tex_files/klonecki__witold.tex
klotz__jerome_h ./tex_files/klotz__jerome_h.tex
kluppelberg__claudia ./tex_files/kluppelberg__claudia.tex
knight__frank_b ./tex_files/knight__frank_b.tex
koenker__roger ./tex_files/koenker__roger.tex
kohn__robert_j ./tex_files/kohn__robert_j.tex
kolassa__john_e ./tex_files/kolassa__john_e.tex
koltchinskii__vladimir ./tex_files/koltchinskii__vladimir.tex
koopmans__lambert_h ./tex_files/koopmans__lambert_h.tex
koopmans__tjalling_c ./tex_files/koopmans__tjalling_c.tex
kosorok__michael_r ./tex_files/kosorok__michael_r.tex
kotz__samuel ./tex_files/kotz__samuel.tex
kou__s_c_samuel ./tex_files/kou__s_c_samuel.tex
koul__hira_l ./tex_files/koul__hira_l.tex
koziol__james_a ./tex_files/koziol__james_a.tex
kraft__charles_h ./tex_files/kraft__charles_h.tex
krengel__ulrich ./tex_files/krengel__ulrich.tex
krickeberg__klaus ./tex_files/krickeberg__klaus.tex
krieger__abba_m ./tex_files/krieger__abba_m.tex
krishnaiah__paruchuri_r ./tex_files/krishnaiah__paruchuri_r.tex
kruskal__william_h ./tex_files/kruskal__william_h.tex
kshirsagar__anant_m ./tex_files/kshirsagar__anant_m.tex
kudo__hirokichi ./tex_files/kudo__hirokichi.tex
kuelbs__james_d ./tex_files/kuelbs__james_d.tex
kullback__solomon ./tex_files/kullback__solomon.tex
kulldorff__gunnar ./tex_files/kulldorff__gunnar.tex
kunsch__hans_r ./tex_files/kunsch__hans_r.tex
kurtz__thomas_g ./tex_files/kurtz__thomas_g.tex
lagakos__stephen_w ./tex_files/lagakos__stephen_w.tex
laha__radha_g ./tex_files/laha__radha_g.tex
lahiri__parthasarathi ./tex_files/lahiri__parthasarathi.tex
lahiri__soumendra_n ./tex_files/lahiri__soumendra_n.tex
lai__tze_leung ./tex_files/lai__tze_leung.tex
laird__nan_m ./tex_files/laird__nan_m.tex
lalley__steven_p ./tex_files/lalley__steven_p.tex
lambert__diane_m ./tex_files/lambert__diane_m.tex
lamperti__john_w ./tex_files/lamperti__john_w.tex
lancaster__henry_o ./tex_files/lancaster__henry_o.tex
lane__david_a ./tex_files/lane__david_a.tex
lange__kenneth ./tex_files/lange__kenneth.tex
lauritzen__steffen_l ./tex_files/lauritzen__steffen_l.tex
lawler__gregory_f ./tex_files/lawler__gregory_f.tex
lawless__jerald_f ./tex_files/lawless__jerald_f.tex
le_cam__lucien_m ./tex_files/le_cam__lucien_m.tex
le_gall__jean-francois ./tex_files/le_gall__jean-francois.tex
leadbetter__m_ross ./tex_files/leadbetter__m_ross.tex
ledoux__michel ./tex_files/ledoux__michel.tex
lee__mei-ling_ting ./tex_files/lee__mei-ling_ting.tex
lehmann__erich_l ./tex_files/lehmann__erich_l.tex
lehoczky__john_p ./tex_files/lehoczky__john_p.tex
levene__howard ./tex_files/levene__howard.tex
lewis__peter_a_w ./tex_files/lewis__peter_a_w.tex
li__bing ./tex_files/li__bing.tex
li__gang ./tex_files/li__gang.tex
li__hongzhe ./tex_files/li__hongzhe.tex
li__ker-chau ./tex_files/li__ker-chau.tex
li__runze ./tex_files/li__runze.tex
li__wai_keung ./tex_files/li__wai_keung.tex
li__wenbo_v ./tex_files/li__wenbo_v.tex
li__zenghu ./tex_files/li__zenghu.tex
liang__faming ./tex_files/liang__faming.tex
liang__hua ./tex_files/liang__hua.tex
lieberman__gerald_j ./tex_files/lieberman__gerald_j.tex
liggett__thomas_m ./tex_files/liggett__thomas_m.tex
lii__keh-shin ./tex_files/lii__keh-shin.tex
lin__danyu ./tex_files/lin__danyu.tex
lin__dennis_k_j ./tex_files/lin__dennis_k_j.tex
lin__xihong ./tex_files/lin__xihong.tex
lin__zhenyang ./tex_files/lin__zhenyang.tex
linder__arthur ./tex_files/linder__arthur.tex
lindgren__georg ./tex_files/lindgren__georg.tex
lindley__dennis_v ./tex_files/lindley__dennis_v.tex
lindsay__bruce_g ./tex_files/lindsay__bruce_g.tex
linnik__yuri_v ./tex_files/linnik__yuri_v.tex
linton__oliver_b ./tex_files/linton__oliver_b.tex
liu__jun ./tex_files/liu__jun.tex
liu__regina_y ./tex_files/liu__regina_y.tex
lloyd__stuart_p ./tex_files/lloyd__stuart_p.tex
lo__albert_y ./tex_files/lo__albert_y.tex
lo__shaw-hwa ./tex_files/lo__shaw-hwa.tex
loeve__michel ./tex_files/loeve__michel.tex
loh__wei-liem ./tex_files/loh__wei-liem.tex
loh__wei-yin ./tex_files/loh__wei-yin.tex
lord__frederic_m ./tex_files/lord__frederic_m.tex
lorden__gary ./tex_files/lorden__gary.tex
lotka__alfred_j ./tex_files/lotka__alfred_j.tex
low__mark_g ./tex_files/low__mark_g.tex
loynes__robert_m ./tex_files/loynes__robert_m.tex
lukacs__eugene ./tex_files/lukacs__eugene.tex
lyons__terence_j ./tex_files/lyons__terence_j.tex
ma__zhiming ./tex_files/ma__zhiming.tex
macgibbon__k_brenda ./tex_files/macgibbon__k_brenda.tex
macneill__ian_b ./tex_files/macneill__ian_b.tex
macqueen__james_b ./tex_files/macqueen__james_b.tex
madansky__albert ./tex_files/madansky__albert.tex
madigan__david ./tex_files/madigan__david.tex
madow__william_g ./tex_files/madow__william_g.tex
madras__neal_n ./tex_files/madras__neal_n.tex
maiti__tapabrata ./tex_files/maiti__tapabrata.tex
mallick__bani_k ./tex_files/mallick__bani_k.tex
mallows__colin_l ./tex_files/mallows__colin_l.tex
mammen__enno ./tex_files/mammen__enno.tex
mandelbrot__benoit_b ./tex_files/mandelbrot__benoit_b.tex
mann__henry_b ./tex_files/mann__henry_b.tex
mantel__nathan ./tex_files/mantel__nathan.tex
marcus__michael_b ./tex_files/marcus__michael_b.tex
marden__john_i ./tex_files/marden__john_i.tex
mardia__kanti_v ./tex_files/mardia__kanti_v.tex
maritz__johannes_s ./tex_files/maritz__johannes_s.tex
marron__j_s ./tex_files/marron__j_s.tex
marschak__jacob ./tex_files/marschak__jacob.tex
marshall__albert_w ./tex_files/marshall__albert_w.tex
martinsek__adam_t ./tex_files/martinsek__adam_t.tex
mason__david_m ./tex_files/mason__david_m.tex
massam__helene_m ./tex_files/massam__helene_m.tex
masuyama__motosaburo ./tex_files/masuyama__motosaburo.tex
matern__bertil ./tex_files/matern__bertil.tex
mathai__a_m ./tex_files/mathai__a_m.tex
mathew__thomas ./tex_files/mathew__thomas.tex
mattingly__jonathan_c ./tex_files/mattingly__jonathan_c.tex
matusita__kameo ./tex_files/matusita__kameo.tex
mccullagh__peter ./tex_files/mccullagh__peter.tex
mcdonald__david_r ./tex_files/mcdonald__david_r.tex
mcdonald__gary_c ./tex_files/mcdonald__gary_c.tex
mckeague__ian_w ./tex_files/mckeague__ian_w.tex
mcleish__don_l ./tex_files/mcleish__don_l.tex
meeden__glen_d ./tex_files/meeden__glen_d.tex
meier__paul ./tex_files/meier__paul.tex
meng__xiao-li ./tex_files/meng__xiao-li.tex
mengersen__kerrie_lee ./tex_files/mengersen__kerrie_lee.tex
meyer__paul_l ./tex_files/meyer__paul_l.tex
michailidis__george ./tex_files/michailidis__george.tex
mikosch__thomas ./tex_files/mikosch__thomas.tex
millar__p_warwick ./tex_files/millar__p_warwick.tex
miller_jr__rupert_g ./tex_files/miller_jr__rupert_g.tex
mitra__s_k ./tex_files/mitra__s_k.tex
mittal__yashaswini_d ./tex_files/mittal__yashaswini_d.tex
molina__edward_c ./tex_files/molina__edward_c.tex
mood__alexander_m ./tex_files/mood__alexander_m.tex
moore__david_s ./tex_files/moore__david_s.tex
moriguti__sigeiti ./tex_files/moriguti__sigeiti.tex
morris__carl_n ./tex_files/morris__carl_n.tex
morrison__donald_f ./tex_files/morrison__donald_f.tex
moses__lincoln_e ./tex_files/moses__lincoln_e.tex
mosteller__frederick ./tex_files/mosteller__frederick.tex
motoo__minoru ./tex_files/motoo__minoru.tex
mountford__thomas_s ./tex_files/mountford__thomas_s.tex
mudholkar__govind_s ./tex_files/mudholkar__govind_s.tex
mueller__peter ./tex_files/mueller__peter.tex
muirhead__robb_j ./tex_files/muirhead__robb_j.tex
mukerjee__rahul ./tex_files/mukerjee__rahul.tex
mukhopadhyay__nitis ./tex_files/mukhopadhyay__nitis.tex
muller__hans-georg ./tex_files/muller__hans-georg.tex
murphy__susan_a ./tex_files/murphy__susan_a.tex
mykland__per_a ./tex_files/mykland__per_a.tex
mytnik__leonid ./tex_files/mytnik__leonid.tex
naiman__daniel_q ./tex_files/naiman__daniel_q.tex
nair__vijayan_n ./tex_files/nair__vijayan_n.tex
neuts__marcel_f ./tex_files/neuts__marcel_f.tex
neveu__jacques ./tex_files/neveu__jacques.tex
newman__charles_m ./tex_files/newman__charles_m.tex
ney__peter_e ./tex_files/ney__peter_e.tex
neyman__jerzy ./tex_files/neyman__jerzy.tex
nicholson_jr__george_e ./tex_files/nicholson_jr__george_e.tex
nikitin__yakov ./tex_files/nikitin__yakov.tex
nobel__andrew_b ./tex_files/nobel__andrew_b.tex
noether__gottfried_e ./tex_files/noether__gottfried_e.tex
nolan__deborah ./tex_files/nolan__deborah.tex
nualart__david ./tex_files/nualart__david.tex
nummelin__esa_i ./tex_files/nummelin__esa_i.tex
nussbaum__michael ./tex_files/nussbaum__michael.tex
oakes__david ./tex_files/oakes__david.tex
obrien__george_l ./tex_files/obrien__george_l.tex
odeh__robert_e ./tex_files/odeh__robert_e.tex
ogawa__junjiro ./tex_files/ogawa__junjiro.tex
oja__hannu ./tex_files/oja__hannu.tex
olds__edwin_g ./tex_files/olds__edwin_g.tex
olkin__ingram ./tex_files/olkin__ingram.tex
olshen__richard_a ./tex_files/olshen__richard_a.tex
oneill__terence_j ./tex_files/oneill__terence_j.tex
oosterhoff__jacobus ./tex_files/oosterhoff__jacobus.tex
opsomer__jean_d ./tex_files/opsomer__jean_d.tex
otoole__alphonsus_l ./tex_files/otoole__alphonsus_l.tex
owen__art_b ./tex_files/owen__art_b.tex
owen__donald_b ./tex_files/owen__donald_b.tex
padgett__william_j ./tex_files/padgett__william_j.tex
papangelou__fredos ./tex_files/papangelou__fredos.tex
park__byeong_u ./tex_files/park__byeong_u.tex
parthasarathy__p_r ./tex_files/parthasarathy__p_r.tex
parzen__emanuel ./tex_files/parzen__emanuel.tex
pathak__pramod_k ./tex_files/pathak__pramod_k.tex
patil__ganapati_p ./tex_files/patil__ganapati_p.tex
paulson__edward ./tex_files/paulson__edward.tex
pearson__egon_s ./tex_files/pearson__egon_s.tex
peligrad__magda ./tex_files/peligrad__magda.tex
pemantle__robin ./tex_files/pemantle__robin.tex
pena__daniel ./tex_files/pena__daniel.tex
peng__liang ./tex_files/peng__liang.tex
peng__shige ./tex_files/peng__shige.tex
peres__yuval ./tex_files/peres__yuval.tex
perez-abreu__victor_m ./tex_files/perez-abreu__victor_m.tex
perkins__edwin_a ./tex_files/perkins__edwin_a.tex
perlman__michael_d ./tex_files/perlman__michael_d.tex
pfanzagl__johann ./tex_files/pfanzagl__johann.tex
philipp__walter ./tex_files/philipp__walter.tex
phillips__peter_c_b ./tex_files/phillips__peter_c_b.tex
pierce__donald_a ./tex_files/pierce__donald_a.tex
pillai__k_c_s ./tex_files/pillai__k_c_s.tex
pinsky__mark_a ./tex_files/pinsky__mark_a.tex
pisier__gilles_i ./tex_files/pisier__gilles_i.tex
pitman__edwin_j_g ./tex_files/pitman__edwin_j_g.tex
pitman__james_w ./tex_files/pitman__james_w.tex
pitt__loren_d ./tex_files/pitt__loren_d.tex
pittenger__arthur_o ./tex_files/pittenger__arthur_o.tex
plackett__robin_l ./tex_files/plackett__robin_l.tex
politis__dimitris_n ./tex_files/politis__dimitris_n.tex
pollak__moshe ./tex_files/pollak__moshe.tex
pollard__david ./tex_files/pollard__david.tex
polonik__wolfgang ./tex_files/polonik__wolfgang.tex
polzehl__joerg ./tex_files/polzehl__joerg.tex
poor__h_vincent ./tex_files/poor__h_vincent.tex
port__sidney_c ./tex_files/port__sidney_c.tex
portnoy__stephen_l ./tex_files/portnoy__stephen_l.tex
prabhu__n_u ./tex_files/prabhu__n_u.tex
prakasa-rao__b_l_s ./tex_files/prakasa-rao__b_l_s.tex
pratt__john_w ./tex_files/pratt__john_w.tex
press__s_james ./tex_files/press__s_james.tex
priestley__maurice_b ./tex_files/priestley__maurice_b.tex
proschan__frank ./tex_files/proschan__frank.tex
protter__philip_e ./tex_files/protter__philip_e.tex
pruitt__william_e ./tex_files/pruitt__william_e.tex
pukelsheim__friedrich ./tex_files/pukelsheim__friedrich.tex
purdue__peter ./tex_files/purdue__peter.tex
puri__madan_l ./tex_files/puri__madan_l.tex
puri__prem_s ./tex_files/puri__prem_s.tex
pyke__ronald ./tex_files/pyke__ronald.tex
qiu__peihua ./tex_files/qiu__peihua.tex
quenouille__maurice_h ./tex_files/quenouille__maurice_h.tex
rachev__svetlozar_t ./tex_files/rachev__svetlozar_t.tex
raftery__adrian_e ./tex_files/raftery__adrian_e.tex
raghavachari__madabhushi ./tex_files/raghavachari__madabhushi.tex
raghavarao__damaraju ./tex_files/raghavarao__damaraju.tex
raiffa__howard ./tex_files/raiffa__howard.tex
raktoe__b_leo ./tex_files/raktoe__b_leo.tex
ramanan__kavita ./tex_files/ramanan__kavita.tex
randles__ronald_h ./tex_files/randles__ronald_h.tex
rao__c_r ./tex_files/rao__c_r.tex
rao__j_n_k ./tex_files/rao__j_n_k.tex
rao__m_m ./tex_files/rao__m_m.tex
rao__marepalli_b ./tex_files/rao__marepalli_b.tex
rasch__dieter ./tex_files/rasch__dieter.tex
reed__lowell_j ./tex_files/reed__lowell_j.tex
regazzini__eugenio ./tex_files/regazzini__eugenio.tex
reid__nancy_m ./tex_files/reid__nancy_m.tex
reiersol__olav ./tex_files/reiersol__olav.tex
reinsel__gregory_c ./tex_files/reinsel__gregory_c.tex
reiss__rolf-dieter ./tex_files/reiss__rolf-dieter.tex
renyi__alfred ./tex_files/renyi__alfred.tex
resnick__sidney_i ./tex_files/resnick__sidney_i.tex
resnikoff__george_j ./tex_files/resnikoff__george_j.tex
revesz__pal ./tex_files/revesz__pal.tex
rice__john_a ./tex_files/rice__john_a.tex
richards__donald_st_p ./tex_files/richards__donald_st_p.tex
rider__paul_r ./tex_files/rider__paul_r.tex
rietz__henry_l ./tex_files/rietz__henry_l.tex
rinott__yosef ./tex_files/rinott__yosef.tex
riordan__john ./tex_files/riordan__john.tex
rios__sixto ./tex_files/rios__sixto.tex
ripley__brian_d ./tex_files/ripley__brian_d.tex
ritov__yaacov ./tex_files/ritov__yaacov.tex
robbins__herbert_e ./tex_files/robbins__herbert_e.tex
robert__christian_p ./tex_files/robert__christian_p.tex
robertson__timothy_j ./tex_files/robertson__timothy_j.tex
robinson__john ./tex_files/robinson__john.tex
robinson__peter_m ./tex_files/robinson__peter_m.tex
roeder__kathryn ./tex_files/roeder__kathryn.tex
rojo__javier ./tex_files/rojo__javier.tex
rolph__john_e ./tex_files/rolph__john_e.tex
romano__joseph_p ./tex_files/romano__joseph_p.tex
roos__charles_f ./tex_files/roos__charles_f.tex
rootzen__holger ./tex_files/rootzen__holger.tex
rosen__jay_s ./tex_files/rosen__jay_s.tex
rosenberger__william_f ./tex_files/rosenberger__william_f.tex
rosenblatt__joan_r ./tex_files/rosenblatt__joan_r.tex
rosenblatt__judah_i ./tex_files/rosenblatt__judah_i.tex
rosenblatt__murray ./tex_files/rosenblatt__murray.tex
rosenthal__jeffrey_s ./tex_files/rosenthal__jeffrey_s.tex
rosinski__jan ./tex_files/rosinski__jan.tex
ross__sheldon_m ./tex_files/ross__sheldon_m.tex
rota__gian-carlo ./tex_files/rota__gian-carlo.tex
roussas__george_g ./tex_files/roussas__george_g.tex
rousseeuw__peter_j ./tex_files/rousseeuw__peter_j.tex
roy__s_n ./tex_files/roy__s_n.tex
rozovsky__boris_l ./tex_files/rozovsky__boris_l.tex
ruben__harold ./tex_files/ruben__harold.tex
rubin__donald_b ./tex_files/rubin__donald_b.tex
rubin__herman ./tex_files/rubin__herman.tex
rukhin__andrew_l ./tex_files/rukhin__andrew_l.tex
ruppert__david ./tex_files/ruppert__david.tex
rustagi__jagdish_s ./tex_files/rustagi__jagdish_s.tex
ruymgaart__frits_h ./tex_files/ruymgaart__frits_h.tex
sackrowitz__harold_b ./tex_files/sackrowitz__harold_b.tex
sacks__jerome ./tex_files/sacks__jerome.tex
saleh__a_k_md_ehsanes ./tex_files/saleh__a_k_md_ehsanes.tex
salisbury__thomas_s ./tex_files/salisbury__thomas_s.tex
saloff-coste__laurent ./tex_files/saloff-coste__laurent.tex
samaniego__francisco_j ./tex_files/samaniego__francisco_j.tex
samorodnitsky__gennady ./tex_files/samorodnitsky__gennady.tex
sampson__allan_r ./tex_files/sampson__allan_r.tex
samuel-cahn__ester ./tex_files/samuel-cahn__ester.tex
santner__thomas_j ./tex_files/santner__thomas_j.tex
sanz-sole__marta ./tex_files/sanz-sole__marta.tex
sarkar__sanat_k ./tex_files/sarkar__sanat_k.tex
sarndal__carl-erik ./tex_files/sarndal__carl-erik.tex
savage__i_richard ./tex_files/savage__i_richard.tex
savage__leonard_j ./tex_files/savage__leonard_j.tex
savits__thomas_h ./tex_files/savits__thomas_h.tex
sawyer__stanley_a ./tex_files/sawyer__stanley_a.tex
scheffe__henry ./tex_files/scheffe__henry.tex
schervish__mark_j ./tex_files/schervish__mark_j.tex
schmetterer__leopold_k ./tex_files/schmetterer__leopold_k.tex
schonmann__roberto_h ./tex_files/schonmann__roberto_h.tex
schuster__eugene_f ./tex_files/schuster__eugene_f.tex
schwarz__gideon_e ./tex_files/schwarz__gideon_e.tex
scott__alastair_j ./tex_files/scott__alastair_j.tex
scott__david_w ./tex_files/scott__david_w.tex
scott__elizabeth_l ./tex_files/scott__elizabeth_l.tex
seely__justus_f ./tex_files/seely__justus_f.tex
seiden__esther ./tex_files/seiden__esther.tex
sellke__thomas_m ./tex_files/sellke__thomas_m.tex
sen__pranab_k ./tex_files/sen__pranab_k.tex
seppalainen__timo ./tex_files/seppalainen__timo.tex
serfling__robert_j ./tex_files/serfling__robert_j.tex
serfozo__richard_f ./tex_files/serfozo__richard_f.tex
sethuraman__jayaram ./tex_files/sethuraman__jayaram.tex
severo__norman_c ./tex_files/severo__norman_c.tex
shafer__glenn ./tex_files/shafer__glenn.tex
shaked__moshe ./tex_files/shaked__moshe.tex
shaman__paul ./tex_files/shaman__paul.tex
shao__jun ./tex_files/shao__jun.tex
shao__qi-man ./tex_files/shao__qi-man.tex
sharpe__michael_j ./tex_files/sharpe__michael_j.tex
shen__xiaotong ./tex_files/shen__xiaotong.tex
shepp__lawrence_a ./tex_files/shepp__lawrence_a.tex
shewhart__walter_a ./tex_files/shewhart__walter_a.tex
shohat__james_a ./tex_files/shohat__james_a.tex
shorack__galen_r ./tex_files/shorack__galen_r.tex
shreve__steven_e ./tex_files/shreve__steven_e.tex
shrikhande__s_s ./tex_files/shrikhande__s_s.tex
siegmund__david_o ./tex_files/siegmund__david_o.tex
silverman__bernard_w ./tex_files/silverman__bernard_w.tex
silverstein__jack_w ./tex_files/silverstein__jack_w.tex
silvey__s_d ./tex_files/silvey__s_d.tex
simon__leslie_e ./tex_files/simon__leslie_e.tex
simonoff__jeffrey_s ./tex_files/simonoff__jeffrey_s.tex
simons__gordon_d ./tex_files/simons__gordon_d.tex
simpson__douglas_g ./tex_files/simpson__douglas_g.tex
singh__kesar ./tex_files/singh__kesar.tex
singpurwalla__nozer_d ./tex_files/singpurwalla__nozer_d.tex
sinha__bimal_k ./tex_files/sinha__bimal_k.tex
sitgreaves-bowker__rosedith ./tex_files/sitgreaves-bowker__rosedith.tex
slade__gordon ./tex_files/slade__gordon.tex
slepian__david_s ./tex_files/slepian__david_s.tex
slud__eric_v ./tex_files/slud__eric_v.tex
smith__adrian_f_m ./tex_files/smith__adrian_f_m.tex
smith__richard_l ./tex_files/smith__richard_l.tex
smith__walter_l ./tex_files/smith__walter_l.tex
smythe__robert_t ./tex_files/smythe__robert_t.tex
snedecor__george_w ./tex_files/snedecor__george_w.tex
snell__j_laurie ./tex_files/snell__j_laurie.tex
sobel__milton ./tex_files/sobel__milton.tex
solomon__herbert ./tex_files/solomon__herbert.tex
sorensen__michael ./tex_files/sorensen__michael.tex
speckman__paul_l ./tex_files/speckman__paul_l.tex
speed__terence_p ./tex_files/speed__terence_p.tex
spiegelman__clifford_h ./tex_files/spiegelman__clifford_h.tex
spitzer__frank_l ./tex_files/spitzer__frank_l.tex
spjotvoll__emil_o ./tex_files/spjotvoll__emil_o.tex
spokoiny__vladimir ./tex_files/spokoiny__vladimir.tex
sprott__david_a ./tex_files/sprott__david_a.tex
srivastava__jagdish_n ./tex_files/srivastava__jagdish_n.tex
srivastava__muni_s ./tex_files/srivastava__muni_s.tex
steele__j_michael ./tex_files/steele__j_michael.tex
stein__charles_m ./tex_files/stein__charles_m.tex
stein__michael_l ./tex_files/stein__michael_l.tex
stephan__frederick_f ./tex_files/stephan__frederick_f.tex
stephens__michael_a ./tex_files/stephens__michael_a.tex
stern__hal_s ./tex_files/stern__hal_s.tex
stigler__stephen_m ./tex_files/stigler__stephen_m.tex
stone__charles_j ./tex_files/stone__charles_j.tex
storey__john_d ./tex_files/storey__john_d.tex
stout__william_f ./tex_files/stout__william_f.tex
stoyan__dietrich ./tex_files/stoyan__dietrich.tex
strawderman__robert_l ./tex_files/strawderman__robert_l.tex
strawderman__william_e ./tex_files/strawderman__william_e.tex
stuart__alan ./tex_files/stuart__alan.tex
studden__william_j ./tex_files/studden__william_j.tex
stufken__john ./tex_files/stufken__john.tex
stute__winfried ./tex_files/stute__winfried.tex
styan__george_p_h ./tex_files/styan__george_p_h.tex
sudderth__william_d ./tex_files/sudderth__william_d.tex
sun__dongchu ./tex_files/sun__dongchu.tex
sun__jianguo ./tex_files/sun__jianguo.tex
sun__jiayang ./tex_files/sun__jiayang.tex
susarla__v ./tex_files/susarla__v.tex
sverdrup__erling ./tex_files/sverdrup__erling.tex
switzer__paul ./tex_files/switzer__paul.tex
syski__ryszard ./tex_files/syski__ryszard.tex
szekely__gabor_j ./tex_files/szekely__gabor_j.tex
sznitman__alain-sol ./tex_files/sznitman__alain-sol.tex
takacs__lajos_f ./tex_files/takacs__lajos_f.tex
takeuchi__kei ./tex_files/takeuchi__kei.tex
tamhane__ajit_c ./tex_files/tamhane__ajit_c.tex
tang__boxin ./tex_files/tang__boxin.tex
taniguchi__masanobu ./tex_files/taniguchi__masanobu.tex
taqqu__murad_s ./tex_files/taqqu__murad_s.tex
tartakovsky__alexander_g ./tex_files/tartakovsky__alexander_g.tex
tate__robert_f ./tex_files/tate__robert_f.tex
tavare__simon ./tex_files/tavare__simon.tex
taylor__howard_m ./tex_files/taylor__howard_m.tex
taylor__robert_l ./tex_files/taylor__robert_l.tex
taylor__s_james ./tex_files/taylor__s_james.tex
teicher__henry ./tex_files/teicher__henry.tex
teugels__jozef_l ./tex_files/teugels__jozef_l.tex
theodorescu__radu_a_s ./tex_files/theodorescu__radu_a_s.tex
thompson__james_r ./tex_files/thompson__james_r.tex
thompson__mary_e ./tex_files/thompson__mary_e.tex
thompson__william_r ./tex_files/thompson__william_r.tex
thorp__edward_o ./tex_files/thorp__edward_o.tex
tiago_de_oliveira__jose ./tex_files/tiago_de_oliveira__jose.tex
tiao__george_c ./tex_files/tiao__george_c.tex
tibshirani__robert_j ./tex_files/tibshirani__robert_j.tex
tierney__luke ./tex_files/tierney__luke.tex
tintner__gerhard ./tex_files/tintner__gerhard.tex
titterington__donald_m ./tex_files/titterington__donald_m.tex
tong__howell ./tex_files/tong__howell.tex
tong__yung_l ./tex_files/tong__yung_l.tex
torgersen__erik_n ./tex_files/torgersen__erik_n.tex
tran__lanh_tat ./tex_files/tran__lanh_tat.tex
truax__donald_r ./tex_files/truax__donald_r.tex
trumbo__bruce_e ./tex_files/trumbo__bruce_e.tex
tsay__ruey_s ./tex_files/tsay__ruey_s.tex
tsiatis__anastasios_a ./tex_files/tsiatis__anastasios_a.tex
tsybakov__alexandre_b ./tex_files/tsybakov__alexandre_b.tex
tucker__howard_g ./tex_files/tucker__howard_g.tex
tukey__john_w ./tex_files/tukey__john_w.tex
tusnady__gabor ./tex_files/tusnady__gabor.tex
tweedie__richard_l ./tex_files/tweedie__richard_l.tex
tyler__david_e ./tex_files/tyler__david_e.tex
utts__jessica_m ./tex_files/utts__jessica_m.tex
vajda__stefan ./tex_files/vajda__stefan.tex
van_dantzig__david ./tex_files/van_dantzig__david.tex
van_de_geer__sara_a ./tex_files/van_de_geer__sara_a.tex
van_der_vaart__aad_w ./tex_files/van_der_vaart__aad_w.tex
van_der_waerden__bartel_l ./tex_files/van_der_waerden__bartel_l.tex
van_dyk__david_a ./tex_files/van_dyk__david_a.tex
van_eeden__constance ./tex_files/van_eeden__constance.tex
van_keilegom__ingrid ./tex_files/van_keilegom__ingrid.tex
van_ness__john_w ./tex_files/van_ness__john_w.tex
van_ryzin__john_r ./tex_files/van_ryzin__john_r.tex
van_zwet__willem_r ./tex_files/van_zwet__willem_r.tex
vannucci__marina ./tex_files/vannucci__marina.tex
varadhan__s_r_srinivasa ./tex_files/varadhan__s_r_srinivasa.tex
vardi__yehuda ./tex_files/vardi__yehuda.tex
vares__maria_eulalia ./tex_files/vares__maria_eulalia.tex
veinott_jr__arthur_f ./tex_files/veinott_jr__arthur_f.tex
vervaat__wim ./tex_files/vervaat__wim.tex
viens__frederi_g ./tex_files/viens__frederi_g.tex
vitale__richard_a ./tex_files/vitale__richard_a.tex
von_mises__richard_e ./tex_files/von_mises__richard_e.tex
von_neumann__john ./tex_files/von_neumann__john.tex
von_sachs__rainer ./tex_files/von_sachs__rainer.tex
wahba__grace ./tex_files/wahba__grace.tex
wald__abraham ./tex_files/wald__abraham.tex
wallace__david_l ./tex_files/wallace__david_l.tex
wallis__w_allen ./tex_files/wallis__w_allen.tex
wand__matthew_p ./tex_files/wand__matthew_p.tex