-
Notifications
You must be signed in to change notification settings - Fork 21
/
world_free_ebooks.html
1151 lines (1100 loc) · 75.1 KB
/
world_free_ebooks.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="description" content="Free Ebook 免费电子书 免费epub电子书 电子书大全 电子书下载 光剑免费图书馆 全球免费开放的电子图书馆 東海陳光劍的博客">
<!-- jquery, bootstrap,dataTables -->
<script src="//cdn.bootcss.com/jquery/2.0.0/jquery.min.js"></script>
<link href="//cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="//cdn.bootcss.com/datatables/1.10.10/css/jquery.dataTables.min.css" rel="stylesheet">
<link href="//cdn.bootcss.com/datatables/1.10.10/css/jquery.dataTables_themeroller.css" rel="stylesheet">
<script src="//cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="//cdn.bootcss.com/datatables/1.10.10/js/dataTables.bootstrap.min.js"></script>
<script src="//cdn.bootcss.com/datatables/1.10.10/js/jquery.dataTables.min.js"></script>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" media="screen" href="css/home.css">
<title>光剑免费图书馆 Free Ebook: 全球免费开放的电子图书馆</title>
<style>
li {
list-style-type: none;
}
</style>
<!-- 百度统计代码 -->
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?f29971d7ef634e38b8912a618e7a4f67";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<!--<a id="forkme_banner" href="https://github.com/universsky">View on GitHub </a>-->
<h1 id="project_title">WFeB全球免费图书馆 World Free eBook</h1>
<p></p>
<h3 id="project_tagline">道之所在,虽千万人吾往矣;义之所当,千金散尽不后悔;情之所钟,世俗礼法如粪土;兴之所至,与君痛饮三百杯.</h3>
</header>
</div>
<div id="main_content_wrap" class="outer">
<nav class="navbar navbar-inverse" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html" style="font-size: 15pt"> WFeB全球免费图书馆 World Free eBook </a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="classic.html">经典畅销书</a></li>
<li><a href="china_classic.html">中国古典文学</a></li>
<li><a href="biography.html">人物传记</a></li>
<li><a href="medicine.html">中医养生</a></li>
<li><a href="love.html">两性爱情</a></li>
<li><a href="computer.html">计算机编程</a></li>
<li><a href="swordmen_novel.html">武侠小说</a></li>
<li><a href="guanchang_shangzhan.html">官场商战</a></li>
<li><a href="work.html">职场工作</a></li>
<li><a href="financial_investment.html">理财投资</a></li>
<li><a href="ibooks.html">光剑阅读小馆</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<section id="main_content" class="inner">
<div class="container-fluid">
<a href="index.html"><h2>光剑免费图书馆</h2></a>
中国古代典籍: <br>
<a href="http://wenjin.nlc.gov.cn/zjtj/zjtj/">http://wenjin.nlc.gov.cn/zjtj/zjtj/</a><br><br>
百度国学: <br>
<a href="https://www.baidu.com/search/guoxue/dir/fenlei.html">https://www.baidu.com/search/guoxue/dir/fenlei.html</a><br><br>
1.澳大利亚国立大学ANU电子出版库:<br>
<a href="http://dspace.anu.edu.au/">http://dspace.anu.edu.au/</a><br><br>
2.阿德雷德大学电子文本收藏中心,包括古典文学,哲学,科学和医学着作:<br>
<a href="http://ebooks.adelaide.edu.au/">http://ebooks.adelaide.edu.au/</a><br><br>
3.澳大利亚数字化人文门户(澳大利亚人文学界的数字化资源门户)<br>
<a href="http://www.ehum.edu.au/">http://www.ehum.edu.au/</a><br><br>
4.科廷大学技术文献库(科廷技术大学科研人员和研究生的科研成果)<br>
<a href="http://espace.library.curtin.edu.au/R">http://espace.library.curtin.edu.au/R</a><br><br>
5.墨尔本大学电子出版物收藏网 <br>
<a href="http://www.lib.unimelb.edu.au/eprints/">http://www.lib.unimelb.edu.au/eprints/</a><br><br>
6.昆士兰大学数字文库 <br>
<a href="http://espace.library.uq.edu.au/">http://espace.library.uq.edu.au/</a><br><br>
7.SETIS悉尼大学学术电子文本及图像服务 <br>
<a href="http://setis.library.usyd.edu.au/">http://setis.library.usyd.edu.au/</a><br><br>
8.新西兰数字文献收集网 <br>
<a href="http://nzdl.sadl.uleth.ca/cgi-bin/library">http://nzdl.sadl.uleth.ca/cgi-bin/library</a><br><br>
9.古腾堡数字化图书馆 <br>
<a href="http://www.gutenberg.org/wiki/Main_Page">http://www.gutenberg.org/wiki/Main_Page</a><br><br>
10.Infomotions 西方文学/哲学网:包括自美国/英国的文学和西方哲学公开着作。<br>
<a href="http://infomotions.com/">http://infomotions.com/</a><br><br>
11.康奈尔大学Arxiv :收藏了物理,数学,非线性科学和计算机科学方面的数字化 "预印本" 出版物。<br>
<a href="http://arxiv.org/">http://arxiv.org/</a><br><br>
12.Bartleby.com :包含世界历史百科全书,以及哈佛经典着作,提供免费的电子文本。 <br>
<a href="http://www.bartleby.com/">http://www.bartleby.com/</a><br><br>
13.Bibliomania :提供超过2000部免费电子文献,以及研究成果。<br>
<a href="http://www.bibliomania.com/">http://www.bibliomania.com/</a><br><br>
14.Cogprints:有各类心理学,神经科学,语言学,哲学,生物学,人类学和计算机科学电子文献, 部分区域需要注册:<br>
<a href="http://cogprints.org/">http://cogprints.org/</a><br><br>
15.印第安纳大学国际文献档案库:这是一个服务公众的全文数字图书馆,作者可以提交着作,并被连入参考文献。<br>
<a href="http://dlc.dlib.indiana.edu/dlc/">http://dlc.dlib.indiana.edu/dlc/</a><br><br>
16.DLESE地球系统教育数字图书馆:涵盖了环境,地理,地质,海洋以及其他物理科学;空间科学与技术;教育方法和科学哲学内容。<br>
<a href="http://www.dlese.org/library/">http://www.dlese.org/library/</a><br><br>
17.Elfwood:拥有超过两万部文学和艺术作品,来自超过一千五百名幻想/科幻艺术家和作家。<br>
<a href="http://www.elfwood.com/">http://www.elfwood.com/</a><br><br>
18.Eserver.org:收藏了大量在线智慧文学和资源,由华盛顿大学创立。<br>
<a href="http://eserver.org/">http://eserver.org/</a><br><br>
19.IPL互联网公共图书馆 :密歇根大学信息学院的学习和教学环境。<br>
<a href="http://www.ipl.org/">http://www.ipl.org/</a><br><br>
20.库尔特·斯塔博的在线图书馆:收藏了古代和现代的大量生物学着作,其中很多珍本, 可在线阅读。<br>
<a href="http://www.zum.de/">http://www.zum.de/</a><br><br>
21.麻省理工学院的开放文献网站:<br>
<a href="http://ocw.mit.edu/OcwWeb/web/home/home/index.htm">http://ocw.mit.edu/OcwWeb/web/home/home/index.htm</a><br><br>
22.美国国家科学院在线数据据库:超过3000部科学,工程和健康卫生方面的着作,可以在线阅读,这些文献代表了美国在这些领域的研究精华。<br>
<a href="http://www.nap.edu/">http://www.nap.edu/</a><br><br>
23.Ndltd.org: 搜集了来自澳大利亚,加拿大,许多欧洲国家,香港,台湾和美国的论文.<br>
<a href="http://www.ndltd.org/">http://www.ndltd.org/</a><br><br>
24.宾夕法尼亚大学网站: 有超过 16000 部在线电子书 ,值得一读 : <br>
<a href="http://digital.library.upenn.edu/books/">http://digital.library.upenn.edu/books/</a><br><br>
25.牛津大学档案馆: 建于1976年,这里有用于研究和教学的大量高品质文献 资料公共区域可以免费在线检索目录,下载.<br>
<a href="http://ota.ahds.ac.uk/">http://ota.ahds.ac.uk/</a><br><br>
26.弗吉尼亚大学电子文献中心 : 超过10000 部可以公开或取的着作(以及超过 164000 幅图像):<br>
<a href="http://www2.lib.virginia.edu/etext/index.html">http://www2.lib.virginia.edu/etext/index.html</a><br><br>
27.Gallica.bnf.fr: 法兰西国家图书馆资助的网站,法文:<br>
<a href="http://gallica.bnf.fr/">http://gallica.bnf.fr/</a><br><br>
28.世界图书馆(世界图书馆,法语)<br>
<a href="http://abu.cnam.fr/">http://abu.cnam.fr/</a><br><br>
29.意大利电子书网站(包括小说,诗歌,古典文学,戏剧,传记,恐怖和幻想小说,新经济学等)<br>
<a href="http://www.ebookgratis.it/">http://www.ebookgratis.it/</a><br><br>
30.日本文学着作( 格式包括 HTML , ZIP(下载)和日文电子书格式)<br>
<a href="http://www.aozora.gr.jp/">http://www.aozora.gr.jp/</a><br><br>
31.今日美国开放图书计划: 一家报纸网站的独立部门,一些有名的小说家开放了他们的版权,供所有的访客阅。<br>
<a href="http://www.usatoday.com/life/books/openbooks/2005-02-01-abounding-gutter_x.htm">http://www.usatoday.com/life/books/openbooks/2005-02-01-abounding-gutter_x.htm</a><br><br>
32.英语文学网站:超过一千位学生为这个巨大的网站捐助成果,焦点是英语文学。<br>
<a href="http://www.litencyc.com/">http://www.litencyc.com/</a><br><br>
33.计算机程序设计电子书,包括:Abap, Java, Linux, Php, Oracle & Vb.net 。 PDF 格式。注意,在下载之前,需先建立一个账户)<br><br>
<a href="http://www.downloadfreepdf.com/">http://www.downloadfreepdf.com/</a><br><br>
34.数学世界:为学生,教育家,数学爱好者和研究者准备的全面地数学百科全书。<br>
<a href="http://mathworld.wolfram.com/">http://mathworld.wolfram.com/</a><br><br>
35.在线医学百科全书:超过1500主题的在线医学百科全书,包括康复,疾病,伤害,营养,手术,症状,试验。<br>
<a href="http://www.healthopedia.com/">http://www.healthopedia.com/</a><br><br>
36.医生的免费电子书,免费使用的医学电子书。<br>
<a href="http://freebooks4doctors.com/">http://freebooks4doctors.com/</a><br><br>
37.奥地利文献:超过12000 部奥地利文献,甚至包括明信片,可以在因特网上访问<br>
<a href="http://www.literature.at/default.alo;jsessionid=453DD0DC127BBBB02C863B1887F76E28">http://www.literature.at/default.alo;jsessionid=453DD0DC127BBBB02C863B1887F76E28</a><br><br>
38.GPO Access(美国政府文献):<br>
<a href="http://www.access.gpo.gov/">http://www.access.gpo.gov/</a><br><br>
39.世界最大的社会科学文献网站(ICPSR):Inter-university Consortium for Political and Social Research:<br>
<a href="http://www.icpsr.umich.edu/icpsrweb/ICPSR/">http://www.icpsr.umich.edu/icpsrweb/ICPSR/</a><br><br>
40.National Academy Press<br><br>
(美国国家科学院、国家工程院、医学协会等机构的论文/报告/PPT,内容几乎涵盖所有学科)<br><br>
<a href="http://www.nationalacademies.org/publications/">http://www.nationalacademies.org/publications/</a><br><br>
<table>
<tbody>
<tr>
<td>
<li><a href="http://www.nap.edu/">美国国家学术出版社所有PDF图书开放免费下载</a>
</li>
<li><a href="http://dspace.anu.edu.au/">澳大利亚国立大学ANU电子出版库</a></font>
</li>
<li><a href="http://ebooks.adelaide.edu.au/"
>阿德雷德大学电子文本收藏中心,包括古典文学,哲学,科学和医学著作</a></font>
</li>
<li><a href="http://www.ehum.edu.au/">澳大利亚数字化人文门户(澳大利亚人文学界的数字化资源门户) </a></font>
</li>
<li><a href="http://espace.library.curtin.edu.au/R"
>科廷大学技术文献库(科廷技术大学科研人员和研究生的科研成果)</a></font>
</li>
<li><a href="http://www.lib.unimelb.edu.au/eprints/"
>墨尔本大学电子出版物收藏网</a></font></li>
<li><a href="http://espace.library.uq.edu.au/"
>昆士兰大学数字文库</a></font></li>
<li><a href="http://setis.library.usyd.edu.au/"
>SETIS悉尼大学学术电子文本及图像服务</a></font></li>
<li><a href="http://www.gutenberg.org/wiki/Main_Page"
>古腾堡数字化图书馆</a></font></li>
<li><a href="http://infomotions.com/">Infomotions
西方文学/哲学网 (包括自美国/英国的文学和西方哲学公开著作)</a></font></li>
<li><a href="http://arxiv.org/">康奈尔大学Arxiv
(物理,数学,非线性科学和计算机科学方面的数字化出版物)</a></font></li>
<li><a href="http://www.bartleby.com/">Bartleby.com
(包含世界历史百科全书,以及哈佛经典著作,提供免费的电子文本)</a></font></li>
<li><a href="http://cogprints.org/">Cogprints(心理学,语言学,哲学,人类学和计算机科学电子文献,
需要注册)</a></font></li>
<li><a href="http://dlc.dlib.indiana.edu/dlc/"
>印第安纳大学国际文献档案库</a></font></li>
<li><a href="http://www.dlese.org/library/">DLESE地球系统教育数字图书馆(
环境,地理,地质,海洋;教育方法和科学哲学)</a></font></li>
<li><a href="http://www.elfwood.com/">Elfwood(拥有超过两万部文学和艺术作品)</a></font>
</li>
<li><a href="http://eserver.org/"
>Eserver.org(收藏了大量在线智慧文学和资源,由华盛顿大学创立)</a></font>
</li>
<li><a href="http://www.ipl.org/">IPL互联网公共图书馆
(密歇根大学信息学院的学习和教学环境) </a></font></li>
<li><a href="http://www.zum.de/"
>库尔特斯塔博的在线图书馆(收藏了古代和现代的大量生物学著作,其中很多珍本)</a></font>
</li>
<li><a
href="http://ocw.mit.edu/OcwWeb/web/home/home/index.htm"
>麻省理工学院的开放文献网站</a></font>
</li>
<li><a href="http://www.ndltd.org/"
>Ndltd.org(来自澳大利亚,加拿大,许多欧洲国家,香港,台湾和美国的论文)</a></font>
</li>
<li><a href="http://digital.library.upenn.edu/books/"
>宾夕法尼亚大学网站(有超过 16000 部在线电子书
,值得一读) </a></font></li>
<li><a href="http://ota.ahds.ac.uk/"
>牛津大学档案馆(建于1976年,这里有用于研究和教学的大量高品质文献)</a></font>
</li>
<li><a href="http://dcs.library.virginia.edu/"
>弗吉尼亚大学电子文献中心(超过10000部著作以及超过164000幅图像)</a></font>
</li>
<li><a href="http://gallica.bnf.fr/">Gallica.bnf.fr(法兰西国家图书馆资助的网站,法文)</a></font>
</li>
<li><a href="http://abu.cnam.fr/">世界图书馆(世界图书馆,法语)</a></font>
</li>
<li><a href="http://www.ebookgratis.it/"
>意大利电子书网站(小说,诗歌,古典文学,戏剧,传记,恐怖和幻想小说,新经济学)</a></font>
</li>
<li><a href="http://www.aozora.gr.jp/">日本文学著作(
格式包括 HTML , ZIP(下载)和日文电子书格式)</a></font></li>
<li><a href="http://www.litencyc.com/"
>英语文学网站(超过一千位学生为这个巨大的网站捐助成果,焦点是英语文学) </a></font>
</li>
<li><a href="http://www.downloadfreepdf.com/"
>计算机程序设计电子书(Abap, Java, Linux, Php,
Oracle & Vb.net需注册)</a></font></li>
<li><a href="http://mathworld.wolfram.com/"
>数学世界(为学生,教育家,数学爱好者和研究者准备的全面地数学百科全书)</a></font>
</li>
<li><a href="http://www.healthopedia.com/"
>在线医学百科全书(医学百科全书,康复,疾病,伤害,营养,手术,症状,试验)</a></font>
</li>
<li><a href="http://freebooks4doctors.com/">医生的免费电子书(免费使用的医学电子书) </a></font>
</li>
<li><a
href="http://www.literature.at/default.alo;jsessionid=453DD0DC127BBBB02C863B1887F76E28"
>奥地利文献(超过12000 部奥地利文献,甚至包括明信片,可以在因特网上访问)</a></font></li>
<li><a href="http://www.icpsr.umich.edu/icpsrweb/ICPSR/"
>ICPSR(Inter-university Consortium for
Political and Social Research)</a></font></li>
<li><a href="http://www.nationalacademies.org/publications/"
>National Academy
Press(美国国家科学院、工程院、医学协会等论文/报告/PPT)</a></font></li>
<li><a href="http://www.unesco.org/new/en/unesco/"
>UNESCO(联合国教科文组织提供的文档,包含自然科学与社会科学)</a></font>
</li>
<br>
</font></td>
</tr>
</tbody>
</table>
<table align="center" border="1" cellpadding="0" cellspacing="0" class="mytable" width="98%">
<thead>
<tr>
<th width="20%">标题</th>
<th width="70%">资源简介</th>
<th width="10%">资源地址</th>
</tr>
</thead>
<tbody>
<tr class="odd views-row-first">
<td>eScholarship Editions(UC Press E-BooksCollection)</td>
<td>eScholarship Editions由加利福尼亚数字图书馆(California Digital
Library)创立,目前网站上有近2000种电子图书向加州大学师生开放,其中500多种可供公众免费在线阅读。图书内容涵盖艺术、科学、历史、音乐、宗教等学科领域 </td>
<td><a href="http://www.escholarship.org/editions">资源地址</a></td>
</tr>
<tr>
<td>E-Books Directory </td>
<td>E-Books Directory is a daily growing list of freely downloadable ebooks, documents and lecture
notes found all over the internet.<br>
You can submit and promote your own ebooks, add comments on already posted books or just browse
through the directory below and download anything you need.
</td>
<td><a href="http://www.e-booksdirectory.com/">资源地址</a></td>
</tr>
<tr>
<td>FreeComputerBooks.com</td>
<td>FreeComputerBooks.com consists of a huge collection of Free online Computer, Programming,
Mathematics, Engineering, and Technical Books, Lecture Notes and Tutorials. It is very well
categorized by topics, with 12 top level categories, and over 150 sub-categories. It has both
pattern and keywords search engines for you to find the titles quickly.
</td>
<td>
<a href="http://freecomputerbooks.com">资源地址</a></td>
</tr>
<tr>
<td>Freebooks4doctors 免费医学书</td>
<td>提供很多质量较高医学类书籍,可以免费查看和阅读。</td>
<td><a href="http://www.freebooks4doctors.com/">资源地址</a></td>
</tr>
<tr>
<td>FreeTechBooks.com</td>
<td>This site lists free online computer science, engineering and programming books, textbooks and
lecture notes, all of which are legally and freely available over the Internet
</td>
<td><a href="http://www.freetechbooks.com/">资源地址</a></td>
</tr>
<tr>
<td>Free ebooks by Project Gutenberg (古腾堡计划)</td>
<td>Project Gutenberg offers over 50,000 free ebooks: choose among free epub books, free kindle
books, download them or read them online. <br>
We carry high quality ebooks: All our ebooks were previously published by bona fide publishers.
We digitized and diligently proofread them with the help of thousands of volunteers. <br>
No fee or registration is required.
</td>
<td><a href="http://www.gutenberg.org/wiki/Main_Page">资源地址</a></td>
</tr>
<tr>
<td>InTech开放获取书刊平台</td>
<td>InTech是国际比较知名的开放获取图书出版商,目前网站上有2000多种开放获取图书,涉及科技、医学、社科等多个学科,同时也有少量的高质量开放获取期刊。均可免费获取全文。</td>
<td><a href="http://www.intechopen.com/">资源地址</a></td>
</tr>
<tr>
<td>The Online Books Page 在线图书</td>
<td>由美国宾州大学教授John Mark
Ockerbloom主持的免费网站,最早从1993年开始,在网上免费提供电子图书,目前拥有超过3万本图书。其选书的标准严格,只有免费的内容完整的浏览方便的电子书才会被添加。
</td>
<td><a href="http://onlinebooks.library.upenn.edu/">资源地址</a><br>
</td>
</tr>
<tr>
<td>美国国家学术出版社</td>
<td>美国的国家学术出版社(National Academies
Press,NAP)目前将其出版的所有PDF版图书对所有读者免费开放下载,约4000余种,涉及生物、生命科学、计算机、信息科学、工程、技术、能源、社会科学、教育等多个学科领域。
</td>
<td><a href="http://www.nap.edu/">资源地址</a></td>
</tr>
<tr>
<td>谷歌图书搜索</td>
<td>谷歌图书搜索(Google Book
Search)是谷歌公司于2004年启动的一个项目,旨在对全球大学图书馆藏书进行数字化扫描,打造世界最大的数字图书馆。目前,谷歌图书已扫描了来自全球各地图书馆和出版商的700万种图书,其中约100万种书可以免费预览全部内容。
</td>
<td><a href="http://books.google.com">资源地址</a><br>
</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td>
<div><span>
<a href="http://etext.library.adelaide.edu.au/">阿德雷德大学电子文本收藏中心</a></span><br>
( 包括古典文学,哲学,科学和医学著作)</span></div>
</td>
<td>
<div><a href="http://dspace.anu.edu.au/">澳大利亚国立大学ANU电子出版库</a><br>
(自1967年以来大部分出版物,需要注册登录,免费的)</span></div>
</td>
<td>
<div><a href="http://www.ehum.edu.au/"
>澳大利亚数字化人文门户</a><br>
(澳大利亚人文学界的数字化资源门户) </span></div>
</td>
</tr>
<tr>
<td>
<div>
<a href="http://espace.lis.curtin.edu.au/"
><span
>科廷大学技术文献库</span></a><br>
(科廷技术大学科研人员和研究生的科研成果) </span></div>
</td>
<td>
<div><span>
<a href="http://eprints.unimelb.edu.au/">墨尔本大学电子出版物收藏网</a><br>
(自1945以来刊物,最好注册一个用户,免费的)</span></span></div>
</td>
<td>
<div>
<a href="http://eprint.uq.edu.au/"
><span
>昆士兰大学数字文库</span></a><br>
(电子书、各类文章,论文,会议文件,学术成果)</span></div>
</td>
</tr>
<tr>
<td>
<div><span>
<a href="http://eprint.monash.edu.au/">莫纳什大学电子文献库</a></span>
<br>
(电文出版物和该校研究人员的优秀研究成果) </span></div>
</td>
<td>
<div><span>
<a href="http://eprints.qut.edu.au/">昆士兰技术大学QUT
ePrints</a></span><br>
(自2004 年起,该校的公开研究成果都存放在此)</span></div>
</td>
<td>
<div><span>
<a href="http://setis.library.usyd.edu.au/">SETIS悉尼大学学术电子文本及图像服务</a></span><br>
(澳大利亚国家数字典藏的领先者,多数需要商业特许)</span></div>
</td>
</tr>
<tr>
<td>
<div>
<a href="http://eprints.utas.edu.au/"
><span
>塔斯马尼亚大学数字文献库UTasER</span></a><br>
(覆盖自 1968 年至今的文献) </span></div>
</td>
<td>
<div><span>
<a href="http://nzdl.sadl.uleth.ca/">新西兰数字文献收集网</a></span><br>
(历史文件,人类学和进化信息,计算机科学技术报道,文献学,文学以及期刊杂志) </span></div>
</td>
<td>
<div><span>
<a href="http://www.nzetc.org/">新西兰电子文本中心</a></span><br>
(提供新西兰和太平洋岛国的文字和历史遗产资料) </span></div>
</td>
</tr>
<tr>
<td>
<div>
<a href="http://www.gutenberg.net/"
><span>古腾堡数字化图书馆 </span></a><br>
(整个收藏展现了自1971年以来无偿的巨大努力)</span></div>
</td>
<td>
<div><span>
<a href="http://infomotions.com/">Infomotions
西方文学/哲学网</a><br>
(包括自美国/英国的文学和西方哲学公开著作)</span></span></div>
</td>
<td>
<div>
<a href="http://www.arxiv.org/"
><span>康内尔大学Arxiv</span></a><br>
(收藏了物理,数学,非线性科学和计算机科学方面的数字化 "预印本" 出版物) </span></div>
</td>
</tr>
<tr>
<td>
<div><span>
<a href="http://www.bartleby.com/">Bartleby.com</a></span><br>
(包含世界历史百科全书,以及哈佛经典著作,提供免费的电子文本) </span></div>
</td>
<td>
<div><span>
<a href="http://www.bibliomania.com/">Bibliomania</a></span><br>
(提供超过2000部免费电子文献,以及研究成果) </span></div>
</td>
<td>
<div><span>
<a href="http://cogprints.org/">Cogprints</a> </span><br>
(有各类心理学,神经科学,语言学,哲学,生物学,人类学和计算机科学电子文献, 部分区域需要注册)</span></div>
</td>
</tr>
<tr>
<td>
<div><span>
<a href="http://dlc.dlib.indiana.edu/">印第安纳大学国际文献档案库</a></span><br>
(这是一个服务公众的全文数字图书馆,作者可以提交著作,并被连入参考文献)</span></div>
</td>
<td>
<div><span>
<a href="http://www.dlese.org/dds/">DLESE地球系统教育数字图书馆</a></span><br>
( 涵盖了环境,地理,地质,海洋以及其他物理科学;空间科学与技术;教育方法和科学哲学内容) </span></div>
</td>
<td>
<div><span>
<a href="http://dlist.sir.arizona.edu/">dLIST信息科学技术数字图书馆</a></span><br>
(是一个图书馆与信息科学(LIS)和信息技术(IT)的电子资源库) </span></div>
</td>
</tr>
<tr>
<td>
<div><span>
<a href="http://www.readasily.com/">Readasily在线书库</a></span><br>
(名家云集的在线书库,作者包括孙子,狄更斯,柯南道尔,儒勒凡尔纳和马克吐温) </span></div>
</td>
<td>
<div><span>
<a href="http://elfwood.lysator.liu.se/">Elfwood</a></span><br>
(拥有超过两万部文学和艺术作品,来自超过一千五百名幻想/科幻艺术家和作家)</span></div>
</td>
<td>
<div><span>
<a href="http://eserver.org/">Eserver.org </a></span><br>
(收藏了大量在线智慧文学和资源,由华盛顿大学创立)</span></div>
</td>
</tr>
<tr>
<td>
<div><span>
<a href="http://www.refdesk.com/"
>Refdesk网上资料库</a></span><br>
(这里包括了很有用处的八十个连接) </span></div>
</td>
<td>
<div><span>
<a href="http://www.ipl.org/">IPL互联网公共图书馆</a></span><br>
(密歇根大学信息学院的学习和教学环境) </span></div>
</td>
<td>
<div>
<a href="http://www.zum.de/"
><span
>库尔特·斯塔博的在线图书馆</span></a><br>
(收藏了古代和现代的大量生物学著作,其中很多珍本, 可在线阅读)</span></div>
</td>
</tr>
<tr>
<td>
<div><span>
<a href="http://ocw.mit.edu/"
>麻省理工学院的开放文献网站</a></span><br>
(自2003年9月以来已经有800项课程)</span></div>
</td>
<td>
<div>
<a href="http://www.nap.edu/"
><span
>美国国家科学院在线数据据库</span></a><br>
(超过3000部科学,工程和健康卫生方面的著作,可以在线阅读,这些文献代表了美国在这些领域的研究精华)</span></div>
</td>
<td>
<div><span>
<a href="http://www.ndltd.org/">Ndltd.org </a></span><br>
<span class="style27">(</span><span
class="style31">搜集了来自澳大利亚,加拿大,许多欧洲国家,香港,台湾和美国的论文) </span>
</div>
</td>
</tr>
<tr>
<td>
<div><span>
<a href="http://digital.library.upenn.edu/books"
>宾夕法尼亚大学网站</a></span><br>
(有超过 16000 部在线电子书 ,值得一读) </span></div>
</td>
<td>
<div>
<a href="http://ota.ahds.ac.uk/"
><span
>牛津大学档案馆 </span></a><br>
(建于1976年,这里有用于研究和教学的大量高品质文献 资料公共区域可以免费在线检索目录,下载)</span></div>
</td>
<td>
<div><span>
<a href="http://www2.hn.psu.edu/faculty/jmanis/jimspdf.htm"
>宾夕法尼亚州立大学经典电子文库</a></span><br>
(网站成立于 1997 年,提供了许多经典的英语文学作品,此外还有宾州出版的原本) </span></div>
</td>
</tr>
<tr>
<td>
<div>
<a href="http://eprints.bo.cnr.it/"><span>Eprints.bo.cnr.it</span></a><br>
(化学,物理,工程,材料科学,纳米技术,微电子学,计算机,天文学,天体物理学,地球科学,气象学,海洋)</span></div>
</td>
<td>
<div><span>
<a href="http://www.soilandhealth.org/">Soilandhealth </a></span><br>
(这个在线图书馆提供了免费的公开阅览,涉及整体农艺学,整体卫生学)</span></div>
</td>
<td>
<div><span>
<a href="http://www.ul.cs.cmu.edu/">卡内基梅隆大学百万图书计划</a></span><br>
(这个百万图书计划将有相当多一部分内容使用中文和印度语言,以及英语)</span></div>
</td>
</tr>
<tr>
<td>
<div>
<a href="http://etext.lib.virginia.edu/"
><span
>弗吉尼亚大学电子文献中心</span></a><br>
(超过10000 部可以公开或取的著作(以及超过 164000 幅图像))</span></div>
</td>
<td>
<div>
<a href="http://www.vlib.org/"
><span>虚拟图书馆</span></a><br>
(这个网站由一个松散的志愿者联盟运作,这些人为了特殊地区编辑关键词页面) </span></div>
</td>
<td>
<div><a href="http://www.scielo.org/"
>巴西科技电子图书馆</a><br>
(Scientific Electronic Library Online)</span></div>
</td>
</tr>
<tr>
<td>
<div>
<a href="http://www.xys.org/"
><span
>新雨丝中国社会文化类免费电子书</span></a><br>
(网站目标是成为中国古典文学最完整在线图书馆)</span></div>
</td>
<td>
<div><span>
<a href="http://www.isoshu.com/">爱搜书免费电子书</a></span><br>
(成人可以搜索许多中文免费电子书 ,儿童可以在这里搜索连环画,卡通和教育资料)</span></div>
</td>
<td>
<div><span>
<a href="http://gallica.bnf.fr/">Gallica.bnf.fr </a></span><br>
<span class="style27">(法兰西国家图书馆资助的网站,法文)</span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://abu.cnam.fr/"
>世界图书馆</a><br>
(世界图书馆,法语)</span></div>
</td>
<td>
<div><a href="http://www.dli.ernet.in/"
>印度数字图书馆</a><br>
(已经收藏超过29000部著作,目标是收藏百万著作,以印度语言为主,让每个读者可以免费阅读) </span></div>
</td>
<td>
<div><span>
<a href="http://www.amolenuvolette.it/pdfs">免费的意大利智力电子书</a><a
href="http://www.yeeyan.com/articles/tag/%E7%94%B5%E5%AD%90%E4%B9%A6"
></a></span><a
href="http://www.yeeyan.com/articles/tag/%E7%94%B5%E5%AD%90%E4%B9%A6"
><br>
</a>(艺术与科学的交叉完美结合。包括生物学分形结构,数学和艺术,人机接口,纳米晶体管) </span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://www.ebookgratis.it/"
>意大利电子书网站</a><br>
(阅读一分钱都不用花,包括小说,诗歌,古典文学,戏剧,传记,恐怖和幻想小说,新经济学等) </span></div>
</td>
<td>
<div><a href="http://www.liberliber.it/"
>意大利在线图书网站</a><br>
(免费,内容涵盖从艺术建筑到旅游,包括幻想文学,诗歌和戏剧)</span></div>
</td>
<td>
<div><a href="http://www.aozora.gr.jp/"
>日本文学著作</a><br>
( 格式包括 HTML , ZIP(下载)和日文电子书格式)</span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://www.koreandb.net/"
>韩国书院的电子书网站</a><br>
(韩国书院的韩语电子书网站)</span></div>
</td>
<td>
<div><a href="http://www.openbook.usatoday.com/"
>今日美国开放图书计划</a><br>
(一家报纸网站的独立部门,一些有名的小说)家开放了他们的版权,供所有的访客阅)</span></div>
</td>
<td>
<div><a href="http://www.freeonlinebooks.org/"
>Freeonlinebooks</a><br>
(超过五千本免费读物。纯文本在线阅读,可以按照作者,标题,分类和关键词搜索,需要注册)</span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://www.litencyc.com/">英语文学网站</a><br>
(超过一千位学生为这个巨大的网站捐助成果,焦点是英语文学) </span></div>
</td>
<td>
<div><a href="http://www.levity.com/">炼金术电子书网站</a><br>
(这是一个巨大的网站,站长是炼金术权威亚当 · 麦克莱恩)</span></div>
</td>
<td>
<div><a href="http://www.downloadfreepdf.com/">计算机程序设计电子书 </a><br>
(包括:Abap, Java, Linux, Php, Oracle & Vb.net 。 PDF 格式。注意,在下载之前,需先建立一个账户) </span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://www.e-dsp.com/"
>电子爱好者的精品图书馆 </a><br>
(数字信号处理器,数字编程和其它有关主题。可以 免费阅读或下载)</span></div>
</td>
<td>
<div><a href="http://www.electronics-ee.com/"
>免费的电子技术图书馆 </a><br>
(航空航天,计算机模拟和数字设计,生物技术,计算机工程,消费电子,DSP,电力学,MCU,纳米技术,电磁物理,研究和开发,半导体技术,电信技术) </span></div>
</td>
<td>
<div><a href="http://mathworld.wolfram.com/"
>数学世界</a> <br>
(为学生,教育家,数学爱好者和研究者准备的全面地数学百科全书) </span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://www.healthopedia.com/"
>在线医学百科全书 </a><br>
(超过1500主题的在线医学百科全书,包括康复,疾病,伤害,营养,手术,症状,试验)</span></div>
</td>
<td>
<div><a href="http://freebooks4doctors.com/">医生的免费电子书</a> <br>
(免费使用的医学电子书,超过 550 本在线阅读) </span></div>
</td>
<td>
<div><a href="http://www.rfzone.org/free-rf-ebooks/"
>射频技术电子书</a><br>
(包括射频入门,电磁学,天线设计入门,调节,信号频谱分析,射频测量和滤波,放大器设计,混和器,振荡器) </span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://www.freetechbooks.com/"
>Freetechbooks </a><br>
(计算机科学,工程科学,编程,数学书籍,论文讲稿) </span></div>
</td>
<td>
<div><a href="http://www.literature.at/"
>奥地利文献</a><br>
(超过12000 部奥地利文献,甚至包括明信片,可以在因特网上访问)</span></div>
</td>
<td>
<div><a href="http://www.jstage.jst.go.jp/"
class="f14">日本电子科学与技术信息集成 </a><br>
(Japan Science and Technology Information Aggregator, Electronic) </span></div>
</td>
</tr>
<tr>
<td>
<div>
<a href="http://www.access.gpo.gov/"
>GPO Access</a><a
href="http://www.access.gpo.gov/"
><br>
</a>(美国政府文献) </span></div>
</td>
<td>
<div>
<a href="http://www.bbsonline.org/"
>Behavioral and Brain Sciences </a><span
class="style31">
<a href="http://www.bbsonline.org/"><br>
</a>(主要是行为科学与脑科学的论文资料)</span></div>
</td>
<td>
<div><a href="http://www.biomedcentral.com/">BioMed
Central</a><a href="http://www.biomedcentral.com/"
><br>
</a>(生物医学中心开放获取期刊) </span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://www.scientistsolutions.com/"
>Scientistsolutions</a><span
class="style31"><a href="http://www.scientistsolutions.com/"
><br>
</a>(生命科学论文检索与讨论的综合平台)</span></div>
</td>
<td>
<div><a href="http://www.icpsr.umich.edu/"
class="f14">世界最大的社会科学文献网站(ICPSR) </a><br>
(Inter-university Consortium for Political and Social Research)</span></div>
</td>
<td>
<div>
<a href="http://www.nationalacademies.org/publications/"
>National Academy Press</a><a
href="http://www.nationalacademies.org/publications/"
> </a>
<a href="http://www.nationalacademies.org/publications/"><br>
</a> (美国国家科学院、国家工程院、医学协会等机构的论文/报告/PPT,内容几乎涵盖所有学科) </span></div>
</td>
</tr>
<tr>
<td>
<div><a href="http://www.cdc.gov/nchs/"
class="f14">NCHS</a> <br>
(National Center for Health Statistics,美国国家卫生统计中心的统计报告)</span></div>
</td>
<td>
<div><a href="http://promo.net/pg/"
class="f14">Project Gutenberg Electronic Public
Lib</a><br>
(最老的免费电子图书网站, 已提供超过20000 种全文电子图书)</span></div>
</td>
<td>
<div><a href="http://unesdoc.unesco.org/"
class="f14">UNESCO </a><br>
(联合国教科文组织提供的文档,包含自然科学与社会科学,有多种语言,包括中文) </span></div>
</td>
</tr>
<tr>
<td>
<div>
<a href="http://www.usgs.gov/"
>United
States Geological Survey</a><a href="http://www.usgs.gov/"
><br>
</a>(美国地质考察报告/论文,包括生物学与地理、地质学及水质)</span></div>
</td>
<td>
<div>
<a href="http://www.openj-gate.com/"
>Open J-Gate</a><a
href="http://www.openj-gate.com/"
><br>
</a>(全球最大的免费全文期刊,内容涵盖各个学科)</span></div>
</td>
<td></td>
</tr>
</tbody>
</table>
<div class="content">
<p class="rtecenter"><font size="2"><strong><a href="#1">国内学术资源导航系统</a></strong> <b><strong>
<a href="#2">国</a></strong><a href="#2">外学术资源导航系统</a>
</b> <strong><a href="#3">学术搜索引擎</a></strong></font></p>
<hr>
<p><font size="2"> 网络学术资源导航(Internet resources by subject)
一般由大学图书馆、重点院系或其他学术资源单位承担,针对网上可免费获取并有重大学术参考价值的资源,按照学科、主题等体系进行搜集、整理、分类,并制成导航网站,提供相关学科专业、学术领域的读者参照使用,从而尽快找到自己所需要的文献。</font>
</p>
<ul>
<li><font size="2"><strong>1. 国内学术资源导航系统</strong> <a name="1"></a></font></li>
</ul>
<table cellspacing="0" bordercolor="#000000" cellpadding="0" width="77%">
<tbody>
<tr style="height: 15pt">
<td width="252"><font size="2"><b>名称</b></font></td>
<td width="616"><font size="2"><b>网 址</b></font></td>
</tr>
<tr>
<td width="252"><font size="2">CALLS重点学科网络资源导航门户</font></td>
<td width="616"><font size="2"><a href="http://navigation.calis.edu.cn/cm/">http://navigation.calis.edu.cn/cm/</a></font>
</td>
</tr>
<tr>
<td width="252"><font size="2">中国高等教育</font> <font size="2">文献保障系统(<span lang="FR"
style="color: black">CALIS)</span></font>
</td>
<td width="616"><font size="2"><a href="http://www.calis.edu.cn/calisnew/">http://www.calis.edu.cn/calisnew/</a></font>
</td>
</tr>
<tr style="height: 28.85pt">
<td width="252"><font size="2">中国教育和科研计算机网</font></td>
<td width="616"><font size="2"><a href="http://www.edu.cn/">http://www.edu.cn/</a></font></td>
</tr>
<tr>
<td width="252"><font size="2">国家科技图书文献中心(NSTL)网络导航</font></td>
<td width="616"><font size="2"><a
href="http://www.nstl.gov.cn">http://www.nstl.gov.cn</a></font></td>
</tr>
<tr>
<td width="252">
<p><font size="2">中国科学院国家科学图书馆</font></p>
</td>
<td width="616"><font size="2"><span lang="FR" style="color: #111111"><a
href="http://www.csdl.ac.cn">http://www.csdl.ac.cn</a></span></font></td>
</tr>
<tr style="height: 30.2pt">
<td width="252"><font size="2">中国社会科学院图书馆</font></td>
<td width="616"><font size="2"><a href="http://www.cendi.cass.org.cn/">http://www.cendi.cass.org.cn/</a></font>
</td>
</tr>
<tr style="height: 21.75pt">
<td width="252"><font size="2">中国人民大学图书馆</font> <font size="2">学科导航</font></td>
<td width="616"><font size="2"><a href="http://202.112.118.40/old/daohang/society/">http://202.112.118.40/old/daohang/society/</a></font>
</td>
</tr>
<tr style="height: 17.25pt">
<td width="252"><font size="2">武汉大学图书馆</font> <font size="2">重点学科导航库</font></td>
<td width="616"><font size="2"><a href="http://www.lib.whu.edu.cn/xkdh/index.asp">http://www.lib.whu.edu.cn/xkdh/index.asp</a></font>
</td>
</tr>
</tbody>
</table>
<ul>
<li><font size="2"><strong>2. 国外学术资源导航系统</strong> <a name="2"></a></font></li>
</ul>
<table border="1" cellspacing="0" bordercolor="#000000" cellpadding="0" width="77%">
<tbody>
<tr style="height: 22.8pt">
<td width="224"><font size="2"><b>名称</b></font></td>
<td width="716"><font size="2"><b>简<span lang="EN-US" style="line-height: 125%"> 介</span></b></font>
</td>
</tr>
<tr>
<td><font size="2"><a href="http://lii.org">美国加州图书馆LII导航系统</a></font></td>
<td><font size="2">著名的Librarian’s Index to
theIntemet,简称Lll。这是国外最早的网络学术资源导航,是由美国加州图书馆创建并由伯克利数字图书馆SunSITE维护。LII的内容非常丰富,包括艺术人文、商业金融、政治法律、教育、新闻媒体、区域研究、社会学专题、体育等共14个大类数百个子类的学科导航,除可以进行检索外,还可以进行RSS订阅。 </font>
</td>
</tr>
<tr>
<td><font size="2">英国的图书馆公告板网络化知识库</font></td>
<td><font size="2">BUBL Link是一个以图书馆学和信息科学信息资源为主,同时涵盖各个学科领域的Internet资源的网络资源目录。</font></td>
</tr>
<tr>
<td><font size="2"><a href="http://infomine.ucr.edu/">Inpomine</a></font></td>
<td><font size="2">由加利弗尼亚大学、底特律-麦西大学等多家大学图书馆联合建立的网络学术资源虚拟图书馆。收藏各种重要的数据库、电子期刊、电子图书、公告板、讨论组、图书馆联机目录、教科书、会议论文集、研究人员的论文和名录及其它类型的信息。分为生物、电子期刊、教育资源、物理、计算机和数学等12个数据库。</font>
</td>
</tr>
<tr>
<td><font size="2"><a href="http://www.vlib.org.uk/">万维网虚拟图书馆(The WWW Virtual
Library)</a></font></td>
<td><font size="2">由一批志愿者组成的松散联合体所构建和维护,这些志愿者大都是某一学科领域的专家,他们把针对某一特定学科的重要链接编辑成网页,从而组成高质量的网络信息资源指南。</font>
</td>
</tr>
<tr>
<td><font size="2"><a href="http://www.intute.ac.uk/">英国网络资源发现门户<span
lang="EN-US" style="color: black">Intute</span></a></font></td>
<td><font size="2">涵盖生命科学、数学、物理、计算机科学、地学和环境科学、人文科学等学科/专题领域的联合项目,按照主题分类链接超过8万个专业网站资源,提供10万多个教育和研究方面的网络链接服务,分为科学技术、人文艺术、社会科学、健康与生命科学四个服务模块。</font>
</td>
</tr>
<tr>
<td><font size="2"><a href="http://www.ipl.org/">网上公共图书馆</a></font></td>
<td><font size="2">美国密歇根大学开发的虚拟图书馆。将传统图书馆的职能、服务等与先进的信息技术结为一体,从而实现网上资源的利用与共享,收藏范围广泛。</font></td>
</tr>
<tr>
<td><font size="2"><a
href="http://www.liv.ac.uk/Chemistry/Links/links.html">英国利物浦大学化学资源导航</a></font>
</td>
<td><font size="2"><a href="http://www.liv.ac.uk/Chemistry/Links/links.html">http://www.liv.ac.uk/Chemistry/Links/links.html</a></font>
</td>
</tr>
<tr>
<td><font size="2"><a
href="http://www.lib.berkeley.edu/Catalogs/list.html">美国加州大学伯克利分校网络学术资源导航</a></font>
</td>
<td><font size="2"><a href="http://www.lib.berkeley.edu/Catalogs/list.html"><br>
</a></font>
<div><font size="2">分为人文科学与区域研究、社会科学和自然科学等3 个大类,涉及90
个学科领域。其每个学科的导航均内容丰富、自成体系。伯克利分校的网络学术资源导航是一个学科门类十分丰富的综合、全面的大型导航系统,对从事各领域研究的读者尤其是伯克利的本地用户(因其包含很多本地资源的导航)
具有极大的参考价值。</font></div>
</td>
</tr>
<tr style="height: 29.45pt">
<td><font size="2"><a
href="http://library.caltech.edu/collections/chemistry.htm">美国加州理工大学图书馆化学资源导航系统</a></font>
</td>
<td><font size="2"><a href="http://library.caltech.edu/collections/chemistry.htm">http://library.caltech.edu/collections/chemistry.htm</a></font>
</td>
</tr>