From 3042042e3bcc6a6f47a9520407a1e12202471470 Mon Sep 17 00:00:00 2001 From: jiaojiaodubai <63148861+jiaojiaodubai@users.noreply.github.com> Date: Sat, 17 Aug 2024 15:51:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=BB=B4=E6=99=AE=E4=B8=BB?= =?UTF-8?q?=E7=AB=99=E5=9F=9F=E5=90=8D=EF=BC=9B=E5=A2=9E=E5=8A=A0qikan.cqv?= =?UTF-8?q?ip=E7=9A=84=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B=EF=BC=9B?= =?UTF-8?q?=E4=B8=A5=E6=A0=BC=E7=9A=84=E5=8F=98=E9=87=8F=E5=A3=B0=E6=98=8E?= =?UTF-8?q?=EF=BC=9B=E4=BF=AE=E5=A4=8D=E9=A1=B5=E7=A0=81=E7=9A=84=E5=B0=BE?= =?UTF-8?q?=E9=9A=8F=E9=80=97=E5=8F=B7=EF=BC=9B=E9=87=8D=E5=91=BD=E5=90=8D?= =?UTF-8?q?Label=EF=BC=9B=E6=9B=B4=E6=96=B0data.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CQVIP Knowledge.js | 969 +++++++++++++++++++++++++++++++++++++++++++++ CQVIP Qikan.js | 401 +++++++++++++++++++ CQVIP.js | 941 +++++++++++++++---------------------------- WeiPu V3.js | 725 --------------------------------- data/data.json | 6 +- 5 files changed, 1684 insertions(+), 1358 deletions(-) create mode 100644 CQVIP Knowledge.js create mode 100644 CQVIP Qikan.js delete mode 100644 WeiPu V3.js diff --git a/CQVIP Knowledge.js b/CQVIP Knowledge.js new file mode 100644 index 0000000..6268c77 --- /dev/null +++ b/CQVIP Knowledge.js @@ -0,0 +1,969 @@ +{ + "translatorID": "7fdba422-8405-4fb4-8e06-a6cc2297d9d9", + "label": "CQVIP Knowledge", + "creator": "jiaojiaodubai", + "target": "^https?://k\\.vipslib\\.com", + "minVersion": "5.0", + "maxVersion": "", + "priority": 100, + "inRepository": true, + "translatorType": 4, + "browserSupport": "gcsibv", + "lastUpdated": "2024-08-17 07:39:28" +} + +/* + ***** BEGIN LICENSE BLOCK ***** + + Copyright © 2024 jiaojiaodubai + + This file is part of Zotero. + + Zotero is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Zotero is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with Zotero. If not, see . + + ***** END LICENSE BLOCK ***** +*/ + + +function detectWeb(doc, _) { + const panel = doc.querySelector('#articlelist, .j-d-articles'); + if (panel) { + Z.monitorDOMChanges(panel, { subtree: true, childList: true }); + } + let typeKey = attr(doc, 'h1 > i', 'class'); + if (typeKey && typeKey != 'text-journal') { + typeKey = typeKey.substring(5); + return { + article: 'journalArticle', + book: 'book', + paper: 'thesis', + meeting: 'conferencePaper', + standard: 'standard', + patent: 'patent', + laws: 'statute', + // 案例库的标题不完整,且只有案号和发布日期,信息过于粗糙,暂不适配 + // judicialcase: 'case', + achievements: 'report', + newspaper: 'newspaperArticle' + }[typeKey]; + } + else if (getSearchResults(doc, true)) { + return 'multiple'; + } + return false; +} + +function getSearchResults(doc, checkOnly) { + const items = {}; + let found = false; + // http://k.cqvip.com/asset/search?key=VSUzRCVFOSU5QiU5NSVFNSVBMSU5MQ==&cf=&skey=MF9VXyUyNUU5JTI1OUIlMjU5NSUyNUU1JTI1QTElMjU5MQ== + // http://k.cqvip.com/asset/journal/20210001787 + // http://k.cqvip.com/asset/guidelist + const rows = Array.from(doc.querySelectorAll('#articlelist dl, .j-d-articles li')).filter(row => row.querySelector('dt:first-child > a, a')); + for (const row of rows) { + const doi = row.querySelector('.doi > i > a'); + const href = row.querySelector('dt:first-child > a, a').href; + const title = attr(row, 'dt:first-child > a, a', 'title') || ZU.trimInternal(row.querySelector('dt:first-child > a, a', 'title').textContent); + if (!href || !title) continue; + if (checkOnly) return true; + found = true; + items[JSON.stringify({ + url: href, + doi: doi ? doi.href : '' + })] = title; + } + return found ? items : false; +} + +async function doWeb(doc, url) { + if (detectWeb(doc, url) == 'multiple') { + const items = await Zotero.selectItems(getSearchResults(doc, false)); + if (!items) return; + for (const key of Object.keys(items).map(aKey => JSON.parse(aKey))) { + // 需要浏览器环境 + const newItem = await scrape(await requestDocument(key.url)); + if (ZU.fieldIsValidForType('DOI', newItem.itemType)) { + newItem.DOI = ZU.cleanDOI(key.doi); + } + else { + const extra = new Extra(); + extra.set('DOI', ZU.cleanDOI(key.doi), true); + newItem.extra = extra.toString(newItem.extra); + } + newItem.complete(); + } + } + else { + const newItem = await scrape(doc, url); + newItem.complete(); + } +} + +async function scrape(doc, url = doc.location.href) { + Z.debug(doc.body.innerText); + let creators = []; + let creatorsEn = []; + const labels = new LabelsX(doc, '.article-detail > p'); + const extra = new Extra(); + Z.debug(labels.innerData.map(arr => [arr[0], ZU.trimInternal(arr[1].textContent)])); + const newItem = new Z.Item(detectWeb(doc, url)); + newItem.title = attr(doc, '.article-summary > h1', 'title').replace(/_\((.+?)\)/g, '$1').replace(/_(\d)/g, '$1'); + extra.set('original-title', text(doc, '.article-summary > em').replace(/_\((.+?)\)/g, '$1').replace(/_(\d)/g, '$1'), true); + newItem.abstractNote = labels.getWith('摘要'); + switch (newItem.itemType) { + case 'journalArticle': { + newItem.publicationTitle = attr(doc, 'a[href*="/asset/journal/"]', 'title'); + extra.set('original-container-title', tryMatch(labels.getWith('出版物'), /\((\w+)\)$/, 1), true); + const pubInfo = labels.getWith('年卷期'); + newItem.volume = tryMatch(pubInfo, /第0*(\d+)卷/, 1); + newItem.issue = tryMatch(pubInfo, /第([A-Z\d]+)期/, 1).replace(/0*(\d)/, '$1'); + newItem.pages = labels.getWith('页码').replace(/\+/g, ', ').replace(/~/g, '-'); + newItem.date = tryMatch(pubInfo, /^(\d{4})年/, 1); + creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent))); + creatorsEn = text(doc, '.author > em').split(/[;,;]\s*/).map(enName => ZU.capitalizeName(enName)); + extra.set('foundation', labels.getWith('基金')); + break; + } + case 'book': + newItem.series = labels.getWith('丛书名'); + // http://k.cqvip.com/asset/detail/101996618144 + newItem.edition = labels.getWith('版本说明'); + newItem.publisher = labels.getWith('出版社'); + newItem.date = ZU.strToISO(labels.getWith('出版年')); + newItem.numPages = tryMatch(labels.getWith('页数'), /\d+/); + newItem.ISBN = ZU.cleanISBN(labels.getWith('ISBN')); + creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent))); + break; + case 'thesis': + newItem.thesisType = labels.getWith('学位级别') + '学位论文'; + newItem.university = labels.getWith('作者单位'); + newItem.date = ZU.strToISO(labels.getWith('授予年度')); + creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent))); + labels.getWith('导师姓名').split(/[;,;]/).forEach(creator => creators.push(cleanAuthor(creator, 'contributor'))); + break; + case 'conferencePaper': + newItem.date = ZU.strToISO(labels.getWith('会议日期')); + newItem.conferenceName = labels.getWith('会议名称').replace(/^《|》$/g, ''); + creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent))); + break; + case 'standard': + newItem.title = attr(doc, '.article-summary > h1', 'title').replace(/([\u4e00-\u9fff]) ([\u4e00-\u9fff])/, '$1 $2'); + newItem.number = labels.getWith('标准编号'); + newItem.date = ZU.strToISO(labels.getWith('发布日期')); + extra.set('applyDate', labels.getWith('实施日期')); + newItem.numPages = tryMatch(labels.getWith('页码'), /\d+/); + extra.set('CCS', labels.getWith('中国标准分类号')); + extra.set('ICS', labels.getWith('国际标准分类号')); + break; + case 'patent': + newItem.patentNumber = labels.getWith('公开号').split(';')[0]; + newItem.applicationNumber = labels.getWith('专利申请号').split(';')[0]; + newItem.place = newItem.country = patentCountry(newItem.patentNumber || newItem.applicationNumber); + newItem.filingDate = labels.getWith('申请日'); + newItem.issueDate = labels.getWith('公开日'); + extra.set('Genre', labels.getWith('专利类型'), true); + creators = Array.from(labels.getWith('发明人', true).querySelectorAll('a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent))); + break; + + /* + 已知问题: + 1. 缺少修订日期(Edition) + 2. 党内法规无法获取作者 + */ + case 'statute': { + newItem.title = newItem.title.replace(/\((.+?)\)/, '($1)'); + const rank = labels.getWith('效力级别'); + if (rank == '党内法规制度' || newItem.title.includes('草案')) { + newItem.itemType = 'report'; + newItem.shortTitle = tryMatch(newItem.title, /^(.+)——.+/, 1); + newItem.date = labels.getWith('颁布日期'); + } + else { + if (!labels.getWith('效力级别').includes('法律')) { + extra.set('Type', 'regulation', true); + } + if (newItem.title.startsWith('中华人民共和国')) { + newItem.shortTitle = newItem.title.substring(7); + } + newItem.publicLawNumber = labels.getWith('发文文号'); + newItem.dateEnacted = labels.getWith('颁布日期'); + if (labels.getWith('时效性') == '已失效') { + extra.set('Status', '已废止', true); + } + } + + extra.set('applyDate', labels.getWith('实施日期')); + creators = Array.from(labels.getWith('颁布部门', true).querySelectorAll('a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent))); + break; + } + case 'report': + newItem.reportType = '科技成果报告'; + newItem.institution = labels.getWith('完成单位'); + newItem.date = labels.getWith('公布年份'); + extra.set('achievementType', labels.getWith('成果类别')); + creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent))); + break; + case 'newspaperArticle': + newItem.publicationTitle = attr(labels.getWith('报纸名称', true), 'a', 'title'); + newItem.date = labels.getWith('发表日期'); + newItem.pages = labels.getWith('版名版号').replace(/0*(\d)/, '$1'); + creators = Array.from(doc.querySelectorAll('.author > a')).map(element => cleanAuthor(ZU.trimInternal(element.textContent))); + break; + } + newItem.language = /[\u4e00-\u9fff]/.test(newItem.title) ? 'zh-CN' : 'en-US'; + newItem.url = url; + newItem.libraryCatalog = '维普经纶知识服务平台'; + newItem.creators = creators; + creatorsEn.forEach(enName => extra.push('original-author', enName, true)); + creators = ZU.deepCopy(creators); + if (creatorsEn.length) { + for (let i = 1; i < creators.length; i++) { + creators[i].original = creatorsEn[i] || ''; + } + extra.set('creatorsExt', JSON.stringify(creators)); + } + labels.getWith(['主题', '关键词'], true).querySelectorAll('a').forEach(element => newItem.tags.push(ZU.trimInternal(element.textContent))); + extra.set('CLC', labels.getWith('中图分类')); + newItem.extra = extra.toString(); + return newItem; +} + +class LabelsX { + constructor(doc, selector) { + this.innerData = []; + this.emptyElement = doc.createElement('div'); + Array.from(doc.querySelectorAll(selector)) + // avoid nesting + .filter(element => !element.querySelector(selector)) + // avoid empty + .filter(element => !/^\s*$/.test(element.textContent)) + .forEach((element) => { + const elementCopy = element.cloneNode(true); + // avoid empty text + while (/^\s*$/.test(elementCopy.firstChild.textContent)) { + // Z.debug(elementCopy.firstChild.textContent); + elementCopy.removeChild(elementCopy.firstChild); + // Z.debug(elementCopy.firstChild.textContent); + } + if (elementCopy.childNodes.length > 1) { + const key = elementCopy.removeChild(elementCopy.firstChild).textContent.replace(/\s/g, ''); + this.innerData.push([key, elementCopy]); + } + else { + const text = ZU.trimInternal(elementCopy.textContent); + const key = tryMatch(text, /^[[【]?.+?[】\]::]/).replace(/\s/g, ''); + elementCopy.textContent = tryMatch(text, /^[[【]?.+?[】\]::]\s*(.+)/, 1); + this.innerData.push([key, elementCopy]); + } + }); + } + + getWith(label, element = false) { + if (Array.isArray(label)) { + const results = label + .map(aLabel => this.getWith(aLabel, element)); + const keyVal = element + ? results.find(element => !/^\s*$/.test(element.textContent)) + : results.find(string => string); + return keyVal + ? keyVal + : element + ? this.emptyElement + : ''; + } + const pattern = new RegExp(label, 'i'); + const keyVal = this.innerData.find(arr => pattern.test(arr[0])); + return keyVal + ? element + ? keyVal[1] + : ZU.trimInternal(keyVal[1].textContent) + : element + ? this.emptyElement + : ''; + } +} + +class Extra { + constructor() { + this.fields = []; + } + + push(key, val, csl = false) { + this.fields.push({ key: key, val: val, csl: csl }); + } + + set(key, val, csl = false) { + let target = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key)); + if (target) { + target.val = val; + } + else { + this.push(key, val, csl); + } + } + + get(key) { + let result = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key)); + return result + ? result.val + : undefined; + } + + toString(history = '') { + this.fields = this.fields.filter(obj => obj.val); + return [ + this.fields.filter(obj => obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n'), + history, + this.fields.filter(obj => !obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n') + ].filter(obj => obj).join('\n'); + } +} + +function tryMatch(string, pattern, index = 0) { + if (!string) return ''; + const match = string.match(pattern); + return (match && match[index]) + ? match[index] + : ''; +} + +function cleanAuthor(creator, creatorType = 'author') { + creator = ZU.cleanAuthor(creator, creatorType); + if (/[\u4e00-\u9fff]/.test(creator.lastName)) { + creator.lastName = creator.firstName + creator.lastName; + creator.firstName = ''; + creator.fieldMode = 1; + } + return creator; +} + +/** + * Return the country name according to the patent number or patent application number. + */ +function patentCountry(idNumber) { + return { + AD: '安道尔', AE: '阿拉伯联合酋长国', AF: '阿富汗', AG: '安提瓜和巴布达', AI: '安圭拉', AL: '阿尔巴尼亚', AM: '亚美尼亚', AN: '菏属安的列斯群岛', AO: '安哥拉', AR: '阿根廷', AT: '奥地利', AU: '澳大利亚', AW: '阿鲁巴', AZ: '阿塞拜疆', BB: '巴巴多斯', BD: '孟加拉国', BE: '比利时', BF: '布莱基纳法索', BG: '保加利亚', BH: '巴林', BI: '布隆迪', BJ: '贝宁', BM: '百慕大', BN: '文莱', BO: '玻利维亚', BR: '巴西', BS: '巴哈马', BT: '不丹', BU: '缅甸', BW: '博茨瓦纳', BY: '白俄罗斯', BZ: '伯利兹', CA: '加拿大', CF: '中非共和国', CG: '刚果', CH: '瑞士', CI: '科特迪瓦', CL: '智利', CM: '喀麦隆', CN: '中国', CO: '哥伦比亚', CR: '哥斯达黎加', CS: '捷克斯洛伐克', CU: '古巴', CV: '怫得角', CY: '塞浦路斯', + DE: '联邦德国', DJ: '吉布提', DK: '丹麦', DM: '多米尼加岛', DO: '多米尼加共和国', DZ: '阿尔及利亚', EC: '厄瓜多尔', EE: '爱沙尼亚', EG: '埃及', EP: '欧洲专利局', ES: '西班牙', ET: '埃塞俄比亚', FI: '芬兰', FJ: '斐济', FK: '马尔维纳斯群岛', FR: '法国', + GA: '加蓬', GB: '英国', GD: '格林那达', GE: '格鲁吉亚', GH: '加纳', GI: '直布罗陀', GM: '冈比亚', GN: '几内亚', GQ: '赤道几内亚', GR: '希腊', GT: '危地马拉', GW: '几内亚比绍', GY: '圭亚那', HK: '香港', HN: '洪都拉斯', HR: '克罗地亚', HT: '海地', HU: '匈牙利', HV: '上沃尔特', ID: '印度尼西亚', IE: '爱尔兰', IL: '以色列', IN: '印度', IQ: '伊拉克', IR: '伊朗', IS: '冰岛', IT: '意大利', + JE: '泽西岛', JM: '牙买加', JO: '约旦', JP: '日本', KE: '肯尼亚', KG: '吉尔吉斯', KH: '柬埔寨', KI: '吉尔伯特群岛', KM: '科摩罗', KN: '圣克里斯托夫岛', KP: '朝鲜', KR: '韩国', KW: '科威特', KY: '开曼群岛', KZ: '哈萨克', LA: '老挝', LB: '黎巴嫩', LC: '圣卢西亚岛', LI: '列支敦士登', LK: '斯里兰卡', LR: '利比里亚', LS: '莱索托', LT: '立陶宛', LU: '卢森堡', LV: '拉脱维亚', LY: '利比亚', + MA: '摩洛哥', MC: '摩纳哥', MD: '莫尔多瓦', MG: '马达加斯加', ML: '马里', MN: '蒙古', MO: '澳门', MR: '毛里塔尼亚', MS: '蒙特塞拉特岛', MT: '马耳他', MU: '毛里求斯', MV: '马尔代夫', MW: '马拉维', MX: '墨西哥', MY: '马来西亚', MZ: '莫桑比克', NA: '纳米比亚', NE: '尼日尔', NG: '尼日利亚', NH: '新赫布里底', NI: '尼加拉瓜', NL: '荷兰', NO: '挪威', NP: '尼泊尔', NR: '瑙鲁', NZ: '新西兰', OA: '非洲知识产权组织', OM: '阿曼', + PA: '巴拿马', PC: 'PCT', PE: '秘鲁', PG: '巴布亚新几内亚', PH: '菲律宾', PK: '巴基斯坦', PL: '波兰', PT: '葡萄牙', PY: '巴拉圭', QA: '卡塔尔', RO: '罗马尼亚', RU: '俄罗斯联邦', RW: '卢旺达', + SA: '沙特阿拉伯', SB: '所罗门群岛', SC: '塞舌尔', SD: '苏丹', SE: '瑞典', SG: '新加坡', SH: '圣赫勒拿岛', SI: '斯洛文尼亚', SL: '塞拉利昂', SM: '圣马利诺', SN: '塞内加尔', SO: '索马里', SR: '苏里南', ST: '圣多美和普林西比岛', SU: '苏联', SV: '萨尔瓦多', SY: '叙利亚', SZ: '斯威士兰', TD: '乍得', TG: '多哥', TH: '泰国', TJ: '塔吉克', TM: '土库曼', TN: '突尼斯', TO: '汤加', TR: '土耳其', TT: '特立尼达和多巴哥', TV: '图瓦卢', TZ: '坦桑尼亚', UA: '乌克兰', UG: '乌干达', US: '美国', UY: '乌拉圭', UZ: '乌兹别克', + VA: '梵蒂冈', VC: '圣文森特岛和格林纳达', VE: '委内瑞拉', VG: '维尔京群岛', VN: '越南', VU: '瓦努阿图', WO: '世界知识产权组织', WS: '萨摩亚', YD: '民主也门', YE: '也门', YU: '南斯拉夫', ZA: '南非', ZM: '赞比亚', ZR: '扎伊尔', ZW: '津巴布韦' + }[idNumber.substring(0, 2).toUpperCase()] || ''; +} + +/** BEGIN TEST CASES **/ +var testCases = [ + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/2031156636722", + "items": [ + { + "itemType": "journalArticle", + "title": "溶剂热法可控合成NiCo2O4锂电池负极材料及储锂机制研究", + "creators": [ + { + "firstName": "", + "lastName": "华丽", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "曾建华", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "樊锋凯", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "朱玉涵", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "翁方青", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "胡庆兰", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "李景蕻", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2022", + "abstractNote": "溶剂热法可控合成NiCo_(2)O_(4)锂电池负极材料,进行XRD、ESEM、电化学性能分析并获得分散性好、晶型完整的尖晶石型NiCo_(2)O_(4)纳米片。充放电测试显示:首次比容量分别为1376mAh/g和1544mAh/g;经150次循环后,容量保持率约70%。低倍率下(0.05~2C)稳定性明显高于高倍率(10C)下,与Li+在电解液中的扩散电阻增大有关,这在交流阻抗(EIS)中得到证实。循环伏安(CV)为进一步弄清脱嵌锂机理提供了依据。EIS等效电路拟合结果显示:60次循环后,电极电阻(R1)由357Ω·cm^(2)下降到154Ω·cm^(2),与电极材料活化有关。但电解液扩散电阻(WS)从345Ω·cm^(2)增大到467Ω·cm^(2),与电极材料被破坏粉化有关。为了更好平衡这两个相互矛盾的变量,有效控制合成NiCo_(2)O_(4)电极材料十分关键,本法获得的NiCo_(2)O_(4)负极材料其电化学性能较优异。", + "extra": "original-title: Controllable Synthesis of NiCo2O4Anode Materials by Solvothermal Method for Lithium Battery Together with Its Lithium Storage Mechanism\noriginal-author: Hua Li\noriginal-author: Zeng Jian-hua\noriginal-author: Fan Feng-kai\noriginal-author: Zhu Yu-han\noriginal-author: Weng Fang-qing\noriginal-author: Hu Qing-lan\noriginal-author: Li Jing-hong\nfoundation: 湖北省自然科学基金(2021CFB251) 国家自然科学基金青年项目(22004029) 湖北第二师范学院校级教学研究和科学研究项目(X2019013,X2020001和20XGZX10).\ncreatorsExt: [{\"firstName\":\"\",\"lastName\":\"华丽\",\"creatorType\":\"author\",\"fieldMode\":1},{\"firstName\":\"\",\"lastName\":\"曾建华\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Zeng Jian-hua\"},{\"firstName\":\"\",\"lastName\":\"樊锋凯\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Fan Feng-kai\"},{\"firstName\":\"\",\"lastName\":\"朱玉涵\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Zhu Yu-han\"},{\"firstName\":\"\",\"lastName\":\"翁方青\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Weng Fang-qing\"},{\"firstName\":\"\",\"lastName\":\"胡庆兰\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Hu Qing-lan\"},{\"firstName\":\"\",\"lastName\":\"李景蕻\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Li Jing-hong\"}]\nCLC: O614[数理科学和化学-化学]", + "issue": "11", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "pages": "19-25", + "publicationTitle": "武汉理工大学学报", + "url": "http://k.vipslib.com/asset/detail/2031156636722", + "volume": "44", + "attachments": [], + "tags": [ + { + "tag": "NiCo_(2)O_(4)负极材料" + }, + { + "tag": "储锂机制研究" + }, + { + "tag": "可控合成" + }, + { + "tag": "锂电池" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/20157997658", + "items": [ + { + "itemType": "book", + "title": "电视色彩学", + "creators": [ + { + "firstName": "", + "lastName": "刘恩御", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "李振", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2019", + "ISBN": "9787565724480", + "abstractNote": "本书是在《电视色彩学》原本的基础上修订而成。作者为中国传媒大学教授刘恩御,他多年从事“电视色彩学教学工作,结合教学实践,用17年的时间研究、设计了“染料三基色系统。本书正是他多年研究成果的结晶。本书从物理、生理及心理的角度阐述色彩形成的原理、特征、不同的色彩组合所表达的意境或感情以及这些自然规律在电视节目制作中的美术、灯光、摄影、摄像、编辑等制作环节上的应用。由于各类视觉艺术且有对色彩应用的共性,因此,电视色彩学的应用范围不仅仅限于电视节目制作,它对电影、戏剧、摄影、美术、染织及广泛的生活领域都有一定的实用、参考价值。", + "edition": "第2版", + "extra": "original-title: Television chromatology\nCLC: G222.3[文化、科学、教育、体育-信息与知识传播] J91[艺术-电影、电视艺术] G222[文化、科学、教育、体育-信息与知识传播] TN949.12[工业技术-无线电电子学、电信技术]", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "numPages": "205", + "publisher": "北京:中国传媒大学出版社", + "series": "电视艺术学丛书", + "url": "http://k.vipslib.com/asset/detail/20157997658", + "attachments": [], + "tags": [ + { + "tag": "信息与知识传播" + }, + { + "tag": "广播、电视事业" + }, + { + "tag": "文化、科学、教育、体育" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/20471967745", + "items": [ + { + "itemType": "thesis", + "title": "基于压褶形态的服装设计创新研究", + "creators": [ + { + "firstName": "", + "lastName": "张玲", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "许旭兵", + "creatorType": "contributor", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "田玲", + "creatorType": "contributor", + "fieldMode": 1 + } + ], + "date": "2023", + "abstractNote": "人们对服装精神层面追求的不断提高以及服装市场竞争程度的不断激烈,推动了压褶服装的流行,凸显了压褶服装创新设计研究的重要性和必要性。文章通过六个章节对本课题的研究进行阐述,在整篇文章中,笔者首先阐述了关于本课题的研究背景、研究意义、研究现状、研究内容与思路框架以及研究的方法与创新点,继而对本课题研究对象的概念、研究对象的历史渊源及其发展历程进行了较为全面的整理归纳。由相关内容整理归纳的基础上切入主题,通过设计师的设计作品解析了几个常见的具有代表性的压褶形态在服装设计中的工艺方法及其形态造型,并以设计师的设计作品案例为基础,从工艺手法、服装款式、服装色彩三个方面分析总结了压褶形态在服装设计中的创新应用方法,为后续压褶形态服装的创新性设计实践提供理论参照。最后笔者详细的阐述了关于本课题的设计实践,呈现了笔者设计实践的作品,并且对本课题的相关研究进行了总结和展望。 压褶服装设计的创新性研究不仅势在必行而且意义深远,立足压褶元素、创新服装设计是适应潮流,满足人们对于服装的精神层面需求的重要途径,也是增强压褶服装市场竞争力的重要因素。文章通过文献研究法、图形分析法、比较分析法、设计实践法等研究方法对压褶形态的相关内容进行分析阐述,创造性地归纳总结了其成型原理,结合案例,对压褶形态与服装之间的创新融合设计进行研究分析,挖掘其设计创新的方法以及设计创新的关键,并最终通过实践操作对研究结果进行验证和呈现,为解读压褶符号的神秘、拓展服装设计的思路、丰富服装时尚的语言提供理论上以及实践上的支持。", + "extra": "CLC: TS941.2[工业技术-轻工业、手工业]", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "thesisType": "硕士学位论文", + "university": "东华大学", + "url": "http://k.vipslib.com/asset/detail/20471967745", + "attachments": [], + "tags": [ + { + "tag": "创新设计" + }, + { + "tag": "压褶形态" + }, + { + "tag": "压褶服装" + }, + { + "tag": "服装设计" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/20668882544", + "items": [ + { + "itemType": "conferencePaper", + "title": "字体设计的方法与实践探索", + "creators": [ + { + "firstName": "", + "lastName": "吴莹", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2019", + "abstractNote": "在今天的生活中,我们面临着如何利用视觉语言形式的创新去构造具有吸引力和传达力的字体作品。《字体设计的方法与实践》课程通过形态分析、效果运用与视觉表现三个方面使学生基本掌握现代字体设计的创新思维与方法技能。第一阶段,引导学生在平时的生活中学会观察、发现各种与字体相关的视觉因素,及其在不同环境中所呈现的视觉状态与视觉效果;第二阶段,通过古老形制方式现代材质应用和多维形态呈现等方法,尝试字体设计中不同视觉效果的创作过程与构建方式;第三阶段,通过图形借代和文字的图案化等表现形式的展开,探索并形成字体独特的风格与表现力。在课程中,教师指导学生不断尝试字体设计的新观念、新手法,通过对不同类型应用设计作品的分析,使学生对现实生活中字体应用的客观规律有较为详尽的认识与理解,形成解决字体方面不同问题的能力。", + "conferenceName": "2019第九届全国视觉传达设计教育论坛", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "url": "http://k.vipslib.com/asset/detail/20668882544", + "attachments": [], + "tags": [ + { + "tag": "古老形制" + }, + { + "tag": "图形借代" + }, + { + "tag": "图案化" + }, + { + "tag": "字体设计" + }, + { + "tag": "现代材质" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/20512556185", + "items": [ + { + "itemType": "standard", + "title": "信息与文献 参考文献著录规则", + "creators": [], + "date": "2015", + "abstractNote": "本标准规定了各个学科、各种类型信息资源的参考文献的著录项目、著录顺序、著录用符号、著录用文字、各个著录项目的著录方法以及参考文献在正文中的标注法。 本标准适用于著者和编辑著录参考文献,而不是供图书馆员、文献目录编制者以及索引编辑者使用的文献著录规则。", + "extra": "original-title: Information and documentation—Rules for bibliographic references and citations to information resources\napplyDate: 2015-12-01\nCCS: A14\nICS: 01_140_20", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "numPages": "27", + "number": "GB/T 7714-2015", + "url": "http://k.vipslib.com/asset/detail/20512556185", + "attachments": [], + "tags": [ + { + "tag": "书目标准" + }, + { + "tag": "参考文献" + }, + { + "tag": "规则" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/207336700438", + "items": [ + { + "itemType": "patent", + "title": "一种面料的后整理加工方法及面料", + "creators": [ + { + "firstName": "", + "lastName": "张瑞喜", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "梁竹青", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "段雪梅", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "高丽忠", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "金永乐", + "creatorType": "author", + "fieldMode": 1 + } + ], + "issueDate": "2023-10-24", + "abstractNote": "本发明公开了一种面料的后整理加工方法及面料,包括如下步骤:步骤a:将面料进行缩绒处理;步骤b:将所述步骤a中进行缩绒处理后的面料进行拉幅烘干处理;步骤c:将所述步骤b中经拉幅烘干处理后的面料进行钢丝起毛处理;步骤d:将所述步骤c中经钢丝起毛处理后的面料进行刺果起毛处理;步骤e:将所述步骤d中经刺果起毛处理后的面料进行逆毛冲水处理;步骤f:将所述步骤e中经逆毛冲水后的面料进行烘干处理;步骤g:将所述步骤f中经烘干之后的面料进行干刷毛处理;步骤h:将所述步骤g中经干刷毛之后的面料进行烫光处理。本发明所提供的面料的后整理加工方法,使得面料表面覆盖一层长而自然卷曲的纤维,蓬松丰厚,光泽柔和。", + "applicationNumber": "CN202310901127.X", + "country": "中国", + "extra": "Genre: 发明专利", + "filingDate": "2023-07-20", + "language": "zh-CN", + "patentNumber": "CN116926835A", + "place": "中国", + "url": "http://k.vipslib.com/asset/detail/207336700438", + "attachments": [], + "tags": [ + { + "tag": "冲水" + }, + { + "tag": "刺果" + }, + { + "tag": "加工" + }, + { + "tag": "后整理" + }, + { + "tag": "干刷" + }, + { + "tag": "拉幅" + }, + { + "tag": "柔和" + }, + { + "tag": "烘干" + }, + { + "tag": "烘干处理" + }, + { + "tag": "烫光" + }, + { + "tag": "纤维" + }, + { + "tag": "缩绒" + }, + { + "tag": "自然卷曲" + }, + { + "tag": "蓬松" + }, + { + "tag": "覆盖" + }, + { + "tag": "起毛处理" + }, + { + "tag": "钢丝" + }, + { + "tag": "面料" + }, + { + "tag": "面料表面" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/20843700223", + "items": [ + { + "itemType": "statute", + "nameOfAct": "最高人民法院、最高人民检查院关于依法严惩破坏计划生育犯罪活动的通知", + "creators": [ + { + "firstName": "", + "lastName": "最高人民法院", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "最高人民检察院", + "creatorType": "author", + "fieldMode": 1 + } + ], + "dateEnacted": "1993-11-12", + "abstractNote": "各省、自治区、直辖市高级人民法院、人民检察院,解放军军事法院、军事检察院:实行计划生育是我国的一项基本国策。它关系到民族的昌盛、子孙后代的幸福。对少数人以各种手段破坏计划生育工作的行为,除进行必要的教育外,对那些伪造计划生育证明出售牟利,多次为他人做", + "extra": "Type: regulation\nStatus: 已废止\napplyDate: 1993-11-12", + "language": "zh-CN", + "publicLawNumber": "法发36号", + "url": "http://k.vipslib.com/asset/detail/20843700223", + "attachments": [], + "tags": [ + { + "tag": "犯罪活动" + }, + { + "tag": "计划生育" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/20865128867", + "detectedItemType": "statute", + "items": [ + { + "itemType": "report", + "title": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗——在中国共产党第二十次全国代表大会上的报告", + "creators": [ + { + "firstName": "", + "lastName": "中国共产党中央委员会", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2022-10-16", + "abstractNote": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗 --在中国共产党第二十次全国代表大会上的报告 (2022年10月16日) 习近平 同志们: 现在,我代表第十九届中央委员会向大会作报告。 中国共产党第二十次全国代表大会,是在全党全国各族人民迈上全面建设社会主义现代化国家新征程、向第二个百年奋斗目标进军的关键时刻召开的一次十分重要的大会。 大会的主题是:高举中国特色社会主义伟大旗帜,全面贯彻新时代中国特色社会主义思想,弘扬伟大建党精神,自信自强、守正创新,踔厉奋发、勇毅前行,为全面建设社会主义现代化国家、全面推进中华民族伟大复兴而团结奋斗。 中国共产党已走过百年奋斗历程。我们党立志于中华民族千秋伟业,致力于人类和平与发展崇高事业,责任无比重大,使命无上光荣。全党同志务必不忘初心、牢记使命,务必谦虚谨慎、艰苦奋斗,务必敢于斗争、善于斗争,坚定历史自信,增强历史主动,谱写新时代中国特色社会主义更加绚丽的华章。 一、过去五年的工作和新时代十年的伟大变革 十九大以来的五年,是极不寻常、极不平凡的五年。党中央统筹中华民族伟大复兴战略全局和世界百年未有之大变局,召开七次全会,分别就宪法修改,深化党和国家机构改革,坚持和完善中国特色社会主义制度、推进国家治理体系和治理能力现代化,制定“十四五规划和二〇三五年远景目标,全面总结党的百年奋斗重大成就和历史经验等重大问题作出决定和决议,就党和国家事业发展作出重大战略部署,团结带领全党全军全国各族人民有效应对严峻复杂的国际形势和接踵而至的巨大风险挑战,以奋发有为的精神把新时代中国特色社会主义不断推向前进。 五年来,我们坚持加强党的全面领导和党中央集中统一领导,全力推进全面建成小康社会进程,完整、准确、全面贯彻新发展理念,着力推动高质量发展,主动构建新发展格局,蹄疾步稳推进改革,扎实推进全过程人民民主,全面推进依法治国,积极发展社会主义先进文化,突出保障和改善民生,集中力量实施脱贫攻坚战,大力推进生态文明建设,坚决维护国家安全,防范化解重大风险,保持社会大局稳定,大力度推进国防和军队现代化建设,全方位开展中国特色大国外交,全面推进党的建设新的伟大工程。我们隆重庆祝中国共产党成立一百周年、中华人民共和国成立七十周年,制定第三个历史决议,在全党开展党史学习教育,建成中国共产党历史展览馆,号召全党学习和践行伟大建党精神,在新的征程上更加坚定、更加自觉地牢记初心使命、开创美好未来。特别是面对突如其来的新冠肺炎疫情,我们坚持人民至上、生命至上,坚持外防输入、内防反弹,坚持动态清零不动摇,开展抗击疫情人民战争、总体战、阻击战,最大限度保护了人民生命安全和身体健康,统筹疫情防控和经济社会发展取得重大积极成果。面对香港局势动荡变化,我们依照宪法和基本法有效实施对特别行政区的全面管治权,制定实施香港特别行政区维护国家安全法,落实“爱国者治港原则,香港局势实现由乱到治的重大转折,深入推进粤港澳大湾区建设,支持香港、澳门发展经济、改善民生、保持稳定。面对“台独势力分裂活动和外部势力干涉台湾事务的严重挑衅,我们坚决开展反分裂、反干涉重大斗争,展示了我们维护国家主权和领土完整、反对“台独的坚强决心和强大能力,进一步掌握了实现祖国完全统一的战略主动,进一步巩固了国际社会坚持一个中国的格局。面对国际局势急剧变化,特别是面对外部讹诈、遏制、封锁、极限施压,我们坚持国家利益为重、国内政治优先,保持战略定力,发扬斗争精神,展示不畏", + "extra": "applyDate: 2022-10-16", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "shortTitle": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗", + "url": "http://k.vipslib.com/asset/detail/20865128867", + "attachments": [], + "tags": [], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/20858657837", + "detectedItemType": "statute", + "items": [ + { + "itemType": "report", + "title": "关于《中华人民共和国行政诉讼法修正案(草案)》的说明", + "creators": [ + { + "firstName": "", + "lastName": "全国人大常委会", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2013-12-23", + "abstractNote": "关于《中华人民共和国行政诉讼法修正案(草案)》的说明 (2013年12月23日在第十二届全国人民代表大会常务委员会第六次会议上 全国人大常委会法制工作委员会副主任 信春鹰) 委员长、各位副委员长、秘书长、各委员: 我受委员长会议的委托,作关于《中华人民共和国行政诉讼法修正案(草案)》的说明。 行政诉讼法于1989年由第七届全国人大第二次会议通过,1990年10月1日起实施。这部被称为“民告官的法律规定了行政诉讼程序的基本规则,实施以来,在解决行政争议,推进依法行政,保护公民、法人和其他组织的合法权益等方面,发挥了重要作用。同时,随着社会主义民主法制建设的深入推进,行政诉讼制度与社会经济发展不协调、不适应的问题也日渐突出。人民群众对行政诉讼中存在的“立案难、审理难、执行难等突出问题反映强烈。为解决这些突出问题,适应依法治国、依法执政、依法行政共同推进,法治国家、法治政府、法治社会一体建设的新要求,有必要对行政诉讼法予以修改完善。 近年来,许多全国人大代表和有关方面陆续提出修改行政诉讼法的意见和建议。法制工作委员会从2009年开始着手行政诉讼法的修改调研工作,先后到山东、湖南等多地进行调研,听取基层人民法院、地方政府部门的意见和建议。采取旁听案件审理、阅卷、派人到行政审判一线蹲点等多种方式了解行政诉讼实践的情况。多次召开国务院部门、学者和律师座谈会,听取意见。今年11月又分两次召开17个省、自治区、直辖市人大法制机构、政府法制部门、人民法院和人民检察院参加的座谈会。按照党的十八届三中全会精神和各方面的意见,修改工作把握以下几点:一是维护行政诉讼制度的权威性,针对现实中的突出问题,强调依法保障公民、法人和其他组织的诉讼权利;二是坚持我国行政诉讼制度的基本原则,维护行政权依法行使和公民、法人和其他组织寻求司法救济渠道畅通的平衡,保障人民法院依法独立行使审判权;三是坚持从实际出发,循序渐进,逐步完善;四是总结行政审判实践的经验,把经实践证明的有益经验上升为法律。经与最高人民法院、国务院法制办公室等方面沟通协商、反复研究,在充分论证并取得基本共识的基础上,形成了行政诉讼法修正案(草案)。现就主要问题说明如下: 一、关于保障当事人的诉讼权利 行政诉讼面临的“三难,最突出的是立案难。公民、法人或者其他组织与政府机关及其工作人员产生纠纷,行政机关不愿当被告,法院不愿受理,导致许多应当通过诉讼解决的纠纷进入信访渠道,在有些地方形成了“信访不信法的局面。为通畅行政诉讼的入口,建议从五个方面完善对当事人的诉权保护: 1.明确人民法院和行政机关应当保障当事人的起诉权利。增加规定:人民法院应当保障公民、法人或者其他组织的起诉权利,对应当受理的行政案件依法受理。行政机关不得干预、阻碍人民法院受理行政案件。被诉行政机关应当依法应诉。(修正案草案第三条) 2.扩大受案范围。将行政机关侵犯公民、法人或者其他组织依法享有的土地、矿藏、水流、森林、山岭、草原、荒地、滩涂、海域等自然资源的所有权或者使用权,行政机关侵犯农村土地承包经营权,行政机关违法集资、征收征用财产、摊派费用,行政机关没有依法支付最低生活保障待遇或者社会保险待遇等纳入受案范围。(修正案草案第四条) 3.明确可以口头起诉,方便当事人行使诉权。增加规定:起诉应当向人民法院递交起诉状,并按照被告人数提出副本。书写起诉状确有困难的,可以口头起诉,由人民法院记入笔录,出具注明日期的书面凭证,并告知对方当事人。(修正案草案第二十五条) 4.强化受理程序约束。增加规定:一是人民法院应当在接到起诉状时当场予以登记,并出具注明日期的书面凭证。起诉状内容欠缺或者有其他错误的,应当给予指导和释明,并一次性告知当事人补正。不得未经指导和释明即以起诉不符合条件为由不受理。二是起诉符合条件的,人民法院应当在接到起诉状或者口头起诉之日起七日内立案,并通知当事人;不符合起诉条件的,应当在七日内作出裁定书,不予受理。裁定书应当载明不予受理的理由。原告对裁定不服的,可以提起上诉。三是人民法院在七日内既不立案,又不作出裁定书的,当事人可以向上一级人民法院起诉。上一级人民法院认为符合起诉条件的,应当立案、审理,也可以指定其他下级人民法院立案、审理。(修正案草案第二十五条、第二十七条) 5.明确人民法院的相应责任。增加规定:对于不接收起诉状、接收起诉状后不出具书面凭证,以及不一次性告知当事人补正起诉状内容的,当事人可以向上级人民法院投诉,上级人民法院应当责令改正,并对直接负责的主管人员和其他直接责任人员依法给予处分。(修正案草案第二十五条) 二、关于对规范性文件的附带审查 实践中,有些具体行政行为侵犯公民、法人或者其他组织的合法权益,是地方政府及其部门制定的规范性文件中越权错位等规定造成的。为从根本上减少违法具体行政行为,可以由法院在审 ······", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "url": "http://k.vipslib.com/asset/detail/20858657837", + "attachments": [], + "tags": [], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/20913559137", + "items": [ + { + "itemType": "report", + "title": "光伏储能一体机系统", + "creators": [ + { + "firstName": "", + "lastName": "李新富", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "郭华为", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "王建星", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "周勇", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "施鑫淼", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "张祥平", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "陈青青", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2019年", + "abstractNote": "项目采用模块化设计,并分层设置在多层柜仓中,多层柜仓内分别设置有储能电池、电池充放电模块、逆变器、配电模块,电池充放电模块对储能电池的充放电进行管理,对光伏储能智能一体机的运行过程进行控制并显示各种状态参数,实现人机交互功能,通信模块与云端服务器及用户手机通信连接,互联网监控实时上传汇总,生成数据报告;通过有线和无线实现于云端的无缝对接,可以让客户无论在何时何地都能监控到家里的发电用电情况,实现了智能化。", + "extra": "achievementType: 应用技术", + "institution": "浙江艾罗网络能源技术有限公司", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "reportType": "科技成果报告", + "url": "http://k.vipslib.com/asset/detail/20913559137", + "attachments": [], + "tags": [ + { + "tag": "一体机" + }, + { + "tag": "储能" + }, + { + "tag": "光伏" + }, + { + "tag": "系统" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "http://k.vipslib.com/asset/detail/21142496714", + "items": [ + { + "itemType": "newspaperArticle", + "title": "日本登月探测器怎么了?", + "creators": [ + { + "firstName": "", + "lastName": "钱铮", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "张伊伊", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2024-01-22", + "abstractNote": "新华社东京1月20日电(记者钱铮 张伊伊)日本小型登月探测器SLIM东京时间20日凌晨在月球表面着陆,但随后被发现其搭载的太阳能电池无法发电。无法发电意味着什么?此次登月任务有何特点?到底算不算成功?探测器还能否恢复活力? SLIM能否运行? 东京时间20日零时(北京时?", + "language": "zh-CN", + "libraryCatalog": "维普经纶知识服务平台", + "pages": "8", + "publicationTitle": "新华每日电讯", + "url": "http://k.vipslib.com/asset/detail/21142496714", + "attachments": [], + "tags": [ + { + "tag": "探测器" + }, + { + "tag": "月球着陆" + }, + { + "tag": "月球表面" + } + ], + "notes": [], + "seeAlso": [] + } + ] + } +] +/** END TEST CASES **/ diff --git a/CQVIP Qikan.js b/CQVIP Qikan.js new file mode 100644 index 0000000..130a10f --- /dev/null +++ b/CQVIP Qikan.js @@ -0,0 +1,401 @@ +{ + "translatorID": "dd9efb0b-ca1d-4634-b480-9aabc84213c0", + "label": "CQVIP Qikan", + "creator": "Xingzhong Lin, jiaojiaodubai", + "target": "^https?://(lib|qikan|cstj)\\.cqvip\\.com", + "minVersion": "3.0", + "maxVersion": "", + "priority": 100, + "inRepository": true, + "translatorType": 4, + "browserSupport": "gcsibv", + "lastUpdated": "2024-08-17 03:23:36" +} + +/* + ***** BEGIN LICENSE BLOCK ***** + + Copyright © 2019 Xingzhong Lin, jiaojiaodubai + + This file is part of Zotero. + + Zotero is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Zotero is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with Zotero. If not, see . + + ***** END LICENSE BLOCK ***** +*/ + +function detectWeb(doc, url) { + if (url.includes('/Qikan/Article/Detail')) { + return 'journalArticle'; + } + else if (getSearchResults(doc, true)) { + return 'multiple'; + } + return false; +} + +function getSearchResults(doc, checkOnly) { + const items = {}; + let found = false; + const rows = doc.querySelectorAll('a[href*="/Qikan/Article/Detail?"]'); + for (const row of rows) { + const href = row.href; + const title = ZU.trimInternal(row.textContent); + if (!href || !title) continue; + if (checkOnly) return true; + found = true; + items[href] = title; + } + return found ? items : false; +} + +async function doWeb(doc, url) { + if (detectWeb(doc, url) == 'multiple') { + const items = await Zotero.selectItems(getSearchResults(doc, false)); + if (!items) return; + for (const url of Object.keys(items)) { + await scrape(await requestDocument(url)); + } + } + else { + await scrape(doc, url); + } +} + +async function scrape(doc, url = doc.location.href) { + const newItem = new Z.Item('journalArticle'); + const extra = new Extra(); + const id = tryMatch(url, /id=([\da-zA-z]+)/, 1); + Z.debug(`id: ${id}`); + try { + // throw new Error('debug'); + // 以下POST请求需要校验本地cookies,Scaffold不支持,需在浏览器调试 + const exportPage = await requestDocument( + '/Qikan/Search/Export?from=Qikan_Article_ExportTilte', + { + method: 'POST', + body: `ids=${id}&strType=title_info&type=endnote` + } + ); + const xmlText = attr(exportPage, 'input#xmlContent', 'value'); + const parser = new DOMParser(); + const xmlDoc = parser.parseFromString(xmlText, "application/xml"); + newItem.title = text(xmlDoc, 'Titles > Title > Text'); + newItem.abstractNote = text(xmlDoc, 'Abstracts > Abstract > Text'); + newItem.publicationTitle = text(xmlDoc, 'Periodical > Name'); + newItem.volume = text(xmlDoc, 'Volum'); + newItem.issue = text(xmlDoc, 'Issue'); + newItem.pages = text(xmlDoc, 'Page'); + newItem.date = ZU.strToISO(text(xmlDoc, 'PublishDate')); + newItem.ISSN = text(xmlDoc, 'Periodical > ISSN'); + newItem.language = text(xmlDoc, 'Language') === 'chi' ? 'zh-CN' : 'en-US'; + xmlDoc.querySelectorAll('Creator > Name').forEach(element => newItem.creators.push(cleanAuthor(element.textContent))); + xmlDoc.querySelectorAll('Keyword').forEach(element => newItem.tags.push(element.textContent)); + extra.set('CLC', text(xmlDoc, 'CLC > Code')); + } + catch (error) { + Z.debug(error); + newItem.title = text(doc, '.article-title > h1').replace(/\s*认领$/, ''); + newItem.abstractNote = (text(doc, '.abstract:nth-of-type(3)') || text(doc, '.abstract:nth-of-type(2)')) + .replace(/\s*收起$/, '') + .replace(/";/g, '"'); + newItem.publicationTitle = attr(doc, '.journal > span.from > a', 'title'); + const pubInfo = ZU.trimInternal(text(doc, '.journal > .from > .vol')); + Z.debug(pubInfo); + newItem.date = tryMatch(pubInfo, /^(\d+)年/, 1); + newItem.issue = tryMatch(pubInfo, /第0*(\d+)期/, 1); + newItem.pages = tryMatch(pubInfo, /期([\d+,~-]*),/, 1).replace(/\+/g, ', ').replace(/~/g, '-'); + doc.querySelectorAll('.author > span:nth-child(2) > span > a').forEach((element) => { + newItem.creators.push(cleanAuthor(element.innerText)); + }); + doc.querySelectorAll('.subject > span > a').forEach((element) => { + newItem.tags.push(ZU.trimInternal(element.innerText)); + }); + extra.set('CLC', attr(doc, '.class > span:nth-child(2)', 'title')); + } + newItem.url = `https://lib.cqvip.com/Qikan/Article/Detail?id=${id}`; + extra.set('original-title', ZU.capitalizeTitle(text(doc, '.article-title > em')), true); + text(doc, '.author > em').replace(/\(.+?\)$/, '') + .split(/;\s?/) + .forEach(str => extra.push('original-author', ZU.capitalizeName(str), true)); + extra.set('original-container-title', text(doc, '.journal > em'), true); + extra.set('WeiPuCite', text(doc, '.yzwx > a > span')); + // .app-reg for institution + // .user-more for personal + const isLogin = !!doc.querySelector('.app-reg > a,.user-more > a'); + Z.debug(`isLogin: ${isLogin}`); + const key = tryMatch(attr(doc, '.article-source > a[onclick^="showdown"]', 'onclick'), /'(.+?)'/g, 1); + Z.debug(`key: ${key}`); + if (isLogin && key) { + const pdfLink = await getPDF(id, key); + if (pdfLink) { + newItem.attachments = [{ + title: 'Full Text PDF', + mimeType: 'application/pdf', + url: pdfLink + }]; + } + } + newItem.extra = extra.toString(); + newItem.complete(); +} + +class Extra { + constructor() { + this.fields = []; + } + + push(key, val, csl = false) { + this.fields.push({ key: key, val: val, csl: csl }); + } + + set(key, val, csl = false) { + let target = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key)); + if (target) { + target.val = val; + } + else { + this.push(key, val, csl); + } + } + + get(key) { + let result = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key)); + return result + ? result.val + : ''; + } + + toString(history = '') { + this.fields = this.fields.filter(obj => obj.val); + return [ + this.fields.filter(obj => obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n'), + history, + this.fields.filter(obj => !obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n') + ].filter(obj => obj).join('\n'); + } +} + +function cleanAuthor(name) { + const creator = ZU.cleanAuthor(name, 'author'); + if (/[\u4e00-\u9fff]/.test(creator.lastName)) { + creator.lastName = creator.firstName + creator.lastName; + creator.fieldMode = 1; + } + return creator; +} + +async function getPDF(id, key) { + const postUrl = '/Qikan/Article/ArticleDown'; + const postData = `id=${id}&info=${key}&ts=${(new Date).getTime()}`; + const respond = await requestJSON(postUrl, { + method: 'POST', + body: postData + }); + return respond.url; +} + +function tryMatch(string, pattern, index = 0) { + if (!string) return ''; + let match = string.match(pattern); + return (match && match[index]) + ? match[index] + : ''; +} + +/** BEGIN TEST CASES **/ +var testCases = [ + { + "type": "web", + "url": "https://lib.cqvip.com/Qikan/Article/Detail?id=7109808542", + "items": [ + { + "itemType": "journalArticle", + "title": "数字时代背景下在线诉讼的发展路径与风险挑战 \n \n 认领\n 被引量:2", + "creators": [ + { + "firstName": "", + "lastName": "刘峥", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2023", + "abstractNote": "在线诉讼是互联网时代的必然产物,它可能存在发展快或慢的问题,但它的到来不可避免且无法抗拒,其存在的必要性与合理性也是母庸置疑的。现行民事诉讼法已对在线诉讼的效力予以确认。应当明确,基于诉讼活动的特质和规律,目前,在线诉讼只是线下诉讼的有益补充,并非取而代之。本文从《人民法院在线诉讼规则》出发,论述了在线诉讼的时代背景和发展历程,阐明在线诉讼的程序规范性、权利保障性、方式便捷性、模式融合性。同时,在线诉讼将对未来司法制度的完善发展产生巨大推动作用,在理论更新、规则指引、制度完善、技术迭代、安全保障、人才培养等方面均需作出必要的配套跟进。", + "extra": "original-title: Navigating Online Litigation in the Digital Age:Paths and Challenges\noriginal-author: Liu Zheng\noriginal-container-title: DIGITAL LAW\nWeiPuCite: 2", + "issue": "2", + "libraryCatalog": "CQVIP Qikan", + "pages": "122-135", + "publicationTitle": "数字法治", + "url": "https://lib.cqvip.com/Qikan/Article/Detail?id=7109808542", + "attachments": [], + "tags": [ + { + "tag": "在线诉讼" + }, + { + "tag": "基本特征" + }, + { + "tag": "融合发展" + }, + { + "tag": "风险挑战" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "https://qikan.cqvip.com/Qikan/Article/Detail?id=7109164886", + "items": [ + { + "itemType": "journalArticle", + "title": "不同反应条件对三元前躯体性质的影响", + "creators": [ + { + "firstName": "", + "lastName": "龚元林", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "廖折军", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "蒋海荣", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "杨云广", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2023", + "abstractNote": "随着车载动力电池的使用要求不断提高,对镍钴锰系三元前躯体的生产要求也越来越高,三元前躯体的品质直接决定了三元正极材料的性能发挥,所以制备高性能的三元前躯体,合成工艺尤为关键,在实际生产中按一定的Ni、Co、Mn物质的量的比进行配液,采用共沉淀法来准备三元前躯体,在车间连续式合成生产中,对反应釜氨值、反应温度进行适当调整,通过X射线衍射(XRD)、扫描电子显微镜(SEM)、比表面积孔径分析仪(BET)等对样品的结构、颗粒形貌进行了表征,从而探究不同反应条件对三元前躯体产品物理性质的影响。", + "extra": "original-title: Effects of Different Reaction Conditions on The Properties of Ternary Presoma\noriginal-author: Gong Yuanlin\noriginal-author: Liao Zhejun\noriginal-author: Jiang Hairong\noriginal-author: Yang Yunguang\noriginal-container-title: Guangdong Chemical Industry\nWeiPuCite: 0", + "issue": "3", + "libraryCatalog": "CQVIP Qikan", + "pages": "130-134", + "publicationTitle": "广东化工", + "url": "https://lib.cqvip.com/Qikan/Article/Detail?id=7109164886", + "attachments": [], + "tags": [ + { + "tag": "三元前躯体" + }, + { + "tag": "共沉淀法" + }, + { + "tag": "反应温度" + }, + { + "tag": "氨值" + }, + { + "tag": "电池" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "https://cstj.cqvip.com/Qikan/Article/Detail?id=7111313804&from=Qikan_Search_Index", + "items": [ + { + "itemType": "journalArticle", + "title": "Z世代清华大学“特奖”人研究", + "creators": [ + { + "firstName": "", + "lastName": "周溪亭", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "吴玥", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "魏海龙", + "creatorType": "author", + "fieldMode": 1 + }, + { + "firstName": "", + "lastName": "张宁", + "creatorType": "author", + "fieldMode": 1 + } + ], + "date": "2024", + "abstractNote": "特等奖学金作为清华大学本科生的最高荣誉,其获得者无疑是学校育人成果的典型代表。随着时代的发展,“特奖”人的特征也悄然发生了改变。文章基于茨格勒的资优行动模型,通过对3名Z世代获奖者的深度访谈,系统、动态地理解“特奖”人的大学成长过程。研究发现,“特奖”人在性格品质上表现为日常生活中的高自我要求,以及困境应对时的积极心态与强心理韧性;在行为表现上,用“实干善思”超越“听话出活”;在价值取向上,表现为共同利益取向和强烈的社会责任感。正是性格品质、行为表现与价值取向三方面的不断互动,以及个体与外部环境的相互作用,最终造就了“特奖”人的主观行动空间,具体表现为多元发展观、能力增长观和美美与共的取向。研究提出的解释框架有助于揭示高潜力拔尖创新人才的大学成长与发展过程。", + "extra": "original-title: A Study on the\"Special Scholarship\"Recipients of Generation Z at Tsinghua University\noriginal-author: Zhou Xiting\noriginal-author: Wu Yue\noriginal-author: Wei Hailong\noriginal-author: Zhang Ning\noriginal-container-title: Education and Teaching Research\nWeiPuCite: 0", + "issue": "2", + "libraryCatalog": "CQVIP Qikan", + "pages": "99-112", + "publicationTitle": "教育与教学研究", + "url": "https://lib.cqvip.com/Qikan/Article/Detail?id=7111313804", + "attachments": [], + "tags": [ + { + "tag": "Z世代" + }, + { + "tag": "价值观" + }, + { + "tag": "清华大学" + }, + { + "tag": "特等奖学金" + }, + { + "tag": "高潜力拔尖创新人才" + } + ], + "notes": [], + "seeAlso": [] + } + ] + }, + { + "type": "web", + "url": "https://lib.cqvip.com/Qikan/Search/Index?from=Qikan_Article_Detail", + "items": "multiple" + }, + { + "type": "web", + "url": "https://cstj.cqvip.com/Qikan/Search/Index?from=Qikan_Article_Detail", + "items": "multiple" + } +] +/** END TEST CASES **/ diff --git a/CQVIP.js b/CQVIP.js index 02390bf..fe08123 100644 --- a/CQVIP.js +++ b/CQVIP.js @@ -1,15 +1,15 @@ { - "translatorID": "7fdba422-8405-4fb4-8e06-a6cc2297d9d9", + "translatorID": "17364f55-b899-4553-977c-c1b062e80d28", "label": "CQVIP", "creator": "jiaojiaodubai", - "target": "^https?://.*k\\.cqvip\\.com", + "target": "^https://www\\.cqvip\\.com", "minVersion": "5.0", "maxVersion": "", "priority": 100, "inRepository": true, "translatorType": 4, "browserSupport": "gcsibv", - "lastUpdated": "2024-04-01 05:42:11" + "lastUpdated": "2024-08-17 03:05:34" } /* @@ -35,54 +35,43 @@ ***** END LICENSE BLOCK ***** */ +const typeMap = { + journal: 'journalArticle', + degree: 'thesis', + conference: 'conferencePaper', + report: 'report', + patent: 'patent', + standard: 'standard' +}; -function detectWeb(doc, _) { - let panel = doc.querySelector('#articlelist, .j-d-articles'); - if (panel) { - Z.monitorDOMChanges(panel, { subtree: true, childList: true }); +function detectWeb(doc, url) { + const mainWidget = doc.querySelector('.search .main, .periodical-detail .main'); + if (mainWidget) { + Z.monitorDOMChanges(mainWidget, { childList: true, subtree: true }); } - let typeKey = attr(doc, 'h1 > i', 'class'); - if (typeKey && typeKey != 'text-journal') { - typeKey = typeKey.substring(5); - Z.debug(typeKey); - return { - article: 'journalArticle', - book: 'book', - paper: 'thesis', - meeting: 'conferencePaper', - standard: 'standard', - patent: 'patent', - laws: 'statute', - // 案例库的标题不完整,且只有案号和发布日期,信息过于粗糙,暂不适配 - // judicialcase: 'case', - achievements: 'report', - newspaper: 'newspaperArticle' - }[typeKey]; + for (const key in typeMap) { + if (url.includes(`/doc/${key}/`)) { + return typeMap[key]; + } } - else if (getSearchResults(doc, true)) { + if (getSearchResults(doc, true)) { return 'multiple'; } return false; } function getSearchResults(doc, checkOnly) { - var items = {}; - var found = false; - // http://k.cqvip.com/asset/search?key=VSUzRCVFOSU5QiU5NSVFNSVBMSU5MQ==&cf=&skey=MF9VXyUyNUU5JTI1OUIlMjU5NSUyNUU1JTI1QTElMjU5MQ== - // http://k.cqvip.com/asset/journal/20210001787 - // http://k.cqvip.com/asset/guidelist - var rows = Array.from(doc.querySelectorAll('#articlelist dl, .j-d-articles li')).filter(row => row.querySelector('dt:first-child > a, a')); + const items = {}; + let found = false; + // .periodical-detail .cell > a[href*="/doc/"] for journal home page + const rows = doc.querySelectorAll('.searchTitle a.title, .periodical-detail .cell > a[href*="/doc/"]'); for (let row of rows) { - let doi = row.querySelector('.doi > i > a'); - let href = row.querySelector('dt:first-child > a, a').href; - let title = attr(row, 'dt:first-child > a, a', 'title') || ZU.trimInternal(row.querySelector('dt:first-child > a, a', 'title').textContent); + const href = row.href; + const title = ZU.trimInternal(row.textContent); if (!href || !title) continue; if (checkOnly) return true; found = true; - items[JSON.stringify({ - url: href, - doi: doi ? doi.href : '' - })] = title; + items[href] = title; } return found ? items : false; } @@ -91,188 +80,182 @@ async function doWeb(doc, url) { if (detectWeb(doc, url) == 'multiple') { let items = await Zotero.selectItems(getSearchResults(doc, false)); if (!items) return; - for (let key of Object.keys(items).map(aKey => JSON.parse(aKey))) { - // 需要浏览器环境 - let newItem = await scrape(await requestDocument(key.url)); - if (ZU.fieldIsValidForType('DOI', newItem.itemType)) { - newItem.DOI = ZU.cleanDOI(key.doi); - } - else { - let extra = new Extra(); - extra.set('DOI', ZU.cleanDOI(key.doi), true); - newItem.extra = extra.toString(newItem.extra); - } - newItem.complete(); + for (let url of Object.keys(items)) { + await scrape(await requestDocument(url)); } } else { - let newItem = await scrape(doc, url); - newItem.complete(); + await scrape(doc, url); } } async function scrape(doc, url = doc.location.href) { - Z.debug(doc.body.innerText); - let creators = []; - let creatorsEn = []; - let labels = new Labels(doc, '.article-detail > p'); - let extra = new Extra(); - Z.debug(labels.innerData.map(arr => [arr[0], ZU.trimInternal(arr[1].textContent)])); - var newItem = new Z.Item(detectWeb(doc, url)); - newItem.title = attr(doc, '.article-summary > h1', 'title').replace(/_\((.+?)\)/g, '$1').replace(/_(\d)/g, '$1'); - extra.set('original-title', text(doc, '.article-summary > em').replace(/_\((.+?)\)/g, '$1').replace(/_(\d)/g, '$1'), true); - newItem.abstractNote = labels.getWith('摘要'); - switch (newItem.itemType) { - case 'journalArticle': { - newItem.publicationTitle = attr(doc, 'a[href*="/asset/journal/"]', 'title'); - extra.set('original-container-title', tryMatch(labels.getWith('出版物'), /\((\w+)\)$/, 1), true); - let pubInfo = labels.getWith('年卷期'); - newItem.volume = tryMatch(pubInfo, /第0*(\d+)卷/, 1); - newItem.issue = tryMatch(pubInfo, /第([A-Z\d]+)期/, 1).replace(/0*(\d)/, '$1'); - newItem.pages = labels.getWith('页码').replace(/\+/g, ', ').replace(/~/g, '-'); - newItem.date = tryMatch(pubInfo, /^(\d{4})年/, 1); - creators = Array.from(doc.querySelectorAll('.author > a')).map(element => processName(ZU.trimInternal(element.textContent))); - creatorsEn = text(doc, '.author > em').split(/[;,;]\s*/).map(enName => ZU.capitalizeName(enName)); - extra.set('foundation', labels.getWith('基金')); - break; + const labels = new LabelsX(doc, '.horizontalData-f, .mainContainerDataList-item'); + const doi = labels.getWith('DOI'); + if (doi) { + try { + await scrapeSearch(doi); + return; } - case 'book': - newItem.series = labels.getWith('丛书名'); - // http://k.cqvip.com/asset/detail/101996618144 - newItem.edition = labels.getWith('版本说明'); - newItem.publisher = labels.getWith('出版社'); - newItem.date = ZU.strToISO(labels.getWith('出版年')); - newItem.numPages = tryMatch(labels.getWith('页数'), /\d+/); - newItem.ISBN = ZU.cleanISBN(labels.getWith('ISBN')); - creators = Array.from(doc.querySelectorAll('.author > a')).map(element => processName(ZU.trimInternal(element.textContent))); - break; - case 'thesis': - newItem.thesisType = labels.getWith('学位级别') + '学位论文'; - newItem.university = labels.getWith('作者单位'); - newItem.date = ZU.strToISO(labels.getWith('授予年度')); - creators = Array.from(doc.querySelectorAll('.author > a')).map(element => processName(ZU.trimInternal(element.textContent))); - labels.getWith('导师姓名').split(/[;,;]/).forEach(creator => creators.push(processName(creator, 'contributor'))); - break; - case 'conferencePaper': - newItem.date = ZU.strToISO(labels.getWith('会议日期')); - newItem.conferenceName = labels.getWith('会议名称').replace(/^《|》$/g, ''); - creators = Array.from(doc.querySelectorAll('.author > a')).map(element => processName(ZU.trimInternal(element.textContent))); - break; - case 'standard': - newItem.title = attr(doc, '.article-summary > h1', 'title').replace(/([\u4e00-\u9fff]) ([\u4e00-\u9fff])/, '$1 $2'); - newItem.number = labels.getWith('标准编号'); - newItem.date = ZU.strToISO(labels.getWith('发布日期')); - extra.set('applyDate', labels.getWith('实施日期')); - newItem.numPages = tryMatch(labels.getWith('页码'), /\d+/); - extra.set('CCS', labels.getWith('中国标准分类号')); - extra.set('ICS', labels.getWith('国际标准分类号')); - break; - case 'patent': - newItem.patentNumber = labels.getWith('公开号').split(';')[0]; - newItem.applicationNumber = labels.getWith('专利申请号').split(';')[0]; - newItem.place = newItem.country = patentCountry(newItem.patentNumber || newItem.applicationNumber); - newItem.filingDate = labels.getWith('申请日'); - newItem.issueDate = labels.getWith('公开日'); - extra.set('Genre', labels.getWith('专利类型'), true); - creators = Array.from(labels.getWith('发明人', true).querySelectorAll('a')).map(element => processName(ZU.trimInternal(element.textContent))); - break; - - /* - 已知问题: - 1. 缺少修订日期(Edition) - 2. 党内法规无法获取作者 - */ - case 'statute': { - newItem.title = newItem.title.replace(/\((.+?)\)/, '($1)'); - let rank = labels.getWith('效力级别'); - if (rank == '党内法规制度' || newItem.title.includes('草案')) { - newItem.itemType = 'report'; - newItem.shortTitle = tryMatch(newItem.title, /^(.+)——.+/, 1); - newItem.date = labels.getWith('颁布日期'); - } - else { - if (!labels.getWith('效力级别').includes('法律')) { - extra.set('Type', 'regulation', true); - } - if (newItem.title.startsWith('中华人民共和国')) { - newItem.shortTitle = newItem.title.substring(7); - } - newItem.publicLawNumber = labels.getWith('发文文号'); - newItem.dateEnacted = labels.getWith('颁布日期'); - if (labels.getWith('时效性') == '已失效') { - extra.set('Status', '已废止', true); - } - } - - extra.set('applyDate', labels.getWith('实施日期')); - creators = Array.from(labels.getWith('颁布部门', true).querySelectorAll('a')).map(element => processName(ZU.trimInternal(element.textContent))); - break; + catch (error) { + Z.debug(error); } - case 'report': - newItem.reportType = '科技成果报告'; - newItem.institution = labels.getWith('完成单位'); - newItem.date = labels.getWith('公布年份'); - extra.set('achievementType', labels.getWith('成果类别')); - creators = Array.from(doc.querySelectorAll('.author > a')).map(element => processName(ZU.trimInternal(element.textContent))); - break; - case 'newspaperArticle': - newItem.publicationTitle = attr(labels.getWith('报纸名称', true), 'a', 'title'); - newItem.date = labels.getWith('发表日期'); - newItem.pages = labels.getWith('版名版号').replace(/0*(\d)/, '$1'); - creators = Array.from(doc.querySelectorAll('.author > a')).map(element => processName(ZU.trimInternal(element.textContent))); - break; } - newItem.language = /[\u4e00-\u9fff]/.test(newItem.title) ? 'zh-CN' : 'en-US'; - newItem.url = url; - newItem.libraryCatalog = '维普经纶知识服务平台'; - newItem.creators = creators; - creatorsEn.forEach(enName => extra.push('original-author', enName, true)); - creators = ZU.deepCopy(creators); - if (creatorsEn.length) { - for (let i = 1; i < creators.length; i++) { - creators[i].original = creatorsEn[i] || ''; + const ids = url.match(/\/doc\/[a-z]+\/(\d+)/)[1]; + Z.debug(`ids: ${ids}`); + const refURL = `https://wwwv3.cqvip.com/website/literature/base/ref/download?ids=${ids}&types=1&style=RefMan`; + let refText = await requestText(refURL); + Z.debug(refText); + refText = refText + .replace(/^{?([A-Z](\d|[A-Z]{1,4}))}?: /gm, '$1 ') + .replace(/^(A[1-6]|K1) .+/gm, (match, tag) => match.replace(/;/g, `\n${tag} `)) + .replace(/^(IS|VO|SP) .+/gm, match => match.replace(/\b0*(\d*)/g, '$1')) + .replace(/^OP .+/m, match => match.replace(/\+/g, ', ')); + let translator = Zotero.loadTranslator('import'); + // RefWorks Tagged + translator.setTranslator('1a3506da-a303-4b0a-a1cd-f216e6138d86'); + translator.setString(refText); + translator.setHandler('itemDone', (_obj, item) => { + item.itemType = detectWeb(doc, url); + const extra = new Extra(); + extra.set('citation', text(doc, '.horizontalData-content')); + extra.set('download', text(doc, '.horizontalData-content', 2)); + extra.set('CLC', labels.getWith('中图分类号')); + item.language = /[\u4e00-\u9fff]/.test(item.title) + ? 'zh-CN' + : 'en-US'; + item.notes = []; + switch (item.itemType) { + case 'journalArticle': + delete item.callNumber; + break; + case 'thesis': + item.thesisType = `${item.edition}学位论文`; + delete item.edition; + labels.getWith('导师', true).querySelectorAll('.info-line > span').forEach((element) => { + item.creators.push(ZU.cleanAuthor(element.textContent, 'contributor')); + }); + break; + case 'conferencePaper': + item.conferenceName = labels.getWith('会议名称'); + item.place = labels.getWith('会议地点'); + extra.set('organizer', item.publisher, true); + delete item.publisher; + break; + case 'report': + item.reportType = tryMatch(refText, /^DB (.+)/m, 1); + // item.url = url; + break; + case 'patent': + extra.set('Genre', item.applicationNumber, true); + item.patentNumber = tryMatch(refText, /^ID (.+)/m, 1); + item.applicationNumber = tryMatch(refText, /^NO (.+)/m, 1); + item.place = item.country = patentCountry(item.patentNumber || item.applicationNumber); + item.assignee = item.issuingAuthority; + delete item.issuingAuthority; + item.filingDate = labels.getWith('申请日'); + item.issueDate = labels.getWith('公开\\(公告\\)日'); + item.legalStatus = text(doc, '.legalstatus .el-table__row:first-child > td:nth-child(2)'); + extra.set('IPC', labels.getWith('IPC分类号')); + item.rights = labels.getWith('主权项'); + break; + case 'standard': + item.title = item.title + .replace(/([\u4e00-\u9fff]) ([\u4e00-\u9fff])/, '$1 $2') + .replace(/([\u4e00-\u9fff]): ?([\u4e00-\u9fff])/, '$1:$2'); + item.number = tryMatch(refText, /^ID (.+)/m, 1); + delete item.publisher; + extra.set('CSC', labels.getWith('中国标准分类号')); + extra.set('ICS', labels.getWith('国际标准分类号')); + break; } - extra.set('creatorsExt', JSON.stringify(creators)); - } - labels.getWith(['主题', '关键词'], true).querySelectorAll('a').forEach(element => newItem.tags.push(ZU.trimInternal(element.textContent))); - extra.set('CLC', labels.getWith('中图分类')); - newItem.extra = extra.toString(); - return newItem; + item.creators.forEach((creator) => { + if (/[\u4e00-\u9fff]/.test(creator.lastName)) { + creator.firstName = ''; + creator.fieldMode = 1; + } + }); + + /* if (pdfLink) { + item.attachments.push({ + url: pdfLink.href, + title: 'Full Text PDF', + mimeType: 'application/pdf' + }); + } */ + item.extra = extra.toString(); + item.complete(); + }); + await translator.translate(); } -class Labels { +async function scrapeSearch(doi) { + if (!doi) throw new ReferenceError('no identifier available'); + let translator = Zotero.loadTranslator('search'); + translator.setSearch({ DOI: doi }); + translator.setHandler('translators', (_, translators) => { + translator.setTranslator(translators); + }); + translator.setHandler('itemDone', (_, item) => { + item.complete(); + }); + translator.setHandler('error', () => { }); + await translator.getTranslators(); + await translator.translate(); +} + +class LabelsX { constructor(doc, selector) { this.innerData = []; + this.emptyElement = doc.createElement('div'); Array.from(doc.querySelectorAll(selector)) - .filter(element => element.firstElementChild) + // avoid nesting .filter(element => !element.querySelector(selector)) + // avoid empty .filter(element => !/^\s*$/.test(element.textContent)) .forEach((element) => { let elementCopy = element.cloneNode(true); - let key = elementCopy.removeChild(elementCopy.firstElementChild).innerText.replace(/\s/g, ''); - this.innerData.push([key, elementCopy]); + // avoid empty text + while (/^\s*$/.test(elementCopy.firstChild.textContent)) { + // Z.debug(elementCopy.firstChild.textContent); + elementCopy.removeChild(elementCopy.firstChild); + // Z.debug(elementCopy.firstChild.textContent); + } + if (elementCopy.childNodes.length > 1) { + let key = elementCopy.removeChild(elementCopy.firstChild).textContent.replace(/\s/g, ''); + this.innerData.push([key, elementCopy]); + } + else { + let text = ZU.trimInternal(elementCopy.textContent); + let key = tryMatch(text, /^[[【]?.+?[】\]::]/).replace(/\s/g, ''); + elementCopy.textContent = tryMatch(text, /^[[【]?.+?[】\]::]\s*(.+)/, 1); + this.innerData.push([key, elementCopy]); + } }); } getWith(label, element = false) { if (Array.isArray(label)) { - let result = label + let results = label .map(aLabel => this.getWith(aLabel, element)); - result = element - ? result.find(element => element.childNodes.length) - : result.find(element => element); - return result - ? result + let keyVal = element + ? results.find(element => !/^\s*$/.test(element.textContent)) + : results.find(string => string); + return keyVal + ? keyVal : element - ? document.createElement('div') + ? this.emptyElement : ''; } let pattern = new RegExp(label, 'i'); - let keyValPair = this.innerData.find(element => pattern.test(element[0])); - if (element) return keyValPair ? keyValPair[1] : document.createElement('div'); - return keyValPair - ? ZU.trimInternal(keyValPair[1].innerText) - : ''; + let keyVal = this.innerData.find(arr => pattern.test(arr[0])); + return keyVal + ? element + ? keyVal[1] + : ZU.trimInternal(keyVal[1].textContent) + : element + ? this.emptyElement + : ''; } } @@ -299,7 +282,7 @@ class Extra { let result = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key)); return result ? result.val - : undefined; + : ''; } toString(history = '') { @@ -312,14 +295,6 @@ class Extra { } } -/** - * Attempts to get the part of the pattern described from the character, - * and returns an empty string if not match. - * @param {String} string - * @param {RegExp} pattern - * @param {Number} index - * @returns - */ function tryMatch(string, pattern, index = 0) { if (!string) return ''; let match = string.match(pattern); @@ -328,19 +303,6 @@ function tryMatch(string, pattern, index = 0) { : ''; } -function processName(creator, creatorType = 'author') { - creator = ZU.cleanAuthor(creator, creatorType); - if (/[\u4e00-\u9fff]/.test(creator.lastName)) { - creator.lastName = creator.firstName + creator.lastName; - creator.firstName = ''; - creator.fieldMode = 1; - } - return creator; -} - -/** - * Return the country name according to the patent number or patent application number. - */ function patentCountry(idNumber) { return { AD: '安道尔', AE: '阿拉伯联合酋长国', AF: '阿富汗', AG: '安提瓜和巴布达', AI: '安圭拉', AL: '阿尔巴尼亚', AM: '亚美尼亚', AN: '菏属安的列斯群岛', AO: '安哥拉', AR: '阿根廷', AT: '奥地利', AU: '澳大利亚', AW: '阿鲁巴', AZ: '阿塞拜疆', BB: '巴巴多斯', BD: '孟加拉国', BE: '比利时', BF: '布莱基纳法索', BG: '保加利亚', BH: '巴林', BI: '布隆迪', BJ: '贝宁', BM: '百慕大', BN: '文莱', BO: '玻利维亚', BR: '巴西', BS: '巴哈马', BT: '不丹', BU: '缅甸', BW: '博茨瓦纳', BY: '白俄罗斯', BZ: '伯利兹', CA: '加拿大', CF: '中非共和国', CG: '刚果', CH: '瑞士', CI: '科特迪瓦', CL: '智利', CM: '喀麦隆', CN: '中国', CO: '哥伦比亚', CR: '哥斯达黎加', CS: '捷克斯洛伐克', CU: '古巴', CV: '怫得角', CY: '塞浦路斯', @@ -358,127 +320,64 @@ function patentCountry(idNumber) { var testCases = [ { "type": "web", - "url": "http://k.cqvip.com/asset/detail/2031156636722", + "url": "https://www.cqvip.com/doc/journal/954991692", "items": [ { "itemType": "journalArticle", - "title": "溶剂热法可控合成NiCo2O4锂电池负极材料及储锂机制研究", + "title": "“北斗一号”监控管理网设计与实现", "creators": [ { + "lastName": "武丽丽", "firstName": "", - "lastName": "华丽", "creatorType": "author", "fieldMode": 1 }, { + "lastName": "华一新", "firstName": "", - "lastName": "曾建华", "creatorType": "author", "fieldMode": 1 }, { + "lastName": "张亚军", "firstName": "", - "lastName": "樊锋凯", "creatorType": "author", "fieldMode": 1 }, { + "lastName": "刘英敏", "firstName": "", - "lastName": "朱玉涵", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "翁方青", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "胡庆兰", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "李景蕻", "creatorType": "author", "fieldMode": 1 } ], - "date": "2022", - "abstractNote": "溶剂热法可控合成NiCo_(2)O_(4)锂电池负极材料,进行XRD、ESEM、电化学性能分析并获得分散性好、晶型完整的尖晶石型NiCo_(2)O_(4)纳米片。充放电测试显示:首次比容量分别为1376mAh/g和1544mAh/g;经150次循环后,容量保持率约70%。低倍率下(0.05~2C)稳定性明显高于高倍率(10C)下,与Li+在电解液中的扩散电阻增大有关,这在交流阻抗(EIS)中得到证实。循环伏安(CV)为进一步弄清脱嵌锂机理提供了依据。EIS等效电路拟合结果显示:60次循环后,电极电阻(R1)由357Ω·cm^(2)下降到154Ω·cm^(2),与电极材料活化有关。但电解液扩散电阻(WS)从345Ω·cm^(2)增大到467Ω·cm^(2),与电极材料被破坏粉化有关。为了更好平衡这两个相互矛盾的变量,有效控制合成NiCo_(2)O_(4)电极材料十分关键,本法获得的NiCo_(2)O_(4)负极材料其电化学性能较优异。", - "extra": "original-title: Controllable Synthesis of NiCo2O4Anode Materials by Solvothermal Method for Lithium Battery Together with Its Lithium Storage Mechanism\noriginal-author: Hua Li\noriginal-author: Zeng Jian-hua\noriginal-author: Fan Feng-kai\noriginal-author: Zhu Yu-han\noriginal-author: Weng Fang-qing\noriginal-author: Hu Qing-lan\noriginal-author: Li Jing-hong\nfoundation: 湖北省自然科学基金(2021CFB251) 国家自然科学基金青年项目(22004029) 湖北第二师范学院校级教学研究和科学研究项目(X2019013,X2020001和20XGZX10).\ncreatorsExt: [{\"firstName\":\"\",\"lastName\":\"华丽\",\"creatorType\":\"author\",\"fieldMode\":1},{\"firstName\":\"\",\"lastName\":\"曾建华\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Zeng Jian-hua\"},{\"firstName\":\"\",\"lastName\":\"樊锋凯\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Fan Feng-kai\"},{\"firstName\":\"\",\"lastName\":\"朱玉涵\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Zhu Yu-han\"},{\"firstName\":\"\",\"lastName\":\"翁方青\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Weng Fang-qing\"},{\"firstName\":\"\",\"lastName\":\"胡庆兰\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Hu Qing-lan\"},{\"firstName\":\"\",\"lastName\":\"李景蕻\",\"creatorType\":\"author\",\"fieldMode\":1,\"original\":\"Li Jing-hong\"}]\nCLC: O614[数理科学和化学-化学]", - "issue": "11", + "date": "2008", + "ISSN": "1009-2307", + "abstractNote": "本文分析了北斗用户终端在实际应用中存在的问题,指出指挥型用户终端的监控能力有限、成本相对较高是影响其推广应用的关键。针对该问题,利用现有资源,设计并搭建了监控管理网,在该网络中创造性地设计了虚拟指挥机系统,起到了指挥型用户终端的作用,弥补了北斗用户终端的不足。文章具体阐述了虚拟指挥机系统的工作原理,介绍了其数据模型,并描述了整个监控管理网的网络功能和体系结构设计,该网络已在很多部门得到应用。", + "extra": "citation: 1\nCLC: P208 [测绘数据库与信息系统]", + "issue": "5", "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "pages": "19-25", - "publicationTitle": "武汉理工大学学报", - "url": "http://k.cqvip.com/asset/detail/2031156636722", - "volume": "44", + "libraryCatalog": "CQVIP", + "pages": "8-9, 7", + "publicationTitle": "测绘科学", + "url": "https://wwwv3.cqvip.com/doc/journal/954991692", + "volume": "33", "attachments": [], "tags": [ { - "tag": "NiCo_(2)O_(4)负极材料" + "tag": "北斗用户终端" }, { - "tag": "储锂机制研究" - }, - { - "tag": "可控合成" - }, - { - "tag": "锂电池" - } - ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "http://k.cqvip.com/asset/detail/20157997658", - "items": [ - { - "itemType": "book", - "title": "电视色彩学", - "creators": [ - { - "firstName": "", - "lastName": "刘恩御", - "creatorType": "author", - "fieldMode": 1 + "tag": "指挥机" }, { - "firstName": "", - "lastName": "李振", - "creatorType": "author", - "fieldMode": 1 - } - ], - "date": "2019", - "ISBN": "9787565724480", - "abstractNote": "本书是在《电视色彩学》原本的基础上修订而成。作者为中国传媒大学教授刘恩御,他多年从事“电视色彩学教学工作,结合教学实践,用17年的时间研究、设计了“染料三基色系统。本书正是他多年研究成果的结晶。本书从物理、生理及心理的角度阐述色彩形成的原理、特征、不同的色彩组合所表达的意境或感情以及这些自然规律在电视节目制作中的美术、灯光、摄影、摄像、编辑等制作环节上的应用。由于各类视觉艺术且有对色彩应用的共性,因此,电视色彩学的应用范围不仅仅限于电视节目制作,它对电影、戏剧、摄影、美术、染织及广泛的生活领域都有一定的实用、参考价值。", - "edition": "第2版", - "extra": "original-title: Television chromatology\nCLC: G222.3[文化、科学、教育、体育-信息与知识传播] J91[艺术-电影、电视艺术] G222[文化、科学、教育、体育-信息与知识传播] TN949.12[工业技术-无线电电子学、电信技术]", - "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "numPages": "205", - "publisher": "中国传媒大学出版社", - "series": "电视艺术学丛书", - "url": "http://k.cqvip.com/asset/detail/20157997658", - "attachments": [], - "tags": [ - { - "tag": "制作" + "tag": "用户机" }, { - "tag": "电视节目" + "tag": "监控" }, { - "tag": "色彩" + "tag": "虚拟指挥机" } ], "notes": [], @@ -488,96 +387,49 @@ var testCases = [ }, { "type": "web", - "url": "http://k.cqvip.com/asset/detail/20471967745", + "url": "https://www.cqvip.com/doc/degree/1868317894", "items": [ { "itemType": "thesis", - "title": "基于压褶形态的服装设计创新研究", + "title": "人类活动影响下海河流域典型区水循环变化分析", "creators": [ { + "lastName": "马欢", "firstName": "", - "lastName": "张玲", "creatorType": "author", "fieldMode": 1 }, { "firstName": "", - "lastName": "许旭兵", + "lastName": "杨大文", "creatorType": "contributor", "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "田玲", - "creatorType": "contributor", - "fieldMode": 1 - } - ], - "date": "2023", - "abstractNote": "人们对服装精神层面追求的不断提高以及服装市场竞争程度的不断激烈,推动了压褶服装的流行,凸显了压褶服装创新设计研究的重要性和必要性。文章通过六个章节对本课题的研究进行阐述,在整篇文章中,笔者首先阐述了关于本课题的研究背景、研究意义、研究现状、研究内容与思路框架以及研究的方法与创新点,继而对本课题研究对象的概念、研究对象的历史渊源及其发展历程进行了较为全面的整理归纳。由相关内容整理归纳的基础上切入主题,通过设计师的设计作品解析了几个常见的具有代表性的压褶形态在服装设计中的工艺方法及其形态造型,并以设计师的设计作品案例为基础,从工艺手法、服装款式、服装色彩三个方面分析总结了压褶形态在服装设计中的创新应用方法,为后续压褶形态服装的创新性设计实践提供理论参照。最后笔者详细的阐述了关于本课题的设计实践,呈现了笔者设计实践的作品,并且对本课题的相关研究进行了总结和展望。 压褶服装设计的创新性研究不仅势在必行而且意义深远,立足压褶元素、创新服装设计是适应潮流,满足人们对于服装的精神层面需求的重要途径,也是增强压褶服装市场竞争力的重要因素。文章通过文献研究法、图形分析法、比较分析法、设计实践法等研究方法对压褶形态的相关内容进行分析阐述,创造性地归纳总结了其成型原理,结合案例,对压褶形态与服装之间的创新融合设计进行研究分析,挖掘其设计创新的方法以及设计创新的关键,并最终通过实践操作对研究结果进行验证和呈现,为解读压褶符号的神秘、拓展服装设计的思路、丰富服装时尚的语言提供理论上以及实践上的支持。", - "extra": "CLC: TS941.2[工业技术-轻工业、手工业]", - "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "thesisType": "硕士学位论文", - "university": "东华大学", - "url": "http://k.cqvip.com/asset/detail/20471967745", - "attachments": [], - "tags": [ - { - "tag": "创新设计" - }, - { - "tag": "压褶形态" - }, - { - "tag": "压褶服装" - }, - { - "tag": "服装设计" } ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "http://k.cqvip.com/asset/detail/20668882544", - "items": [ - { - "itemType": "conferencePaper", - "title": "字体设计的方法与实践探索", - "creators": [ - { - "firstName": "", - "lastName": "吴莹", - "creatorType": "author", - "fieldMode": 1 - } - ], - "date": "2019", - "abstractNote": "在今天的生活中,我们面临着如何利用视觉语言形式的创新去构造具有吸引力和传达力的字体作品。《字体设计的方法与实践》课程通过形态分析、效果运用与视觉表现三个方面使学生基本掌握现代字体设计的创新思维与方法技能。第一阶段,引导学生在平时的生活中学会观察、发现各种与字体相关的视觉因素,及其在不同环境中所呈现的视觉状态与视觉效果;第二阶段,通过古老形制方式现代材质应用和多维形态呈现等方法,尝试字体设计中不同视觉效果的创作过程与构建方式;第三阶段,通过图形借代和文字的图案化等表现形式的展开,探索并形成字体独特的风格与表现力。在课程中,教师指导学生不断尝试字体设计的新观念、新手法,通过对不同类型应用设计作品的分析,使学生对现实生活中字体应用的客观规律有较为详尽的认识与理解,形成解决字体方面不同问题的能力。", - "conferenceName": "2019第九届全国视觉传达设计教育论坛", + "date": "2011", + "abstractNote": "海河流域人口密集,水资源供需关系紧张。近年来,在人工取水、下垫面变化和农业灌溉等人类活动影响下,流域水循环发生了显著变化。人类活动对海河流域山区和平原灌区水循环的影响方式和机制有所不同,论文分别选取流域内的典型山区与平原灌区,探讨了人类活动影响下山区径流、平原区地下水位及水质的变化特征。 论文以密云水库上游流域为研究对象,分析人类活动影响下海河流域典型山区的水循环变化特征。分析表明在1956005年期间,流域年径流明显减少,降雨和平均气温分别呈显著下降和升高趋势,人工取水量明显增加,人类活动和气候变化是引起径流减少的主要原因。论文将研究期划分为1956983和1984005年两个时段,以两时段内年平均径流的变化来评价流域径流的减少量,并采用数据分析与水文模型相结合的综合分析方法,定量评价了人工取用水、气候变化以及下垫面变化对径流减少的贡献。结果表明,人类活动对径流减少的贡献略小于气候变化的贡献。 论文以位山引黄灌区为研究对象,探讨人类活动影响下海河流域典型平原灌区的水循环变化特征。对1974007年位山灌区地下水位变化的分析表明,灌区地下水位总体保持在较高水平,但一干渠末端附近的地下水位出现较明显的下降。灌区地下水位在空间分布上沿干渠上游至下游逐渐下降,灌区内地下水位高于灌区外,表明引黄灌溉是维持位山灌区现状地下水位的主要原因。在位山灌区典型田间的水循环综合观测数据基础上,结合田间水循环模型,分析了农田水分运移规律及水量平衡特征。在黄河水资源供需矛盾日益突出的背景下,位山灌区未来引黄水量可能有所减少,论文以1984007年的气象和引黄流量数据为基础,采用田间水循环模型分析了不同灌溉水平下,灌区地下水位及蒸散发的变化特征。 对于位山灌区,人类活动对水环境也有明显影响。灌溉导致地下水位抬升,带来土壤盐渍化风险;灌溉和施肥影响农田的氮素平衡,硝态氮淋溶可能造成地下水污染。论文在2010年51月期间,对灌区典型农田的土壤水与地下水进行了分层连续采样,检测了样本的盐分与氮素含量,检测数据显示:土壤水与地下水中,盐分浓度在120cm附近出现峰值,硝态氮浓度总体随埋深的增加而降低;铵态氮含量很低,表明土壤的硝化能力很强。论文采用田间盐分运移模型,探讨了灌排不平衡时的盐渍化风险;建立了对饱和-非饱和带耦合模拟的农田氮素迁移转化模型,探讨了农田氮素平衡特征,并对根层硝态氮的淋溶损失进行了评估。", + "extra": "CLC: P339[水文循环与水文气象]", "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "url": "http://k.cqvip.com/asset/detail/20668882544", + "libraryCatalog": "CQVIP", + "thesisType": "博士学位论文", + "university": "清华大学", + "url": "https://wwwv3.cqvip.com/doc/degree/1868317894", "attachments": [], "tags": [ { - "tag": "古老形制" + "tag": "Hydrus-1D" }, { - "tag": "图形借代" + "tag": "人类活动" }, { - "tag": "图案化" + "tag": "分布式水文模型" }, { - "tag": "字体设计" + "tag": "海河流域" }, { - "tag": "现代材质" + "tag": "田间观测" } ], "notes": [], @@ -587,144 +439,48 @@ var testCases = [ }, { "type": "web", - "url": "http://k.cqvip.com/asset/detail/20512556185", + "url": "https://www.cqvip.com/doc/conference/537148377", "items": [ { - "itemType": "standard", - "title": "信息与文献 参考文献著录规则", - "creators": [], - "date": "2015", - "abstractNote": "本标准规定了各个学科、各种类型信息资源的参考文献的著录项目、著录顺序、著录用符号、著录用文字、各个著录项目的著录方法以及参考文献在正文中的标注法。 本标准适用于著者和编辑著录参考文献,而不是供图书馆员、文献目录编制者以及索引编辑者使用的文献著录规则。", - "extra": "original-title: Information and documentation—Rules for bibliographic references and citations to information resources\napplyDate: 2015-12-01\nCSC: A14\nISC: 01_140_20", - "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "numPages": "27", - "number": "GB/T 7714-2015", - "url": "http://k.cqvip.com/asset/detail/20512556185", - "attachments": [], - "tags": [ - { - "tag": "书目标准" - }, - { - "tag": "参考文献" - }, - { - "tag": "规则" - } - ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "http://k.cqvip.com/asset/detail/207336700438", - "items": [ - { - "itemType": "patent", - "title": "一种面料的后整理加工方法及面料", + "itemType": "conferencePaper", + "title": "面向数字素养的高校图书馆数字服务体系研究", "creators": [ { + "lastName": "贾东琴", "firstName": "", - "lastName": "张瑞喜", "creatorType": "author", "fieldMode": 1 }, { + "lastName": "柯平", "firstName": "", - "lastName": "梁竹青", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "段雪梅", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "高丽忠", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "金永乐", "creatorType": "author", "fieldMode": 1 } ], - "issueDate": "2023-10-24", - "abstractNote": "本发明公开了一种面料的后整理加工方法及面料,包括如下步骤:步骤a:将面料进行缩绒处理;步骤b:将所述步骤a中进行缩绒处理后的面料进行拉幅烘干处理;步骤c:将所述步骤b中经拉幅烘干处理后的面料进行钢丝起毛处理;步骤d:将所述步骤c中经钢丝起毛处理后的面料进行刺果起毛处理;步骤e:将所述步骤d中经刺果起毛处理后的面料进行逆毛冲水处理;步骤f:将所述步骤e中经逆毛冲水后的面料进行烘干处理;步骤g:将所述步骤f中经烘干之后的面料进行干刷毛处理;步骤h:将所述步骤g中经干刷毛之后的面料进行烫光处理。本发明所提供的面料的后整理加工方法,使得面料表面覆盖一层长而自然卷曲的纤维,蓬松丰厚,光泽柔和。", - "applicationNumber": "CN202310901127.X", - "country": "中国", - "extra": "Genre: 发明专利", - "filingDate": "2023-07-20", + "date": "2011-10-26", + "abstractNote": "数字素养作为数字环境中的一种基本素养,它已成为人们适应全球信息化、数字化社会所需的基本能力。图书馆可通过构建面向数字素养的数字服务体系,以服务为手段,使学生在自然便利的氛围中形成良好的数字素养来逐步提升学生的数字素养水平。面向数字素养的数字服务体系要以坚实的课程教学为基础,创建优越的数字服务环境为后盾,多样化的数字服务方式为手段,形成的一种高效的数字素养服务机制。", + "conferenceName": "中国图书馆学会2011年年会", + "extra": "organizer: 中国图书馆学会\nCLC: G252", "language": "zh-CN", - "patentNumber": "CN116926835A", - "place": "中国", - "url": "http://k.cqvip.com/asset/detail/207336700438", + "libraryCatalog": "CQVIP", + "pages": "45-53", + "place": "中国贵州省", + "proceedingsTitle": "中国图书馆学会2011年年会论文集", + "url": "https://wwwv3.cqvip.com/doc/conference/537148377", "attachments": [], "tags": [ { - "tag": "冲水" - }, - { - "tag": "刺果" - }, - { - "tag": "加工" - }, - { - "tag": "后整理" - }, - { - "tag": "干刷" - }, - { - "tag": "拉幅" - }, - { - "tag": "柔和" + "tag": "数字化建设" }, { - "tag": "烘干" + "tag": "数字素养" }, { - "tag": "烘干处理" + "tag": "读者服务" }, { - "tag": "烫光" - }, - { - "tag": "纤维" - }, - { - "tag": "缩绒" - }, - { - "tag": "自然卷曲" - }, - { - "tag": "蓬松" - }, - { - "tag": "覆盖" - }, - { - "tag": "起毛处理" - }, - { - "tag": "钢丝" - }, - { - "tag": "面料" - }, - { - "tag": "面料表面" + "tag": "高校图书馆" } ], "notes": [], @@ -734,68 +490,40 @@ var testCases = [ }, { "type": "web", - "url": "http://k.cqvip.com/asset/detail/20843700223", + "url": "https://www.cqvip.com/doc/patent/1992472003", "items": [ { - "itemType": "statute", - "nameOfAct": "最高人民法院、最高人民检查院关于依法严惩破坏计划生育犯罪活动的通知", + "itemType": "patent", + "title": "轨道火车及高速轨道火车紧急安全制动辅助装置", "creators": [ { + "lastName": "张凯军", "firstName": "", - "lastName": "最高人民法院", - "creatorType": "author", + "creatorType": "inventor", "fieldMode": 1 }, { + "lastName": "张凯军", "firstName": "", - "lastName": "最高人民检察院", - "creatorType": "author", + "creatorType": "inventor", "fieldMode": 1 - } - ], - "dateEnacted": "1993-11-12", - "abstractNote": "各省、自治区、直辖市高级人民法院、人民检察院,解放军军事法院、军事检察院:实行计划生育是我国的一项基本国策。它关系到民族的昌盛、子孙后代的幸福。对少数人以各种手段破坏计划生育工作的行为,除进行必要的教育外,对那些伪造计划生育证明出售牟利,多次为他人做", - "extra": "Type: regulation\nStatus: 已废止\napplyDate: 1993-11-12", - "language": "zh-CN", - "publicLawNumber": "法发36号", - "url": "http://k.cqvip.com/asset/detail/20843700223", - "attachments": [], - "tags": [ - { - "tag": "犯罪活动" }, { - "tag": "计划生育" - } - ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "http://k.cqvip.com/asset/detail/20865128867", - "detectedItemType": "statute", - "items": [ - { - "itemType": "report", - "title": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗——在中国共产党第二十次全国代表大会上的报告", - "creators": [ - { + "lastName": "张凯军", "firstName": "", - "lastName": "中国共产党中央委员会", - "creatorType": "author", + "creatorType": "inventor", "fieldMode": 1 } ], - "date": "2022-10-16", - "abstractNote": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗 --在中国共产党第二十次全国代表大会上的报告 (2022年10月16日) 习近平 同志们: 现在,我代表第十九届中央委员会向大会作报告。 中国共产党第二十次全国代表大会,是在全党全国各族人民迈上全面建设社会主义现代化国家新征程、向第二个百年奋斗目标进军的关键时刻召开的一次十分重要的大会。 大会的主题是:高举中国特色社会主义伟大旗帜,全面贯彻新时代中国特色社会主义思想,弘扬伟大建党精神,自信自强、守正创新,踔厉奋发、勇毅前行,为全面建设社会主义现代化国家、全面推进中华民族伟大复兴而团结奋斗。 中国共产党已走过百年奋斗历程。我们党立志于中华民族千秋伟业,致力于人类和平与发展崇高事业,责任无比重大,使命无上光荣。全党同志务必不忘初心、牢记使命,务必谦虚谨慎、艰苦奋斗,务必敢于斗争、善于斗争,坚定历史自信,增强历史主动,谱写新时代中国特色社会主义更加绚丽的华章。 一、过去五年的工作和新时代十年的伟大变革 十九大以来的五年,是极不寻常、极不平凡的五年。党中央统筹中华民族伟大复兴战略全局和世界百年未有之大变局,召开七次全会,分别就宪法修改,深化党和国家机构改革,坚持和完善中国特色社会主义制度、推进国家治理体系和治理能力现代化,制定“十四五规划和二〇三五年远景目标,全面总结党的百年奋斗重大成就和历史经验等重大问题作出决定和决议,就党和国家事业发展作出重大战略部署,团结带领全党全军全国各族人民有效应对严峻复杂的国际形势和接踵而至的巨大风险挑战,以奋发有为的精神把新时代中国特色社会主义不断推向前进。 五年来,我们坚持加强党的全面领导和党中央集中统一领导,全力推进全面建成小康社会进程,完整、准确、全面贯彻新发展理念,着力推动高质量发展,主动构建新发展格局,蹄疾步稳推进改革,扎实推进全过程人民民主,全面推进依法治国,积极发展社会主义先进文化,突出保障和改善民生,集中力量实施脱贫攻坚战,大力推进生态文明建设,坚决维护国家安全,防范化解重大风险,保持社会大局稳定,大力度推进国防和军队现代化建设,全方位开展中国特色大国外交,全面推进党的建设新的伟大工程。我们隆重庆祝中国共产党成立一百周年、中华人民共和国成立七十周年,制定第三个历史决议,在全党开展党史学习教育,建成中国共产党历史展览馆,号召全党学习和践行伟大建党精神,在新的征程上更加坚定、更加自觉地牢记初心使命、开创美好未来。特别是面对突如其来的新冠肺炎疫情,我们坚持人民至上、生命至上,坚持外防输入、内防反弹,坚持动态清零不动摇,开展抗击疫情人民战争、总体战、阻击战,最大限度保护了人民生命安全和身体健康,统筹疫情防控和经济社会发展取得重大积极成果。面对香港局势动荡变化,我们依照宪法和基本法有效实施对特别行政区的全面管治权,制定实施香港特别行政区维护国家安全法,落实“爱国者治港原则,香港局势实现由乱到治的重大转折,深入推进粤港澳大湾区建设,支持香港、澳门发展经济、改善民生、保持稳定。面对“台独势力分裂活动和外部势力干涉台湾事务的严重挑衅,我们坚决开展反分裂、反干涉重大斗争,展示了我们维护国家主权和领土完整、反对“台独的坚强决心和强大能力,进一步掌握了实现祖国完全统一的战略主动,进一步巩固了国际社会坚持一个中国的格局。面对国际局势急剧变化,特别是面对外部讹诈、遏制、封锁、极限施压,我们坚持国家利益为重、国内政治优先,保持战略定力,发扬斗争精神,展示不畏", - "extra": "applyDate: 2022-10-16", + "abstractNote": "本实用新型涉及一种轨道火车及高速轨道火车紧急安全制动辅助装置。现有的轨道火车及高速轨道火车在制动过程中轮毂和钢轨是点接触而引起附着力较小易产生滑移不能有效减速和缩短制动距离的问题。本实用新型在现有轨道火车及高速轨道火车的转向架同侧相邻两个轮毂桥架中间安装一个制动时可自由上下伸缩并能与钢轨相接触能增大摩擦力矩的制动辅助装置。该装置由摩擦片、摩擦片座、导向移动柱、基座、回位弹簧、联动杆、制动气室推柱及制动气室组成。该装置在制动过程中能增大火车的转向架与钢轨之间附着力及摩擦力,使高速行驶的轨道火车及高速轨道火车在紧急情况下迅速减速缩短制动距离并安全停车的制动辅助装置。", + "applicationNumber": "CN201220158825.2", + "assignee": "张凯军", + "country": "中国", + "extra": "Genre: 实用新型", "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "shortTitle": "高举中国特色社会主义伟大旗帜 为全面建设社会主义现代化国家而团结奋斗", - "url": "http://k.cqvip.com/asset/detail/20865128867", + "patentNumber": "CN202827616U", + "place": "中国", + "url": "https://wwwv3.cqvip.com/doc/patent/1992472003", "attachments": [], "tags": [], "notes": [], @@ -805,25 +533,17 @@ var testCases = [ }, { "type": "web", - "url": "http://k.cqvip.com/asset/detail/20858657837", - "detectedItemType": "statute", + "url": "https://www.cqvip.com/doc/standard/2419214972", "items": [ { - "itemType": "report", - "title": "关于《中华人民共和国行政诉讼法修正案(草案)》的说明", - "creators": [ - { - "firstName": "", - "lastName": "全国人大常委会", - "creatorType": "author", - "fieldMode": 1 - } - ], - "date": "2013-12-23", - "abstractNote": "关于《中华人民共和国行政诉讼法修正案(草案)》的说明 (2013年12月23日在第十二届全国人民代表大会常务委员会第六次会议上 全国人大常委会法制工作委员会副主任 信春鹰) 委员长、各位副委员长、秘书长、各委员: 我受委员长会议的委托,作关于《中华人民共和国行政诉讼法修正案(草案)》的说明。 行政诉讼法于1989年由第七届全国人大第二次会议通过,1990年10月1日起实施。这部被称为“民告官的法律规定了行政诉讼程序的基本规则,实施以来,在解决行政争议,推进依法行政,保护公民、法人和其他组织的合法权益等方面,发挥了重要作用。同时,随着社会主义民主法制建设的深入推进,行政诉讼制度与社会经济发展不协调、不适应的问题也日渐突出。人民群众对行政诉讼中存在的“立案难、审理难、执行难等突出问题反映强烈。为解决这些突出问题,适应依法治国、依法执政、依法行政共同推进,法治国家、法治政府、法治社会一体建设的新要求,有必要对行政诉讼法予以修改完善。 近年来,许多全国人大代表和有关方面陆续提出修改行政诉讼法的意见和建议。法制工作委员会从2009年开始着手行政诉讼法的修改调研工作,先后到山东、湖南等多地进行调研,听取基层人民法院、地方政府部门的意见和建议。采取旁听案件审理、阅卷、派人到行政审判一线蹲点等多种方式了解行政诉讼实践的情况。多次召开国务院部门、学者和律师座谈会,听取意见。今年11月又分两次召开17个省、自治区、直辖市人大法制机构、政府法制部门、人民法院和人民检察院参加的座谈会。按照党的十八届三中全会精神和各方面的意见,修改工作把握以下几点:一是维护行政诉讼制度的权威性,针对现实中的突出问题,强调依法保障公民、法人和其他组织的诉讼权利;二是坚持我国行政诉讼制度的基本原则,维护行政权依法行使和公民、法人和其他组织寻求司法救济渠道畅通的平衡,保障人民法院依法独立行使审判权;三是坚持从实际出发,循序渐进,逐步完善;四是总结行政审判实践的经验,把经实践证明的有益经验上升为法律。经与最高人民法院、国务院法制办公室等方面沟通协商、反复研究,在充分论证并取得基本共识的基础上,形成了行政诉讼法修正案(草案)。现就主要问题说明如下: 一、关于保障当事人的诉讼权利 行政诉讼面临的“三难,最突出的是立案难。公民、法人或者其他组织与政府机关及其工作人员产生纠纷,行政机关不愿当被告,法院不愿受理,导致许多应当通过诉讼解决的纠纷进入信访渠道,在有些地方形成了“信访不信法的局面。为通畅行政诉讼的入口,建议从五个方面完善对当事人的诉权保护: 1.明确人民法院和行政机关应当保障当事人的起诉权利。增加规定:人民法院应当保障公民、法人或者其他组织的起诉权利,对应当受理的行政案件依法受理。行政机关不得干预、阻碍人民法院受理行政案件。被诉行政机关应当依法应诉。(修正案草案第三条) 2.扩大受案范围。将行政机关侵犯公民、法人或者其他组织依法享有的土地、矿藏、水流、森林、山岭、草原、荒地、滩涂、海域等自然资源的所有权或者使用权,行政机关侵犯农村土地承包经营权,行政机关违法集资、征收征用财产、摊派费用,行政机关没有依法支付最低生活保障待遇或者社会保险待遇等纳入受案范围。(修正案草案第四条) 3.明确可以口头起诉,方便当事人行使诉权。增加规定:起诉应当向人民法院递交起诉状,并按照被告人数提出副本。书写起诉状确有困难的,可以口头起诉,由人民法院记入笔录,出具注明日期的书面凭证,并告知对方当事人。(修正案草案第二十五条) 4.强化受理程序约束。增加规定:一是人民法院应当在接到起诉状时当场予以登记,并出具注明日期的书面凭证。起诉状内容欠缺或者有其他错误的,应当给予指导和释明,并一次性告知当事人补正。不得未经指导和释明即以起诉不符合条件为由不受理。二是起诉符合条件的,人民法院应当在接到起诉状或者口头起诉之日起七日内立案,并通知当事人;不符合起诉条件的,应当在七日内作出裁定书,不予受理。裁定书应当载明不予受理的理由。原告对裁定不服的,可以提起上诉。三是人民法院在七日内既不立案,又不作出裁定书的,当事人可以向上一级人民法院起诉。上一级人民法院认为符合起诉条件的,应当立案、审理,也可以指定其他下级人民法院立案、审理。(修正案草案第二十五条、第二十七条) 5.明确人民法院的相应责任。增加规定:对于不接收起诉状、接收起诉状后不出具书面凭证,以及不一次性告知当事人补正起诉状内容的,当事人可以向上级人民法院投诉,上级人民法院应当责令改正,并对直接负责的主管人员和其他直接责任人员依法给予处分。(修正案草案第二十五条) 二、关于对规范性文件的附带审查 实践中,有些具体行政行为侵犯公民、法人或者其他组织的合法权益,是地方政府及其部门制定的规范性文件中越权错位等规定造成的。为从根本上减少违法具体行政行为,可以由法院在审 ······", + "itemType": "standard", + "title": "广播电视音像资料编目规范 第2部分:音频资料", + "creators": [], + "date": "2016-02-24", + "abstractNote": "本部分规定了广播电视节目音频资料编目的著录项目(元数据)及其使用规则和数据表达方式。 本部分适用于广播电视音频资料的编目。", "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "url": "http://k.cqvip.com/asset/detail/20858657837", + "libraryCatalog": "CQVIP", + "number": "GY/T 202.2-2016", "attachments": [], "tags": [], "notes": [], @@ -833,78 +553,44 @@ var testCases = [ }, { "type": "web", - "url": "http://k.cqvip.com/asset/detail/20913559137", + "url": "https://www.cqvip.com/doc/journal/2800794117", "items": [ { - "itemType": "report", - "title": "光伏储能一体机系统", + "itemType": "journalArticle", + "title": "Next-Generation Sequencing: From Understanding Biology to Personalized Medicine", "creators": [ { - "firstName": "", - "lastName": "李新富", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "郭华为", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "王建星", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "周勇", "creatorType": "author", - "fieldMode": 1 + "firstName": "Karen", + "lastName": "Frese" }, { - "firstName": "", - "lastName": "施鑫淼", "creatorType": "author", - "fieldMode": 1 + "firstName": "Hugo", + "lastName": "Katus" }, { - "firstName": "", - "lastName": "张祥平", "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "陈青青", - "creatorType": "author", - "fieldMode": 1 + "firstName": "Benjamin", + "lastName": "Meder" } ], - "date": "2019年", - "abstractNote": "项目采用模块化设计,并分层设置在多层柜仓中,多层柜仓内分别设置有储能电池、电池充放电模块、逆变器、配电模块,电池充放电模块对储能电池的充放电进行管理,对光伏储能智能一体机的运行过程进行控制并显示各种状态参数,实现人机交互功能,通信模块与云端服务器及用户手机通信连接,互联网监控实时上传汇总,生成数据报告;通过有线和无线实现于云端的无缝对接,可以让客户无论在何时何地都能监控到家里的发电用电情况,实现了智能化。", - "extra": "achievementType: 应用技术", - "institution": "浙江艾罗网络能源技术有限公司", - "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "reportType": "科技成果报告", - "url": "http://k.cqvip.com/asset/detail/20913559137", + "date": "2013-03-01", + "DOI": "10.3390/biology2010378", + "ISSN": "2079-7737", + "abstractNote": "Within just a few years, the new methods for high-throughput next-generation sequencing have generated completely novel insights into the heritability and pathophysiology of human disease. In this review, we wish to highlight the benefits of the current state-of-the-art sequencing technologies for genetic and epigenetic research. We illustrate how these technologies help to constantly improve our understanding of genetic mechanisms in biological systems and summarize the progress made so far. This can be exemplified by the case of heritable heart muscle diseases, so-called cardiomyopathies. Here, next-generation sequencing is able to identify novel disease genes, and first clinical applications demonstrate the successful translation of this technology into personalized patient care.", + "issue": "1", + "journalAbbreviation": "Biology", + "language": "en", + "libraryCatalog": "DOI.org (Crossref)", + "pages": "378-398", + "publicationTitle": "Biology", + "rights": "https://creativecommons.org/licenses/by/3.0/", + "shortTitle": "Next-Generation Sequencing", + "url": "https://www.mdpi.com/2079-7737/2/1/378", + "volume": "2", "attachments": [], - "tags": [ - { - "tag": "一体机" - }, - { - "tag": "储能" - }, - { - "tag": "光伏" - }, - { - "tag": "系统" - } - ], + "tags": [], "notes": [], "seeAlso": [] } @@ -912,66 +598,61 @@ var testCases = [ }, { "type": "web", - "url": "http://k.cqvip.com/asset/detail/21136403096", + "url": "https://www.cqvip.com/doc/degree/3334769152", "items": [ { - "itemType": "newspaperArticle", - "title": "坚持文旅牵引 推动文旅率先", + "itemType": "thesis", + "title": "Cooperative Adsorbents for Carbon Dioxide Separations", "creators": [ { - "firstName": "", - "lastName": "胡兆红", - "creatorType": "author", - "fieldMode": 1 + "lastName": "Siegelman", + "firstName": "Rebecca L.", + "creatorType": "author" }, { "firstName": "", - "lastName": "王柳蓉", - "creatorType": "author", - "fieldMode": 1 + "lastName": "Long", + "creatorType": "contributor" } ], - "date": "2021-12-21", - "abstractNote": "文化是城市发展的基因和血脉,旅游是城市发展的窗口和名片。省第十二次党代会旗帜鲜明地提出实施“强省会战略,长沙如何发挥龙头引领和辐射带动作用,以省会文化旅游的高质量牵引全省发展?“坚持文旅牵引,推动文旅率先,奋力在‘强省会’战略中当先锋、打头阵、显作?", - "language": "zh-CN", - "libraryCatalog": "维普经纶知识服务平台", - "pages": "4", - "publicationTitle": "长沙晚报", - "url": "http://k.cqvip.com/asset/detail/21136403096", + "date": "2019", + "abstractNote": "Carbon dioxide separations are likely to play an important role in mitigating greenhouse gas emissions and preventing further increases in global temperature. To perform these separations efficiently at scale, new materials are needed with greater efficiencies in the capture and release of CO2 from the emissions of fossil fuel-fired power plants and industrial process streams. In recent years, metal–organic frameworks, constructed from inorganic ions or clusters connected by organic bridging units, have shown particular promise in improving the efficiency of CO2 separations. Specifically, a new class of metal–organic frameworks of the form M2(dobpdc)(diamine)2 (M = Mg, Mn, Fe, Co, Zn; dobpdc4− = 4,4′-dioxidobiphenyl-3,3′-dicarboxylate) have been found to capture CO2 through a cooperative mechanism involving the switch-like, reversible polymerization of CO2 in ammonium carbamate chains along the pore axis. Chapter 1 introduces the concept of carbon capture and sequestration, beginning with an overview of common adsorbent classes employed for CO2 capture applications. Opportunities and challenges are subsequently discussed for CO2 removal from individual potential target streams, including the flue emissions of power plants, industrial process streams, and air. Specific reports are selected to highlight recent advances in overcoming stream-specific challenges, such as stability to common adsorbent poisons. The chapter concludes with a discussion of key needs from the materials research community to accelerate greater adoption of carbon capture technologies. Chapter 2 describes the development of alkylethylenediamine-appended variants of Mg2(dobpdc) for carbon capture applications. Small modifications to the diamine structure are shown to shift the threshold pressure for cooperative CO2 adsorption by over 4 orders of magnitude at a given temperature. The observed trends are rationalized on the basis of crystal structures of the isostructural zinc frameworks obtained by in situ single-crystal X-ray diffraction experiments. The structure–activity relationships derived from these results are subsequently shown to enable the optimization of adsorbent design to match the conditions of a given CO2 separation process, thereby minimizing the energetic cost of CO2 capture. Chapter 3 leverages the results of Chapter 2 in the design of a diamine-appended framework for cooperative CO2 capture from the flue emissions of natural gas combined cycle power plants. Due to growing adoption of natural gas as a fuel source, the emissions of gas-fired plants are contributing a growing portion of global CO2 emissions, but CO2 capture from these power plants is hindered by the low CO2 concentration and high oxygen and water content of the flue stream. In this chapter, functionalization of Mg2(dobpdc) with the cyclic diamine 2-(aminomethyl)piperidine (2-ampd) is shown to produce an adsorbent that is capable of >90% CO2 capture from a humid natural gas flue emission stream, as confirmed by breakthrough measurements. Multicomponent adsorption experiments, infrared spectroscopy, magic angle spinning solid-state NMR spectroscopy, and van der Waals-corrected density functional theory studies suggest that water enhances CO2 capture in 2-ampd–Mg2(dobpdc) through hydrogen-bonding interactions with the carbamate groups of the ammonium carbamate chains formed upon CO2 adsorption, thereby increasing the thermodynamic driving force for CO2 binding. The exceptional thermal, oxidative, and cycling stability of this material are subsequently demonstrated, indicating that 2-ampd–Mg2(dobpdc) is a promising adsorbent for this important separation. Chapter 4 describes the development of a diamine-appended framework for CO2 removal from crude natural gas. Due to its low CO2 emission intensity compared to coal, natural gas is favored as a cleaner-burning fuel. However, for many natural gas reserves, CO2 contamination must be removed at the wellhead to meet pipeline specifications. In this chapter, the framework ee-2–Mg2(dobpdc) (ee-2 = N,N-diethylethylenediamine) is demonstrated as a next-generation CO2 capture material for high-pressure natural gas purification. This material can be readily regenerated with a minimal change in temperature or pressure and maintains its CO2 capacity in the presence of water. Moreover, consistent with the results in Chapter 3, breakthrough experiments reveal that water enhances the CO2 capture performance of ee-2–Mg2(dobpdc) by reducing or eliminating “slip” of CO2 prior to full breakthrough. As in Chapter 3, spectroscopic characterization and multicomponent isobars suggest that the enhanced performance under humid conditions arises from preferential stabilization of the CO2-inserted phase in the presence of water. The favorable performance of ee-2–Mg2(dobpdc) is further demonstrated through comparison with a benchmark material for this separation, zeolite 13X, as well as through extended pressure cycling experiments. Finally, Chapter 5 builds upon the previous chapters in this work to advance a diamine-appended framework toward commercialization in upgrading crude biogas to biomethane, a renewable natural gas equivalent. Using the principles outlined in previous chapters, the material dmpn–Mg2(dobpdc) (dmpn = 2,2-dimethyl-1,3-diaminopropane) is identified as a promising candidate for this separation, and its performance in capturing CO2 from CO2/CH4 mixtures is first demonstrated at the laboratory scale. Through a collaboration with Mosaic Materials, a start-up company working to commercialize cooperative adsorbents for CO2 separations, the performance of dmpn–Mg2(dobpdc) is then demonstrated in breakthrough experiments with composite pellets at the 30–50 g scale. Importantly, these experiments enable simultaneous monitoring of heat and mass transfer in the adsorbent bed, resulting in data suitable to inform the development of a process model. Finally, in partnership with the Davis Wastewater Treatment Plant, slipstream tests are conducted with a crude biogas stream containing water, oxygen, H2S, and siloxanes. These early results suggest that dmpn–Mg2(dobpdc) is relatively robust to H2S and can withstand short-term exposure to crude biogas feeds, representative of a process failure in upstream pretreatment units. These results represent a promising step toward the commercialization of cooperative adsorbents for CO2 separations.", + "language": "en-US", + "libraryCatalog": "CQVIP", + "thesisType": "博士学位论文", + "university": "University of California, Berkeley", + "url": "https://wwwv3.cqvip.com/doc/degree/3334769152", "attachments": [], "tags": [ { - "tag": "乡村旅游" - }, - { - "tag": "全域旅游" - }, - { - "tag": "公共文化服务" - }, - { - "tag": "文化旅游" - }, - { - "tag": "文化自信" - }, - { - "tag": "浏阳河" - }, - { - "tag": "湖湘精神" + "tag": "Ammonium carbamate chains" }, { - "tag": "贾谊故居" + "tag": "Carbon dioxide separations" }, { - "tag": "长沙市" + "tag": "Greenhouse gas emissions" } ], "notes": [], "seeAlso": [] } ] + }, + { + "type": "web", + "url": "https://www.cqvip.com/search?k=%E7%8E%B0%E4%BB%A3%E6%B1%89%E8%AF%AD", + "items": "multiple" + }, + { + "type": "web", + "url": "https://www.cqvip.com/advancesearch", + "items": "multiple" + }, + { + "type": "web", + "url": "https://www.cqvip.com/journal/1022577/column", + "items": "multiple" } ] /** END TEST CASES **/ diff --git a/WeiPu V3.js b/WeiPu V3.js deleted file mode 100644 index 493b83e..0000000 --- a/WeiPu V3.js +++ /dev/null @@ -1,725 +0,0 @@ -{ - "translatorID": "17364f55-b899-4553-977c-c1b062e80d28", - "label": "WeiPu V3", - "creator": "jiaojiaoduabi", - "target": "^https://wwwv3\\.cqvip\\.com", - "minVersion": "5.0", - "maxVersion": "", - "priority": 100, - "inRepository": true, - "translatorType": 4, - "browserSupport": "gcsibv", - "lastUpdated": "2024-06-15 03:32:43" -} - -/* - ***** BEGIN LICENSE BLOCK ***** - - Copyright © 2024 jiaojiaodubai - - This file is part of Zotero. - - Zotero is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - Zotero is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with Zotero. If not, see . - - ***** END LICENSE BLOCK ***** -*/ - -const typeMap = { - journal: 'journalArticle', - degree: 'thesis', - conference: 'conferencePaper', - report: 'report', - patent: 'patent', - standard: 'standard' -}; - -function detectWeb(doc, url) { - const mainWidget = doc.querySelector('.search .main, .periodical-detail .main'); - if (mainWidget) { - Z.monitorDOMChanges(mainWidget, { childList: true, subtree: true }); - } - for (const key in typeMap) { - if (url.includes(`/doc/${key}/`)) { - return typeMap[key]; - } - } - if (getSearchResults(doc, true)) { - return 'multiple'; - } - return false; -} - -function getSearchResults(doc, checkOnly) { - const items = {}; - let found = false; - const rows = doc.querySelectorAll('.sl > a.title, .el-table__row > td:nth-child(2) a'); - for (let row of rows) { - const href = row.href; - const title = ZU.trimInternal(row.textContent); - if (!href || !title) continue; - if (checkOnly) return true; - found = true; - items[href] = title; - } - return found ? items : false; -} - -async function doWeb(doc, url) { - if (detectWeb(doc, url) == 'multiple') { - let items = await Zotero.selectItems(getSearchResults(doc, false)); - if (!items) return; - for (let url of Object.keys(items)) { - await scrape(await requestDocument(url)); - } - } - else { - await scrape(doc, url); - } -} - -async function scrape(doc, url = doc.location.href) { - const labels = new LabelsX(doc, '.horizontalData-f, .mainContainerDataList-item'); - const doi = labels.getWith('DOI'); - if (doi) { - try { - await scrapeSearch(doi); - return; - } - catch (error) { - Z.debug(error); - } - } - const ids = url.match(/\/doc\/[a-z]+\/(\d+)/)[1]; - Z.debug(`ids: ${ids}`); - const refURL = `https://wwwv3.cqvip.com/website/literature/base/ref/download?ids=${ids}&types=1&style=RefMan`; - let refText = await requestText(refURL); - Z.debug(refText); - refText = refText - .replace(/^{?([A-Z](\d|[A-Z]{1,4}))}?: /gm, '$1 ') - .replace(/^(A[1-6]|K1) .+/gm, (match, tag) => match.replace(/;/g, `\n${tag} `)) - .replace(/^(IS|VO|SP) .+/gm, match => match.replace(/\b0*(\d*)/g, '$1')) - .replace(/^OP .+/m, match => match.replace(/\+/g, ', ')); - let translator = Zotero.loadTranslator('import'); - // RefWorks Tagged - translator.setTranslator('1a3506da-a303-4b0a-a1cd-f216e6138d86'); - translator.setString(refText); - translator.setHandler('itemDone', (_obj, item) => { - item.itemType = detectWeb(doc, url); - const extra = new Extra(); - extra.set('citation', text(doc, '.horizontalData-content')); - extra.set('download', text(doc, '.horizontalData-content', 2)); - extra.set('CLC', labels.getWith('中图分类号')); - item.language = /[\u4e00-\u9fff]/.test(item.title) - ? 'zh-CN' - : 'en-US'; - item.notes = []; - switch (item.itemType) { - case 'journalArticle': - delete item.callNumber; - break; - case 'thesis': - item.thesisType = `${item.edition}学位论文`; - delete item.edition; - labels.getWith('导师', true).querySelectorAll('a').forEach((element) => { - item.creators.push(ZU.cleanAuthor(element.textContent, 'contributor')); - }); - break; - case 'conferencePaper': - item.conferenceName = labels.getWith('会议名称'); - item.place = labels.getWith('会议地点'); - extra.set('organizer', item.publisher, true); - delete item.publisher; - break; - case 'report': - item.reportType = tryMatch(refText, /^DB (.+)/m, 1); - item.url = url; - break; - case 'patent': - extra.set('Genre', item.applicationNumber, true); - item.patentNumber = tryMatch(refText, /^ID (.+)/m, 1); - item.applicationNumber = tryMatch(refText, /^NO (.+)/m, 1); - item.place = item.country = patentCountry(item.patentNumber || item.applicationNumber); - item.assignee = item.issuingAuthority; - delete item.issuingAuthority; - item.filingDate = labels.getWith('申请日'); - item.issueDate = labels.getWith('公开\\(公告\\)日'); - item.legalStatus = text(doc, '.legalstatus .el-table__row:first-child > td:nth-child(2)'); - extra.set('IPC', labels.getWith('IPC分类号')); - item.rights = labels.getWith('主权项'); - break; - case 'standard': - item.title = item.title - .replace(/([\u4e00-\u9fff]) ([\u4e00-\u9fff])/, '$1 $2') - .replace(/([\u4e00-\u9fff]): ?([\u4e00-\u9fff])/, '$1:$2'); - item.number = tryMatch(refText, /^ID (.+)/m, 1); - delete item.publisher; - extra.set('CSC', labels.getWith('中国标准分类号')); - extra.set('ICS', labels.getWith('国际标准分类号')); - break; - } - item.creators.forEach((creator) => { - if (/[\u4e00-\u9fff]/.test(creator.lastName)) { - creator.firstName = ''; - creator.fieldMode = 1; - } - }); - - /* if (pdfLink) { - item.attachments.push({ - url: pdfLink.href, - title: 'Full Text PDF', - mimeType: 'application/pdf' - }); - } */ - item.extra = extra.toString(); - item.complete(); - }); - await translator.translate(); -} - -async function scrapeSearch(doi) { - if (!doi) throw new ReferenceError('no identifier available'); - let translator = Zotero.loadTranslator('search'); - translator.setSearch({ DOI: doi }); - translator.setHandler('translators', (_, translators) => { - translator.setTranslator(translators); - }); - translator.setHandler('itemDone', (_, item) => { - item.complete(); - }); - translator.setHandler('error', () => { }); - await translator.getTranslators(); - await translator.translate(); -} - -class LabelsX { - constructor(doc, selector) { - this.innerData = []; - this.emptyElement = doc.createElement('div'); - Array.from(doc.querySelectorAll(selector)) - // avoid nesting - .filter(element => !element.querySelector(selector)) - // avoid empty - .filter(element => !/^\s*$/.test(element.textContent)) - .forEach((element) => { - let elementCopy = element.cloneNode(true); - // avoid empty text - while (/^\s*$/.test(elementCopy.firstChild.textContent)) { - // Z.debug(elementCopy.firstChild.textContent); - elementCopy.removeChild(elementCopy.firstChild); - // Z.debug(elementCopy.firstChild.textContent); - } - if (elementCopy.childNodes.length > 1) { - let key = elementCopy.removeChild(elementCopy.firstChild).textContent.replace(/\s/g, ''); - this.innerData.push([key, elementCopy]); - } - else { - let text = ZU.trimInternal(elementCopy.textContent); - let key = tryMatch(text, /^[[【]?.+?[】\]::]/).replace(/\s/g, ''); - elementCopy.textContent = tryMatch(text, /^[[【]?.+?[】\]::]\s*(.+)/, 1); - this.innerData.push([key, elementCopy]); - } - }); - } - - getWith(label, element = false) { - if (Array.isArray(label)) { - let results = label - .map(aLabel => this.getWith(aLabel, element)); - let keyVal = element - ? results.find(element => !/^\s*$/.test(element.textContent)) - : results.find(string => string); - return keyVal - ? keyVal - : element - ? this.emptyElement - : ''; - } - let pattern = new RegExp(label, 'i'); - let keyVal = this.innerData.find(arr => pattern.test(arr[0])); - return keyVal - ? element - ? keyVal[1] - : ZU.trimInternal(keyVal[1].textContent) - : element - ? this.emptyElement - : ''; - } -} - -class Extra { - constructor() { - this.fields = []; - } - - push(key, val, csl = false) { - this.fields.push({ key: key, val: val, csl: csl }); - } - - set(key, val, csl = false) { - let target = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key)); - if (target) { - target.val = val; - } - else { - this.push(key, val, csl); - } - } - - get(key) { - let result = this.fields.find(obj => new RegExp(`^${key}$`, 'i').test(obj.key)); - return result - ? result.val - : ''; - } - - toString(history = '') { - this.fields = this.fields.filter(obj => obj.val); - return [ - this.fields.filter(obj => obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n'), - history, - this.fields.filter(obj => !obj.csl).map(obj => `${obj.key}: ${obj.val}`).join('\n') - ].filter(obj => obj).join('\n'); - } -} - -function tryMatch(string, pattern, index = 0) { - if (!string) return ''; - let match = string.match(pattern); - return (match && match[index]) - ? match[index] - : ''; -} - -function patentCountry(idNumber) { - return { - AD: '安道尔', AE: '阿拉伯联合酋长国', AF: '阿富汗', AG: '安提瓜和巴布达', AI: '安圭拉', AL: '阿尔巴尼亚', AM: '亚美尼亚', AN: '菏属安的列斯群岛', AO: '安哥拉', AR: '阿根廷', AT: '奥地利', AU: '澳大利亚', AW: '阿鲁巴', AZ: '阿塞拜疆', BB: '巴巴多斯', BD: '孟加拉国', BE: '比利时', BF: '布莱基纳法索', BG: '保加利亚', BH: '巴林', BI: '布隆迪', BJ: '贝宁', BM: '百慕大', BN: '文莱', BO: '玻利维亚', BR: '巴西', BS: '巴哈马', BT: '不丹', BU: '缅甸', BW: '博茨瓦纳', BY: '白俄罗斯', BZ: '伯利兹', CA: '加拿大', CF: '中非共和国', CG: '刚果', CH: '瑞士', CI: '科特迪瓦', CL: '智利', CM: '喀麦隆', CN: '中国', CO: '哥伦比亚', CR: '哥斯达黎加', CS: '捷克斯洛伐克', CU: '古巴', CV: '怫得角', CY: '塞浦路斯', - DE: '联邦德国', DJ: '吉布提', DK: '丹麦', DM: '多米尼加岛', DO: '多米尼加共和国', DZ: '阿尔及利亚', EC: '厄瓜多尔', EE: '爱沙尼亚', EG: '埃及', EP: '欧洲专利局', ES: '西班牙', ET: '埃塞俄比亚', FI: '芬兰', FJ: '斐济', FK: '马尔维纳斯群岛', FR: '法国', - GA: '加蓬', GB: '英国', GD: '格林那达', GE: '格鲁吉亚', GH: '加纳', GI: '直布罗陀', GM: '冈比亚', GN: '几内亚', GQ: '赤道几内亚', GR: '希腊', GT: '危地马拉', GW: '几内亚比绍', GY: '圭亚那', HK: '香港', HN: '洪都拉斯', HR: '克罗地亚', HT: '海地', HU: '匈牙利', HV: '上沃尔特', ID: '印度尼西亚', IE: '爱尔兰', IL: '以色列', IN: '印度', IQ: '伊拉克', IR: '伊朗', IS: '冰岛', IT: '意大利', - JE: '泽西岛', JM: '牙买加', JO: '约旦', JP: '日本', KE: '肯尼亚', KG: '吉尔吉斯', KH: '柬埔寨', KI: '吉尔伯特群岛', KM: '科摩罗', KN: '圣克里斯托夫岛', KP: '朝鲜', KR: '韩国', KW: '科威特', KY: '开曼群岛', KZ: '哈萨克', LA: '老挝', LB: '黎巴嫩', LC: '圣卢西亚岛', LI: '列支敦士登', LK: '斯里兰卡', LR: '利比里亚', LS: '莱索托', LT: '立陶宛', LU: '卢森堡', LV: '拉脱维亚', LY: '利比亚', - MA: '摩洛哥', MC: '摩纳哥', MD: '莫尔多瓦', MG: '马达加斯加', ML: '马里', MN: '蒙古', MO: '澳门', MR: '毛里塔尼亚', MS: '蒙特塞拉特岛', MT: '马耳他', MU: '毛里求斯', MV: '马尔代夫', MW: '马拉维', MX: '墨西哥', MY: '马来西亚', MZ: '莫桑比克', NA: '纳米比亚', NE: '尼日尔', NG: '尼日利亚', NH: '新赫布里底', NI: '尼加拉瓜', NL: '荷兰', NO: '挪威', NP: '尼泊尔', NR: '瑙鲁', NZ: '新西兰', OA: '非洲知识产权组织', OM: '阿曼', - PA: '巴拿马', PC: 'PCT', PE: '秘鲁', PG: '巴布亚新几内亚', PH: '菲律宾', PK: '巴基斯坦', PL: '波兰', PT: '葡萄牙', PY: '巴拉圭', QA: '卡塔尔', RO: '罗马尼亚', RU: '俄罗斯联邦', RW: '卢旺达', - SA: '沙特阿拉伯', SB: '所罗门群岛', SC: '塞舌尔', SD: '苏丹', SE: '瑞典', SG: '新加坡', SH: '圣赫勒拿岛', SI: '斯洛文尼亚', SL: '塞拉利昂', SM: '圣马利诺', SN: '塞内加尔', SO: '索马里', SR: '苏里南', ST: '圣多美和普林西比岛', SU: '苏联', SV: '萨尔瓦多', SY: '叙利亚', SZ: '斯威士兰', TD: '乍得', TG: '多哥', TH: '泰国', TJ: '塔吉克', TM: '土库曼', TN: '突尼斯', TO: '汤加', TR: '土耳其', TT: '特立尼达和多巴哥', TV: '图瓦卢', TZ: '坦桑尼亚', UA: '乌克兰', UG: '乌干达', US: '美国', UY: '乌拉圭', UZ: '乌兹别克', - VA: '梵蒂冈', VC: '圣文森特岛和格林纳达', VE: '委内瑞拉', VG: '维尔京群岛', VN: '越南', VU: '瓦努阿图', WO: '世界知识产权组织', WS: '萨摩亚', YD: '民主也门', YE: '也门', YU: '南斯拉夫', ZA: '南非', ZM: '赞比亚', ZR: '扎伊尔', ZW: '津巴布韦' - }[idNumber.substring(0, 2).toUpperCase()] || ''; -} - -/** BEGIN TEST CASES **/ -var testCases = [ - { - "type": "web", - "url": "https://wwwv3.cqvip.com/doc/journal/954991692", - "items": [ - { - "itemType": "journalArticle", - "title": "“北斗一号”监控管理网设计与实现", - "creators": [ - { - "lastName": "武丽丽", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "lastName": "华一新", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "lastName": "张亚军", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "lastName": "刘英敏", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - } - ], - "date": "2008", - "ISSN": "1009-2307", - "abstractNote": "本文分析了北斗用户终端在实际应用中存在的问题,指出指挥型用户终端的监控能力有限、成本相对较高是影响其推广应用的关键。针对该问题,利用现有资源,设计并搭建了监控管理网,在该网络中创造性地设计了虚拟指挥机系统,起到了指挥型用户终端的作用,弥补了北斗用户终端的不足。文章具体阐述了虚拟指挥机系统的工作原理,介绍了其数据模型,并描述了整个监控管理网的网络功能和体系结构设计,该网络已在很多部门得到应用。", - "extra": "citation: 1\ndownload: 0\nCLC: P208 [测绘数据库与信息系统]", - "issue": "5", - "language": "zh-CN", - "libraryCatalog": "WeiPu V3", - "pages": "8-9, 7", - "publicationTitle": "测绘科学", - "url": "https://wwwv3.cqvip.com/doc/journal/954991692", - "volume": "33", - "attachments": [], - "tags": [ - { - "tag": "北斗用户终端" - }, - { - "tag": "指挥机" - }, - { - "tag": "用户机" - }, - { - "tag": "监控" - }, - { - "tag": "虚拟指挥机" - } - ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/doc/degree/1868317894", - "items": [ - { - "itemType": "thesis", - "title": "人类活动影响下海河流域典型区水循环变化分析", - "creators": [ - { - "lastName": "马欢", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "firstName": "", - "lastName": "杨大文", - "creatorType": "contributor", - "fieldMode": 1 - } - ], - "date": "2011", - "abstractNote": "海河流域人口密集,水资源供需关系紧张。近年来,在人工取水、下垫面变化和农业灌溉等人类活动影响下,流域水循环发生了显著变化。人类活动对海河流域山区和平原灌区水循环的影响方式和机制有所不同,论文分别选取流域内的典型山区与平原灌区,探讨了人类活动影响下山区径流、平原区地下水位及水质的变化特征。 论文以密云水库上游流域为研究对象,分析人类活动影响下海河流域典型山区的水循环变化特征。分析表明在1956005年期间,流域年径流明显减少,降雨和平均气温分别呈显著下降和升高趋势,人工取水量明显增加,人类活动和气候变化是引起径流减少的主要原因。论文将研究期划分为1956983和1984005年两个时段,以两时段内年平均径流的变化来评价流域径流的减少量,并采用数据分析与水文模型相结合的综合分析方法,定量评价了人工取用水、气候变化以及下垫面变化对径流减少的贡献。结果表明,人类活动对径流减少的贡献略小于气候变化的贡献。 论文以位山引黄灌区为研究对象,探讨人类活动影响下海河流域典型平原灌区的水循环变化特征。对1974007年位山灌区地下水位变化的分析表明,灌区地下水位总体保持在较高水平,但一干渠末端附近的地下水位出现较明显的下降。灌区地下水位在空间分布上沿干渠上游至下游逐渐下降,灌区内地下水位高于灌区外,表明引黄灌溉是维持位山灌区现状地下水位的主要原因。在位山灌区典型田间的水循环综合观测数据基础上,结合田间水循环模型,分析了农田水分运移规律及水量平衡特征。在黄河水资源供需矛盾日益突出的背景下,位山灌区未来引黄水量可能有所减少,论文以1984007年的气象和引黄流量数据为基础,采用田间水循环模型分析了不同灌溉水平下,灌区地下水位及蒸散发的变化特征。 对于位山灌区,人类活动对水环境也有明显影响。灌溉导致地下水位抬升,带来土壤盐渍化风险;灌溉和施肥影响农田的氮素平衡,硝态氮淋溶可能造成地下水污染。论文在2010年51月期间,对灌区典型农田的土壤水与地下水进行了分层连续采样,检测了样本的盐分与氮素含量,检测数据显示:土壤水与地下水中,盐分浓度在120cm附近出现峰值,硝态氮浓度总体随埋深的增加而降低;铵态氮含量很低,表明土壤的硝化能力很强。论文采用田间盐分运移模型,探讨了灌排不平衡时的盐渍化风险;建立了对饱和-非饱和带耦合模拟的农田氮素迁移转化模型,探讨了农田氮素平衡特征,并对根层硝态氮的淋溶损失进行了评估。", - "extra": "citation: 0\ndownload: 0\nCLC: P339[水文循环与水文气象]", - "language": "zh-CN", - "libraryCatalog": "WeiPu V3", - "thesisType": "博士学位论文", - "university": "清华大学", - "url": "https://wwwv3.cqvip.com/doc/degree/1868317894", - "attachments": [], - "tags": [ - { - "tag": "Hydrus-1D" - }, - { - "tag": "人类活动" - }, - { - "tag": "分布式水文模型" - }, - { - "tag": "海河流域" - }, - { - "tag": "田间观测" - } - ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/doc/conference/537148377", - "items": [ - { - "itemType": "conferencePaper", - "title": "面向数字素养的高校图书馆数字服务体系研究", - "creators": [ - { - "lastName": "贾东琴", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "lastName": "柯平", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - } - ], - "date": "2011-10-26", - "abstractNote": "数字素养作为数字环境中的一种基本素养,它已成为人们适应全球信息化、数字化社会所需的基本能力。图书馆可通过构建面向数字素养的数字服务体系,以服务为手段,使学生在自然便利的氛围中形成良好的数字素养来逐步提升学生的数字素养水平。面向数字素养的数字服务体系要以坚实的课程教学为基础,创建优越的数字服务环境为后盾,多样化的数字服务方式为手段,形成的一种高效的数字素养服务机制。", - "conferenceName": "中国图书馆学会2011年年会", - "extra": "organizer: 中国图书馆学会\ncitation: 0\ndownload: 0\nCLC: G252", - "language": "zh-CN", - "libraryCatalog": "WeiPu V3", - "pages": "45-53", - "place": "中国贵州省贵阳市", - "proceedingsTitle": "中国图书馆学会2011年年会论文集", - "url": "https://wwwv3.cqvip.com/doc/conference/537148377", - "attachments": [], - "tags": [ - { - "tag": "数字化建设" - }, - { - "tag": "数字素养" - }, - { - "tag": "读者服务" - }, - { - "tag": "高校图书馆" - } - ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/doc/report/2910908558", - "items": [ - { - "itemType": "report", - "title": "人体安全重要技术标准研制最终报告", - "creators": [ - { - "lastName": "汤万金", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "lastName": "杨跃翔", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "lastName": "刘文", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "lastName": "郑建国", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - }, - { - "lastName": "王赟松", - "firstName": "", - "creatorType": "author", - "fieldMode": 1 - } - ], - "date": "2013-09-29", - "abstractNote": "本研究通过制定我国人体安全急需的技术标准,解决影响我国人体安全的重点产品的技术标准缺失、滞后的问题,完善不安全产品召回制度相关管理标准,提高我国人体安全的整体水平,促进社会和谐稳定,促进企业技术创新和技术改造、实现产业结构调整、提高我国产品国际竞争力,保证经济健康持续发展。 1.从消费品安全的角度,构建了消费品安全标准体系,并制定了急需的消费品安全关键标准,满足有效控制消费品安全危害,提高产品安全水平,保障消费者健康和权益,推动产品行业持续健康发展。 2.通过电子电气产品中有毒有害物质的检测技术标准研究,结合之前完成的电子电气产品中铅、镉、汞、六价铬、多溴联苯、多溴二苯醚检测技术方法,建立了系统而完整的电子电气产品中有毒有害物质检测技术体系,为我国应对欧盟RoHS指令和其他国家的贸易技术措施,提供技术支持和决策依据。 3.构建了一个既适合我国食品产业发展又与国际接轨的,结构合理、功能完善、层次分明、重点突出,涵盖食品包装容器及材料安全生产、流通、消费全过程、且涉及基础通用标准、安全限量标准、检测方法标准、过程控制与管理技术标准、标签标志、重要产品标准等标准类型的食品包装容器及材料标准体系,同时研究与制定重要且急需的食品包装容器及材料基础通用标准,以及食品塑料、纸包装容器及材料安全限量和检测方法标准,进一步健全和完善我国食品包装容器及材料标准体系,为保障消费者健康、加强食品质量安全监管以及打破和跨越国外技术壁垒提供有力的技术支撑。 4.以维护公共安全、保护消费者利益、提高产品质量为出发点,在整理我国现有产品安全法规及标准,研究国外产品召回法规、标准的基础上,结合国情,建立了与全球经济一体化、技术标准现代化相适应的产品召回管理标准化体系,制定产品召回管理关键性标准,使我国产品召回管理法制化、科学化、规范化,和国际接轨。", - "extra": "citation: 0\ndownload: 0", - "language": "zh-CN", - "libraryCatalog": "WeiPu V3", - "url": "https://wwwv3.cqvip.com/doc/report/2910908558", - "attachments": [], - "tags": [ - { - "tag": "产品安全" - }, - { - "tag": "人身安全" - }, - { - "tag": "消费品" - } - ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/doc/patent/1992472003", - "items": [ - { - "itemType": "patent", - "title": "轨道火车及高速轨道火车紧急安全制动辅助装置", - "creators": [ - { - "lastName": "张凯军", - "firstName": "", - "creatorType": "inventor", - "fieldMode": 1 - }, - { - "lastName": "赵永杰", - "firstName": "", - "creatorType": "inventor", - "fieldMode": 1 - }, - { - "lastName": "陈朝岗", - "firstName": "", - "creatorType": "inventor", - "fieldMode": 1 - } - ], - "issueDate": "2013-03-27", - "abstractNote": "本实用新型涉及一种轨道火车及高速轨道火车紧急安全制动辅助装置。现有的轨道火车及高速轨道火车在制动过程中轮毂和钢轨是点接触而引起附着力较小易产生滑移不能有效减速和缩短制动距离的问题。本实用新型在现有轨道火车及高速轨道火车的转向架同侧相邻两个轮毂桥架中间安装一个制动时可自由上下伸缩并能与钢轨相接触能增大摩擦力矩的制动辅助装置。该装置由摩擦片、摩擦片座、导向移动柱、基座、回位弹簧、联动杆、制动气室推柱及制动气室组成。该装置在制动过程中能增大火车的转向架与钢轨之间附着力及摩擦力,使高速行驶的轨道火车及高速轨道火车在紧急情况下迅速减速缩短制动距离并安全停车的制动辅助装置。", - "applicationNumber": "CN201220158825.2", - "assignee": "张凯军", - "country": "中国", - "extra": "Genre: 实用新型\ncitation: 0\ndownload: 0\nIPC: B61H7/12(20060101)(2022.01)", - "filingDate": "2012-04-05", - "language": "zh-CN", - "legalStatus": "未缴年费专利权终止", - "patentNumber": "CN202827616U", - "place": "中国", - "rights": "1.一种轨道火车及高速轨道火车紧急安全制动辅助装置,其特征是:该制动辅助装置采用气压式推动原理被纵向安置在轨道火车及高速轨道火车的转向架同侧相邻两个轮毂之间,纵向投影与同侧两个轮毂及钢轨相重合,制动时可自由上下伸缩并能与钢轨相接触能增大火车的转向架与钢轨之间附着力及摩擦力矩的制动辅助装置;该装置由摩擦片、摩擦片座、导向移动柱、基座、回位弹簧、联动杆、制动气室推柱及制动气室组成。", - "url": "https://wwwv3.cqvip.com/doc/patent/1992472003", - "attachments": [], - "tags": [], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/doc/standard/2419214972", - "items": [ - { - "itemType": "standard", - "title": "广播电视音像资料编目规范 第2部分:音频资料", - "creators": [], - "date": "2016-02-24", - "abstractNote": "本部分规定了广播电视节目音频资料编目的著录项目(元数据)及其使用规则和数据表达方式。 本部分适用于广播电视音频资料的编目。", - "extra": "citation: 0\ndownload: 0\nCSC: M60\nICS: 33.160.01", - "language": "zh-CN", - "libraryCatalog": "WeiPu V3", - "number": "GY/T 202.2-2016", - "attachments": [], - "tags": [], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/doc/journal/2800794117", - "items": [ - { - "itemType": "journalArticle", - "title": "Next-Generation Sequencing: From Understanding Biology to Personalized Medicine", - "creators": [ - { - "creatorType": "author", - "firstName": "Karen", - "lastName": "Frese" - }, - { - "creatorType": "author", - "firstName": "Hugo", - "lastName": "Katus" - }, - { - "creatorType": "author", - "firstName": "Benjamin", - "lastName": "Meder" - } - ], - "date": "2013-03-01", - "DOI": "10.3390/biology2010378", - "ISSN": "2079-7737", - "abstractNote": "Within just a few years, the new methods for high-throughput next-generation sequencing have generated completely novel insights into the heritability and pathophysiology of human disease. In this review, we wish to highlight the benefits of the current state-of-the-art sequencing technologies for genetic and epigenetic research. We illustrate how these technologies help to constantly improve our understanding of genetic mechanisms in biological systems and summarize the progress made so far. This can be exemplified by the case of heritable heart muscle diseases, so-called cardiomyopathies. Here, next-generation sequencing is able to identify novel disease genes, and first clinical applications demonstrate the successful translation of this technology into personalized patient care.", - "issue": "1", - "journalAbbreviation": "Biology", - "language": "en", - "libraryCatalog": "DOI.org (Crossref)", - "pages": "378-398", - "publicationTitle": "Biology", - "rights": "https://creativecommons.org/licenses/by/3.0/", - "shortTitle": "Next-Generation Sequencing", - "url": "https://www.mdpi.com/2079-7737/2/1/378", - "volume": "2", - "attachments": [], - "tags": [], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/doc/degree/3334769152", - "items": [ - { - "itemType": "thesis", - "title": "Cooperative Adsorbents for Carbon Dioxide Separations", - "creators": [ - { - "lastName": "Siegelman", - "firstName": "Rebecca L.", - "creatorType": "author" - }, - { - "firstName": "", - "lastName": "Long", - "creatorType": "contributor" - } - ], - "date": "2019", - "abstractNote": "Carbon dioxide separations are likely to play an important role in mitigating greenhouse gas emissions and preventing further increases in global temperature. To perform these separations efficiently at scale, new materials are needed with greater efficiencies in the capture and release of CO2 from the emissions of fossil fuel-fired power plants and industrial process streams. In recent years, metal–organic frameworks, constructed from inorganic ions or clusters connected by organic bridging units, have shown particular promise in improving the efficiency of CO2 separations. Specifically, a new class of metal–organic frameworks of the form M2(dobpdc)(diamine)2 (M = Mg, Mn, Fe, Co, Zn; dobpdc4− = 4,4′-dioxidobiphenyl-3,3′-dicarboxylate) have been found to capture CO2 through a cooperative mechanism involving the switch-like, reversible polymerization of CO2 in ammonium carbamate chains along the pore axis. Chapter 1 introduces the concept of carbon capture and sequestration, beginning with an overview of common adsorbent classes employed for CO2 capture applications. Opportunities and challenges are subsequently discussed for CO2 removal from individual potential target streams, including the flue emissions of power plants, industrial process streams, and air. Specific reports are selected to highlight recent advances in overcoming stream-specific challenges, such as stability to common adsorbent poisons. The chapter concludes with a discussion of key needs from the materials research community to accelerate greater adoption of carbon capture technologies. Chapter 2 describes the development of alkylethylenediamine-appended variants of Mg2(dobpdc) for carbon capture applications. Small modifications to the diamine structure are shown to shift the threshold pressure for cooperative CO2 adsorption by over 4 orders of magnitude at a given temperature. The observed trends are rationalized on the basis of crystal structures of the isostructural zinc frameworks obtained by in situ single-crystal X-ray diffraction experiments. The structure–activity relationships derived from these results are subsequently shown to enable the optimization of adsorbent design to match the conditions of a given CO2 separation process, thereby minimizing the energetic cost of CO2 capture. Chapter 3 leverages the results of Chapter 2 in the design of a diamine-appended framework for cooperative CO2 capture from the flue emissions of natural gas combined cycle power plants. Due to growing adoption of natural gas as a fuel source, the emissions of gas-fired plants are contributing a growing portion of global CO2 emissions, but CO2 capture from these power plants is hindered by the low CO2 concentration and high oxygen and water content of the flue stream. In this chapter, functionalization of Mg2(dobpdc) with the cyclic diamine 2-(aminomethyl)piperidine (2-ampd) is shown to produce an adsorbent that is capable of >90% CO2 capture from a humid natural gas flue emission stream, as confirmed by breakthrough measurements. Multicomponent adsorption experiments, infrared spectroscopy, magic angle spinning solid-state NMR spectroscopy, and van der Waals-corrected density functional theory studies suggest that water enhances CO2 capture in 2-ampd–Mg2(dobpdc) through hydrogen-bonding interactions with the carbamate groups of the ammonium carbamate chains formed upon CO2 adsorption, thereby increasing the thermodynamic driving force for CO2 binding. The exceptional thermal, oxidative, and cycling stability of this material are subsequently demonstrated, indicating that 2-ampd–Mg2(dobpdc) is a promising adsorbent for this important separation. Chapter 4 describes the development of a diamine-appended framework for CO2 removal from crude natural gas. Due to its low CO2 emission intensity compared to coal, natural gas is favored as a cleaner-burning fuel. However, for many natural gas reserves, CO2 contamination must be removed at the wellhead to meet pipeline specifications. In this chapter, the framework ee-2–Mg2(dobpdc) (ee-2 = N,N-diethylethylenediamine) is demonstrated as a next-generation CO2 capture material for high-pressure natural gas purification. This material can be readily regenerated with a minimal change in temperature or pressure and maintains its CO2 capacity in the presence of water. Moreover, consistent with the results in Chapter 3, breakthrough experiments reveal that water enhances the CO2 capture performance of ee-2–Mg2(dobpdc) by reducing or eliminating “slip” of CO2 prior to full breakthrough. As in Chapter 3, spectroscopic characterization and multicomponent isobars suggest that the enhanced performance under humid conditions arises from preferential stabilization of the CO2-inserted phase in the presence of water. The favorable performance of ee-2–Mg2(dobpdc) is further demonstrated through comparison with a benchmark material for this separation, zeolite 13X, as well as through extended pressure cycling experiments. Finally, Chapter 5 builds upon the previous chapters in this work to advance a diamine-appended framework toward commercialization in upgrading crude biogas to biomethane, a renewable natural gas equivalent. Using the principles outlined in previous chapters, the material dmpn–Mg2(dobpdc) (dmpn = 2,2-dimethyl-1,3-diaminopropane) is identified as a promising candidate for this separation, and its performance in capturing CO2 from CO2/CH4 mixtures is first demonstrated at the laboratory scale. Through a collaboration with Mosaic Materials, a start-up company working to commercialize cooperative adsorbents for CO2 separations, the performance of dmpn–Mg2(dobpdc) is then demonstrated in breakthrough experiments with composite pellets at the 30–50 g scale. Importantly, these experiments enable simultaneous monitoring of heat and mass transfer in the adsorbent bed, resulting in data suitable to inform the development of a process model. Finally, in partnership with the Davis Wastewater Treatment Plant, slipstream tests are conducted with a crude biogas stream containing water, oxygen, H2S, and siloxanes. These early results suggest that dmpn–Mg2(dobpdc) is relatively robust to H2S and can withstand short-term exposure to crude biogas feeds, representative of a process failure in upstream pretreatment units. These results represent a promising step toward the commercialization of cooperative adsorbents for CO2 separations.", - "extra": "citation: 0\ndownload: 0", - "language": "en-US", - "libraryCatalog": "WeiPu V3", - "thesisType": "博士学位论文", - "university": "University of California, Berkeley", - "url": "https://wwwv3.cqvip.com/doc/degree/3334769152", - "attachments": [], - "tags": [ - { - "tag": "Ammonium carbamate chains" - }, - { - "tag": "Carbon dioxide separations" - }, - { - "tag": "Greenhouse gas emissions" - } - ], - "notes": [], - "seeAlso": [] - } - ] - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/search?k=%E7%8E%B0%E4%BB%A3%E6%B1%89%E8%AF%AD", - "items": "multiple" - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/advancesearch", - "items": "multiple" - }, - { - "type": "web", - "url": "https://wwwv3.cqvip.com/journal/1022577/column", - "items": "multiple" - } -] -/** END TEST CASES **/ diff --git a/data/data.json b/data/data.json index 3ce4bbd..45f5be0 100644 --- a/data/data.json +++ b/data/data.json @@ -20,7 +20,9 @@ "CNKI thinker": "中国知网心可图书馆", "CNKI TIKS": "中国知网科技创新知识服务平台", "CNSDA": "中国学术调查数据资料库", - "CQVIP": "维普经纶知识服务平台", + "CQVIP Knowledge": "维普经纶知识服务平台", + "CQVIP Qikan": "维普期刊", + "CQVIP": "维普网", "Cubox": "Cubox", "Dangdang": "当当图书", "doc.taixueshu": " 钛学术文献服务平台", @@ -67,8 +69,6 @@ "TOAJ": "臺灣學術期刊開放取用平台", "Wanfang Data": "万方", "Wanfang Med": "万方医疗", - "WeiPu": "维普", - "WeiPu V3": "维普网", "Weixin": "微信", "Wenjin": "国图-文津", "xiaoyuzhouFM": "小宇宙FM",