本文目录一览

1,查找中文科技期刊全文文献的数据库有哪些

知网 维普 万方
一般的在学校图书馆主页里面有,你好好找找

查找中文科技期刊全文文献的数据库有哪些

2,常用的检索中文期刊的数据库有哪些

cnnik,维普,万方 个人感觉cnnik数据库最好,清华的产品,扫描质量好,文章多。其他几个多少有点垃圾。

常用的检索中文期刊的数据库有哪些

3,新手提问有哪些比较好的文献检索数据库

看看这个!小帅收集的,非常全!http://www.madio.net/bbs/dispbbs.asp?boardID=17&ID=557&page=1

新手提问有哪些比较好的文献检索数据库

4,哪一个数据库中能检索到有关期刊论文的文献

这个不行的,你要检测肯定只能用程序了去检测了,数据库的主要功能是用来存数据(不然为何叫数据库),它只是附带1部份存数据时做检测数据合法的功能。固然它还有个做业的功能,作业的目的也是处理数据

5,以下哪些数据库是全文检索数据库

#一个完整的演示 #!/usr/bin/env python # -*- coding: UTF-8 -*- from whoosh.index import create_in from whoosh.fields import * from whoosh.analysis import RegexAnalyzer analyzer = RegexAnalyzer(ur”([\u4e00-\u9fa5])|(\w+(\.?\w+)*)”) schema = Schema(title=TEXT(stored=True), path=ID(stored=True), content=TEXT(stored=True, analyzer=analyzer)) ix = create_in(“indexdir”, schema) writer = ix.writer() writer.add_document(title=u”First document”, path=u”/a”, content=u”This is the first document weve added!”) writer.add_document(title=u”Second document”, path=u”/b”, content=u”The second one 你 中文测试中文 is even more interesting!”) writer.commit() searcher = ix.searcher() results = searcher.find(“content”, u”first”) print results[0] results = searcher.find(“content”, u”你”) print results[0] results = searcher.find(“content”, u”测试”) print results[0]

文章TAG:哪些数据库进行文献检索  查找中文科技期刊全文文献的数据库有哪些  
没有了