-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbibfile.bib
1237 lines (1111 loc) · 29.8 KB
/
bibfile.bib
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
@book{lamport1994latex,
author={Leslie Lamport},
title={\LaTeX{} A Document Preparation System: User's Guide and Reference Manual},
year={1994},
edition={2},
address={Reading, Massachusetts},
publisher={Addison-Wesley},
}
@book{takeuti1973,
title={Axiomatic Set Theory},
author={Gaisi Takeuti and Wilson M. Zaring},
series={Graduate Texts in Mathematics},
volume={8},
editor={P. R. Halmos},
address={Berlin},
publisher={Springer-Verlag},
year={1973},
}
@book{book1,
editor={Chris Hankin},
title={Lambda Calculi},
address={New York},
publisher={Oxford University Press Inc},
year={1994},
}
@Book{cicero,
author ={Cicero, Marcus Tullius},
translator ={Blank-Sangmeister, Ursula},
title ={De natura deorum: {\"U}ber das Wesen der G{\"o}tter},
publisher ={Reclam},
address ={Stuttgart},
year ={1995},
}
@Book{cicero2,
author ={Cicero, Marcus Tullius},
translator ={Blank-Sangmeister, Ursula and Thraede, Klaus and
Andrea Asperti and Giuseppe Longo},
title ={De natura deorum: {\"U}ber das Wesen der G{\"o}tter},
publisher ={Reclam},
address ={Stuttgart},
year ={1995},
}
@book{Asperti1991,
title={Categories, Types and Structures: an introduction to Category Theory
for the working computer scientist},
author={Andrea Asperti and Giuseppe Longo},
publisher={{MIT} Press},
year={1991},
citedate={2013-08-30},
url={http://www.di.ens.fr/users/longo/download.html},
}
@book{Barendregt1981,
title={The Lambda Calculus: its Syntax and Semantics},
author={Henk Barendregt},
publisher={North-Holland},
year={1981},
}
@book{Constable1986,
title={Implementing Mathematics with the {N}uprl Development System},
author={Robert L. Constable and Stuart F. Allen and H. M. Bromley and W.
R. Cleaveland and J. F. Cremer and R. W. Harper and Douglas J. Howe
and T. B. Knoblock and N. P. Mendler and P. Panangaden and James
T. Sasaki and Scott F. Smith},
publisher={Prentice-Hall},
year={1986},
url={http://citeseer.nj.nec.com/constable86implementing.html},
}
@BOOK{CLR,
title={Introduction to Algorithms},
publisher={The MIT Press},
year={1990},
author={Thomas H. Cormen and Charles E. Leiserson and Ronald L. Rivest},
edition={1},
}
@book{Gallier1985,
title={Logic for Computer Science: Foundations of Automatic Theorem Proving},
author={Jean Gallier},
publisher={Harper \& Row Publishers, Inc.},
year={1985},
isbn={0-06-042225-4},
url={http://www.cis.upenn.edu/~jean/gbooks/logic.html},
}
@book{Girard1989,
title={Proofs and types},
address={Cambridge, UK},
publisher={Cambridge University Press},
year={1989},
author={Jean-Yves Girard and Paul Taylor and Yves Lafont},
isbn={0-521-37181-3},
url={http://www.dcs.qmw.ac.uk/~pt/stable/Proofs+Types.html},
}
@book{Hoare1985,
title={Communicating Sequential Processes},
author={C. A. R. Hoare},
publisher={Prentice Hall International},
year={1985},
keywords={process calculus, process algebra, csp},
pdf={Formal Methods/Process Calculus/CSP/Hoare1985.pdf},
}
@book{TAOCP-Vol3,
author={Donald E. Knuth},
title={Sorting and Searching},
series={The Art of Computer Programming},
volume={3},
edition={2},
address={New York},
publisher={Addison-Wesley Publishers Ltd},
year={1998},
}
@book{Kunen1980,
title={Set Theory: An Introduction to Independence Proofs},
publisher={North-Holland Publishing Company},
year={1980},
author={Kenneth Kunen},
address={Amsterdam},
isbn={0-444-86839-9},
keywords={set theory, independence proof},
}
@BOOK{Nielson1992,
title={Semantics with Applications: A Formal Introduction},
publisher={John Wiley \& Sons, Inc},
year={1992},
author={Hanne Riis Nielson and Flemming Nielson},
keywords={semantics},
pdf={Formal Methods/Semantics/Nielson1992.pdf},
url={http://www.daimi.au.dk/~bra8130/Wiley_book/wiley.html},
}
@BOOK{Nordstrom1990,
title={Programming in {M}artin-{L}{\"o}f type theory: an introduction},
address={Oxford, UK},
publisher={Oxford University Press},
year={1990},
author={Bengt Nordstr{\"o}m and Kent Petersson and Jan M. Smith},
cr={9107-0496},
keywords={type theory},
pdf={Formal Methods/Type Theory/Nordstrom1990.pdf},
url={http://www.cs.chalmers.se/Cs/Research/Logic/book/},
}
@BOOK{Reeves1990,
title={Logic for Computer Science},
publisher={Addison-Wesley Publishers Ltd},
year={1990},
author={Steve Reeves and Mike Clarke},
keywords={logic, text book},
pdf={Logic/Reeves1990.pdf},
url={http://www.cs.waikato.ac.nz/~stever/LCS.html},
}
@BOOK{Rogers1967,
title={Theory of Recursive Functions and Effective Computability},
publisher={McGraw-Hill Book Company},
year={1967},
author={Rogers, Jr., Hartley},
address={New York},
keywords={computability, recursive function},
}
@BOOK{Wegener1987,
title={The Complexity of Boolean Functions},
publisher={John Wiley and Sons Ltd, and B. G. Teubner, Stuttgart},
year={1987},
author={Ingo Wegener},
keywords={computational complexity, boolean function complexity},
pdf={Complexity/Boolean Function Complexity/Wegener1987.pdf},
url={http://eccc.uni-trier.de/eccc-local/ECCC-Books/wegener_book_readme.html},
}
@book{book4,
author={Peebles, Jr., P. Z.},
title={Probability, random variable, and random signal principles (4th ed.)},
address={New York},
publisher ={McGraw Hill},
year={2001},
}
@book{book5,
author={Crawford, W. and Gorman, M.},
title={Futuer libraries: dreams, madness \& reality},
address={Chicago},
publisher={American Library Association},
year={1995},
}
@book{book6,
author={{International Federation of Library Association and institutions}},
title={Names of persons: national usages for entry in catalogues},
edition={3},
address ={London},
publisher={IFLA International Office for UBC},
year={1977},
}
@book{book7,
editor={O'Brien, J. A.},
title={Introduction to information systems},
edition={7},
address={Burr Ridge, III.},
publisher={Irwin},
year={1994},
}
@book{book8,
author={Rood, H. J.},
editor={O'Brien, J. A.},
title={Logic and structured design for computer programmers},
edition={3},
publisher={Brooks/Cole-Thomson Learning},
year={2001},
}
@book{book9,
author={Turcotte, D. L.},
title={Fractals and chaos in geology and geophysics},
address={Cambridge, UK},
publisher={Cambridge University Press},
year={1992},
url={http://www.seg.org/reviews/mccorm30.html},
citedate={1998-09-23},
}
@book{beethoven,
author={Ludwig van Beethoven},
title={F{\"u}r Elise},
address={Cambridge, UK},
publisher={Cambridge University Press},
year={1992},
}
@book{zh-book-1,
author={余敏 and 刘华},
title={出版集团研究},
address={北京},
year={2001},
pages={179--193},
language={zh},
}
@book{anwen1988,
author={昂温, G. and 昂温, P. S.},
title={外国出版史},
translator={陈生铮},
address={北京},
publisher={中国书籍出版社},
year={1988},
citedate={2013-08-30},
url={http://www.google.com/},
language={zh},
}
@book{anwen1988b,
author={昂温, G. and 昂温, P. S.},
title={美国独立战争},
series={世界历史丛书},
editor={张三 and 李四},
translator={陈生铮},
address={北京},
publisher={中国书籍出版社},
year={1988},
citedate={2013-08-30},
url={http://www.google.com/},
language={zh},
}
@book{anwen1988c,
editor={昂温, G. and 昂温, P. S.},
title={美国独立战争},
series={世界历史丛书},
translator={陈生铮},
address={北京},
publisher={中国书籍出版社},
year={1988},
citedate={2013-08-30},
url={http://www.google.com/},
language={zh},
}
@collection{engesser2009,
title={Quantum Logic},
series={Handbook of Quantum Logic and Quantum Structures},
editor={Kurt Engesser and Dov M Gabbay and Daniel Lehmann},
publisher={Elsevier},
year={2009},
}
@collection{maxis1982,
author={马克思 and 恩格斯},
title={马克思恩格斯全集},
volume={44},
address={北京},
publisher={人民出版社},
year={1982},
language={zh},
}
@book{zh-book-2-1,
author={昂温, G. and 昂温, P. S.},
title={外国出版史},
translator={陈生铮 and 张三 and 李四 and 王五},
address={北京},
publisher={中国书籍出版社},
year={1988},
language={zh},
citedate={2013-08-30},
url={http://www.google.com/}
}
@book{zh-book-3,
author={王夫之},
title={宋论},
edition ={刻本},
address={金陵},
publisher={曾氏},
year={1845(清同治四年)},
language={zh},
}
@book{zh-book-4,
author={赵耀东},
title={新时代的工业工程师},
address={台北},
publisher={天下文化出版社},
year={1998},
url={http://ie.nthu.edu.tw/info/ie.newie.htm},
citedate={1998-09-26},
language={zh},
}
@book{chuban2011,
editor={{全国出版专业职业资格考试办公室}},
title={出版专业实务(初级)},
edition={2011年版},
series={全国出版专业职业资格考试辅导教材},
address={湖北},
publisher={长江出版集团},
year={2011},
language={zh},
}
@book{zh-book-5,
author={{广西壮族自治区林业厅}},
title={广西自然保护区},
address={北京},
publisher={中国林业出版社},
year={1993},
language={zh},
}
@book{zh-book-6,
author={蒋有绪 and 郭泉水 and 马娟 and 其他作者},
title={中国森林群落分类及其群落学特征},
address={北京},
publisher={科学出版社},
year={1998},
language={zh},
}
@book{zh-book-7,
author={唐绪军},
title={报业经济与报业经营},
publisher={新华出版社},
year={1999},
pages={117--121},
language={zh},
}
@book{zh-book-8,
author={赵凯华 and 罗蔚茵 and 张三 and 李四 and 王五},
title={新概念物理教程:力学},
address={北京},
publisher={高等教育出版社},
year={1995},
language={zh},
}
@book{zh-book-9,
author={汪昂},
title={本草备要},
edition ={石印本, 增补},
address={上海},
publisher={同文书局},
year={1912},
language={zh},
}
@book{zh-book-10,
author={{ZHAO Kaihua} and {LUO Weiyin} and {ZHANG Sang}
and {LI Si} and {WANG Wu}},
title={New concept textbook on Pyhsics},
address={Beijing},
publisher={Advanced Education Publiser},
year={1995},
}
@inbook{changjiang1999,
author={程根伟},
title={1998年长江洪水的成因与减灾对策},
editor={许厚泽 and 赵其国},
booktitle={长江流域洪涝灾害与科技对策},
address={北京},
publisher={科学出版社},
year={1999},
pages={32-36},
language={zh},
}
@inbook{zhendan1980,
author={陈晋镶 and 张惠民 and 朱士兴 and 其他作者},
title={蓟县震旦亚界研究},
editor={中国地质科学院天津地质矿产研究所},
booktitle={中国震旦亚界},
address={天津},
publisher={天津科学技术出版社},
year={1980},
pages={56-114},
language={zh},
}
@inbook{weinstein1974,
author={Weinstein, L. and Swertz, M. N.},
title={Pathogenic properties of invading microorganism},
editor={Sodeman, Jr., W. A. and Sodeman, W. A.},
booktitle={Pathologic physiology: mechanisms of disease},
address={Philadelphia},
publisher={Saunders},
year={1974},
pages={745-772},
}
@inbook{buseck1980,
author={Buseck, P. R. and Nord, Jr., G. L. and Veblen D. R.},
title={Subsolidus phenomena in pyroxenes},
editor={Prewitt, C. T.},
booktitle={Pyroxense},
address={Washington, D. C.},
publisher={Mineralogical Society of America},
year={c1980},
pages={117-211},
}
@inbook{martin1966,
author={Martin, G.},
title={Control of electronic resources in Australia},
editor={Pattle, L. W. and Cox, B. J.},
booktitle={Electronic resources: selection and bibliographic control},
address={New York},
publisher={The Haworth Press},
year={1966},
pages={85-96},
}
@inbook{winskel1995,
author={G. Winskel and M. Nielsen},
title={Models for Concurrency},
booktitle={Handbook of Logic in Computer Science},
address={Oxford, UK},
publisher={Oxford University Press},
year={1995},
editor={S. Abramsky and D. Gabbay and T. S. E. Maibaum},
citedate={2013-10-20},
url={http://citeseer.ist.psu.edu/winskel94models.html},
}
@inbook{abramsky1994,
author={Samson Abramsky and Achim Jung},
title={Domain Theory},
booktitle={Semantic Structures},
series={Handbook of Logic in Computer Science},
volume={3},
address={Oxford, UK},
publisher={Oxford University Press},
year={1994},
editor={Samson Abramsky and Dov M. Gabbay and T.S.E. Maibaum},
pages={1-168},
}
@inbook{barendregt1992,
author={Henk Barendregt},
title={Lambda Calculi with Types},
booktitle={Background: Computational Structures},
series={Handbook of Logic in Computer Science},
volume={2},
address={Oxford, UK},
publisher={Oxford University Press},
year={1992},
editor={Samson Abramsky and Dov M. Gabbay and T.S.E. Maibaum},
pages={117-309},
}
@inbook{berger1995a,
author={Ulrich Berger and Helmut Schwichtenberg},
title={Program Development by Proof Transformation},
booktitle={Proof and Computation},
publisher={Springer},
year={1995},
editor={Helmut Schwichtenberg},
pages={1-45},
address={Berlin},
}
@inbook{buss1998introduction,
author={Samuel R. Buss},
title={An Introduction to Proof Theory},
booktitle={Handbook Proof Theory},
address={Amsterdam},
publisher={Elsevier},
year={1998},
volume={I},
}
@inbook{buss1998first,
author={Samuel R. Buss},
title={First-Order Theory of Arithmetic},
booktitle={Handbook Proof Theory},
address={Amsterdam},
publisher={Elsevier},
year={1998},
volume={II},
}
@incollection{abramsky1990,
author={Samson Abramsky},
title={The Lazy Lambda Calculus},
booktitle={Research Topics in Functional Programming},
publisher={Addison-Welsey},
year={1990},
editor={D. A. Turner},
pages={65-116},
address={Reading, MA},
citedate={2010-01-12},
url={http://citeseer.nj.nec.com/abramsky90lazy.html},
}
@incollection{gongzi,
author={马克思},
title={关于《工资、价格和利润》的报告札记},
editor={马克思 and 恩格斯},
booktitle={马克思恩格斯全集},
volume={44},
address={北京},
publisher={人民出版社},
year={1982},
pages={505},
language={zh},
}
@proceedings{1-11,
editor={Yufin, S. A.},
title={Geoecology and computers: proceedings of the Third International
Conference on Advance of Computer Methods in Geotechnical and
Geoenvironmental Engineering, Moscow, Russia, February 1--4, 2000},
address={Rotterdam},
publisher={A. A. Balkema},
year={2000},
}
@proceedings{a2-1,
editor={{中国力学学会}},
title={第3届全国实验流体力学学术会议论文集},
address={天津},
year={1990},
language={zh},
}
@proceedings{a2-2,
editor={Rosenthall, E. M.},
title={Proceedings of the Fifth Canadian Mathematical Congress,
University of Montreal, 1961},
address={Toronto},
publisher={University of Toronto Press},
year={1963},
}
@proceedings{a2-3,
editor={Ganzha, V. G. and Mayr, E. W. and Vorozhtsov, E. V.},
title={Computer algebra in scientific computing: CASC 2000: proceedings
of the Third Workshop on Algebra in Scientific Computing, Samarkand,
October 5-9,2000},
address={Berlin},
publisher={Springer},
year={c2000},
}
@inproceedings{nonlinear1996,
author={钟文发},
title={非线性规划在可燃毒物配置中的应用},
editor ={赵玮},
booktitle={运筹学的理论与应用:中国运筹学会第五届大会论文集},
address={西安},
publisher={西安电子科技大学出版社},
year={1996},
pages={468-471},
language={zh},
}
@inproceedings{fourney1971,
author={Fourney M. E.},
title={Advances in holographic photoelasticity},
editor={{American Society of Mechanical Engineers,
Applied Mechanics Division}},
booktitle={Symposium on Applications of Holography in Mechanics,
August 23--25, 1971, University of Southern California,
Los Angeles, California},
address={New York},
publisher={ASME},
year={c1971},
pages={17-38},
}
@inproceedings{aczel1998,
author={Peter Aczel},
title={On relating type theories and set theories},
booktitle={Types `98, the proceedings of the 1998 workshop
on Types for Proofs and Programs},
year={1998},
editor={T. Altenkirch and W. Naraschewski and B. Reus},
volume={1657},
series={Lecture Notes in Computer Science},
pages={1-18},
address={Kloster Irsee},
publisher={Springer},
}
@inproceedings{ariola1995,
author={Zena M. Ariola and Matthias Felleisen
and John Maraist and Martin Odersky
and Philip Wadler},
title={A Call-by-Need Lambda Calculus},
booktitle={Proceedings of 22nd Annual {ACM {SIGACT}-{SIGPLAN}}
Symposium on Principles of Programming Languages
({POPL})},
year={1995},
pages={233-246},
}
@inproceedings{balaa2000,
author={Antonia Balaa and Yves Bertot},
title={Fix-point Equations for Well-Founded Recursion
in Type Theory},
booktitle={Theorem Proving in Higher Order Logics},
year={2000},
editor={Mark Aagaard and John Harrison},
volume={1869},
series={Lecture Notes in Computer Science},
pages={1-16},
publisher={Springer-Verlag},
}
@inproceedings{barendregt1988,
author={Henk Barendregt},
title={Introduction to Lambda Calculus},
booktitle={Aspen{\ae}s Workshop on Implementation of
Functional Languages, G{\"o}teborg},
year={1988},
address={G{\"o}teborg},
publisher={Programming Methodology Group, University
of G{\"o}teborg and Chalmers
University of Technology},
}
@inproceedings{basin1991,
author={David A. Basin and Doulas J. Howe},
title={Some Normalization Properties of Martin-L{\"o}f's
Type Theory and Applications},
booktitle={International Conference on Theoretical
Aspects of Computer Software (TACS '91)},
year={1991},
volume={526},
series={Lecture Notes in Computer Science},
pages={475-494},
publisher={Springer-Verlag},
}
@article{kanamori1998,
author={Kanamori, H.},
title={Shaking without quaking},
journal={Science},
year={1998},
volume={279},
number={5359},
pages={2063-2064},
}
@article{caplan1993,
author={Caplan, P.},
title={Cataloging internet resources},
journal={The Public Access Computer Systems Review},
year={1993},
volume={4},
number={2},
pages={61-66},
}
@article{marais1992,
author={des Marais, D. J. and Strauss, H.
and Summons, R. E. and Other Authors},
title={Carbon isotope evidence for the stepwise
oxidation of the Proterozoic environment},
journal={Nature},
year={1992},
volume={359},
pages={605-609},
}
@article{hewitt1984,
author={Hewitt, J. A.},
title={Technical services in 1983},
journal={Library Resource Services},
year={1984},
volume={28},
number={3},
pages={205-218},
}
@article{christine1998,
author={Christine, M.},
title={Plant physiology: plant biology in the Genome Era},
journal={Science},
year={1998},
volume={281},
pages={331-332},
url={http://www.sciencemag.org/cgi/collection/anatmorp},
citedate={1998-09-23},
}
@article{lixiaodong1999,
author={李晓东 and 张庆红 and 叶瑾琳},
title={气候学研究的若干理论问题},
journal={北京大学学报: 自然科学版},
year={1999},
volume={35},
number={1},
pages={101-106},
language={zh},
}
@article{liuwu1999,
author={刘武 and 郑良 and 姜础},
title={元谋古猿牙齿测量数据的统计分析及其在分类研究上的意义},
journal={科学通报},
year={1999},
volume={44},
pages={2481-2488},
language={zh},
}
@article{liruimu2000,
author={李炳穆},
title={理想的图书馆员和信息专家的素质与形象},
journal={图书情报工作},
year={2000},
number={2},
pages={5-8},
language={zh},
}
@article{moshaoqiang1999,
author={莫少强},
title={数字式中文全文文献格式的设计与研究},
journal={情报学报},
year={1999},
volume={18},
number={4},
pages={1-6},
url={http://periodical.wanfangdata.com.cn/periodical/qbxb9904/990407.htm},
citedate={2001-07-08},
language={zh},
}
@article{taorenji1984,
author={陶仁骥},
title={密码学与数学},
journal={自然杂志},
year={1984},
volume={7},
number={7},
pages={527},
language={zh},
}
@article{yazhou1978,
author={{亚洲地质图编目组}},
title={亚洲地层与地质历史概述},
journal={地质学报},
year={1978},
volume={3},
pages={104-208},
language={zh},
}
@article{jiangxiangdong1999,
author={江向东},
title={互联网环境下的信息处理与图书管理系统解决方案},
journal={情报学报},
year={1999},
volume={18},
number={2},
pages={4},
url={http://www.chinainfo.gov.cn/periodical/qbxb99/qbxb990203},
citedate={2000-01-18},
language={zh},
}
@news{ding2000,
author={丁文祥},
title={数字革命与竞争国际化},
journal={中国青年报},
date={2000-11-20},
number={15},
language={zh},
}
@news{zhang2000,
author={张田勤},
title={罪犯DNA库与生命伦理学计划},
journal={大众科技报},
date={2000-11-12},
language={zh},
}
@news{fu2000,
author={傅刚 and 赵承 and 李佳路},
title={大风沙过后的思考},
journal={北京青年报},
date={2000-04-12},
number={14},
url={http://www.bjyouth.com.cn/Bgb/20000412/GB/4216%5ED0412B1401.htm},
citedate={2005-07-12},
language={zh},
}
@standard{rfc6648,
author={{IETF}},
title={RFC 6648: Deprecating the "X-" Prefix and Similar
Constructs in Application Protocols},
year={2012},
url={http://tools.ietf.org/html/rfc6648},
citedate={2012-10-07},
}
@standard{gbt3469-1983,
author={{中国科学技术情报研究所}},
title={GB/T 3469-1983: 文献类型与文献载体代码},
year={1983},
language={zh},
}
@standard{gbt7714-2005,
author={{中国国家标准化管理委员会}},
title={GB/T 7714-2005: 文后参考文献著录规则},
year={2005},
language={zh},
}
@standard{gbt7713.1-2006,
author={{中国国家标准化管理委员会}},
title={GB/T 7713.1-2006: 学位论文编写规则},
year={2006},
language={zh},
}
@standard{gbt7713.3-2009,
author={{中国国家标准化管理委员会}},
title={GB/T 7713.3-2009: 科技报告编写规则},
year={2009},
language={zh},
}
@standard{gbt7713-1987,
author={{中国国家标准化管理委员会}},
title={GB/T 7713-1987: 科学技术报告、学位论文和学术论文的编写格式},
year={1987},
language={zh},
}
@standard{gbt7156-2003,
author={{中国国家标准化管理委员会}},
title={GB/T 7156-2003: 文献保密等级代码与标识},
address={北京},
publisher={科技出版社},
year={2003},
language={zh},
}
@standard{gbt16159-2012,
author={{中国国家标准化管理委员会}},
title={GB/T 16159-2012: 汉语拼音正词法基本规则},
year={2012},
language={zh},
}
@techreport{patashnik1988bibdoc,
author={Oren Patashnik},
title={\BibTeX{}ing},
year={1988},
}
@techreport{patashnik1988bibhack,
author={Oren Patashnik},
title={Designing \BibTeX{} Styles},
year={1988},
}
@techreport{a3-1,
author={{U.S. Department of Transportation Federal Highway Administration}},
title={Guidelines for handling excavated acid-producing materials, PB 91-194001},
address={Springfield},
institution={U.S. Department of Commerce National Information Service},
year={1990},
}
@techreport{a3-2,
author={{World Health Organization}},
title={Factors regulating the immune response: report of WHO Scientific Group},
address={Geneva},
institution={WHO},
year={1970},
}
@techreport{tr-zh1,
author={张三 and 李四 and 王五 and 赵六},
title={非线性波导阵列在量子随机游走中的应用},
address={南京},
institution={南京大学物理系},
year={2013},
language={zh},
}
@phdthesis{1-5,
author={孙玉文},
title={汉语变调构词研究},
address={北京},
school={北京大学中文系},
year={2000},
language={zh},
}
@masterthesis{a4-1,
author={张志祥},
title={间断动力系统的随机扰动及其在守恒律方程中的应用},
address={南京},
school={南京大学数学学院},
year={1998},
language={zh},
}
@phdthesis{a4-2,
author={Calms, R. B.},
title={Infrared spectroscopic studies on solid oxygen},
address={Berkeley},
school={University of California},
year={1965},
}
@PHDTHESIS{Anderson1993,
author={Penny Anderson},
title={Program Derivation by Proof Transformation},
address={Pittsburgh, USA},
school={Carnegie Mellon University},
year={1993},
citedate={2007-11-02},
url={http://citeseer.nj.nec.com/anderson93program.html},
}
@online{pacs1989,
title={PACS-L: the public-access computer systems forum},
address={Houston, Tex},
publisher={University of Houston Libraries},
year={1989},
url={http://info.lib.uh.edu/pacsl.html},
citedate={1995-05-17},
}
@online{oclc2000,
author={{Online Computer Library Center, Inc.}},
title={History of OCLC},
url={http://www.oclc.org/about/history/default.htm},
citedate={2000-01-08},
}
@online{chuban2001,
author={萧钰},
title={出版业信息化迈入快车道},
modifydate={2001-12-19},