├── .gitattributes ├── .gitee └── ISSUE_TEMPLATE.zh-CN.md ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ ├── config.yml │ └── feature-request.yaml └── workflows │ ├── ci.yml │ └── issue-bot.yml ├── .gitignore ├── .gitmodules ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── lib ├── customFields.ts ├── data │ ├── citations │ │ ├── default-sample-cites-author-date.json │ │ ├── default-sample-cites-note.json │ │ ├── default-sample-cites-numeric.json │ │ ├── default-test-cites-author-date.json │ │ ├── default-test-cites-note.json │ │ └── default-test-cites-numeric.json │ ├── index.ts │ └── items │ │ ├── acta-psychologica-sinica-data.json │ │ ├── apa-data.json │ │ ├── default-test-cites-author-date-data.json │ │ ├── gbt7714-data.json │ │ ├── manual-of-legal-citation-data.json │ │ └── social-sciences-in-china-data.json ├── generate.ts ├── index.ts ├── types │ ├── citeproc.d.ts │ ├── csl-json.d.ts │ └── index.d.ts └── utils │ ├── citeproc.ts │ ├── getTags.ts │ ├── string.ts │ └── task.ts ├── package.json ├── pnpm-lock.yaml ├── scripts ├── check_style.py ├── csl_style.py ├── make_bilingual_style.py ├── make_cites.py ├── make_fullwidth_style.py ├── move.sh ├── new_style.py └── remove-prefix.sh ├── src ├── GB-T-7714—1987(顺序编码,双语) │ ├── GB-T-7714—1987(顺序编码,双语).csl │ ├── cites.json │ ├── index.md │ ├── items.json │ └── metadata.json ├── GB-T-7714—2005(著者-出版年,双语) │ ├── GB-T-7714—2005(著者-出版年,双语).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2005(著者-出版年,双语,姓名不大写,无URL) │ ├── GB-T-7714—2005(著者-出版年,双语,姓名不大写,无URL).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2005(顺序编码,双语) │ ├── GB-T-7714—2005(顺序编码,双语).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2005(顺序编码,双语,姓名不大写,无URL) │ ├── GB-T-7714—2005(顺序编码,双语,姓名不大写,无URL).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(注释,双语) │ ├── GB-T-7714—2015(注释,双语).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(注释,双语,全角标点) │ ├── GB-T-7714—2015(注释,双语,全角标点).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(注释,双语,姓名不大写,无-URL、DOI) │ ├── GB-T-7714—2015(注释,双语,姓名不大写,无-URL、DOI).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(注释,双语,姓名不大写,无URL、DOI) │ ├── GB-T-7714—2015(注释,双语,姓名不大写,无URL、DOI).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(注释,双语,姓名不大写,无URL、DOI,重复引用不省略) │ ├── GB-T-7714—2015(注释,双语,姓名不大写,无URL、DOI,重复引用不省略).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(注释,双语,重复引用不省略) │ ├── GB-T-7714—2015(注释,双语,重复引用不省略).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(著者-出版年,双语) │ ├── GB-T-7714—2015(著者-出版年,双语).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(著者-出版年,双语,全角标点) │ ├── GB-T-7714—2015(著者-出版年,双语,全角标点).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(著者-出版年,双语,姓名不大写) │ ├── GB-T-7714—2015(著者-出版年,双语,姓名不大写).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI) │ ├── GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号) │ ├── GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(著者-出版年,双语,无URL、DOI) │ ├── GB-T-7714—2015(著者-出版年,双语,无URL、DOI).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语) │ ├── GB-T-7714—2015(顺序编码,双语).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,全角标点) │ ├── GB-T-7714—2015(顺序编码,双语,全角标点).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,姓名不大写) │ ├── GB-T-7714—2015(顺序编码,双语,姓名不大写).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,全部作者) │ ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,全部作者).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,全部作者,姓名不缩写) │ ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,全部作者,姓名不缩写).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,引注有页码) │ ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,引注有页码).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI) │ ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI,引注有页码) │ ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI,引注有页码).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI,网络首发文献除外) │ ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI,网络首发文献除外).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL) │ ├── GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2015(顺序编码,双语,无URL、DOI) │ ├── GB-T-7714—2015(顺序编码,双语,无URL、DOI).csl │ ├── index.md │ └── metadata.json ├── GB-T-7714—2025(征求意见稿,顺序编码,双语) │ ├── GB-T-7714—2025(征求意见稿,顺序编码,双语).csl │ ├── index.md │ ├── items.json │ └── metadata.json ├── IEEE(双语) │ ├── IEEE(双语).csl │ ├── index.md │ └── metadata.json ├── food-materials-research │ ├── food-materials-research.csl │ ├── index.md │ └── metadata.json ├── journal-of-meteorological-research │ ├── index.md │ ├── journal-of-meteorological-research.csl │ └── metadata.json ├── journal-of-modern-power-systems-and-clean-energy │ ├── index.md │ ├── journal-of-modern-power-systems-and-clean-energy.csl │ └── metadata.json ├── transactions-of-nonferrous-metals-society-of-china │ ├── index.md │ ├── metadata.json │ └── transactions-of-nonferrous-metals-society-of-china.csl ├── 上海交通大学 │ ├── index.md │ ├── metadata.json │ └── 上海交通大学.csl ├── 上海大学 │ ├── index.md │ ├── metadata.json │ └── 上海大学.csl ├── 上海对外经贸大学学报 │ ├── index.md │ ├── metadata.json │ └── 上海对外经贸大学学报.csl ├── 上海工程技术大学 │ ├── index.md │ ├── metadata.json │ └── 上海工程技术大学.csl ├── 上海财经大学(本科) │ ├── index.md │ ├── metadata.json │ └── 上海财经大学(本科).csl ├── 世界历史 │ ├── index.md │ ├── metadata.json │ └── 世界历史.csl ├── 世界经济 │ ├── index.md │ ├── metadata.json │ └── 世界经济.csl ├── 世界经济与政治 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 世界经济与政治.csl ├── 世界经济与政治论坛 │ ├── index.md │ ├── metadata.json │ └── 世界经济与政治论坛.csl ├── 东北大学 │ ├── index.md │ ├── metadata.json │ └── 东北大学.csl ├── 东北林业大学 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 东北林业大学.csl ├── 东南大学 │ ├── index.md │ ├── metadata.json │ └── 东南大学.csl ├── 中华医学会 │ ├── index.md │ ├── metadata.json │ └── 中华医学会.csl ├── 中华心血管病杂志 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中华心血管病杂志.csl ├── 中华炎性肠病杂志 │ ├── index.md │ ├── metadata.json │ └── 中华炎性肠病杂志.csl ├── 中南大学 │ ├── index.md │ ├── metadata.json │ └── 中南大学.csl ├── 中南林业科技大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中南林业科技大学.csl ├── 中南民族大学-生命科学学院 │ ├── index.md │ ├── metadata.json │ └── 中南民族大学-生命科学学院.csl ├── 中南财经政法大学 │ ├── index.md │ ├── metadata.json │ └── 中南财经政法大学.csl ├── 中国人民大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国人民大学.csl ├── 中国人民大学(本科) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国人民大学(本科).csl ├── 中国公路学报 │ ├── index.md │ ├── metadata.json │ └── 中国公路学报.csl ├── 中国农业大学-人文与发展学院 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国农业大学-人文与发展学院.csl ├── 中国农业大学学报 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国农业大学学报.csl ├── 中国农业大学(自然科学) │ ├── index.md │ ├── metadata.json │ └── 中国农业大学(自然科学).csl ├── 中国农业科学 │ ├── index.md │ ├── metadata.json │ └── 中国农业科学.csl ├── 中国农业科学院 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国农业科学院.csl ├── 中国农村经济 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国农村经济.csl ├── 中国地质大学(武汉)(本科,顺序编码) │ ├── index.md │ ├── metadata.json │ └── 中国地质大学(武汉)(本科,顺序编码).csl ├── 中国地质大学(著者-出版年) │ ├── index.md │ ├── metadata.json │ └── 中国地质大学(著者-出版年).csl ├── 中国工业经济 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国工业经济.csl ├── 中国当代儿科杂志 │ ├── index.md │ ├── metadata.json │ └── 中国当代儿科杂志.csl ├── 中国政法大学 │ ├── cites.json │ ├── index.md │ ├── metadata.json │ ├── test-cites.json │ └── 中国政法大学.csl ├── 中国林业科学研究院 │ ├── index.md │ ├── metadata.json │ └── 中国林业科学研究院.csl ├── 中国现代文学研究丛刊 │ ├── index.md │ ├── metadata.json │ └── 中国现代文学研究丛刊.csl ├── 中国生态农业学报 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国生态农业学报.csl ├── 中国电机工程学报 │ ├── index.md │ ├── metadata.json │ └── 中国电机工程学报.csl ├── 中国矿业大学-外文学院(文学、翻译方向-MLA) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国矿业大学-外文学院(文学、翻译方向-MLA).csl ├── 中国矿业大学 │ ├── index.md │ ├── metadata.json │ └── 中国矿业大学.csl ├── 中国社会科学 │ ├── cites.json │ ├── index.md │ ├── metadata.json │ └── 中国社会科学.csl ├── 中国科学院大学(著者-出版年) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国科学院大学(著者-出版年).csl ├── 中国科学院大学(顺序编码) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国科学院大学(顺序编码).csl ├── 中国科学:地球科学 │ ├── index.md │ ├── metadata.json │ └── 中国科学:地球科学.csl ├── 中国药科大学(本科) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国药科大学(本科).csl ├── 中国行政管理 │ ├── index.md │ ├── metadata.json │ └── 中国行政管理.csl ├── 中国计量大学 │ ├── index.md │ ├── metadata.json │ └── 中国计量大学.csl ├── 中国高等学校自然科学学报编排规范 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 中国高等学校自然科学学报编排规范.csl ├── 中外法学 │ ├── index.md │ ├── metadata.json │ └── 中外法学.csl ├── 中央财经大学学报 │ ├── index.md │ ├── metadata.json │ └── 中央财经大学学报.csl ├── 中山大学 │ ├── index.md │ ├── metadata.json │ └── 中山大学.csl ├── 云南大学 │ ├── index.md │ ├── metadata.json │ └── 云南大学.csl ├── 云南师范大学(本科) │ ├── index.md │ ├── metadata.json │ └── 云南师范大学(本科).csl ├── 人文地理 │ ├── index.md │ ├── metadata.json │ └── 人文地理.csl ├── 人民出版社 │ ├── index.md │ ├── items.json │ ├── metadata.json │ ├── test-cites.json │ └── 人民出版社.csl ├── 会计研究 │ ├── index.md │ ├── metadata.json │ └── 会计研究.csl ├── 信息安全学报 │ ├── index.md │ ├── metadata.json │ └── 信息安全学报.csl ├── 傳播與社會學刊 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 傳播與社會學刊.csl ├── 公共行政评论 │ ├── index.md │ ├── metadata.json │ └── 公共行政评论.csl ├── 兰州大学 │ ├── index.md │ ├── metadata.json │ └── 兰州大学.csl ├── 兽类学报 │ ├── index.md │ ├── metadata.json │ └── 兽类学报.csl ├── 农业工程学报 │ ├── index.md │ ├── metadata.json │ └── 农业工程学报.csl ├── 农业技术经济 │ ├── index.md │ ├── metadata.json │ └── 农业技术经济.csl ├── 化学进展 │ ├── index.md │ ├── metadata.json │ └── 化学进展.csl ├── 北京大学(顺序编码) │ ├── index.md │ ├── metadata.json │ └── 北京大学(顺序编码).csl ├── 北京师范大学 │ ├── index.md │ ├── metadata.json │ └── 北京师范大学.csl ├── 北京林业大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 北京林业大学.csl ├── 北京林业大学(本科) │ ├── index.md │ ├── metadata.json │ └── 北京林业大学(本科).csl ├── 北京理工大学 │ ├── index.md │ ├── metadata.json │ └── 北京理工大学.csl ├── 北京航空航天大学 │ ├── index.md │ ├── metadata.json │ └── 北京航空航天大学.csl ├── 北方工业大学-英语专业(本科) │ ├── index.md │ ├── metadata.json │ └── 北方工业大学-英语专业(本科).csl ├── 华东师范大学 │ ├── index.md │ ├── metadata.json │ └── 华东师范大学.csl ├── 华东理工大学-社会与公共管理学院 │ ├── cites.json │ ├── index.md │ ├── metadata.json │ └── 华东理工大学-社会与公共管理学院.csl ├── 华东理工大学(本科) │ ├── index.md │ ├── metadata.json │ └── 华东理工大学(本科).csl ├── 华中农业大学 │ ├── index.md │ ├── metadata.json │ └── 华中农业大学.csl ├── 华中科技大学-同济医学院 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 华中科技大学-同济医学院.csl ├── 华中科技大学-电气与电子工程学院 │ ├── index.md │ ├── metadata.json │ └── 华中科技大学-电气与电子工程学院.csl ├── 华中科技大学-网络空间安全学院 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 华中科技大学-网络空间安全学院.csl ├── 华中科技大学(理工科) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 华中科技大学(理工科).csl ├── 华北农学报 │ ├── index.md │ ├── metadata.json │ └── 华北农学报.csl ├── 华南农业大学 │ ├── index.md │ ├── metadata.json │ └── 华南农业大学.csl ├── 华南农业大学(本科) │ ├── index.md │ ├── metadata.json │ └── 华南农业大学(本科).csl ├── 华南师范大学-1202-工商管理学 │ ├── index.md │ ├── metadata.json │ └── 华南师范大学-1202-工商管理学.csl ├── 华南理工大学-公共管理学院 │ ├── index.md │ ├── metadata.json │ └── 华南理工大学-公共管理学院.csl ├── 南京农业大学(人文社科类,脚注) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 南京农业大学(人文社科类,脚注).csl ├── 南京农业大学(自然科学类) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 南京农业大学(自然科学类).csl ├── 南京工程学院 │ ├── index.md │ ├── metadata.json │ └── 南京工程学院.csl ├── 南京理工大学学报(社会科学版) │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 南京理工大学学报(社会科学版).csl ├── 南京航空航天大学 │ ├── index.md │ ├── metadata.json │ └── 南京航空航天大学.csl ├── 南京邮电大学 │ ├── index.md │ ├── metadata.json │ └── 南京邮电大学.csl ├── 南方民族考古 │ ├── index.md │ ├── metadata.json │ └── 南方民族考古.csl ├── 南昌大学(本科生) │ ├── index.md │ ├── metadata.json │ └── 南昌大学(本科生).csl ├── 历史研究 │ ├── index.md │ ├── metadata.json │ └── 历史研究.csl ├── 原子核物理评论 │ ├── index.md │ ├── metadata.json │ └── 原子核物理评论.csl ├── 原子能科学技术 │ ├── index.md │ ├── metadata.json │ └── 原子能科学技术.csl ├── 同济大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 同济大学.csl ├── 哈尔滨医科大学 │ ├── index.md │ ├── metadata.json │ └── 哈尔滨医科大学.csl ├── 哈尔滨理工大学 │ ├── index.md │ ├── metadata.json │ └── 哈尔滨理工大学.csl ├── 四川农业大学 │ ├── index.md │ ├── metadata.json │ └── 四川农业大学.csl ├── 四川外国语大学-英语语言文学(语言学、教学法方向) │ ├── index.md │ ├── metadata.json │ └── 四川外国语大学-英语语言文学(语言学、教学法方向).csl ├── 四川大学-华西临床医学院 │ ├── index.md │ ├── metadata.json │ └── 四川大学-华西临床医学院.csl ├── 四川大学-外国语学院(本科) │ ├── index.md │ ├── metadata.json │ └── 四川大学-外国语学院(本科).csl ├── 园艺学报 │ ├── index.md │ ├── metadata.json │ └── 园艺学报.csl ├── 国防科技大学研究生学位论文 │ ├── index.md │ ├── metadata.json │ └── 国防科技大学研究生学位论文.csl ├── 国际关系研究 │ ├── index.md │ ├── metadata.json │ └── 国际关系研究.csl ├── 国际安全研究 │ ├── index.md │ ├── metadata.json │ └── 国际安全研究.csl ├── 国际政治研究 │ ├── index.md │ ├── metadata.json │ └── 国际政治研究.csl ├── 国际新闻界 │ ├── index.md │ ├── metadata.json │ └── 国际新闻界.csl ├── 国际法研究 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 国际法研究.csl ├── 国际经贸探索 │ ├── index.md │ ├── metadata.json │ └── 国际经贸探索.csl ├── 国际金融研究 │ ├── index.md │ ├── metadata.json │ └── 国际金融研究.csl ├── 地球物理学报 │ ├── index.md │ ├── metadata.json │ └── 地球物理学报.csl ├── 地理学报 │ ├── index.md │ ├── metadata.json │ └── 地理学报.csl ├── 地质学报 │ ├── index.md │ ├── metadata.json │ └── 地质学报.csl ├── 复旦大学-大气与海洋科学系 │ ├── index.md │ ├── metadata.json │ └── 复旦大学-大气与海洋科学系.csl ├── 外交评论 │ ├── index.md │ ├── metadata.json │ └── 外交评论.csl ├── 外国文学评论 │ ├── index.md │ ├── metadata.json │ └── 外国文学评论.csl ├── 外语教学与研究 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 外语教学与研究.csl ├── 外语教学理论与实践 │ ├── index.md │ ├── metadata.json │ └── 外语教学理论与实践.csl ├── 大连海事大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 大连海事大学.csl ├── 大连理工大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 大连理工大学.csl ├── 天津大学(顺序编码) │ ├── index.md │ ├── metadata.json │ └── 天津大学(顺序编码).csl ├── 天然气工业 │ ├── index.md │ ├── metadata.json │ └── 天然气工业.csl ├── 太平洋学报 │ ├── index.md │ ├── metadata.json │ └── 太平洋学报.csl ├── 宁波大学 │ ├── index.md │ ├── metadata.json │ └── 宁波大学.csl ├── 安徽医科大学 │ ├── index.md │ ├── metadata.json │ └── 安徽医科大学.csl ├── 安徽理工大学 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 安徽理工大学.csl ├── 导出作者、出版年 │ ├── index.md │ ├── metadata.json │ └── 导出作者、出版年.csl ├── 导出作者、刊名、年卷期页 │ ├── index.md │ ├── metadata.json │ └── 导出作者、刊名、年卷期页.csl ├── 导出全部作者 │ ├── index.md │ ├── metadata.json │ └── 导出全部作者.csl ├── 导出刊名 │ ├── index.md │ ├── metadata.json │ └── 导出刊名.csl ├── 导出刊名、年卷期页 │ ├── index.md │ ├── metadata.json │ └── 导出刊名、年卷期页.csl ├── 导出笔记(@题名@作者@出版年) │ ├── index.md │ ├── metadata.json │ └── 导出笔记(@题名@作者@出版年).csl ├── 导出题名 │ ├── index.md │ ├── metadata.json │ └── 导出题名.csl ├── 山东农业大学 │ ├── index.md │ ├── metadata.json │ └── 山东农业大学.csl ├── 山东大学(顺序编码制) │ ├── index.md │ ├── metadata.json │ └── 山东大学(顺序编码制).csl ├── 山西农业大学 │ ├── index.md │ ├── metadata.json │ └── 山西农业大学.csl ├── 山西大学(本科生) │ ├── index.md │ ├── metadata.json │ └── 山西大学(本科生).csl ├── 广东工业大学 │ ├── index.md │ ├── metadata.json │ └── 广东工业大学.csl ├── 广州大学 │ ├── index.md │ ├── metadata.json │ └── 广州大学.csl ├── 当代亚太 │ ├── index.md │ ├── metadata.json │ └── 当代亚太.csl ├── 微生物学报 │ ├── index.md │ ├── metadata.json │ └── 微生物学报.csl ├── 心理学报 │ ├── cites.json │ ├── index.md │ ├── metadata.json │ ├── test-cites.json │ └── 心理学报.csl ├── 心理科学进展 │ ├── cites.json │ ├── index.md │ ├── metadata.json │ ├── test-cites.json │ └── 心理科学进展.csl ├── 成都理工大学 │ ├── index.md │ ├── metadata.json │ └── 成都理工大学.csl ├── 扬州大学 │ ├── index.md │ ├── metadata.json │ └── 扬州大学.csl ├── 探索与争鸣 │ ├── index.md │ ├── metadata.json │ └── 探索与争鸣.csl ├── 教育史研究 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 教育史研究.csl ├── 数量经济技术经济研究 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 数量经济技术经济研究.csl ├── 文学评论 │ ├── index.md │ ├── metadata.json │ └── 文学评论.csl ├── 文艺争鸣 │ ├── index.md │ ├── metadata.json │ └── 文艺争鸣.csl ├── 新疆农业大学动科学院 │ ├── index.md │ ├── metadata.json │ └── 新疆农业大学动科学院.csl ├── 新疆大学 │ ├── index.md │ ├── metadata.json │ └── 新疆大学.csl ├── 新金融 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 新金融.csl ├── 新闻与传播研究 │ ├── index.md │ ├── metadata.json │ └── 新闻与传播研究.csl ├── 无机材料学报 │ ├── index.md │ ├── metadata.json │ └── 无机材料学报.csl ├── 昆明医科大学 │ ├── index.md │ ├── metadata.json │ └── 昆明医科大学.csl ├── 暨南大学 │ ├── index.md │ ├── metadata.json │ └── 暨南大学.csl ├── 材料导报 │ ├── index.md │ ├── metadata.json │ └── 材料导报.csl ├── 林业科学 │ ├── index.md │ ├── metadata.json │ └── 林业科学.csl ├── 林产化学与工业 │ ├── index.md │ ├── metadata.json │ └── 林产化学与工业.csl ├── 核农学报 │ ├── index.md │ ├── metadata.json │ └── 核农学报.csl ├── 核聚变与等离子体物理 │ ├── index.md │ ├── metadata.json │ └── 核聚变与等离子体物理.csl ├── 植物保护学报 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 植物保护学报.csl ├── 植物生理学报 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 植物生理学报.csl ├── 植物遗传资源学报 │ ├── index.md │ ├── metadata.json │ └── 植物遗传资源学报.csl ├── 武汉大学(本科) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 武汉大学(本科).csl ├── 武汉理工大学(本科) │ ├── index.md │ ├── metadata.json │ └── 武汉理工大学(本科).csl ├── 水利水运工程学报 │ ├── index.md │ ├── metadata.json │ └── 水利水运工程学报.csl ├── 水生生物学报 │ ├── index.md │ ├── metadata.json │ └── 水生生物学报.csl ├── 水科学进展 │ ├── index.md │ ├── metadata.json │ └── 水科学进展.csl ├── 江南大学 │ ├── index.md │ ├── metadata.json │ └── 江南大学.csl ├── 江西财经大学 │ ├── index.md │ ├── metadata.json │ └── 江西财经大学.csl ├── 沈阳农业大学 │ ├── index.md │ ├── metadata.json │ └── 沈阳农业大学.csl ├── 河北农业大学 │ ├── index.md │ ├── metadata.json │ └── 河北农业大学.csl ├── 河北医科大学 │ ├── index.md │ ├── metadata.json │ └── 河北医科大学.csl ├── 河北大学研究生学位论文 │ ├── index.md │ ├── metadata.json │ └── 河北大学研究生学位论文.csl ├── 河北工业大学学 │ ├── index.md │ ├── metadata.json │ └── 河北工业大学学.csl ├── 河海大学 │ ├── index.md │ ├── metadata.json │ └── 河海大学.csl ├── 法学引注手册(多语言) │ ├── cites.json │ ├── index.md │ ├── metadata.json │ ├── test-cites.json │ └── 法学引注手册(多语言).csl ├── 法学引注手册(多语言,重复引用不省略) │ ├── cites.json │ ├── index.md │ ├── metadata.json │ ├── test-cites.json │ └── 法学引注手册(多语言,重复引用不省略).csl ├── 浙江大学 │ ├── index.md │ ├── metadata.json │ └── 浙江大学.csl ├── 浙江大学(社会科学类) │ ├── index.md │ ├── metadata.json │ └── 浙江大学(社会科学类).csl ├── 海南大学-外国语学院 │ ├── index.md │ ├── metadata.json │ └── 海南大学-外国语学院.csl ├── 海南大学 │ ├── index.md │ ├── metadata.json │ └── 海南大学.csl ├── 海洋与湖沼 │ ├── index.md │ ├── metadata.json │ └── 海洋与湖沼.csl ├── 深圳大学 │ ├── index.md │ ├── metadata.json │ └── 深圳大学.csl ├── 清华大学(人文社科) │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 清华大学(人文社科).csl ├── 清华大学(著者-出版年) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 清华大学(著者-出版年).csl ├── 清华大学(顺序编码) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 清华大学(顺序编码).csl ├── 湖北大学 │ ├── index.md │ ├── metadata.json │ └── 湖北大学.csl ├── 湖南大学(脚注) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 湖南大学(脚注).csl ├── 湖南大学(顺序编码) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 湖南大学(顺序编码).csl ├── 湖南师范大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 湖南师范大学.csl ├── 澳門科技大學 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 澳門科技大學.csl ├── 物理学报(双语) │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 物理学报(双语).csl ├── 环境昆虫学报 │ ├── index.md │ ├── metadata.json │ └── 环境昆虫学报.csl ├── 现代国际关系 │ ├── index.md │ ├── metadata.json │ └── 现代国际关系.csl ├── 生态学报 │ ├── index.md │ ├── metadata.json │ └── 生态学报.csl ├── 生物化学与生物物理进展 │ ├── index.md │ ├── metadata.json │ └── 生物化学与生物物理进展.csl ├── 生物多样性 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 生物多样性.csl ├── 电子科技大学 │ ├── index.md │ ├── metadata.json │ └── 电子科技大学.csl ├── 皮肤性病诊疗学杂志 │ ├── index.md │ ├── metadata.json │ └── 皮肤性病诊疗学杂志.csl ├── 石河子大学(著者-出版年) │ ├── index.md │ ├── metadata.json │ └── 石河子大学(著者-出版年).csl ├── 石河子大学(顺序编码制) │ ├── index.md │ ├── metadata.json │ └── 石河子大学(顺序编码制).csl ├── 矿产勘查 │ ├── index.md │ ├── metadata.json │ └── 矿产勘查.csl ├── 社会学研究 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 社会学研究.csl ├── 福建农林大学 │ ├── index.md │ ├── metadata.json │ └── 福建农林大学.csl ├── 福建师范大学(本科) │ ├── index.md │ ├── metadata.json │ └── 福建师范大学(本科).csl ├── 科学学与科学技术管理 │ ├── index.md │ ├── metadata.json │ └── 科学学与科学技术管理.csl ├── 科学学研究 │ ├── index.md │ ├── metadata.json │ └── 科学学研究.csl ├── 科学通报(双语) │ ├── index.md │ ├── metadata.json │ └── 科学通报(双语).csl ├── 管理世界 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 管理世界.csl ├── 管理评论 │ ├── index.md │ ├── metadata.json │ └── 管理评论.csl ├── 系统工程理论与实践 │ ├── index.md │ ├── metadata.json │ └── 系统工程理论与实践.csl ├── 经济学(季刊) │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 经济学(季刊).csl ├── 经济研究 │ ├── index.md │ ├── metadata.json │ └── 经济研究.csl ├── 经济社会体制比较 │ ├── index.md │ ├── metadata.json │ └── 经济社会体制比较.csl ├── 经济管理 │ ├── index.md │ ├── metadata.json │ └── 经济管理.csl ├── 综合性期刊文献引证技术规范(注释) │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 综合性期刊文献引证技术规范(注释).csl ├── 综合性期刊文献引证技术规范(著者—出版年) │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 综合性期刊文献引证技术规范(著者—出版年).csl ├── 考古 │ ├── index.md │ ├── metadata.json │ └── 考古.csl ├── 臺大中文學報 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 臺大中文學報.csl ├── 色谱 │ ├── index.md │ ├── metadata.json │ └── 色谱.csl ├── 营销科学学报 │ ├── index.md │ ├── metadata.json │ └── 营销科学学报.csl ├── 西北农林科技大学 │ ├── index.md │ ├── metadata.json │ └── 西北农林科技大学.csl ├── 西北农林科技大学(本科) │ ├── index.md │ ├── metadata.json │ └── 西北农林科技大学(本科).csl ├── 西北工业大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 西北工业大学.csl ├── 西南交通大学(著者-出版年) │ ├── index.md │ ├── metadata.json │ └── 西南交通大学(著者-出版年).csl ├── 西南交通大学(顺序编码) │ ├── index.md │ ├── metadata.json │ └── 西南交通大学(顺序编码).csl ├── 西南大学 │ ├── index.md │ ├── metadata.json │ └── 西南大学.csl ├── 西南政法大学 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ ├── test-cites.json │ └── 西南政法大学.csl ├── 西南财经大学(本科) │ ├── index.md │ ├── metadata.json │ └── 西南财经大学(本科).csl ├── 西安交通大学 │ ├── index.md │ ├── metadata.json │ └── 西安交通大学.csl ├── 西安工程大学 │ ├── index.md │ ├── metadata.json │ └── 西安工程大学.csl ├── 西安建筑科技大学 │ ├── index.md │ ├── metadata.json │ └── 西安建筑科技大学.csl ├── 西安理工大学 │ ├── index.md │ ├── metadata.json │ └── 西安理工大学.csl ├── 西安电子科技大学 │ ├── index.md │ ├── metadata.json │ └── 西安电子科技大学.csl ├── 西安电子科技大学(本科) │ ├── index.md │ ├── metadata.json │ └── 西安电子科技大学(本科).csl ├── 计算机学报 │ ├── index.md │ ├── metadata.json │ └── 计算机学报.csl ├── 财经研究 │ ├── index.md │ ├── metadata.json │ └── 财经研究.csl ├── 财贸经济 │ ├── index.md │ ├── metadata.json │ └── 财贸经济.csl ├── 贵州大学 │ ├── index.md │ ├── metadata.json │ └── 贵州大学.csl ├── 遥感学报 │ ├── index.md │ ├── metadata.json │ └── 遥感学报.csl ├── 重庆大学(著者-出版年) │ ├── index.md │ ├── metadata.json │ └── 重庆大学(著者-出版年).csl ├── 重庆大学(顺序编码) │ ├── index.md │ ├── metadata.json │ └── 重庆大学(顺序编码).csl ├── 重庆邮电大学 │ ├── index.md │ ├── metadata.json │ └── 重庆邮电大学.csl ├── 金融研究 │ ├── index.md │ ├── metadata.json │ └── 金融研究.csl ├── 金融评论 │ ├── index.md │ ├── metadata.json │ └── 金融评论.csl ├── 钢铁研究学报 │ ├── index.md │ ├── metadata.json │ └── 钢铁研究学报.csl ├── 食品科学 │ ├── index.md │ ├── metadata.json │ └── 食品科学.csl ├── 首都医科大学 │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 首都医科大学.csl ├── 马克思主义研究 │ ├── cites.json │ ├── index.md │ ├── items.json │ ├── metadata.json │ └── 马克思主义研究.csl ├── 高分子学报 │ ├── index.md │ ├── metadata.json │ └── 高分子学报.csl └── 黑龙江大学(本科) │ ├── index.md │ ├── metadata.json │ └── 黑龙江大学(本科).csl └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.csl linguist-vendored=false 2 | *.csl linguist-generated=false 3 | *.csl linguist-documentation=false 4 | *.csl linguist-detectable=true 5 | -------------------------------------------------------------------------------- /.gitee/ISSUE_TEMPLATE.zh-CN.md: -------------------------------------------------------------------------------- 1 | 3 | 4 | **样式信息** 5 | 6 | 7 | 8 | - 期刊/学校名称: 9 | 10 | 11 | - 英文名称: 12 | 13 | 14 | - (期刊)相关领域: 15 | 21 | 22 | - (期刊)ISSN 号: 23 | 24 | 25 | - (学校)文件号: 26 | 27 | 28 | - 参考文献格式的更新日期: 29 | 30 | 31 | **参考文献格式** 32 | 33 | 34 | 35 | - 官方网页链接: 36 | 37 | - 官方文件链接: 38 | 39 | - 上传格式文件: 40 | 41 | **相近样式** 42 | 43 | 44 | 45 | - 相近样式: 46 | 47 | - 区别: 48 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- 1 | name: 错误报告 2 | description: 报告错误帮助我们改进 3 | title: "错误:" 4 | labels: 5 | - bug 6 | # - Needs Triage 7 | body: 8 | - type: textarea 9 | attributes: 10 | label: 涉及到的样式文件 11 | description: | 12 | 例如: 13 | - xxxx1.csl 14 | - xxxx2.csl 15 | validations: 16 | required: true 17 | 18 | - type: textarea 19 | attributes: 20 | label: 描述错误 21 | description: | 22 | 清晰简洁地描述错误是什么,预期的结果是什么。 23 | 如果必要,请添加屏幕截图以帮助解释。 24 | validations: 25 | required: false 26 | 27 | - type: textarea 28 | id: description 29 | attributes: 30 | label: 条目信息 31 | description: | 32 | 将出错的文献条目导出为 CSL-JSON 格式。 33 | 34 | 在 Zotero 中,选中条目,右击,导出,CSL-JSON 格式。 35 | 36 | 例如: 37 | 38 | ```json 39 | [ 40 | { 41 | "id": "doe1984his", 42 | "type": "book", 43 | "title": "His anonymous life", 44 | "author": [ 45 | { 46 | "family": "Doe", 47 | "given": "John" 48 | } 49 | ], 50 | "issued": { 51 | "date-parts": [ 52 | [ 53 | "1984" 54 | ] 55 | ] 56 | } 57 | } 58 | ] 59 | ``` 60 | value: | 61 | ```json 62 | {} 63 | ``` 64 | validations: 65 | required: false 66 | 67 | - type: textarea 68 | id: additional-context 69 | attributes: 70 | label: 其他相关信息 71 | description: | 72 | Links? References? Anything that will give us more context about the issue you are encountering! 73 | 在此处添加有关该问题的其他信息。 74 | validations: 75 | required: false 76 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: 反馈关于网站的问题 4 | url: https://github.com/zotero-chinese/website 5 | about: "前往 zotero-chinese/website 仓库参与讨论!" 6 | 7 | - name: 提问、求助、好想法 8 | url: https://github.com/orgs/zotero-chinese/discussions/new/choose 9 | about: "前往 Discussion 参与讨论!" 10 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- 1 | name: 样式申请 2 | description: 申请添加新的 CSL 样式 3 | title: "新样式:" 4 | labels: 5 | - enhancement 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | ## 样式信息 11 | 12 | - type: input 13 | attributes: 14 | label: 期刊 / 学校名称 15 | placeholder: XX学报 / XX大学(研究生学位论文) 16 | validations: 17 | required: true 18 | 19 | - type: input 20 | attributes: 21 | label: 英文名称 22 | placeholder: e.g. Acta Psychologica Sinica / Tsinghua University 23 | validations: 24 | required: true 25 | 26 | - type: textarea 27 | attributes: 28 | label: 参考文献格式 29 | description: 提供**官网**的链接,并上传一份格式文件。 30 | value: | 31 | 官方网页链接: 32 | 33 | 官方文件链接: 34 | 35 | 上传格式文件: 36 | validations: 37 | required: true 38 | 39 | - type: dropdown 40 | attributes: 41 | label: 相关领域 42 | options: 43 | - anthropology 44 | - astronomy 45 | - biology 46 | - botany 47 | - chemistry 48 | - communications 49 | - engineering 50 | - geography 51 | - geology 52 | - history 53 | - humanities 54 | - law 55 | - linguistics 56 | - literature 57 | - math 58 | - medicine 59 | - philosophy 60 | - physics 61 | - political_science 62 | - psychology 63 | - science 64 | - social_science 65 | - sociology 66 | - zoology 67 | 68 | - type: textarea 69 | attributes: 70 | label: 文件号 71 | description: 上述格式文件的编号或期刊 ISSN 号,例如“`研生[2019]10号`”或“`0439-755X`”。 72 | value: | 73 | - (期刊)ISSN 号: 74 | - (学校)文件号: 75 | - 参考文献格式的更新日期: 76 | 77 | - type: textarea 78 | attributes: 79 | label: 相近样式 80 | description: 请在 https://zotero-chinese.com/styles 的通用样式(如国标、《综合性期刊文献引证技术规范》)中查找与你需要的最相近的样式,将链接或样式名填写在下面,并简要说明与其差别。 81 | value: | 82 | 相近样式: 83 | 84 | 区别: 85 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: autofix.ci # needed to securely identify the workflow 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | branches: 9 | - main 10 | workflow_dispatch: 11 | 12 | permissions: 13 | contents: read 14 | 15 | jobs: 16 | autofix: 17 | name: 自动修复格式和预览 18 | runs-on: ubuntu-latest 19 | steps: 20 | - uses: actions/checkout@v4 21 | with: 22 | fetch-depth: 0 23 | submodules: recursive 24 | - uses: pnpm/action-setup@v4 25 | - uses: actions/setup-node@v4 26 | with: 27 | node-version: 20 28 | cache: pnpm 29 | - run: pnpm install 30 | 31 | - run: pnpm build 32 | # - run: pnpm format 33 | 34 | - uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef 35 | 36 | send-dispatch: 37 | name: 请求部署上线 38 | if: github.repository == 'zotero-chinese/styles' && github.event_name != 'pull_request' 39 | needs: autofix 40 | runs-on: ubuntu-latest 41 | steps: 42 | - name: Repository Dispatch 43 | uses: peter-evans/repository-dispatch@v3 44 | with: 45 | token: ${{ secrets.ACCESS_TOKEN }} 46 | repository: zotero-chinese/website 47 | event-type: update-triggered-by-styles-repo 48 | 49 | sync: 50 | name: 同步到 Gitee 51 | if: github.repository == 'zotero-chinese/styles' && github.event_name != 'pull_request' 52 | needs: autofix 53 | runs-on: ubuntu-latest 54 | steps: 55 | - uses: wearerequired/git-mirror-action@master 56 | env: 57 | SSH_PRIVATE_KEY: ${{ secrets.GITEE_PRIVATE_KEY }} 58 | with: 59 | source-repo: "git@github.com:zotero-chinese/styles.git" # github仓库地址 60 | destination-repo: "git@gitee.com:zotero-chinese-x/styles.git" # gitee仓库地址 61 | -------------------------------------------------------------------------------- /.github/workflows/issue-bot.yml: -------------------------------------------------------------------------------- 1 | name: issue-bot 2 | 3 | on: 4 | issues: 5 | types: [opened, edited, closed] 6 | issue_comment: 7 | types: [created, edited] 8 | schedule: 9 | - cron: "30 1 * * *" 10 | 11 | permissions: {} 12 | 13 | jobs: 14 | label: 15 | permissions: 16 | issues: write # to add label to an issues (retorquere/label-gun) 17 | pull-requests: write # to add label, comment on pull request (retorquere/label-gun) 18 | runs-on: ubuntu-latest 19 | steps: 20 | - uses: retorquere/label-gun@main 21 | with: 22 | token: ${{ secrets.GITHUB_TOKEN }} 23 | label.awaiting: "等待贡献者回复" 24 | 25 | stable: 26 | if: github.event_name == 'schedule' 27 | runs-on: ubuntu-latest 28 | permissions: 29 | issues: write 30 | pull-requests: write 31 | steps: 32 | - uses: actions/stale@v9 33 | with: 34 | days-before-issue-stale: 360 35 | days-before-issue-close: 7 36 | stale-issue-label: "过期" 37 | stale-issue-message: "该 issue 已被标记为「过期」,因为已经超过 360 天没有活动。" 38 | close-issue-message: "该 issue 已关闭,因为它被标记为「过期」后 7 天内仍一直处于非活动状态。" 39 | exempt-issue-labels: "help wanted" 40 | days-before-pr-stale: -1 41 | days-before-pr-close: -1 42 | repo-token: ${{ secrets.GITHUB_TOKEN }} 43 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib/locales"] 2 | path = lib/locales 3 | url = https://github.com/citation-style-language/locales.git 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # 自动生成文件 2 | src/**/index.md 3 | src/**/metadata.json 4 | dist/* 5 | node_modules 6 | pnpm-lock.yaml 7 | 8 | # CSL 文件由 redhat.vscode-xml 插件格式化 9 | src/**/*.csl 10 | 11 | # 子模块 12 | lib/locales 13 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2, 3 | "printWidth": 80, 4 | "trailingComma": "es5", 5 | "overrides": [ 6 | { 7 | "files": ["src/**/*.json", "lib/**/*.json"], 8 | "options": { "useTabs": true, "tabWidth": 2 } 9 | } 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. 3 | // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp 4 | 5 | // List of extensions which should be recommended for users of this workspace. 6 | "recommendations": ["redhat.vscode-xml", "esbenp.prettier-vscode"], 7 | // List of extensions recommended by VS Code that should not be recommended for users of this workspace. 8 | "unwantedRecommendations": [ 9 | "ms-azuretools.vscode-docker", 10 | "firefox-devtools.vscode-firefox-debug", 11 | "GitHub.copilot" 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.defaultFormatter": "esbenp.prettier-vscode", 3 | 4 | "[markdown]": { 5 | "editor.formatOnSave": true, 6 | "editor.formatOnPaste": false, 7 | "editor.defaultFormatter": "esbenp.prettier-vscode" 8 | }, 9 | "markdownlint.config": { 10 | "default": true, 11 | "MD012": false, 12 | "MD033": false, 13 | "no-hard-tabs": true 14 | }, 15 | 16 | "[xml]": { 17 | "editor.formatOnSave": true, 18 | "editor.formatOnSaveMode": "file", 19 | "editor.tabSize": 2, 20 | "editor.defaultFormatter": "redhat.vscode-xml" 21 | }, 22 | 23 | "xml.format.emptyElements": "collapse", 24 | "xml.format.enforceQuoteStyle": "preferred", 25 | "xml.format.joinContentLines": true, 26 | "xml.format.maxLineWidth": 0, 27 | "xml.format.preservedNewlines": 0, 28 | "xml.format.spaceBeforeEmptyCloseTag": false, 29 | "xml.preferences.quoteStyle": "double", 30 | "xml.fileAssociations": [ 31 | { 32 | "systemId": "https://github.com/citation-style-language/schema/blob/master/schemas/styles/csl.rnc", 33 | "pattern": "**/*.csl" 34 | } 35 | ], 36 | 37 | "files.insertFinalNewline": true, 38 | "files.trimFinalNewlines": true, 39 | "files.trimTrailingWhitespace": true, 40 | "files.exclude": { 41 | // "node_modules":true, 42 | // "**/LICENSE": true 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /lib/customFields.ts: -------------------------------------------------------------------------------- 1 | export const customFields: { 2 | [cslFileName: string]: StyleCustomFields; 3 | } = { 4 | "gb-t-7714-2015-author-date-bilingual": { 5 | tags: ["名缩写"], 6 | }, 7 | }; 8 | -------------------------------------------------------------------------------- /lib/data/citations/default-sample-cites-author-date.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "gbt7714.A.01:10" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "gbt7714.A.07:08" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "gbt7714.04.2.2:05" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "gbt7714.04.1.2:17" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "gbt7714.04.4.2:05" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "gbt7714.04.4.2:09" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "gbt7714.04.6.2:01" 35 | }, 36 | { 37 | "id": "gbt7714.04.6.2:03" 38 | } 39 | ] 40 | ] 41 | -------------------------------------------------------------------------------- /lib/data/citations/default-sample-cites-note.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "gbt7714.A.01:10" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "gbt7714.04.1.2:17" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "gbt7714.04.2.2:05" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "gbt7714.A.07:08" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "gbt7714.04.4.2:05" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "gbt7714.04.4.2:09" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "gbt7714.04.4.2:09" 35 | } 36 | ], 37 | [ 38 | { 39 | "id": "gbt7714.04.4.2:09", 40 | "label": "page", 41 | "locator": "357" 42 | } 43 | ], 44 | [ 45 | { 46 | "id": "gbt7714.04.1.2:17", 47 | "label": "page", 48 | "locator": "326-329" 49 | } 50 | ] 51 | ] 52 | -------------------------------------------------------------------------------- /lib/data/citations/default-sample-cites-numeric.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "gbt7714.A.01:10" 5 | }, 6 | { 7 | "id": "gbt7714.04.1.2:17" 8 | }, 9 | { 10 | "id": "gbt7714.04.2.2:05" 11 | }, 12 | { 13 | "id": "gbt7714.A.07:08" 14 | }, 15 | { 16 | "id": "gbt7714.04.4.2:05" 17 | }, 18 | { 19 | "id": "gbt7714.04.4.2:09" 20 | }, 21 | { 22 | "id": "gbt7714.04.6.2:01" 23 | }, 24 | { 25 | "id": "gbt7714.04.6.2:03" 26 | } 27 | ] 28 | ] 29 | -------------------------------------------------------------------------------- /lib/data/citations/default-test-cites-note.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "gbt7714.10.1.3:01", 5 | "label": "page", 6 | "locator": "903" 7 | } 8 | ], 9 | [ 10 | { 11 | "id": "gbt7714.10.1.3:02", 12 | "label": "page", 13 | "locator": "260" 14 | } 15 | ], 16 | [ 17 | { 18 | "id": "molc.14:16" 19 | } 20 | ], 21 | [ 22 | { 23 | "id": "gbt7714.10.1.3:02", 24 | "label": "page", 25 | "locator": "326-329" 26 | } 27 | ], 28 | [ 29 | { 30 | "id": "gbt7714.10.1.3:02", 31 | "label": "page", 32 | "locator": "326-329" 33 | } 34 | ], 35 | [ 36 | { 37 | "id": "gbt7714.10.1.3:02", 38 | "label": "page", 39 | "locator": "260" 40 | } 41 | ], 42 | [ 43 | { 44 | "id": "molc.14:16", 45 | "label": "page", 46 | "locator": "330" 47 | } 48 | ], 49 | [ 50 | { 51 | "id": "molc.14:16", 52 | "label": "page", 53 | "locator": "330" 54 | } 55 | ], 56 | [ 57 | { 58 | "id": "molc.14:16", 59 | "label": "page", 60 | "locator": "331" 61 | } 62 | ] 63 | ] 64 | -------------------------------------------------------------------------------- /lib/data/citations/default-test-cites-numeric.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "gbt7714.10.1.3:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "gbt7714.10.1.3:02", 10 | "label": "page", 11 | "locator": "260" 12 | } 13 | ], 14 | [ 15 | { 16 | "id": "gbt7714.10.1.3:03", 17 | "label": "page", 18 | "locator": "326-329" 19 | } 20 | ], 21 | [ 22 | { 23 | "id": "gbt7714.10.1.3:03" 24 | }, 25 | { 26 | "id": "gbt7714.10.1.3:01" 27 | } 28 | ], 29 | [ 30 | { 31 | "id": "gbt7714.10.1.3:01" 32 | }, 33 | { 34 | "id": "gbt7714.10.1.3:02" 35 | }, 36 | { 37 | "id": "gbt7714.10.1.3:04" 38 | } 39 | ], 40 | [ 41 | { 42 | "id": "gbt7714.10.1.3:01" 43 | }, 44 | { 45 | "id": "gbt7714.10.1.3:02" 46 | }, 47 | { 48 | "id": "gbt7714.10.1.3:03" 49 | } 50 | ] 51 | ] 52 | -------------------------------------------------------------------------------- /lib/types/csl-json.d.ts: -------------------------------------------------------------------------------- 1 | interface Item { 2 | id: string; 3 | [key: string]: any; 4 | } 5 | 6 | interface CitationItem { 7 | id: string; 8 | locator?: number | string; 9 | label?: string; 10 | "suppress-author"?: boolean; 11 | "author-only"?: boolean; 12 | prefix?: string; 13 | suffix?: string; 14 | position?: number; 15 | "near-note"?: boolean; 16 | 17 | /** 18 | * 此属性不是 CSL-JSON 的属性,是 cites.json 里自定义的快捷方式, 19 | * 20 | * 存在此属性的 citationItem,将会传递到 Citation.properties.mode 21 | */ 22 | mode?: string; 23 | } 24 | 25 | type CitationItems = CitationItem[][]; 26 | 27 | interface Citation { 28 | citationItems: CitationItems; 29 | properties: { 30 | noteIndex: number; 31 | mode?: string; 32 | [key: string]: any; 33 | }; 34 | citationID?: string; 35 | sortedItems?: Item[]; 36 | } 37 | -------------------------------------------------------------------------------- /lib/types/index.d.ts: -------------------------------------------------------------------------------- 1 | interface Path { 2 | dir: string; 3 | file: string; 4 | } 5 | 6 | declare interface StyleInfo { 7 | style_class: string; 8 | title: string; 9 | id: string; 10 | link_self?: string; 11 | link_template?: string; 12 | link_documentation?: string; 13 | author?: { 14 | name?: string; 15 | email?: string; 16 | }[]; 17 | contributor?: { 18 | name?: string; 19 | email?: string; 20 | }[]; 21 | citation_format?: string; 22 | field?: string; 23 | summary?: string; 24 | updated?: string; 25 | } 26 | 27 | interface StyleTestResult { 28 | citations: string; 29 | bibliography: string; 30 | default_test_citations?: string; 31 | gb_result?: string; 32 | aps_result?: string; 33 | ssc_result?: string; 34 | mlc_result?: string; 35 | apa_result?: string; 36 | } 37 | 38 | interface StyleCustomFields { 39 | tags: Tag[]; 40 | } 41 | 42 | type Tag = 43 | | "姓名大写" 44 | | "姓名小写" 45 | | "名缩写" 46 | | "省略3人以上" 47 | | "有标题" 48 | | "无标题" 49 | | "期刊全称" 50 | | "期刊缩写" 51 | | "有DOI" 52 | | "无DOI" 53 | | "有URL" 54 | | "无URL" 55 | | "测试"; 56 | 57 | interface StyleFullResult 58 | extends Path, 59 | StyleInfo, 60 | StyleTestResult, 61 | StyleCustomFields {} 62 | 63 | interface Chind { 64 | name: string; 65 | attrs: { 66 | [key: string]: string; 67 | }; 68 | children: (Chind | string)[]; 69 | } 70 | 71 | interface CslXml { 72 | dataObj: { 73 | name: string; 74 | attrs: { 75 | [key: string]: string; 76 | }; 77 | children: Chind; 78 | }; 79 | institution: Chind; 80 | 81 | getNodesByName(xmlObj: CslXml["dataObj"], name: string): Chind[]; 82 | } 83 | -------------------------------------------------------------------------------- /lib/utils/getTags.ts: -------------------------------------------------------------------------------- 1 | import { getCiteproc } from "./citeproc"; 2 | 3 | const items = [ 4 | { 5 | id: "apa.10.1:1", 6 | type: "article-journal", 7 | "container-title": "Psychological Review", 8 | DOI: "10.1037/rev0000126", 9 | ISSN: "1939-1471", 10 | issue: "1", 11 | journalAbbreviation: "Psychol. Rev.", 12 | language: "en-US", 13 | page: "1-51", 14 | title: 15 | "Language learning as language use: A cross-linguistic model of child language development", 16 | "title-short": "Language learning as language use", 17 | URL: "https://psycnet.apa.org/doiLanding?doi=10.1037%2Frev0000126", 18 | volume: "126", 19 | author: [ 20 | { 21 | family: "McCauley", 22 | given: "Stewart M.", 23 | }, 24 | { 25 | family: "Christiansen", 26 | given: "Morten H.", 27 | }, 28 | ], 29 | issued: { 30 | "date-parts": [["2019"]], 31 | }, 32 | }, 33 | ]; 34 | 35 | export function getTags(style: string) { 36 | const citeproc = getCiteproc(items, style); 37 | 38 | let citation = citeproc.processCitationCluster( 39 | { 40 | citationID: "CITATION-1", 41 | citationItems: [{ id: "apa.10.1:1" }], 42 | properties: { noteIndex: 0 }, 43 | }, 44 | [], 45 | [] 46 | ); 47 | let cite_str = citation[1][0][1]; 48 | // console.log(cite_str); 49 | 50 | let bib = citeproc.makeBibliography(); 51 | let bib_str = bib[1][0]; 52 | // console.log(bib_str); 53 | 54 | let result = bib_str; 55 | if (citeproc.opt.xclass === "note") { 56 | result = cite_str; 57 | } 58 | 59 | let _tags = { 60 | author_initilized: !result.includes("Stewart M"), 61 | }; 62 | 63 | const tags: Tag[] = [ 64 | result.includes("MCCAULEY") ? "姓名大写" : "姓名小写", 65 | result.match(/Language learning as language use/i) ? "有标题" : "无标题", 66 | result.includes("Psychological Review") ? "期刊全称" : "期刊缩写", 67 | result.includes("https://psycnet.apa.org") || 68 | result.includes("https://doi.org") 69 | ? "有URL" 70 | : "无URL", 71 | result.includes("10.1037/rev0000126") ? "有DOI" : "无DOI", 72 | ]; 73 | 74 | return { tags }; 75 | } 76 | -------------------------------------------------------------------------------- /lib/utils/string.ts: -------------------------------------------------------------------------------- 1 | import { basename } from "node:path"; 2 | 3 | export function getFileName(path: string) { 4 | if (path.startsWith("src") && path.endsWith(".csl")) { 5 | return basename(path, ".csl"); 6 | } 7 | return basename(path); 8 | } 9 | -------------------------------------------------------------------------------- /lib/utils/task.ts: -------------------------------------------------------------------------------- 1 | import ora from "ora"; 2 | 3 | export const okMark = "\x1b[32m✓\x1b[0m"; 4 | export const failMark = "\x1b[31m✖\x1b[0m"; 5 | 6 | export async function task(taskName: string, task: () => void | Promise) { 7 | const spinner = ora({ discardStdin: false }); 8 | spinner.start(taskName + "..."); 9 | 10 | try { 11 | await task(); 12 | } catch (e) { 13 | spinner.fail(); 14 | throw e; 15 | } 16 | 17 | spinner.succeed(`${taskName} - done`); 18 | } 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@zotero-chinese/styles", 3 | "version": "1.0.0", 4 | "description": "CSL 中文样式库", 5 | "private": "true", 6 | "type": "module", 7 | "packageManager": "pnpm@10.10.0", 8 | "scripts": { 9 | "dev": "tsx ./lib/index.ts watch", 10 | "build": "tsx ./lib/index.ts all", 11 | "preview": "tsx ./lib/index.ts", 12 | "format": "prettier . --write" 13 | }, 14 | "author": "zotero-chinese", 15 | "license": "CC-BY-SA-3.0", 16 | "keywords": [ 17 | "csl", 18 | "zotero", 19 | "styles", 20 | "citeproc-js" 21 | ], 22 | "devDependencies": { 23 | "@types/fs-extra": "^11.0.4", 24 | "@types/node": "^20.12.8", 25 | "chokidar": "3.5.3", 26 | "citeproc": "2.4.63", 27 | "concurrently": "7.4.0", 28 | "consola": "^3.2.3", 29 | "cross-env": "7.0.3", 30 | "fast-glob": "^3.3.2", 31 | "fs-extra": "^11.2.0", 32 | "ora": "^8.0.1", 33 | "prettier": "^3.3.1", 34 | "radash": "^12.1.0", 35 | "scule": "^1.3.0", 36 | "tinypool": "^0.8.4", 37 | "tsx": "^4.9.1", 38 | "typescript": "^5.4.5" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /scripts/make_cites.py: -------------------------------------------------------------------------------- 1 | import json 2 | import os 3 | import sys 4 | 5 | 6 | # python3 make_cites.py tests/styles/301manual-of-legal-citation-multi-lingual/test-data.json 7 | 8 | 9 | TEST_DIR = os.path.join('tests', 'styles') 10 | 11 | 12 | def main(): 13 | paths = [] 14 | if len(sys.argv) < 2: 15 | raise ValueError 16 | 17 | data_paths = sys.argv[1:] 18 | 19 | for data_path in data_paths: 20 | with open(data_path) as f: 21 | data = json.load(f) 22 | cites = [[{'id': item['id']}] for item in sorted(data, key=lambda x: x['id'])] 23 | 24 | test_dir, data_file = os.path.split(data_path) 25 | cites_path = os.path.join(test_dir, "cites.json") 26 | with open(cites_path, 'w') as f: 27 | json.dump(cites, f, indent='\t', ensure_ascii=False) 28 | f.write('\n') 29 | 30 | 31 | if __name__ == '__main__': 32 | main() 33 | -------------------------------------------------------------------------------- /scripts/move.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # # 检查是否提供了目录参数 4 | # if [ -z "$1" ]; then 5 | # echo "请提供目录路径作为参数。" 6 | # exit 1 7 | # fi 8 | 9 | TARGET_DIR="src" 10 | 11 | # 检查目标目录是否存在 12 | if [ ! -d "$TARGET_DIR" ]; then 13 | echo "目标目录不存在。" 14 | exit 1 15 | fi 16 | 17 | # 查找目录中的所有 .csl 文件 18 | find "$TARGET_DIR" -maxdepth 1 -name "*.csl" | while read -r file; do 19 | # 获取文件名,不包括扩展名 20 | base_name=$(basename "$file" .csl) 21 | 22 | # 创建与文件名同名的文件夹(如果不存在) 23 | target_folder="$TARGET_DIR/$base_name" 24 | if [ ! -d "$target_folder" ]; then 25 | mkdir "$target_folder" 26 | fi 27 | 28 | # 移动 .csl 文件到相应的文件夹 29 | mv "$file" "$target_folder" 30 | done 31 | 32 | echo "所有 .csl 文件已移动到对应的文件夹。" 33 | 34 | # 移动 json 文件 35 | # find "$TARGET_DIR" -maxdepth 2 -type f -name '*.json' | while read -r file; do 36 | # base_name=$(basename "$file") 37 | # # new_name=$(echo "$base_name" | sed 's/^...//') 38 | # # echo $base_name $TARGET_DIR $new_name $file 39 | # dir_name=$(echo $(dirname "$file") | sed 's/^.............//') 40 | # echo "src/$dir_name/$base_name" 41 | 42 | # mv "$file" "src/$dir_name/$base_name" 43 | # done 44 | -------------------------------------------------------------------------------- /scripts/remove-prefix.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | TARGET_DIR="tests/styles" 5 | 6 | # 检查目标目录是否存在 7 | if [ ! -d "$TARGET_DIR" ]; then 8 | echo "目标目录不存在。" 9 | exit 1 10 | fi 11 | 12 | # # 删除子文件夹的数字前缀 13 | # find "$TARGET_DIR" -maxdepth 1 -type d -name '[0-9]*' | while read -r dir; do 14 | # base_name=$(basename "$dir") 15 | # new_name=$(echo "$base_name" | sed 's/^...//') 16 | # echo $base_name $TARGET_DIR $new_name 17 | # mv "$dir" "$TARGET_DIR/$new_name" 18 | # done 19 | 20 | # # 删除 .csl 文件的数字前缀 21 | # find "$TARGET_DIR" -maxdepth 2 -type f -name '[0-9]*.csl' | while read -r file; do 22 | # base_name=$(basename "$file") 23 | # new_name=$(echo "$base_name" | sed 's/^...//') 24 | # echo $base_name $TARGET_DIR $new_name 25 | 26 | # mv "$file" "$TARGET_DIR/$new_name" 27 | # done 28 | 29 | 30 | 31 | echo "所有子文件夹和 .csl 文件的数字前缀已删除。" 32 | -------------------------------------------------------------------------------- /src/GB-T-7714—1987(顺序编码,双语)/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "gbt7714-1987.3.1.2:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "gbt7714-1987.3.1.2:02" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "gbt7714-1987.3.3.2:01" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "gbt7714-1987.3.4.2:01" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "gbt7714-1987.3.5.2:01" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "gbt7714-1987.3.5.2:02" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "gbt7714-1987.a.4:01" 35 | } 36 | ], 37 | [ 38 | { 39 | "id": "gbt7714-1987.a.4:02" 40 | } 41 | ], 42 | [ 43 | { 44 | "id": "gbt7714-1987.a.5:02" 45 | } 46 | ] 47 | ] 48 | -------------------------------------------------------------------------------- /src/food-materials-research/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "food-materials-research", 3 | "file": "food-materials-research.csl", 4 | "style_class": "in-text", 5 | "title": "Food Materials Research", 6 | "id": "https://www.zotero-chinese.com/styles/Food-Materials-Research", 7 | "link_self": "https://www.zotero-chinese.com/styles/Food-Materials-Research", 8 | "link_template": "http://www.zotero.org/styles/annual-reviews", 9 | "link_documentation": "https://www.maxapress.com/fmr/for_authors", 10 | "author": [ 11 | { 12 | "name": "Minyi Han" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "science", 18 | "updated": "2024-12-25T18:50:48+08:00", 19 | "citations": "[1-8]", 20 | "bibliography": "
\n
\n
1.
库恩, 2012. 科学革命的结构:第 4 版. 北京: 北京大学出版社. 2nd ed.
\n
\n
\n
2.
Fan X, Sommers CH, 2013. Food irradiation research and technology. Ames, Iowa: Blackwell Publishing. 2nd ed.
\n
\n
\n
3.
贾东琴, 柯平. 2011. 面向数字素养的高校图书馆数字服务体系研究
\n
\n
\n
4.
Fourney ME. c1971. Advances in holographic photoelasticity
\n
\n
\n
5.
武丽丽, 华一新, 张亚军, 刘英敏. 2008. “北斗一号”监控管理网设计与实现. 测绘科学. 33(5): 8–9
\n
\n
\n
6.
Myburg AA, Grattapaglia D, Tuskan GA, Hellsten U, Hayes RD, et al. 2014. The genome of eucalyptus grandis. Nature. 510: 356–62
\n
\n
\n
7.
中国互联网络信息中心. 2012. 第 29 次中国互联网络发展状况统计报告
\n
\n
\n
8.
Bawden D. 2008. Origins and concepts of digital literacy. www.soi.city.ac.uk
\n
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊缩写", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/世界历史/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "世界历史", 3 | "file": "世界历史.csl", 4 | "style_class": "note", 5 | "title": "世界历史", 6 | "id": "https://www.zotero-chinese.com/styles/世界历史", 7 | "link_self": "https://www.zotero-chinese.com/styles/世界历史", 8 | "link_documentation": "http://sjlsbjb.ajcass.org/Home/Show/?ChannelID=11735", 9 | "author": [ 10 | { 11 | "name": "Edward Zhou" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "history", 17 | "summary": "根据fanzhen《历史研究》引文规范、pulipuli制作的APA中文格式以及《世界历史》引文规范改制,具体用法和特性见说明", 18 | "updated": "2024-06-06T13:18:48+08:00", 19 | "citations": "1 库恩著,金吾伦、胡新和译:《科学革命的结构:第 4 版》2,北京大学出版社2012年版。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年,第45–52页。
\n4 M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期,第8–9页。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, vol. 510(June 2014), pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, pp. 326–329.
\n", 20 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年,第45–52页。
\n
库恩著,金吾伦、胡新和译:《科学革命的结构:第 4 版》2,北京大学出版社2012年版。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期,第8–9页。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n
M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, vol. 510(June 2014), pp. 356–362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/东北林业大学/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "gbt7714-1987.3.1.2:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "gbt7714-1987.3.1.2:02" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "gbt7714-1987.3.3.2:01" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "gbt7714-1987.3.4.2:01" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "gbt7714-1987.3.5.2:01" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "gbt7714-1987.3.5.2:02" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "gbt7714-1987.a.4:01" 35 | } 36 | ], 37 | [ 38 | { 39 | "id": "gbt7714-1987.a.4:02" 40 | } 41 | ], 42 | [ 43 | { 44 | "id": "gbt7714-1987.a.5:02" 45 | } 46 | ] 47 | ] 48 | -------------------------------------------------------------------------------- /src/中华心血管病杂志/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中华心血管病杂志", 3 | "file": "中华心血管病杂志.csl", 4 | "style_class": "in-text", 5 | "title": "中华心血管病杂志", 6 | "id": "https://www.zotero-chinese.com/styles/中华心血管病杂志", 7 | "link_self": "https://www.zotero-chinese.com/styles/中华心血管病杂志", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2005(顺序编码,双语)", 9 | "link_documentation": "http://www.cjcv.org.cn/author/4323.jhtml", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "medicine", 18 | "summary": "1. 默认语言为英文;2. 按照语言显示“等”或“et al.”;3. 姓名取消全大写;4. 西文的名无空格;5. 仅纯电子资源显示载体类型标识“OL”、“引用日期”和 URL;6. 页码的冒号前无空格;7. 优先显示 DOI。", 19 | "updated": "2025-04-19T15:35:13+08:00", 20 | "citations": "[1-4]", 21 | "bibliography": "
\n
\n
[1]
Wilde AAM, Ackerman MJ. Beta-blockers in the treatment of congenital long QT syndrome: is one beta-blocker superior to another?[J]. J Am Coll Cardiol, 2014, 64(13):1359-1361. DOI: 10/f2vbrs.
\n
\n
\n
[2]
Jablonski S. Online multiple congenital anomaly/mental retardation (MCA/MR) syndromes[DB/OL]. Bethesda (MD): National Library of Medicine (US), 1999[2002-12-12]. http://www.nlm.nih.gov/mesh/jablonski/syndrome_title.html.
\n
\n
\n
[3]
卫生部心血管病防治中心. 中国心血管病报告 2011[M]. 北京: 中国大百科全书出版社, 2012.
\n
\n
\n
[4]
伊宪华, 韩雅玲, 李毅, 等. 介入治疗开通慢性完全闭塞病变的长期临床疗效[J]. 中华心血管病杂志, 2009, 37(9):773-776. DOI: 10/gqs68c.
\n
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊缩写", 26 | "有URL", 27 | "有DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/中南林业科技大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中南林业科技大学", 3 | "file": "中南林业科技大学.csl", 4 | "style_class": "in-text", 5 | "title": "中南林业科技大学", 6 | "id": "https://www.zotero-chinese.com/styles/中南林业科技大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/中南林业科技大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语)", 9 | "link_documentation": "https://yjsb.csuft.edu.cn/zlxz/zlxz1/201710/t20171016_66849.html", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "generic-base", 18 | "summary": "《中南林业科技大学研究生学位论文格式撰写规范》(2017-10-16)", 19 | "updated": "2025-04-19T15:29:07+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
\n
[1]
田大伦, 项文化, 康文星, 等. 杉木人工林养分循环的研究[J]. 中南林业科技大学学报, 1993, 12(1): 16-21.
\n
\n
\n
[2]
OU J P, YOSHIDA O, SOONG T T, et al. Recent advance in applications of passive energy dissipation systems[J]. Earthquake Engineering, 1997, 38(3): 358-361.
\n
\n
\n
[3]
吴富祯. 测树学[M]. 北京: 中国林业出版社, 1992: 1-7.
\n
\n
\n
[4]
刘煊章, 项文化, 康文星, 等. 杉木人工林生态系统生物量的动态格局[A]. 见: 刘煊章主编. 森林生态系统定位研究[C]. 北京: 中国林业出版社, 1993: 18-22.
\n
\n
\n
[5]
徐刚标. 银杏种质离体培养与保存[D]. 株洲: 中南林业科技大学研究生处, 1988.
\n
\n
\n
[6]
冯西桥. 核反应堆压力管道与容器的LBB分析[R]. 北京: 清华大学核能技术设计研究院, 1997: 4-9.
\n
\n
\n
[7]
谢希德. 创造学习的新思路[N]. 人民日报, 1998-12-25(10).
\n
\n
\n
[8]
姜锡洲. 一种温热外用药制备方案[P]. 中国专利: 881056073, 1989-07-26.
\n
\n
", 22 | "tags": [ 23 | "姓名大写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/中国公路学报/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国公路学报", 3 | "file": "中国公路学报.csl", 4 | "style_class": "in-text", 5 | "title": "中国公路学报", 6 | "id": "https://www.zotero-chinese.com/styles/中国公路学报", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国公路学报", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,无URL、DOI)", 9 | "link_documentation": "https://zgglxb.chd.edu.cn/CN/column/column7.shtml", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "engineering", 18 | "summary": "中国公路学报投稿模板(最新版)-2022版 (2022-06-09)", 19 | "updated": "2025-04-19T23:05:40+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
[1]\t库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.\n
[M]. 2012.
\n
\n
[2]\tFAN X, SOMMERS C H. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
[3]\t贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社, 2011: 45-52.\n
[C]. 2011: 45-52.
\n
\n
[4]\tFOURNEY M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, 1971年8月23—25日, University of Southern California, Los Angeles, California. New York: ASME, c1971: 17-38.
\n
[5]\t武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.\n
[J]. 2008, 33(5): 8-9.
\n
\n
[6]\tMYBURG A A, GRATTAPAGLIA D, TUSKAN G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
[7]\t中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.\n
[R]. 2012.
\n
\n
[8]\tBAWDEN D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
", 22 | "tags": [ 23 | "姓名大写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/中国农业科学院/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国农业科学院", 3 | "file": "中国农业科学院.csl", 4 | "style_class": "in-text", 5 | "title": "中国农业科学院", 6 | "id": "https://www.zotero-chinese.com/styles/中国农业科学院", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国农业科学院", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "https://gs.caas.cn/xwxk/xwsy/227175.htm", 10 | "author": [ 11 | { 12 | "name": "韩小土" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "中国农业科学院研究生学位论文写作规范202006.doc", 19 | "updated": "2025-04-19T15:30:01+08:00", 20 | "citations": "(全国信息与文献标准化技术委员会, 2010)
\n(中国造纸学会, 2003)
\n(CHEN F F, 2016)
\n(刘彻东, 1998)
\n(余建斌, 2013)
\n(邓一刚, 2006)
\n(西安电子科技大学, 2002)
\n", 21 | "bibliography": "
\n
邓一刚, 2006. 全智能节电器: 200610171314.3.
\n
刘彻东, 1998. 中国的青年刊物:个性特色为本. 中国出版(5): 38-39.
\n
全国信息与文献标准化技术委员会, 2010. 信息与文献 都柏林核心元数 据元素集: GB/T 25100-2010. 北京: 中国标准出版社: 2-3.
\n
西安电子科技大学, 2002. 光折变自适应光外差探测方法: 01128777.2.
\n
余建斌, 2013. 我们的科技一直在追赶: 访中国工程院院长周济. 人民日报, 2013.
\n
中国造纸学会, 2003. 中国造纸年鉴. 北京: 中国轻工业出版社.
\n
CHEN F F, 2016. 等离子体物理学导论. 北京: 科学出版社: 29.
\n
", 22 | "tags": [ 23 | "姓名大写", 24 | "有标题", 25 | "期刊全称", 26 | "有URL", 27 | "有DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/中国农村经济/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国农村经济", 3 | "file": "中国农村经济.csl", 4 | "style_class": "in-text", 5 | "title": "中国农村经济", 6 | "id": "https://www.zotero-chinese.com/styles/中国农村经济", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国农村经济", 8 | "link_template": "https://www.zotero-chinese.com/styles/中国社会科学", 9 | "link_documentation": "https://zgncjj.ajcass.com/Show/1194?itemID=157668", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "social_science", 18 | "summary": "《中国农村经济》《中国农村观察》体例规范.docx", 19 | "updated": "2025-01-18T20:26:04+08:00", 20 | "citations": "(余淼杰和崔晓敏,2016)
\n(Wei and Wu,2001)
\n", 21 | "bibliography": "
\n
1.余淼杰、崔晓敏,2016:《我国的产能过剩及其衡量方法》,北京大学国家发展研究院工作论文No.C2016009,https://www.nsd.pku.edu.cn/publications/tlg/tlg2015/2016/0905/27159.html
\n
2.Wei, S. J., and Y. Wu, 2001, “Globalization and Inequality: Evidence from within China”, NBER Working Paper 8611, https://www.nber.org/papers/w8611.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/中国地质大学(著者-出版年)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国地质大学(著者-出版年)", 3 | "file": "中国地质大学(著者-出版年).csl", 4 | "style_class": "in-text", 5 | "title": "中国地质大学(武汉)(著者-出版年)", 6 | "id": "https://www.zotero-chinese.com/styles/中国地质大学(武汉)(著者-出版年)", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国地质大学(武汉)(著者-出版年)", 8 | "link_template": "https://www.zotero-chinese.com/styles/云南大学", 9 | "link_documentation": "https://graduate.cug.edu.cn/info/1062/5671.htm", 10 | "author": [ 11 | { 12 | "name": "JunchenLu" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "中国地质大学(武汉)研究生学位论文写作规范(2013-12-11)", 19 | "updated": "2025-05-11T17:38:15+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney,c1971)
\n(贾东琴和柯平,2011)
\n(Fan and Sommers,2013)
\n(武丽丽 等,2008)
\n(Myburg et al.,2014)
\n(Bawden,2008;中国互联网络信息中心,2012)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平, 2011. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会, 编//中国图书馆学会年会论文集. 北京: 国家图书馆出版社: 45–52.
\n
库恩, 2012. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等, 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学. 33(5): 8–9.
\n
中国互联网络信息中心, 2012. 第 29 次中国互联网络发展状况统计报告[R]. .
\n
BAWDEN D, 2008. Origins and concepts of digital literacy[EB](2008–05–04).
\n
FAN X, SOMMERS C H, 2013. Food irradiation research and technology[M]. 2 edition. Ames, Iowa: Blackwell Publishing: 25–26.
\n
FOURNEY M E, c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics. New York: ASME: 17–38.
\n
MYBURG A A, GRATTAPAGLIA D, TUSKAN G A, et al., 2014. The genome of eucalyptus grandis[J]. Nature. 510: 356–362.
\n
", 22 | "tags": [ 23 | "姓名大写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/中国工业经济/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国工业经济", 3 | "file": "中国工业经济.csl", 4 | "style_class": "in-text", 5 | "title": "中国工业经济", 6 | "id": "https://www.zotero-chinese.com/styles/中国工业经济", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国工业经济", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "http://ciejournal.ajcass.org/CommonBlock/SiteContentDetail?contentID=147144", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "social_science", 18 | "updated": "2025-04-19T15:30:01+08:00", 19 | "citations": "(陈佳贵,1995)
\n(Engers and Gans,1998)
\n(蒋一苇,1998)
\n([英]瑟尔沃,2001)
\n(Fukuyama,1999)
\n(Caselli,2005)
\n(Broda et al.,2006)
\n", 20 | "bibliography": "
\n
\n
[1]
陈佳贵. 关于企业生命周期与企业蜕变的探讨[J]. 中国工业经济, 1995(11):5-13.
\n
\n
\n
[2]
蒋一苇. 论社会主义的企业模式[M]. 广州: 广东经济出版社, 1998.
\n
\n
\n
[3]
[英]瑟尔沃. 增长与发展[M]. 郭熙保译. 北京: 中国财政经济出版社, 2001.
\n
\n
\n
[4]
Broda, C., G. Joshua, and W. David. From Groundnuts to Globalization: A Structural Estimate of Trade and Growth[R]. NBER Working Paper, 2006.
\n
\n
\n
[5]
Caselli, F. Accounting for Cross-Country Income Differences[A]. Aghion, P., and S. N. Durlauf. Handbook of Economic Growth[C]. Amsterdam: Elsevier, 2005: 679-741.
\n
\n
\n
[6]
Engers, M., and J. S. Gans. Why Referees Are Not Paid (Enough)[J]. American Economic Review, 1998, 88(5):1341-1349.
\n
\n
\n
[7]
Fukuyama, F. Trust: The Social Virtues and the Creation of Prosperity[M]. New York: Free Press, 1999.
\n
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/中国政法大学/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "molc.0:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "molc.0:01", 10 | "locator": "18", 11 | "label": "page" 12 | } 13 | ], 14 | [ 15 | { 16 | "id": "molc.0:05" 17 | } 18 | ], 19 | [ 20 | { 21 | "id": "molc.0:06" 22 | } 23 | ], 24 | [ 25 | { 26 | "id": "molc.0:08" 27 | } 28 | ], 29 | [ 30 | { 31 | "id": "molc.0:13" 32 | } 33 | ], 34 | [ 35 | { 36 | "id": "molc.0:16" 37 | } 38 | ], 39 | [ 40 | { 41 | "id": "molc.0:17" 42 | } 43 | ], 44 | [ 45 | { 46 | "id": "molc.0:18", 47 | "locator": "737-738", 48 | "label": "page" 49 | } 50 | ], 51 | [ 52 | { 53 | "id": "molc.0:19" 54 | } 55 | ], 56 | [ 57 | { 58 | "id": "molc.0:20", 59 | "locator": "98", 60 | "label": "page" 61 | } 62 | ], 63 | [ 64 | { 65 | "id": "molc.82:01" 66 | } 67 | ], 68 | [ 69 | { 70 | "id": "molc.83:01-1" 71 | } 72 | ] 73 | ] 74 | -------------------------------------------------------------------------------- /src/中国现代文学研究丛刊/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国现代文学研究丛刊", 3 | "file": "中国现代文学研究丛刊.csl", 4 | "style_class": "note", 5 | "title": "中国现代文学研究丛刊", 6 | "id": "https://www.zotero-chinese.com/styles/中国现代文学研究丛刊", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国现代文学研究丛刊", 8 | "link_documentation": "http://www.zgxdwxyjck.cn/", 9 | "author": [ 10 | { 11 | "name": "Edward Zhou" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "literature", 17 | "summary": "根据pulipuli制作的APA中文格式、fanzhen《历史研究》引文规范以及《中国现代文学研究丛刊》引文规范改制,具体用法和特性见说明", 18 | "updated": "2024-03-01T14:57:23+08:00", 19 | "citations": "1 库恩,《科学革命的结构:第 4 版》,金吾伦、胡新和译,2北京大学出版社2012年版。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年。
\n4 M. E. Fourney, M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, pp. 326–329.
\n", 20 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年。
\n
库恩,《科学革命的结构:第 4 版》,金吾伦、胡新和译,2北京大学出版社2012年版。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n
M. E. Fourney, M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/中国电机工程学报/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国电机工程学报", 3 | "file": "中国电机工程学报.csl", 4 | "style_class": "in-text", 5 | "title": "中国电机工程学报", 6 | "id": "https://www.zotero-chinese.com/styles/中国电机工程学报", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国电机工程学报", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "link_documentation": "http://ntps.epri.sgcc.com.cn/djgcxb/CN/column/7/items", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "engineering", 18 | "summary": "论文排版模版", 19 | "updated": "2025-04-19T23:05:40+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
[1]\t[M].2012 (in Chinese).\n
库恩.科学革命的结构:第 4 版[M].金吾伦, 胡新和,译.2 版.北京:北京大学出版社,2012.
\n
\n
[2]\tFan X,Sommers C H.Food irradiation research and technology[M].2nd ed..Ames, Iowa:Blackwell Publishing,2013:25-26.
\n
[3]\t[C].2011:45-52 (in Chinese).\n
贾东琴,柯平.面向数字素养的高校图书馆数字服务体系研究[C].中国图书馆学会年会论文集:2011 年卷.北京:国家图书馆出版社,2011:45-52.
\n
\n
[4]\tFourney M E.Advances in holographic photoelasticity[C].Symposium on Applications of Holography in Mechanics,1971年8月23—25日,University of Southern California, Los Angeles, California.New York:ASME,c1971:17-38.
\n
[5]\t[J].2008,33(5):8-9 (in Chinese).\n
武丽丽,华一新,张亚军,等.“北斗一号”监控管理网设计与实现[J].测绘科学,2008,33(5):8-9.
\n
\n
[6]\tMyburg A A,Grattapaglia D,Tuskan G A,et al.The genome of eucalyptus grandis[J].Nature,2014,510:356-362.
\n
[7]\t[R].2012 (in Chinese).\n
中国互联网络信息中心.第 29 次中国互联网络发展状况统计报告[R].2012.
\n
\n
[8]\tBawden D.Origins and concepts of digital literacy[EB/OL].(2008-05-04)[2013-03-08].http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/中国矿业大学-外文学院(文学、翻译方向-MLA)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国矿业大学-外文学院(文学、翻译方向-MLA)", 3 | "file": "中国矿业大学-外文学院(文学、翻译方向-MLA).csl", 4 | "style_class": "in-text", 5 | "title": "中国矿业大学 - 外文学院(文学、翻译方向 MLA)", 6 | "id": "https://www.zotero-chinese.com/styles/中国矿业大学-外文学院(文学、翻译方向-MLA)", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国矿业大学-外文学院(文学、翻译方向-MLA)", 8 | "link_template": "http://www.zotero.org/styles/modern-language-association", 9 | "link_documentation": "https://sfs.cumt.edu.cn/_upload/article/files/57/7c/7794cc3f4313bbf5281ea3506a94/43db14ac-e379-4692-a5ee-da330c272315.doc", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "literature", 18 | "summary": "学术论文参考文献格式", 19 | "updated": "2025-01-18T20:26:04+08:00", 20 | "citations": "(Beauvoir, 1989)
\n(Diamond, 2001)
\n(Kreft, 2020)
\n(Lakoff and Mark Johnson, 2003)
\n(O, 2001)
\n", 21 | "bibliography": "
\n
Beauvoir, Simone de. The Second Sex. Trans. H. M. Parshley, Vintage, 1989.
\n
Diamond, Diana. “Narrating Desire and Desiring Narration: A Psychoanalytic Reading of The English Patient.” Psychoanalysis and Film, Routledge, 2001, 129–46.
\n
Kreft, Anne-Kathrin. “Civil Society Perspectives on Sexual Violence in Conflict: Patriarchy and War Strategy in Colombia.” International Affairs 96. 2 (2020): 457–78.
\n
Lakoff, George and Mark Johnson. Metaphors We Live By. University Of Chicago Press, 2003.
\n
O, Gabbard Glen, ed. Psychoanalysis and Film. KARNAC, 2001.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/中国社会科学/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "ssc.2.1.1:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "ssc.2.1.2:02" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "ssc.2.6.2.1:01" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "ssc.2.6.2.4:01" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "ssc.2.1.1:01", 25 | "label": "page", 26 | "locator": "24" 27 | } 28 | ], 29 | [ 30 | { 31 | "id": "ssc.2.1.2:02", 32 | "label": "page", 33 | "locator": "326" 34 | } 35 | ], 36 | [ 37 | { 38 | "id": "ssc.2.6.2.1:01", 39 | "label": "page", 40 | "locator": "24" 41 | } 42 | ], 43 | [ 44 | { 45 | "id": "ssc.2.6.2.4:01", 46 | "label": "page", 47 | "locator": "326" 48 | } 49 | ] 50 | ] 51 | -------------------------------------------------------------------------------- /src/中国科学院大学(著者-出版年)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "中国科学院大学(著者-出版年)", 3 | "file": "中国科学院大学(著者-出版年).csl", 4 | "style_class": "in-text", 5 | "title": "中国科学院大学(著者-出版年)", 6 | "id": "https://www.zotero-chinese.com/styles/中国科学院大学(著者-出版年)", 7 | "link_self": "https://www.zotero-chinese.com/styles/中国科学院大学(著者-出版年)", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "http://www.amss.ac.cn/yjsjy/xwxx/202207/t20220719_6482878.html", 10 | "author": [ 11 | { 12 | "name": "韩小土" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "《中国科学院大学研究生学位论文撰写规范指导意见》(2022 年 3 月 7 日修订)著者-出版年制", 19 | "updated": "2025-04-19T23:05:40+08:00", 20 | "citations": "(田婉淑, 1986)
\n(赵耀东, 1998)
\n(辛希孟, 1994)
\n(Peebles, 2001)
\n(程根伟, 1999)
\n(中国地质学会, 1936)
\n(中国图书馆学会, 1957)
\n(王静 等, 2011)
\n(郑本兴, 2000)
\n(傅刚 等, 2000)
\n(江锡洲, 1989)
\n(西安电子科技大学, 2002)
\n", 21 | "bibliography": "
\n
程根伟. 1998 年长江洪水的成因与减灾对策[M]//许厚泽, 赵其国. 长江流域洪涝灾害与科技对策. 北京: 科学出版社, 1999: 32-36.
\n
傅刚, 赵承, 李佳路. 大风沙过后的思考[N]. 2000-04-12(14).
\n
江锡洲. 一种温热外敷药制备方案: 88105607.3[P]. 1989-07-26.
\n
田婉淑. 中国两栖爬行动物鉴定手册[M]. 北京: 科学出版社, 1986: 98-106.
\n
王静, 周启心, 田孟, 等. 树鼩模型:抑郁症的社会竞争失败与学习和记忆的被捕获条件反射[J]. 动物学研究, 2011, 32(1): 24-30.
\n
西安电子科技大学. 光折变自适应光外差探测方法: 01128777.2[P]. 2002.
\n
辛希孟. 信息技术与信息服务国际研讨会论文集 A集[M]. 北京: 中国社会科学出版社, 1994.
\n
赵耀东. 新时代的工业工程师[M]. 台北: 天下文化出版社, 1998.
\n
郑本兴. 云南玉龙雪山第四纪冰期与冰川演化模式[J]. 冰川冻土, 2000, 22(1): 53-61.
\n
中国地质学会. 地质评论[J]. 1936, 1(1). 北京: 地质出版社, 1936.
\n
中国图书馆学会. 图书馆学通讯[J]. 1957. 北京: 北京图书馆, 1957: 98-106.
\n
Peebles P Z Jr. Probability, random variables, and random signal principles[M]. 4th ed. New York: McGraw Hill, 2001.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/云南大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "云南大学", 3 | "file": "云南大学.csl", 4 | "style_class": "in-text", 5 | "title": "云南大学", 6 | "id": "https://www.zotero-chinese.com/styles/云南大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/云南大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "https://github.com/zotero-chinese/styles/issues/10", 10 | "author": [ 11 | { 12 | "name": "Sunny-27" 13 | } 14 | ], 15 | "contributor": [ 16 | { 17 | "name": "redleafnew" 18 | }, 19 | { 20 | "name": "Zeping Lee" 21 | } 22 | ], 23 | "citation_format": "author-date", 24 | "field": "generic-base", 25 | "updated": "2025-04-19T15:30:01+08:00", 26 | "citations": "(库恩,2012)
\n(Fourney,c1971)
\n(贾东琴和柯平,2011)
\n(Fan and Sommers,2013)
\n(武丽丽等,2008)
\n(Myburg et al.,2014)
\n(Bawden,2008;中国互联网络信息中心,2012)
\n", 27 | "bibliography": "
\n
贾东琴, 柯平. 2011. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会, 编//中国图书馆学会年会论文集. 北京: 国家图书馆出版社: 45–52.
\n
库恩. 2012. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等. 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学. 33(5): 8–9.
\n
中国互联网络信息中心. 2012. 第 29 次中国互联网络发展状况统计报告[R]. .
\n
BAWDEN D. 2008. Origins and concepts of digital literacy[EB](2008-05-04).
\n
FAN X, SOMMERS C H. 2013. Food irradiation research and technology[M]. 2 edition. Ames, Iowa: Blackwell Publishing: 25–26.
\n
FOURNEY M E. c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics. New York: ASME: 17–38.
\n
MYBURG A A, GRATTAPAGLIA D, TUSKAN G A, et al. 2014. The genome of eucalyptus grandis[J]. Nature. 510: 356–362.
\n
", 28 | "tags": [ 29 | "姓名大写", 30 | "有标题", 31 | "期刊全称", 32 | "无URL", 33 | "无DOI" 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /src/人民出版社/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "人民出版社", 3 | "file": "人民出版社.csl", 4 | "style_class": "note", 5 | "title": "人民出版社", 6 | "id": "https://www.zotero-chinese.com/styles/人民出版社", 7 | "link_self": "https://www.zotero-chinese.com/styles/人民出版社", 8 | "link_template": "https://www.zotero-chinese.com/styles/中国社会科学", 9 | "link_documentation": "http://www.pph166.com/", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "note", 17 | "field": "generic-base", 18 | "updated": "2024-12-25T16:50:49+08:00", 19 | "citations": "1 李铁映:《中国经济改革的双重探索》,《经济研究》2004年第2期。
\n2 国际货币基金组织:《国际资本市场发展、前景和政策》中译本,中国金融出版社1996年版。
\n3 Steinberg, Richard H., “In the Shadow of Law or Power? Consensus-Based Bargaining and Outcomes in the GATT/WTO”, International Organization, Vol. 56, No.2, Spring 2001, pp.339-374.
\n4 Preeg, Ernest H., Traders in a Brave New World: The Uruguay Round and the Future of the International Trading System, Chicago, IL: University of Chicago Press, 1995.
\n", 20 | "bibliography": "
\n
\n
[1]
国际货币基金组织:《国际资本市场发展、前景和政策》中译本,中国金融出版社1996年版。
\n
\n
\n
[2]
李铁映:《中国经济改革的双重探索》,《经济研究》2004年第2期。
\n
\n
\n
[3]
Preeg, Ernest H., Traders in a Brave New World: The Uruguay Round and the Future of the International Trading System, Chicago, IL: University of Chicago Press, 1995.
\n
\n
\n
[4]
Steinberg, Richard H., “In the Shadow of Law or Power? Consensus-Based Bargaining and Outcomes in the GATT/WTO”, International Organization, Vol. 56, No.2, Spring 2001, pp.339-374.
\n
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/人民出版社/test-cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "pp1.1:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "pp1.2:01", 10 | "locator": "116", 11 | "label": "page" 12 | } 13 | ], 14 | [ 15 | { 16 | "id": "pp2.1:01" 17 | } 18 | ], 19 | [ 20 | { 21 | "id": "pp2.2:01", 22 | "locator": "234", 23 | "label": "page" 24 | } 25 | ] 26 | ] 27 | -------------------------------------------------------------------------------- /src/信息安全学报/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "信息安全学报", 3 | "file": "信息安全学报.csl", 4 | "style_class": "in-text", 5 | "title": "信息安全学报", 6 | "id": "https://www.zotero-chinese.com/styles/信息安全学报", 7 | "link_self": "https://www.zotero-chinese.com/styles/信息安全学报", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "link_documentation": "https://jcs.iie.ac.cn/ch/reader/view_news.aspx?id=20160123113857030", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "engineering", 18 | "summary": "《信息安全学报》模板.doc(2016-01-23)", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
[1]\t[M]. 2012.\n
(库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.)
\n
\n
[2]\tFan X, Sommers C H. Food Irradiation Research and Technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
[3]\t[C]. 2011: 45-52.\n
(贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 2011: 45-52.)
\n
\n
[4]\tFourney M E. Advances in holographic photoelasticity[C]. Symposium on Applications of Holography in Mechanics. c1971: 17-38.
\n
[5]\t[J]. 2008, 33(5): 8-9.\n
(武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.)
\n
\n
[6]\tMyburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
[7]\t2012.\n
(中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告. 2012.)
\n
\n
[8]\tBawden D. Origins and Concepts of Digital Literacy. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf. 2008年5月.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/傳播與社會學刊/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "cs.4.6.3:1", 5 | "label": "page", 6 | "locator": "2-4" 7 | } 8 | ], 9 | [ 10 | { 11 | "id": "cs.4.6.1:1" 12 | } 13 | ], 14 | [ 15 | { 16 | "id": "cs.4.6.6:3", 17 | "label": "page", 18 | "locator": "15" 19 | } 20 | ] 21 | ] 22 | -------------------------------------------------------------------------------- /src/傳播與社會學刊/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "傳播與社會學刊", 3 | "file": "傳播與社會學刊.csl", 4 | "style_class": "in-text", 5 | "title": "傳播與社會學刊", 6 | "id": "https://www.zotero-chinese.com/styles/傳播與社會學刊", 7 | "link_self": "https://www.zotero-chinese.com/styles/傳播與社會學刊", 8 | "link_template": "http://www.zotero.org/styles/apa", 9 | "link_documentation": "http://cschinese.com/submission03.asp", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "communications", 18 | "updated": "2025-01-08T17:55:23+08:00", 19 | "citations": "(李金銓,2004:2–4)
\n(祝建華,2001)
\n(Wilfley, 1989, p. 15)
\n", 20 | "bibliography": "
\n
李金銓(2004)。《超越西方霸權:傳媒與文化中國的現代性》。香港:牛津大學出版社。
\n
祝建華(2001)。〈中文傳播研究之理論化與本土化:以受眾及媒介效果整合理論為例〉。《新聞學研究》,第68期,頁1–22。
\n
Wilfley, D. E. (1989). Interpersonal analyses of bulimia: Normal-weight and obese. Unpublished doctoral dissertation, University of Missouri, Columbia.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "有URL", 26 | "有DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/北京师范大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "北京师范大学", 3 | "file": "北京师范大学.csl", 4 | "style_class": "in-text", 5 | "title": "北京师范大学", 6 | "id": "https://www.zotero-chinese.com/styles/北京师范大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/北京师范大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "http://bs.bnu.edu.cn/docs/20150408171708698394.pdf", 10 | "author": [ 11 | { 12 | "name": "韩小土" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "北京师范大学硕士论文样式", 19 | "updated": "2025-04-19T15:30:01+08:00", 20 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴和柯平, 2011)
\n(Fan & Sommers, 2013)
\n(武丽丽 等, 2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心, 2012; Bawden, 2008)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平, 2011. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.
\n
库恩, 2012. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等, 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 33(5): 8-9.
\n
中国互联网络信息中心, 2012. 第 29 次中国互联网络发展状况统计报告[R].
\n
Bawden D, 2008. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H, 2013. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney M E, c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al., 2014. The genome of eucalyptus grandis[J]. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/北京林业大学/items.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "bfu.g.01:04", 4 | "type": "article", 5 | "abstract": "Quadrupedal landing is a complex process involving large impacts, elaborate contact transitions, and is a crucial recovery behavior observed in many biological animals. This work presents a real-time, optimal landing controller that is free of pre-specified contact schedules. The controller determines optimal touchdown postures and reaction force profiles and is able to recover from a variety of falling configurations. The quadrupedal platform used, the MIT Mini Cheetah, recovered safely from drops of up to 8 m in simulation, as well as from a range of orientations and planar velocities. The controller is also tested on hardware, successfully recovering from drops of up to 2 m.", 6 | "DOI": "10.48550/arXiv.2110.02799", 7 | "language": "en-US", 8 | "number": "arXiv:2110.02799", 9 | "publisher": "arXiv", 10 | "source": "arXiv.org", 11 | "title": "Real-time Optimal Landing Control of the MIT Mini Cheetah", 12 | "URL": "http://arxiv.org/abs/2110.02799", 13 | "author": [ 14 | { 15 | "family": "Jeon", 16 | "given": "Se Hwan" 17 | }, 18 | { 19 | "family": "Kim", 20 | "given": "Sangbae" 21 | }, 22 | { 23 | "family": "Kim", 24 | "given": "Donghyun" 25 | } 26 | ], 27 | "accessed": { 28 | "date-parts": [["2023", 12, 4]] 29 | }, 30 | "issued": { 31 | "date-parts": [["2021", 10, 6]] 32 | } 33 | }, 34 | { 35 | "id": "bfu.g.10:23", 36 | "type": "post-weblog", 37 | "container-title": "微信公众号“英语学习指南”", 38 | "language": "zh-CN", 39 | "title": "如何有效学习英语", 40 | "author": [ 41 | { 42 | "literal": "张三" 43 | } 44 | ], 45 | "issued": { 46 | "date-parts": [["2022", 6, 20]] 47 | } 48 | }, 49 | { 50 | "id": "bfu.g.10:24", 51 | "type": "webpage", 52 | "language": "en-US", 53 | "title": "Robots", 54 | "URL": "https://innfos.com/", 55 | "author": [ 56 | { 57 | "literal": "Innfos" 58 | } 59 | ], 60 | "accessed": { 61 | "date-parts": [["2020", 4, 30]] 62 | }, 63 | "issued": { 64 | "date-parts": [["2020", 1, 1]] 65 | } 66 | }, 67 | { 68 | "id": "bfu.g.10:25", 69 | "type": "webpage", 70 | "language": "zh-CN", 71 | "title": "出版业信息化迈入快车道", 72 | "URL": "http://www.reader.com/news/20011219/200112190019.html", 73 | "author": [ 74 | { 75 | "literal": "萧钰" 76 | } 77 | ], 78 | "accessed": { 79 | "date-parts": [["2002", 4, 15]] 80 | }, 81 | "issued": { 82 | "date-parts": [["2001", 12, 19]] 83 | } 84 | } 85 | ] 86 | -------------------------------------------------------------------------------- /src/北京林业大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "北京林业大学", 3 | "file": "北京林业大学.csl", 4 | "style_class": "in-text", 5 | "title": "北京林业大学", 6 | "id": "https://www.zotero-chinese.com/styles/北京林业大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/北京林业大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "link_documentation": "http://graduate.bjfu.edu.cn/xwgl/xwlw/349457.html", 10 | "author": [ 11 | { 12 | "name": "不秃燃的小老弟" 13 | } 14 | ], 15 | "contributor": [ 16 | { 17 | "name": "Zeping Lee" 18 | } 19 | ], 20 | "citation_format": "numeric", 21 | "field": "generic-base", 22 | "summary": "《北京林业大学研究生学位论文写作指南》(2023年11月更新)", 23 | "updated": "2025-04-19T23:05:40+08:00", 24 | "citations": "[1-4]", 25 | "bibliography": "
\n
\n
[1]
Jeon S H, Kim S, Kim D. Real-time Optimal Landing Control of the MIT Mini Cheetah[J]. arXiv preprint arXiv:2110.02799, 2021.
\n
\n
\n
[2]
张三. 如何有效学习英语[EB]. 微信公众号“英语学习指南”, 2022-06-20.
\n
\n
\n
[3]
Innfos. Robots[EB/OL]. 2020-01-01[2020-04-30]. https://innfos.com/.
\n
\n
\n
[4]
萧钰. 出版业信息化迈入快车道[EB/OL]. 2001-12-19[2002-04-15]. http://www.reader.com/news/20011219/200112190019.html.
\n
\n
", 26 | "tags": [ 27 | "姓名小写", 28 | "有标题", 29 | "期刊全称", 30 | "无URL", 31 | "无DOI" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /src/华东师范大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "华东师范大学", 3 | "file": "华东师范大学.csl", 4 | "style_class": "in-text", 5 | "title": "华东师范大学", 6 | "id": "https://www.zotero-chinese.com/styles/华东师范大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/华东师范大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/暨南大学", 9 | "link_documentation": "http://phy.ecnu.edu.cn/c2/3f/c24394a246335/page.htm", 10 | "author": [ 11 | { 12 | "name": "不秃燃的小老弟" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "updated": "2025-01-18T20:26:04+08:00", 19 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴和柯平, 2011)
\n(Fan and Sommers, 2013)
\n(武丽丽等, 2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心, 2012; Bawden, 2008)
\n", 20 | "bibliography": "
\n
Bawden D. Origins and concepts of digital literacy[EB](2008-05-04)
\n
Fan X, Sommers C H. Food irradiation research and technology[M]. 2 edition. Ames, Iowa: Blackwell Publishing, 2013: 25–26
\n
Fourney M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, New York: ASME, c1971: 17–38
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356–362
\n
贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会, 编//中国图书馆学会年会论文集, 北京: 国家图书馆出版社, 2011: 45–52
\n
库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012
\n
武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8–9
\n
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R].
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/华东理工大学-社会与公共管理学院/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "ssc.2.1.1:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "ssc.2.1.2:02" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "ssc.2.6.2.1:01" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "ssc.2.6.2.4:01" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "ssc.2.1.1:01", 25 | "label": "page", 26 | "locator": "24" 27 | } 28 | ], 29 | [ 30 | { 31 | "id": "ssc.2.1.2:02", 32 | "label": "page", 33 | "locator": "326" 34 | } 35 | ], 36 | [ 37 | { 38 | "id": "ssc.2.6.2.1:01", 39 | "label": "page", 40 | "locator": "24" 41 | } 42 | ], 43 | [ 44 | { 45 | "id": "ssc.2.6.2.4:01", 46 | "label": "page", 47 | "locator": "326" 48 | } 49 | ] 50 | ] 51 | -------------------------------------------------------------------------------- /src/华南农业大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "华南农业大学", 3 | "file": "华南农业大学.csl", 4 | "style_class": "in-text", 5 | "title": "华南农业大学", 6 | "id": "https://www.zotero-chinese.com/styles/华南农业大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/华南农业大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2005(著者-出版年,双语)", 9 | "link_documentation": "https://yjsy.scau.edu.cn/286/list.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "华南农业大学研究生学位论文写作指南(2019年12月)", 19 | "updated": "2025-01-18T20:26:03+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney,c1971)
\n(贾东琴和柯平,2011)
\n(Fan and Sommers,2013)
\n(武丽丽 等,2008)
\n(Myburg et al.,2014)
\n(中国互联网络信息中心,2012;Bawden,2008)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平. 2011. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.
\n
库恩. 2012. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等. 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 33(5): 8-9.
\n
中国互联网络信息中心. 2012. 第 29 次中国互联网络发展状况统计报告[R].
\n
Bawden D. 2008. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H. 2013. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney M E. c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. 2014. The genome of eucalyptus grandis[J]. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/华南农业大学(本科)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "华南农业大学(本科)", 3 | "file": "华南农业大学(本科).csl", 4 | "style_class": "in-text", 5 | "title": "华南农业大学(本科)", 6 | "id": "https://www.zotero-chinese.com/styles/华南农业大学(本科)", 7 | "link_self": "https://www.zotero-chinese.com/styles/华南农业大学(本科)", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "https://jwc.scau.edu.cn/2024/1126/c5113a393788/page.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "附件1-5.华南农业大学本科毕业论文(设计)撰写规范(封面模板、原创性声明及使用授权声明、正文结构参考样式、参考文献著录规则、评分参考标准).pdf(2024-11-26,华南农办〔2024〕56号)", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴和柯平, 2011)
\n(Fan and Sommers, 2013)
\n(武丽丽等, 2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心, 2012; Bawden, 2008)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社, 2011: 45-52.
\n
库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.
\n
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.
\n
Bawden D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
Fourney M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME, c1971: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/华南师范大学-1202-工商管理学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "华南师范大学-1202-工商管理学", 3 | "file": "华南师范大学-1202-工商管理学.csl", 4 | "style_class": "in-text", 5 | "title": "华南师范大学 - 1202 工商管理学", 6 | "id": "https://www.zotero-chinese.com/styles/华南师范大学-1202-工商管理学", 7 | "link_self": "https://www.zotero-chinese.com/styles/华南师范大学-1202-工商管理学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,无URL、DOI)", 9 | "link_documentation": "http://yjsy.scnu.edu.cn/a/20240716/9359.html", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "1202工商管理学.zip 1202工商管理学 研究生学位论文撰写规范.docx (2024-07-16)", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney,c1971)
\n(贾东琴和柯平,2011)
\n(Fan和Sommers,2013)
\n(武丽丽等,2008)
\n(Myburg et al.,2014)
\n(中国互联网络信息中心,2012;Bawden,2008)
\n", 21 | "bibliography": "
\n
[1] 贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[A]. 中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷[C]. 北京: 国家图书馆出版社, 2011: 45-52.
\n
[2] 库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
[3] 武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.
\n
[4] 中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.
\n
[5] BAWDEN D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
[6] FAN X, SOMMERS C H. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
[7] FOURNEY M E. Advances in holographic photoelasticity[A]. Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California[C]. New York: ASME, c1971: 17-38.
\n
[8] MYBURG A A, GRATTAPAGLIA D, TUSKAN G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名大写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/南京农业大学(自然科学类)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "南京农业大学(自然科学类)", 3 | "file": "南京农业大学(自然科学类).csl", 4 | "style_class": "in-text", 5 | "title": "南京农业大学(自然科学类)", 6 | "id": "https://www.zotero-chinese.com/styles/南京农业大学(自然科学类)", 7 | "link_self": "https://www.zotero-chinese.com/styles/南京农业大学(自然科学类)", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "https://grasch.njau.edu.cn/info/1011/4128.htm", 10 | "author": [ 11 | { 12 | "name": "韩小土" 13 | } 14 | ], 15 | "contributor": [ 16 | { 17 | "name": "Zeping Lee" 18 | } 19 | ], 20 | "citation_format": "author-date", 21 | "field": "generic-base", 22 | "summary": "附件1南京农业大学研究生学位论文格式规范(自然科学类).pdf(2023-03-21)", 23 | "updated": "2025-04-19T23:05:40+08:00", 24 | "citations": "(Andolfo et al., 2014)
\n(Bethke et al., 2016)
\n(杨安钢等,2001)
\n(杨月等,2014)
\n(曹向锋,2010)
\n", 25 | "bibliography": "
\n
\n
[1]
曹向锋.外来入侵植物黄顶菊在中国潜在适生区预测及其风险评估[D].南京:南京农业大学,2010:88-120.
\n
\n
\n
[2]
杨安钢,毛积芳,药立波.生物化学与分子生物学实验技术[M].北京:高等教育出版社,2001:28-59.
\n
\n
\n
[3]
杨月,刘兵,刘小军,等.小麦生育期模拟模型的比较研究[J].南京农业大学学报,2014,37(1):6-14.
\n
\n
\n
[4]
Andolfo G, Jupe F, Witek K, et al. Defining the full tomato NB-LRR resistance gene repertoire using genomic and cDNA RenSeq[J]. BMC plant biology, 2014, 14: 120.
\n
\n
\n
[5]
Bethke G, Thao A, Xiong G, et al. Pectin biosynthesis is critical for cell wall integrity and immunity in arabidopsis thaliana[J]. The Plant Cell, 2016, 28(2): 537-556.
\n
\n
", 26 | "tags": [ 27 | "姓名小写", 28 | "有标题", 29 | "期刊全称", 30 | "无URL", 31 | "无DOI" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /src/南京理工大学学报(社会科学版)/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "jnustss:1", 5 | "label": "page", 6 | "locator": "205-206" 7 | } 8 | ], 9 | [ 10 | { 11 | "id": "jnustss:2", 12 | "label": "page", 13 | "locator": "433" 14 | } 15 | ], 16 | [ 17 | { 18 | "id": "jnustss:3", 19 | "label": "page", 20 | "locator": "100" 21 | } 22 | ], 23 | [ 24 | { 25 | "id": "jnustss:4" 26 | } 27 | ], 28 | [ 29 | { 30 | "id": "jnustss:5" 31 | } 32 | ], 33 | [ 34 | { 35 | "id": "jnustss:6" 36 | } 37 | ], 38 | [ 39 | { 40 | "id": "jnustss:7" 41 | } 42 | ] 43 | ] 44 | -------------------------------------------------------------------------------- /src/原子能科学技术/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "原子能科学技术", 3 | "file": "原子能科学技术.csl", 4 | "style_class": "in-text", 5 | "title": "原子能科学技术", 6 | "id": "https://www.zotero-chinese.com/styles/原子能科学技术", 7 | "link_self": "https://www.zotero-chinese.com/styles/原子能科学技术", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,无URL、DOI)", 9 | "link_documentation": "https://yznkxjs.xml-journal.net/xiazaizhongxin", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "physics", 18 | "summary": "参考文献著录格式.doc", 19 | "updated": "2025-04-19T23:05:40+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
[1]\t库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
[2]\tFAN X, SOMMERS C H. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
[3]\t贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社, 2011: 45-52.
\n
[4]\tFOURNEY M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–[25, ]1971, University of Southern California, Los Angeles, California. New York: ASME, c1971: 17-38.
\n
[5]\t武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.\n
[J]. 2008, 33(5): 8-9 (in Chinese)
\n
\n
[6]\tMYBURG A A, GRATTAPAGLIA D, TUSKAN G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
[7]\t中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.
\n
[8]\tBAWDEN D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
", 22 | "tags": [ 23 | "姓名大写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/四川大学-外国语学院(本科)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "四川大学-外国语学院(本科)", 3 | "file": "四川大学-外国语学院(本科).csl", 4 | "style_class": "in-text", 5 | "title": "四川大学 - 外国语学院(本科)", 6 | "id": "https://www.zotero-chinese.com/styles/四川大学-外国语学院(本科)", 7 | "link_self": "https://www.zotero-chinese.com/styles/四川大学-外国语学院(本科)", 8 | "link_template": "http://www.zotero.org/styles/modern-language-association", 9 | "link_documentation": "https://flc.scu.edu.cn/index.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "literature", 18 | "summary": "四川大学外国语学院本科毕业论文写作及文献格式(2024修订版).pdf", 19 | "updated": "2025-01-03T12:44:16+08:00", 20 | "citations": "(库恩 2012)
\n(Fourney c1971)
\n(贾东琴和柯平 2011)
\n(Fan and Sommers 2013)
\n(武丽丽等 2008)
\n(Myburg et al. 2014)
\n(Bawden 2008; 中国互联网络信息中心 2012)
\n", 21 | "bibliography": "
\n
Bawden, D. “Origins and Concepts of Digital Literacy.” 4 May 2008. Web. 8 Mar. 2013.
\n
Fan, Xuetong, and Christopher H. Sommers. Food Irradiation Research and Technology. 2nd ed., Blackwell Publishing, 2013, pp. 25–26.
\n
Fourney, M. E. “Advances in Holographic Photoelasticity.” Symposium on Applications of Holography in Mechanics, ASME, c1971, pp. 17–38.
\n
Myburg, Alexander A., et al. “The Genome of Eucalyptus Grandis.” Nature 510 (2014): 356–62. Web. 25 June 2014.
\n
贾东琴, 柯平. “面向数字素养的高校图书馆数字服务体系研究.” 中国图书馆学会编. 中国图书馆学会年会论文集, 卷 2011 年卷, 北京: 国家图书馆出版社, 2011, 45–52.
\n
库恩. 科学革命的结构:第 4 版. 金吾伦, 胡新和译, 第2版, 北京: 北京大学出版社, 2012.
\n
武丽丽, 等. “‘北斗一号’监控管理网设计与实现.” 测绘科学. 33. 5 (2008) 8–9.
\n
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告. 2012年1月16日.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/国际关系研究/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "国际关系研究", 3 | "file": "国际关系研究.csl", 4 | "style_class": "note", 5 | "title": "国际关系研究", 6 | "id": "https://www.zotero-chinese.com/styles/国际关系研究", 7 | "link_self": "https://www.zotero-chinese.com/styles/国际关系研究", 8 | "link_documentation": "https://iir.sass.org.cn/2019/0717/c1653a42491/page.htm", 9 | "author": [ 10 | { 11 | "name": "Edward Zhou" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "political_science", 17 | "summary": "根据pulipuli制作的APA中文格式、fanzhen《历史研究》引文规范以及《国际关系研究》引文规范改制,具体用法和特性见说明", 18 | "updated": "2024-01-21T16:16:33+08:00", 19 | "citations": "1 库恩著,金吾伦、胡新和译:《科学革命的结构:第 4 版》2,北京大学出版社2012年版。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年。
\n4 M. E. Fourney, M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期,第8–9页。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Blackwell Publishing, 2013, pp. 326–329.
\n", 20 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年。
\n
库恩著,金吾伦、胡新和译:《科学革命的结构:第 4 版》2,北京大学出版社2012年版。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期,第8–9页。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Blackwell Publishing, 2013.
\n
M. E. Fourney, M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/国际安全研究/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "国际安全研究", 3 | "file": "国际安全研究.csl", 4 | "style_class": "note", 5 | "title": "国际安全研究", 6 | "id": "https://www.zotero-chinese.com/styles/国际安全研究", 7 | "link_self": "https://www.zotero-chinese.com/styles/国际安全研究", 8 | "link_documentation": "http://gjaqyj.cnjournals.com/gjaqyj/ch/first_menu.aspx?parent_id=20130701085855001", 9 | "author": [ 10 | { 11 | "name": "Edward Zhou" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "political_science", 17 | "summary": "根据fanzhen《历史研究》引文规范、pulipuli制作的APA中文格式以及《国际安全研究》引文规范改制,具体用法和特性见说明", 18 | "updated": "2024-06-06T13:18:48+08:00", 19 | "citations": "1 库恩:《科学革命的结构:第 4 版》2,金吾伦、胡新和译,北京:北京大学出版社2012年版。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,2011年,第45–52页。
\n4 M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,载《测绘科学》,2008年第5期,第8–9页。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510 (June 2014), pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, pp. 326–329.
\n", 20 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,2011年,第45–52页。
\n
库恩:《科学革命的结构:第 4 版》2,金吾伦、胡新和译,北京:北京大学出版社2012年版。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,载《测绘科学》,2008年第5期,第8–9页。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n
M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510 (June 2014), pp. 356–362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/国际法研究/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "cril.6.1:1", 5 | "label": "page", 6 | "locator": "2" 7 | } 8 | ], 9 | [ 10 | { 11 | "id": "cril.6.1:2", 12 | "label": "page", 13 | "locator": "10" 14 | } 15 | ], 16 | [ 17 | { 18 | "id": "cril.6.1:3", 19 | "label": "page", 20 | "locator": "224" 21 | } 22 | ], 23 | [ 24 | { 25 | "id": "cril.6.2:1", 26 | "label": "page", 27 | "locator": "5" 28 | } 29 | ], 30 | [ 31 | { 32 | "id": "cril.6.2:2", 33 | "label": "page", 34 | "locator": "440" 35 | } 36 | ], 37 | [ 38 | { 39 | "id": "cril.6.2:3", 40 | "label": "page", 41 | "locator": "75-76" 42 | } 43 | ], 44 | [ 45 | { 46 | "id": "cril.6.3:1", 47 | "label": "page", 48 | "locator": "102-104" 49 | } 50 | ], 51 | [ 52 | { 53 | "id": "cril.6.4:1" 54 | } 55 | ], 56 | [ 57 | { 58 | "id": "cril.6.4:2" 59 | } 60 | ], 61 | [ 62 | { 63 | "id": "cril.6.5:1" 64 | } 65 | ], 66 | [ 67 | { 68 | "id": "cril.6.5:2" 69 | } 70 | ], 71 | [ 72 | { 73 | "id": "cril.6.6:1" 74 | } 75 | ], 76 | [ 77 | { 78 | "id": "cril.6.6:2", 79 | "label": "page", 80 | "locator": "p. 7, para. 123" 81 | } 82 | ], 83 | [ 84 | { 85 | "id": "cril.6.7:1" 86 | } 87 | ], 88 | [ 89 | { 90 | "id": "cril.6.7:2" 91 | } 92 | ] 93 | ] 94 | -------------------------------------------------------------------------------- /src/国际经贸探索/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "国际经贸探索", 3 | "file": "国际经贸探索.csl", 4 | "style_class": "in-text", 5 | "title": "国际经贸探索", 6 | "id": "https://www.zotero-chinese.com/styles/国际经贸探索", 7 | "link_self": "https://www.zotero-chinese.com/styles/国际经贸探索", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "https://gjts.cbpt.cnki.net/WKG/WebPublication/index.aspx?mid=gjts#", 10 | "author": [ 11 | { 12 | "name": "韩小土" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "social_science", 18 | "summary": "1. 按照语言显示“等”或“et al.”;2. 姓名取消全大写;3. 仅纯电子资源显示引用日期和 URL;4. 无 DOI;5. 正文的引用使用全角括号。", 19 | "updated": "2025-04-19T15:30:01+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney, c1971)
\n(贾东琴、柯平,2011)
\n(Fan & Sommers, 2013)
\n(武丽丽 等,2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心,2012; Bawden, 2008)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平, 2011. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.
\n
库恩, 2012. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等, 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 33(5): 8-9.
\n
中国互联网络信息中心, 2012. 第 29 次中国互联网络发展状况统计报告[R].
\n
Bawden, D, 2008. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan, X, Sommers, C H, 2013. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney, M E, c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg, A A, Grattapaglia, D, Tuskan, G A, et al., 2014. The genome of eucalyptus grandis[J]. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/国际金融研究/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "国际金融研究", 3 | "file": "国际金融研究.csl", 4 | "style_class": "in-text", 5 | "title": "国际金融研究", 6 | "id": "https://www.zotero-chinese.com/styles/国际金融研究", 7 | "link_self": "https://www.zotero-chinese.com/styles/国际金融研究", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "http://www.gjjryj.org.cn/CN/column/column2.shtml", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "social_science", 18 | "summary": "《国际金融研究》投稿指南", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney,c1971)
\n(贾东琴和柯平,2011)
\n(Fan & Sommers,2013)
\n(武丽丽等,2008)
\n(Myburg et al.,2014)
\n(中国互联网络信息中心,2012;Bawden,2008)
\n", 21 | "bibliography": "
\n
[1] 贾东琴,柯平. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集:2011 年卷. 北京:国家图书馆出版社,2011:45-52
\n
[2] 库恩. 科学革命的结构:第 4 版[M]. 金吾伦,胡新和,译. 2 版. 北京:北京大学出版社,2012
\n
[3] 武丽丽,华一新,张亚军,等. “北斗一号”监控管理网设计与实现[J]. 测绘科学,2008,33(5):8-9
\n
[4] 中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012
\n
[5] Bawden D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf
\n
[6] Fan X,Sommers C H. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa:Blackwell Publishing,2013:25-26
\n
[7] Fourney M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics,August 23–25, 1971,University of Southern California, Los Angeles, California. New York:ASME,c1971:17-38
\n
[8] Myburg A A,Grattapaglia D,Tuskan G A,et al. The genome of eucalyptus grandis[J]. Nature,2014,510:356-362
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/地球物理学报/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "地球物理学报", 3 | "file": "地球物理学报.csl", 4 | "style_class": "in-text", 5 | "title": "地球物理学报", 6 | "id": "https://www.zotero-chinese.com/styles/地球物理学报", 7 | "link_self": "https://www.zotero-chinese.com/styles/地球物理学报", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI)", 9 | "link_documentation": "http://www.geophy.cn/cjg/list/tgzx", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "《地球物理学报》论文模板、《地球物理学报》文后参考文献表著录格式", 19 | "updated": "2025-04-19T23:05:39+08:00", 20 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴等, 2011)
\n(Fan et al., 2013)
\n(武丽丽等, 2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心, 2012; Bawden, 2008)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平. 2011. 面向数字素养的高校图书馆数字服务体系研究. 中国图书馆学会编. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.
\n
库恩. 2012. 科学革命的结构:第 4 版. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等. 2008. “北斗一号”监控管理网设计与实现. 测绘科学, 33(5): 8-9. doi: 10.3771/j.issn.1009-2307.2008.05.002.
\n
中国互联网络信息中心. 2012. 第 29 次中国互联网络发展状况统计报告.
\n
Bawden D. 2008. Origins and concepts of digital literacy. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H. 2013. Food irradiation research and technology. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney M E. c1971. Advances in holographic photoelasticity. Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. 2014. The genome of eucalyptus grandis. Nature, 510: 356-362. doi: 10.1038/nature13308.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊缩写", 26 | "有URL", 27 | "有DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/地质学报/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "地质学报", 3 | "file": "地质学报.csl", 4 | "style_class": "in-text", 5 | "title": "地质学报", 6 | "id": "https://www.zotero-chinese.com/styles/地质学报", 7 | "link_self": "https://www.zotero-chinese.com/styles/地质学报", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2005(著者-出版年,双语)", 9 | "link_documentation": "https://www.geojournals.cn/dzxb/dzxb/site/menu/2008061202354001", 10 | "author": [ 11 | { 12 | "name": "韩小土" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "geology", 18 | "summary": "1. 按照语言显示“等”或“et al.”;2. 姓名取消全大写;3. 仅纯电子资源显示引用日期和 URL;4. 无 DOI;5. 正文的引用使用全角括号。", 19 | "updated": "2025-02-07T18:02:07+08:00", 20 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴和柯平, 2011)
\n(Fan and Sommers, 2013)
\n(武丽丽等, 2008)
\n(Myburg et al., 2014)
\n(Bawden, 2008; 中国互联网络信息中心, 2012)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平, 2011. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.
\n
库恩, 2012. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等, 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 33(5): 8-9.
\n
中国互联网络信息中心, 2012. 第 29 次中国互联网络发展状况统计报告[R].
\n
Bawden D, 2008. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H, 2013. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney M E, c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al., 2014. The genome of eucalyptus grandis[J]. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/复旦大学-大气与海洋科学系/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "复旦大学-大气与海洋科学系", 3 | "file": "复旦大学-大气与海洋科学系.csl", 4 | "style_class": "in-text", 5 | "title": "复旦大学 - 大气与海洋科学系", 6 | "id": "https://www.zotero-chinese.com/styles/复旦大学-大气与海洋科学系", 7 | "link_self": "https://www.zotero-chinese.com/styles/复旦大学-大气与海洋科学系", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "link_documentation": "https://aos.fudan.edu.cn/fb/8b/c14984a523147/page.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "复旦大学大气与海洋科学系论文写作规范-2023.docx(2023-09-11)", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney, c1971)
\n(贾东琴和柯平,2011)
\n(Fan & Sommers, 2013)
\n(武丽丽等,2008)
\n(Myburg et al., 2014)
\n(Bawden, 2008;中国互联网络信息中心,2012)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究 [C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社, 2011: 45-52.
\n
库恩. 科学革命的结构:第 4 版 [M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现 [J]. 测绘科学, 2008, 33(5): 8-9.
\n
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告 [R]. 2012.
\n
Bawden D. Origins and concepts of digital literacy [EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H. Food irradiation research and technology [M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
Fourney M E. Advances in holographic photoelasticity [C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME, c1971: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis [J]. Nature, 2014, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/外语教学与研究/items.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "fltr:10:1", 4 | "type": "book", 5 | "edition": "6", 6 | "event-place": "Oxford", 7 | "language": "en-US", 8 | "publisher": "OUP", 9 | "publisher-place": "Oxford", 10 | "title": "Oxford Advanced Learner’s Dictionary of Current English", 11 | "author": [ 12 | { 13 | "family": "Hornby", 14 | "given": "A. S." 15 | } 16 | ], 17 | "editor": [ 18 | { 19 | "family": "Wehmeier", 20 | "given": "Sally" 21 | } 22 | ], 23 | "issued": { 24 | "date-parts": [ 25 | [ 26 | "2000" 27 | ] 28 | ] 29 | } 30 | }, 31 | { 32 | "id": "fltr:10:2", 33 | "type": "book", 34 | "event-place": "北京", 35 | "language": "zh-CN", 36 | "note": "Original Tile: The Contemporary Chinese Dictionary", 37 | "publisher": "外语教学与研究出版社", 38 | "publisher-place": "北京", 39 | "title": "现代汉语词典", 40 | "editor": [ 41 | { 42 | "literal": "中国社会科学院语言研究所词典编辑室" 43 | } 44 | ], 45 | "translator": [ 46 | { 47 | "literal": "外语教学与研究出版社语言学与辞书部双语词典编辑室" 48 | } 49 | ], 50 | "issued": { 51 | "date-parts": [ 52 | [ 53 | "2002" 54 | ] 55 | ] 56 | } 57 | } 58 | ] -------------------------------------------------------------------------------- /src/外语教学与研究/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "外语教学与研究", 3 | "file": "外语教学与研究.csl", 4 | "style_class": "in-text", 5 | "title": "外语教学与研究", 6 | "id": "https://www.zotero-chinese.com/styles/外语教学与研究", 7 | "link_self": "https://www.zotero-chinese.com/styles/外语教学与研究", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "https://wjyy.cbpt.cnki.net/WKG/WebPublication/wkTextContent.aspx?navigationContentID=fb02c076-ad27-4740-aa32-01c23807b2f2&mid=wjyy", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "linguistics", 18 | "summary": "《外语教学与研究》参考文献格式要求", 19 | "updated": "2025-04-19T23:05:40+08:00", 20 | "citations": "(Hornby 2000)
\n(中国社会科学院语言研究所词典编辑室 2002)
\n", 21 | "bibliography": "
\n
Hornby, A. S. 2000. Oxford Advanced Learner’s Dictionary of Current English, ed. Sally Wehmeier (6th edition) [M]. Oxford: OUP.
\n
中国社会科学院语言研究所词典编辑室(编),2002,《现代汉语词典》[C],外语教学与研究出版社语言学与辞书部双语词典编辑室译。北京:外语教学与研究出版社。
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/外语教学理论与实践/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "外语教学理论与实践", 3 | "file": "外语教学理论与实践.csl", 4 | "style_class": "in-text", 5 | "title": "外语教学理论与实践", 6 | "id": "https://www.zotero-chinese.com/styles/外语教学理论与实践", 7 | "link_self": "https://www.zotero-chinese.com/styles/外语教学理论与实践", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—1987(顺序编码,双语)", 9 | "link_documentation": "http://www.teachlanguage.ecnu.edu.cn/CN/1674-1234/home.shtml", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "linguistics", 18 | "summary": "外语教学理论与实践.pdf", 19 | "updated": "2025-01-18T20:26:04+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney, c1971)
\n(贾东琴、柯平,2011)
\n(Fan, Sommers, 2013)
\n(武丽丽等,2008)
\n(Myburg et al., 2014)
\n(Bawden, 2008;中国互联网络信息中心,2012)
\n", 21 | "bibliography": "
\n
Bawden D. 2008. “Origins and concepts of digital literacy”. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf (March 8, 2013).
\n
Fan X. & C. H. Sommers. 2013. Food Irradiation Research and Technology. 2nd ed. Ames, Iowa: Blackwell Publishing.
\n
Fourney M. E. c1971. “Advances in holographic photoelasticity”. In Symposium on Applications of Holography in Mechanics. New York: ASME.
\n
Myburg A. A., D. Grattapaglia, G. A. Tuskan et al. 2014. “The genome of eucalyptus grandis”. Nature 510.
\n
贾东琴、柯平,2011,面向数字素养的高校图书馆数字服务体系研究,见中国图书馆学会(编),《中国图书馆学会年会论文集》(2011 年卷),北京:国家图书馆出版社。
\n
库恩,2012,《科学革命的结构:第 4 版》(2 版),北京:北京大学出版社。
\n
武丽丽、华一新、张亚军等,2008,“北斗一号”监控管理网设计与实现,《测绘科学》第5期。
\n
中国互联网络信息中心,2012,《第 29 次中国互联网络发展状况统计报告》。
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/天然气工业/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "天然气工业", 3 | "file": "天然气工业.csl", 4 | "style_class": "in-text", 5 | "title": "天然气工业", 6 | "id": "https://www.zotero-chinese.com/styles/天然气工业", 7 | "link_self": "https://www.zotero-chinese.com/styles/天然气工业", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,无URL、DOI)", 9 | "link_documentation": "http://cngascn.com/index/lists/downloads.html", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "engineering", 18 | "summary": "投稿模板(2020年3月更新).docx", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
[1]\t库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.\n
[M]. 2012.
\n
\n
[2]\tFAN X, SOMMERS C H. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
[3]\t贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社, 2011: 45-52.\n
[C]. 2011: 45-52.
\n
\n
[4]\tFOURNEY M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, 1971年8月23—25日, University of Southern California, Los Angeles, California. New York: ASME, c1971: 17-38.
\n
[5]\t武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5):8-9.\n
[J]. 2008, 33(5):8-9.
\n
\n
[6]\tMYBURG A A, GRATTAPAGLIA D, TUSKAN G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510:356-362.
\n
[7]\t中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.\n
[R]. 2012.
\n
\n
[8]\tBAWDEN D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
", 22 | "tags": [ 23 | "姓名大写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/宁波大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "宁波大学", 3 | "file": "宁波大学.csl", 4 | "style_class": "in-text", 5 | "title": "宁波大学", 6 | "id": "https://www.zotero-chinese.com/styles/宁波大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/宁波大学", 8 | "link_documentation": "http://graduate.nbu.edu.cn/info/1049/15542.htm", 9 | "author": [ 10 | { 11 | "name": "Bingsong Bai" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "numeric", 16 | "field": "generic-base", 17 | "summary": "添加平行语言支持,即在中文文献后添加其英文的翻译。作者为首字母大写,支持中文作者超过 `3` 个为“`等`”,英文为“`et al`”。文章的题目大小写与 `Zotero` 中的 `Title` 字段一致,不显示 `URL` 和 `DOI`。", 18 | "updated": "2025-01-08T17:10:52+08:00", 19 | "citations": "[1-8]", 20 | "bibliography": "
\n
[1]\t库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.\n
科学革命的结构.
\n
\n
[2]\tFan X, Sommers C H. Food irradiation research and technology[M/OL]. 2 edition. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
[3]\t贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会, 编//中国图书馆学会年会论文集. 北京: 国家图书馆出版社, 2011: 45-52.
\n
[4]\tFourney M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics. New York: ASME, c1971: 17-38.
\n
[5]\t武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J/OL]. 测绘科学, 2008, 33(5): 8-9.
\n
[6]\tMyburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J/OL]. Nature, 2014, 510: 356-362.
\n
[7]\t中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R/OL].
\n
[8]\tBawden D. Origins and concepts of digital literacy[EB/OL].
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/安徽理工大学/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "aust:02" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "aust:03" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "aust:04" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "aust:06" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "aust:07" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "aust:08" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "aust:10" 35 | } 36 | ], 37 | [ 38 | { 39 | "id": "aust:14" 40 | } 41 | ] 42 | ] 43 | -------------------------------------------------------------------------------- /src/导出作者、出版年/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "导出作者、出版年", 3 | "file": "导出作者、出版年.csl", 4 | "style_class": "in-text", 5 | "title": "导出作者、出版年", 6 | "id": "https://www.zotero-chinese.com/styles/导出作者、出版年", 7 | "link_self": "https://www.zotero-chinese.com/styles/导出作者、出版年", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "author": [ 10 | { 11 | "name": "韩小土" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "author-date", 16 | "field": "generic-base", 17 | "summary": "按照语言显示作者“等”或“et al.”,年代", 18 | "updated": "2025-04-19T15:30:01+08:00", 19 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴 等, 2011)
\n(Fan et al., 2013)
\n(武丽丽 等, 2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心, 2012; Bawden, 2008)
\n", 20 | "bibliography": "
\n
贾东琴等, 2011.
\n
库恩, 2012.
\n
武丽丽等, 2008.
\n
中国互联网络信息中心, 2012.
\n
Bawden, 2008.
\n
Fan et al., 2013.
\n
Fourney, c1971.
\n
Myburg et al., 2014.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "无标题", 24 | "期刊缩写", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/导出作者、刊名、年卷期页/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "导出作者、刊名、年卷期页", 3 | "file": "导出作者、刊名、年卷期页.csl", 4 | "style_class": "in-text", 5 | "title": "导出作者、刊名、年卷期页", 6 | "id": "https://www.zotero-chinese.com/styles/导出作者、刊名、年卷期页", 7 | "link_self": "https://www.zotero-chinese.com/styles/导出作者、刊名、年卷期页", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "author": [ 10 | { 11 | "name": "韩小土" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "numeric", 16 | "field": "generic-base", 17 | "updated": "2025-04-19T23:05:40+08:00", 18 | "citations": "[1-8]", 19 | "bibliography": "
\n
\n
[1]
库恩. . 金吾伦等, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
\n
\n
[2]
Fan et al. . 2 edition. Ames, Iowa: Blackwell Publishing, 2013: 25–26.
\n
\n
\n
[3]
贾东琴等. . 中国图书馆学会, 编//中国图书馆学会年会论文集. 北京: 国家图书馆出版社, 2011: 45–52.
\n
\n
\n
[4]
Fourney. //Symposium on Applications of Holography in Mechanics. New York: ASME, c1971: 17–38.
\n
\n
\n
[5]
武丽丽等. 测绘科学, 2008, 33(5): 8–9.
\n
\n
\n
[6]
Myburg et al. Nature, 2014, 510: 356–362.
\n
\n
\n
[7]
中国互联网络信息中心. . (2012-01-16) . [2013-03-26]. http://www.cnnic.net.cn/hlwfzyj/hlwxzbg/201201/P020120709345264469680.
\n
\n
\n
[8]
\n
\n
", 20 | "tags": [ 21 | "姓名小写", 22 | "无标题", 23 | "期刊全称", 24 | "无URL", 25 | "无DOI" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /src/导出刊名/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "导出刊名", 3 | "file": "导出刊名.csl", 4 | "style_class": "in-text", 5 | "title": "导出刊名", 6 | "id": "https://www.zotero-chinese.com/styles/导出刊名", 7 | "link_self": "https://www.zotero-chinese.com/styles/导出刊名", 8 | "author": [ 9 | { 10 | "name": "韩小土" 11 | } 12 | ], 13 | "contributor": [], 14 | "citation_format": "numeric", 15 | "field": "generic-base", 16 | "updated": "2025-01-03T10:51:39+08:00", 17 | "citations": "[NO_PRINTED_FORM]", 18 | "bibliography": "
\n
中国图书馆学会年会论文集
\n
Symposium on Applications of Holography in Mechanics
\n
测绘科学
\n
Nature
\n
", 19 | "tags": [ 20 | "姓名小写", 21 | "无标题", 22 | "期刊全称", 23 | "无URL", 24 | "无DOI" 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /src/导出刊名/导出刊名.csl: -------------------------------------------------------------------------------- 1 | 2 | 35 | -------------------------------------------------------------------------------- /src/导出刊名、年卷期页/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "导出刊名、年卷期页", 3 | "file": "导出刊名、年卷期页.csl", 4 | "style_class": "in-text", 5 | "title": "导出刊名、年卷期页", 6 | "id": "https://www.zotero-chinese.com/styles/导出刊名、年卷期页", 7 | "link_self": "https://www.zotero-chinese.com/styles/导出刊名、年卷期页", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "author": [ 10 | { 11 | "name": "韩小土" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "numeric", 16 | "field": "generic-base", 17 | "updated": "2025-04-19T23:05:40+08:00", 18 | "citations": "[1-8]", 19 | "bibliography": "
\n
科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
Food irradiation research and technology[M]. 2 版. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社, 2011: 45-52.
\n
Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, 1971年8月23—25日, University of Southern California, Los Angeles, California. New York: ASME, c1971: 17-38.
\n
测绘科学, 2008, 33(5): 8-9.
\n
Nature, 2014, 510: 356-362.
\n
第 29 次中国互联网络发展状况统计报告[R]. 2012.
\n
Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
", 20 | "tags": [ 21 | "姓名小写", 22 | "无标题", 23 | "期刊全称", 24 | "无URL", 25 | "无DOI" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /src/导出笔记(@题名@作者@出版年)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "导出笔记(@题名@作者@出版年)", 3 | "file": "导出笔记(@题名@作者@出版年).csl", 4 | "style_class": "in-text", 5 | "title": "导出笔记(@题名@作者@出版年)", 6 | "id": "https://www.zotero-chinese.com/styles/导出笔记(@题名@作者@出版年)", 7 | "link_self": "https://www.zotero-chinese.com/styles/导出笔记(@题名@作者@出版年)", 8 | "author": [ 9 | { 10 | "name": "韩小土" 11 | } 12 | ], 13 | "contributor": [], 14 | "citation_format": "numeric", 15 | "field": "generic-base", 16 | "updated": "2024-06-19T00:37:02+08:00", 17 | "citations": "[1–8]", 18 | "bibliography": "
\n
@科学革命的结构:第 4 版@库恩. (@2012)
\n
@Food irradiation research and technology@Fan X, Sommers C H. (@2013)
\n
@面向数字素养的高校图书馆数字服务体系研究@贾东琴, 柯平. (@2011)
\n
@Advances in holographic photoelasticity@Fourney M E. (@c1971)
\n
@“北斗一号”监控管理网设计与实现@武丽丽, 华一新, 等. (@2008)
\n
@The genome of eucalyptus grandis@Myburg A A, Grattapaglia D, et al. (@2014)
\n
@第 29 次中国互联网络发展状况统计报告@中国互联网络信息中心. (@2012)
\n
@Origins and concepts of digital literacy@Bawden D. (@2008)
\n
", 19 | "tags": [ 20 | "姓名小写", 21 | "有标题", 22 | "期刊缩写", 23 | "无URL", 24 | "无DOI" 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /src/导出题名/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "导出题名", 3 | "file": "导出题名.csl", 4 | "style_class": "in-text", 5 | "title": "导出题名", 6 | "id": "https://www.zotero-chinese.com/styles/导出题名", 7 | "link_self": "https://www.zotero-chinese.com/styles/导出题名", 8 | "author": [ 9 | { 10 | "name": "韩小土" 11 | } 12 | ], 13 | "contributor": [], 14 | "citation_format": "numeric", 15 | "field": "generic-base", 16 | "updated": "2025-01-03T10:47:12+08:00", 17 | "citations": "科学革命的结构:第 4 版Food irradiation research and technology面向数字素养的高校图书馆数字服务体系研究Advances in holographic photoelasticity“北斗一号”监控管理网设计与实现The genome of eucalyptus grandis第 29 次中国互联网络发展状况统计报告Origins and concepts of digital literacy", 18 | "bibliography": "
\n
科学革命的结构:第 4 版
\n
Food irradiation research and technology
\n
面向数字素养的高校图书馆数字服务体系研究
\n
Advances in holographic photoelasticity
\n
“北斗一号”监控管理网设计与实现
\n
The genome of eucalyptus grandis
\n
第 29 次中国互联网络发展状况统计报告
\n
Origins and concepts of digital literacy
\n
", 19 | "tags": [ 20 | "姓名小写", 21 | "有标题", 22 | "期刊缩写", 23 | "无URL", 24 | "无DOI" 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /src/导出题名/导出题名.csl: -------------------------------------------------------------------------------- 1 | 2 | 38 | -------------------------------------------------------------------------------- /src/当代亚太/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "当代亚太", 3 | "file": "当代亚太.csl", 4 | "style_class": "note", 5 | "title": "当代亚太", 6 | "id": "https://www.zotero-chinese.com/styles/当代亚太", 7 | "link_self": "https://www.zotero-chinese.com/styles/当代亚太", 8 | "author": [ 9 | { 10 | "name": "Edward Zhou" 11 | } 12 | ], 13 | "contributor": [], 14 | "citation_format": "note", 15 | "field": "political_science", 16 | "summary": "根据fanzhen《历史研究》引文规范、pulipuli制作的APA中文格式以及《当代亚太》引文规范改制,具体用法和特性见说明", 17 | "updated": "2024-06-06T13:18:48+08:00", 18 | "citations": "1 库恩:《科学革命的结构:第 4 版》2,金吾伦、胡新和译,北京大学出版社2012年版。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,2011年,第45–52页。
\n4 M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,载《测绘科学》2008年第5期,第8–9页。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, pp. 326–329.
\n", 19 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,2011年,第45–52页。
\n
库恩:《科学革命的结构:第 4 版》2,金吾伦、胡新和译,北京大学出版社2012年版。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,载《测绘科学》2008年第5期,第8–9页。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n
M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n
", 20 | "tags": [ 21 | "姓名小写", 22 | "有标题", 23 | "期刊全称", 24 | "无URL", 25 | "无DOI" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /src/心理学报/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "cps.4.01:1" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "cps.4.02:1" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "cps.4.02:2" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "cps.4.03:1" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "cps.4.03:2" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "cps.4.19:1" 30 | } 31 | ] 32 | ] 33 | -------------------------------------------------------------------------------- /src/心理学报/test-cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "cps.4.01:1" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "cps.4.02:1" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "cps.4.02:2" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "cps.4.03:1" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "cps.4.03:2" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "cps.4.19:1" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "cps.4.02:1", 35 | "author-only": "true" 36 | } 37 | ], 38 | [ 39 | { 40 | "id": "cps.4.02:2", 41 | "author-only": "true" 42 | } 43 | ], 44 | [ 45 | { 46 | "id": "cps.4.03:1", 47 | "author-only": "true" 48 | } 49 | ], 50 | [ 51 | { 52 | "id": "cps.4.03:2", 53 | "author-only": "true" 54 | } 55 | ] 56 | ] 57 | -------------------------------------------------------------------------------- /src/心理科学进展/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "cps.4.01:1" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "cps.4.02:1" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "cps.4.02:2" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "cps.4.03:1" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "cps.4.03:2" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "cps.4.19:1" 30 | } 31 | ] 32 | ] 33 | -------------------------------------------------------------------------------- /src/心理科学进展/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "心理科学进展", 3 | "file": "心理科学进展.csl", 4 | "style_class": "in-text", 5 | "title": "心理科学进展", 6 | "id": "https://www.zotero-chinese.com/styles/心理科学进展", 7 | "link_self": "https://www.zotero-chinese.com/styles/心理科学进展", 8 | "link_template": "http://www.zotero.org/styles/apa", 9 | "link_documentation": "https://journal.psych.ac.cn/xlkxjz/CN/item/downloadFile.jsp?filedisplay=20220223114547.pdf", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "psychology", 18 | "summary": "1. 文献的语言默认为英语。中文文献需要在 `language` 字段填写 `zh` 或 `zh-CN`。", 19 | "updated": "2023-02-02T00:33:22+08:00", 20 | "citations": "(张三, 2008)
\n(张三, 李四, 2008)
\n(Mou & McNamara, 2002)
\n(赵一 等, 2008)
\n(Mou et al., 2004)
\n(现代汉语频率词典, 1986)
\n", 21 | "bibliography": "
\n
现代汉语频率词典. (1986). 北京: 北京语言学院出版社.
\n
张三. (2008). 中国心理学的过去与未来. 心理学报, 40, 210–215.
\n
张三, 李四. (2008). 中国心理学的过去与未来. 心理学报, 40, 210–215.
\n
赵一, 钱二, 孙三, 李四, 周五, 吴六, 郑七. (2008). 中国心理学的过去与未来. 心理学报, 40, 210–215.
\n
Mou, W., & McNamara, T. P. (2002). Intrinsic frames of reference in spatial memory. Journal of Experimental Psychology: Learning, Memory, and Cognition, 28, 162–170.
\n
Mou, W., Zhang, K., & McNamara, T. P. (2004). Frames of reference in spatial memories acquired from language. Journal of Experimental Psychology: Learning, Memory, and Cognition, 30, 171–180.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/心理科学进展/test-cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "cps.4.01:1" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "cps.4.02:1" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "cps.4.02:2" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "cps.4.03:1" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "cps.4.03:2" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "cps.4.19:1" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "cps.4.02:1", 35 | "author-only": "true" 36 | } 37 | ], 38 | [ 39 | { 40 | "id": "cps.4.02:2", 41 | "author-only": "true" 42 | } 43 | ], 44 | [ 45 | { 46 | "id": "cps.4.03:1", 47 | "author-only": "true" 48 | } 49 | ], 50 | [ 51 | { 52 | "id": "cps.4.03:2", 53 | "author-only": "true" 54 | } 55 | ] 56 | ] 57 | -------------------------------------------------------------------------------- /src/扬州大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "扬州大学", 3 | "file": "扬州大学.csl", 4 | "style_class": "in-text", 5 | "title": "扬州大学", 6 | "id": "https://www.zotero-chinese.com/styles/扬州大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/扬州大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/经济社会体制比较", 9 | "link_documentation": "http://yjsc.yzu.edu.cn/info/1043/2151.htm", 10 | "author": [ 11 | { 12 | "name": "不秃燃的小老弟" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "generic-base", 18 | "summary": "comparative economic and social systems author-date style", 19 | "updated": "2025-04-16T09:35:37+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
\n
[1]
库恩. 科学革命的结构:第 4 版[M]. 北京: 北京大学出版社, 2012.
\n
\n
\n
[2]
X Fan, CH Sommers. Food irradiation research and technology[M]. Ames, Iowa: Blackwell Publishing, 2013.
\n
\n
\n
[3]
贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会年会论文集. 北京: 国家图书馆出版社, 2011: 45-52.
\n
\n
\n
[4]
ME Fourney. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics. New York: ASME, c1971: 17-38.
\n
\n
\n
[5]
武丽丽, 华一新, 张亚军等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.
\n
\n
\n
[6]
AA Myburg, D Grattapaglia, GA Tuskan, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
\n
\n
[7]
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告2012.
\n
\n
\n
[8]
D Bawden. Origins and concepts of digital literacy(2008-05-04)[03/08/2013].
\n
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/探索与争鸣/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "探索与争鸣", 3 | "file": "探索与争鸣.csl", 4 | "style_class": "note", 5 | "title": "探索与争鸣", 6 | "id": "https://www.zotero-chinese.com/styles/探索与争鸣", 7 | "link_self": "https://www.zotero-chinese.com/styles/探索与争鸣", 8 | "link_documentation": "http://www.tsyzm.com/CN/column/column6.shtml", 9 | "author": [ 10 | { 11 | "name": "Edward Zhou" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "humanities", 17 | "summary": "根据fanzhen《历史研究》引文规范以及众多国际问题期刊引文规范改制,支持中英混排,仅支持今人论文、图书、章节、学位论文、网页", 18 | "updated": "2023-12-22T00:19:10+08:00", 19 | "citations": "1 库恩:《科学革命的结构:第 4 版》,金吾伦、胡新和译,北京:北京大学出版社,2012年
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013
\n3 贾东琴、柯平中国图书馆学会主编:《面向数字素养的高校图书馆数字服务体系研究》北京:国家图书馆出版社,2011年
\n4 M. E. Fourney, “Advances in holographic photoelasticity,” Symposium on Applications of Holography in Mechanics, (c1971), pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, (2014), pp. 356–362.
\n7 Ibid.
\n8 Ibid.357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013, pp. 326–329.
\n", 20 | "bibliography": "
\n
贾东琴、柯平中国图书馆学会主编:《面向数字素养的高校图书馆数字服务体系研究》北京:国家图书馆出版社,2011年
\n
库恩:《科学革命的结构:第 4 版》,金吾伦、胡新和译,北京:北京大学出版社,2012年
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013
\n
M. E. Fourney, “Advances in holographic photoelasticity,” Symposium on Applications of Holography in Mechanics, (c1971), pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, (2014), pp. 356–362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/教育史研究/items.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "ehs:1", 4 | "type": "book", 5 | "event-place": "人民教育出版社", 6 | "language": "zh-CN", 7 | "note": "page: 35-36", 8 | "publisher-place": "人民教育出版社", 9 | "title": "布鲁纳教育论著选", 10 | "author": [ 11 | { 12 | "literal": "布鲁纳" 13 | } 14 | ], 15 | "translator": [ 16 | { 17 | "literal": "邵瑞珍" 18 | }, 19 | { 20 | "literal": "张渭城" 21 | } 22 | ], 23 | "issued": { 24 | "date-parts": [["2018"]] 25 | } 26 | }, 27 | { 28 | "id": "ehs:2", 29 | "type": "article-journal", 30 | "container-title": "课程·教材·教法", 31 | "issue": "9", 32 | "language": "zh-CN", 33 | "title": "实事求是地评价普通高中新课程改革", 34 | "author": [ 35 | { 36 | "literal": "廖哲勋" 37 | } 38 | ], 39 | "issued": { 40 | "date-parts": [["2010"]] 41 | } 42 | }, 43 | { 44 | "id": "ehs:3", 45 | "type": "book", 46 | "event-place": "New York", 47 | "language": "en-US", 48 | "note": "page: 33-39", 49 | "publisher": "W. W. Norton & Company, Inc.", 50 | "publisher-place": "New York", 51 | "title": "The culture of professionalism: The middle class and the development of higher education in America", 52 | "author": [ 53 | { 54 | "family": "Bledstein", 55 | "given": "Burton J." 56 | } 57 | ], 58 | "issued": { 59 | "date-parts": [["1976"]] 60 | } 61 | }, 62 | { 63 | "id": "ehs:4", 64 | "type": "article-journal", 65 | "container-title": "Teachers College Record", 66 | "issue": "3", 67 | "language": "en-US", 68 | "page": "216", 69 | "title": "The socialization of the high school", 70 | "volume": "16", 71 | "author": [ 72 | { 73 | "family": "Inglis", 74 | "given": "Alexander J." 75 | } 76 | ], 77 | "issued": { 78 | "date-parts": [["1915"]] 79 | } 80 | } 81 | ] 82 | -------------------------------------------------------------------------------- /src/教育史研究/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "教育史研究", 3 | "file": "教育史研究.csl", 4 | "style_class": "note", 5 | "title": "教育史研究", 6 | "id": "https://www.zotero-chinese.com/styles/教育史研究", 7 | "link_self": "https://www.zotero-chinese.com/styles/教育史研究", 8 | "link_template": "https://www.zotero-chinese.com/styles/中国社会科学", 9 | "link_documentation": "https://kns.cnki.net/KCMS/detail/detail.aspx?dbcode=CJFD&dbname=CJFDLAST2020&filename=JYUY202001020", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "note", 17 | "field": "history", 18 | "updated": "2024-12-25T16:50:49+08:00", 19 | "citations": "1 布鲁纳著,邵瑞珍、张渭城译:《布鲁纳教育论著选》,人民教育出版社,2018年,第35—36页。
\n2 廖哲勋:《实事求是地评价普通高中新课程改革》,《课程·教材·教法》2010年第9期。
\n3 Burton J. Bledstein. The Culture of Professionalism: The Middle Class and the Development of Higher Education in America. New York: W. W. Norton & Company, Inc. 1976. pp. 33-39.
\n4 Alexander J. Inglis. The Socialization of the High School. Teachers College Record, 1915, 16(3). p. 216.
\n", 20 | "bibliography": "
\n
\n
[1]
布鲁纳著,邵瑞珍、张渭城译:《布鲁纳教育论著选》,人民教育出版社,2018年,第35—36页。
\n
\n
\n
[2]
廖哲勋:《实事求是地评价普通高中新课程改革》,《课程·教材·教法》2010年第9期。
\n
\n
\n
[3]
Burton J. Bledstein. The Culture of Professionalism: The Middle Class and the Development of Higher Education in America. New York: W. W. Norton & Company, Inc. 1976. pp. 33-39.
\n
\n
\n
[4]
Alexander J. Inglis. The Socialization of the High School. Teachers College Record, 1915, 16(3). p. 216.
\n
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/文学评论/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "文学评论", 3 | "file": "文学评论.csl", 4 | "style_class": "note", 5 | "title": "文学评论", 6 | "id": "https://www.zotero-chinese.com/styles/文学评论", 7 | "link_self": "https://www.zotero-chinese.com/styles/文学评论", 8 | "link_documentation": "http://wxpl.ajcass.org/Home/Index", 9 | "author": [ 10 | { 11 | "name": "Edward Zhou" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "literature", 17 | "summary": "根据pulipuli制作的APA中文格式、fanzhen《历史研究》引文规范以及《文学评论》引文规范改制,具体用法和特性见说明", 18 | "updated": "2024-03-01T14:57:23+08:00", 19 | "citations": "1 库恩,《科学革命的结构:第 4 版》2,金吾伦、胡新和译,北京大学出版社2012年版。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年。
\n4 M. E. Fourney, M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, pp. 326–329.
\n", 20 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年。
\n
库恩,《科学革命的结构:第 4 版》2,金吾伦、胡新和译,北京大学出版社2012年版。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n
M. E. Fourney, M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/文艺争鸣/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "文艺争鸣", 3 | "file": "文艺争鸣.csl", 4 | "style_class": "note", 5 | "title": "文艺争鸣", 6 | "id": "https://www.zotero-chinese.com/styles/文艺争鸣", 7 | "link_self": "https://www.zotero-chinese.com/styles/文艺争鸣", 8 | "link_documentation": "http://www.wenyizhengming.com/danye.php?SortID=178&pid=35", 9 | "author": [ 10 | { 11 | "name": "Edward Zhou" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "literature", 17 | "summary": "根据pulipuli制作的APA中文格式、fanzhen《历史研究》引文规范以及《文艺争鸣》引文规范改制,具体用法和特性见说明", 18 | "updated": "2024-03-01T14:57:23+08:00", 19 | "citations": "1 库恩,《科学革命的结构:第 4 版》,金吾伦、胡新和译2,北京大学出版社,2012年版。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年。
\n4 M. E. Fourney, M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, pp. 326–329.
\n", 20 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年。
\n
库恩,《科学革命的结构:第 4 版》,金吾伦、胡新和译,2北京大学出版社,2012年版。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n
M. E. Fourney, M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/新金融/items.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "nf:01", 4 | "type": "book", 5 | "event-place": "上海", 6 | "language": "zh-CN", 7 | "note": "page: 50-51", 8 | "publisher": "上海人民出版社", 9 | "publisher-place": "上海", 10 | "title": "著作名", 11 | "author": [ 12 | { 13 | "literal": "作者" 14 | } 15 | ], 16 | "issued": { 17 | "date-parts": [["2015"]] 18 | } 19 | }, 20 | { 21 | "id": "nf:02", 22 | "type": "article-journal", 23 | "container-title": "期刊名称", 24 | "issue": "11", 25 | "language": "zh-CN", 26 | "page": "35-50", 27 | "title": "文章标题", 28 | "author": [ 29 | { 30 | "literal": "作者1" 31 | }, 32 | { 33 | "literal": "作者2" 34 | }, 35 | { 36 | "literal": "作者3" 37 | }, 38 | { 39 | "literal": "作者4" 40 | } 41 | ], 42 | "issued": { 43 | "date-parts": [["2018"]] 44 | } 45 | }, 46 | { 47 | "id": "nf:03", 48 | "type": "thesis", 49 | "event-place": "城市", 50 | "language": "zh-CN", 51 | "publisher": "授予单位", 52 | "publisher-place": "城市", 53 | "title": "论文标题", 54 | "author": [ 55 | { 56 | "literal": "作者" 57 | } 58 | ], 59 | "issued": { 60 | "date-parts": [["2021"]] 61 | } 62 | }, 63 | { 64 | "id": "nf:04", 65 | "type": "article-journal", 66 | "abstract": "We study the effect of U.S. food aid on conflict in recipient countries. Our analysis exploits\ntime variation in food aid shipments due to changes in U.S. wheat production and cross-sectional\nvariation in a country's tendency to receive any U.S. food aid. According to our estimates, an\nincrease in U.S. food aid increases the incidence and duration of civil conflicts, but has no robust\neffect on inter-state conflicts or the onset of civil conflicts. We also provide suggestive evidence\nthat the effects are most pronounced in countries with a recent history of civil conflict.", 67 | "container-title": "American Economic Review", 68 | "DOI": "10.1257/aer.104.6.1630", 69 | "ISSN": "0002-8282", 70 | "issue": "6", 71 | "language": "en-US", 72 | "page": "1630-1666", 73 | "source": "www.aeaweb.org", 74 | "title": "US food aid and civil conflict", 75 | "URL": "https://www.aeaweb.org/articles?id=10.1257/aer.104.6.1630", 76 | "volume": "104", 77 | "author": [ 78 | { 79 | "family": "Nunn", 80 | "given": "Nathan" 81 | }, 82 | { 83 | "family": "Qian", 84 | "given": "Nancy" 85 | } 86 | ], 87 | "accessed": { 88 | "date-parts": [["2023", 7, 22]] 89 | }, 90 | "issued": { 91 | "date-parts": [["2014", 6]] 92 | } 93 | } 94 | ] 95 | -------------------------------------------------------------------------------- /src/新金融/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "新金融", 3 | "file": "新金融.csl", 4 | "style_class": "in-text", 5 | "title": "新金融", 6 | "id": "https://www.zotero-chinese.com/styles/新金融", 7 | "link_self": "https://www.zotero-chinese.com/styles/新金融", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "https://xjro.cbpt.cnki.net/WKC/WebPublication/wkList.aspx?columnID=eaf499e4-5e56-4b65-bf00-a5305c9c5eaf", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "social_science", 18 | "updated": "2025-04-19T23:05:39+08:00", 19 | "citations": "(作者,2015)
\n(作者1 等,2018)
\n(作者,2021)
\n(Nunn et al., 2014)
\n", 20 | "bibliography": "
\n
[1] 作者,2015.著作名.上海:上海人民出版社:50-51.
\n
[2] 作者,2021.论文标题.城市:授予单位.
\n
[3] 作者1,作者2,作者3,等,2018.文章标题.期刊名称(11):35-50.
\n
[4] NUNN N, QIAN N, 2014. US food aid and civil conflict. American Economic Review, 104(6): 1630-1666.
\n
", 21 | "tags": [ 22 | "姓名大写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/新闻与传播研究/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "新闻与传播研究", 3 | "file": "新闻与传播研究.csl", 4 | "style_class": "note", 5 | "title": "新闻与传播研究", 6 | "id": "https://www.zotero-chinese.com/styles/新闻与传播研究", 7 | "link_self": "https://www.zotero-chinese.com/styles/新闻与传播研究", 8 | "link_documentation": "http://www.xwycbyj.org/", 9 | "author": [ 10 | { 11 | "name": "Edward Zhou" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "communications", 17 | "summary": "根据fanzhen《历史研究》引文规范、pulipuli制作的APA中文格式以及《新闻与传播研究》引文规范改制,具体用法和特性见说明", 18 | "updated": "2024-06-06T13:18:48+08:00", 19 | "citations": "1 库恩,《科学革命的结构:第 4 版》2,金吾伦、胡新和译,北京:北京大学出版社,2012年。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年,第45–52页。
\n4 M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, Californiac1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期,第8–9页。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, pp. 326–329.
\n", 20 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,北京,2011年,第45–52页。
\n
库恩,《科学革命的结构:第 4 版》2,金吾伦、胡新和译,北京:北京大学出版社,2012年。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期,第8–9页。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n
M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, Californiac1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol. 510, 2014, pp. 356–362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/材料导报/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "材料导报", 3 | "file": "材料导报.csl", 4 | "style_class": "in-text", 5 | "title": "材料导报", 6 | "id": "https://www.zotero-chinese.com/styles/材料导报", 7 | "link_self": "https://www.zotero-chinese.com/styles/材料导报", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "link_documentation": "http://www.mat-rev.com/cldb/ch/common_item.aspx?parent_id=20140107045538001&menu_id=20180524023530008", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "chemistry", 18 | "summary": "《材料导报》研究论文(Research article)投稿模板.docx (2021-12-15);参考文献及人名著录格式要求.pdf (2021-12-14)", 19 | "updated": "2025-04-19T23:05:39+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
1\t2012 (in Chinese)\n
库恩. 科学革命的结构:第 4 版. 金吾伦, 胡新和, 译. 2 版. 北京大学出版社, 2012.
\n
\n
2\tFan X, Sommers C H. Food irradiation research and technology. 2nd ed. Blackwell Publishing, Ames, Iowa, 2013, pp. 25-26.
\n
3\t2011, pp. 45-52 (in Chinese)\n
贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究. 见: 中国图书馆学会年会论文集: 2011 年卷. 国家图书馆出版社, 2011, pp. 45-52.
\n
\n
4\tFourney M E. Advances in holographic photoelasticity. In: Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. ASME, New York, c1971, pp. 17-38.
\n
5\t2008, 33(5): 8-9 (in Chinese)\n
武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现. 测绘科学, 2008, 33(5): 8-9.
\n
\n
6\tMyburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis. Nature, 2014, 510: 356-362.
\n
7\t2012 (in Chinese)\n
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告. 2012.
\n
\n
8\tBawden D. Origins and concepts of digital literacy. 2008. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/林业科学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "林业科学", 3 | "file": "林业科学.csl", 4 | "style_class": "in-text", 5 | "title": "林业科学", 6 | "id": "https://www.zotero-chinese.com/styles/林业科学", 7 | "link_self": "https://www.zotero-chinese.com/styles/林业科学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "http://www.linyekexue.net/CN/column/column10.shtml", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "science", 18 | "summary": "《林业科学》征稿简则(2020年12月更新)", 19 | "updated": "2025-04-19T23:05:39+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney,c1971)
\n(贾东琴等,2011)
\n(Fan et al.,2013)
\n(武丽丽等,2008)
\n(Myburg et al.,2014)
\n(中国互联网络信息中心,2012;Bawden,2008)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平. 2011. 面向数字素养的高校图书馆数字服务体系研究//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.\n
(2011. 45-52.[in Chinese])
\n
\n
库恩. 2012. 科学革命的结构:第 4 版. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.\n
(2012.[in Chinese])
\n
\n
武丽丽, 华一新, 张亚军, 等. 2008. “北斗一号”监控管理网设计与实现. 测绘科学, 33(5): 8-9.\n
(2008. 33(5): 8-9.[in Chinese])
\n
\n
中国互联网络信息中心. 2012. 第 29 次中国互联网络发展状况统计报告.\n
(2012.[in Chinese])
\n
\n
Bawden D. 2008. Origins and concepts of digital literacy. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H. 2013. Food irradiation research and technology. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney M E. c1971. Advances in holographic photoelasticity//Symposium on Applications of Holography in Mechanics, 1971年8月23—25日, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. 2014. The genome of eucalyptus grandis. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/植物保护学报/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "zwbhxb.3.3:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "zwbhxb.3.3:02" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "zwbhxb.3.3:03" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "zwbhxb.3.3:04" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "zwbhxb.3.3:05" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "zwbhxb.3.3:06" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "zwbhxb.3.3:07" 35 | } 36 | ], 37 | [ 38 | { 39 | "id": "zwbhxb.3.3:08" 40 | } 41 | ], 42 | [ 43 | { 44 | "id": "zwbhxb.3.3:09" 45 | } 46 | ], 47 | [ 48 | { 49 | "id": "zwbhxb.3.3:10" 50 | } 51 | ], 52 | [ 53 | { 54 | "id": "zwbhxb.3.3:11" 55 | } 56 | ], 57 | [ 58 | { 59 | "id": "zwbhxb.3.3:10" 60 | }, 61 | { 62 | "id": "zwbhxb.3.3:08" 63 | } 64 | ] 65 | ] 66 | -------------------------------------------------------------------------------- /src/法学引注手册(多语言)/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "molc.0:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "molc.0:01", 10 | "locator": "18", 11 | "label": "page" 12 | } 13 | ], 14 | [ 15 | { 16 | "id": "molc.0:05" 17 | } 18 | ], 19 | [ 20 | { 21 | "id": "molc.0:06" 22 | } 23 | ], 24 | [ 25 | { 26 | "id": "molc.0:08" 27 | } 28 | ], 29 | [ 30 | { 31 | "id": "molc.0:13" 32 | } 33 | ], 34 | [ 35 | { 36 | "id": "molc.0:16" 37 | } 38 | ], 39 | [ 40 | { 41 | "id": "molc.0:17" 42 | } 43 | ], 44 | [ 45 | { 46 | "id": "molc.0:18", 47 | "locator": "737-738", 48 | "label": "page" 49 | } 50 | ], 51 | [ 52 | { 53 | "id": "molc.0:19" 54 | } 55 | ], 56 | [ 57 | { 58 | "id": "molc.0:20", 59 | "locator": "98", 60 | "label": "page" 61 | } 62 | ], 63 | [ 64 | { 65 | "id": "molc.82:01" 66 | } 67 | ], 68 | [ 69 | { 70 | "id": "molc.83:01-1" 71 | } 72 | ] 73 | ] 74 | -------------------------------------------------------------------------------- /src/法学引注手册(多语言,重复引用不省略)/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "molc.0:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "molc.0:01", 10 | "locator": "18", 11 | "label": "page" 12 | } 13 | ], 14 | [ 15 | { 16 | "id": "molc.0:05" 17 | } 18 | ], 19 | [ 20 | { 21 | "id": "molc.0:06" 22 | } 23 | ], 24 | [ 25 | { 26 | "id": "molc.0:08" 27 | } 28 | ], 29 | [ 30 | { 31 | "id": "molc.0:13" 32 | } 33 | ], 34 | [ 35 | { 36 | "id": "molc.0:16" 37 | } 38 | ], 39 | [ 40 | { 41 | "id": "molc.0:17" 42 | } 43 | ], 44 | [ 45 | { 46 | "id": "molc.0:18", 47 | "locator": "737-738", 48 | "label": "page" 49 | } 50 | ], 51 | [ 52 | { 53 | "id": "molc.0:19" 54 | } 55 | ], 56 | [ 57 | { 58 | "id": "molc.0:20", 59 | "locator": "98", 60 | "label": "page" 61 | } 62 | ], 63 | [ 64 | { 65 | "id": "molc.82:01" 66 | } 67 | ], 68 | [ 69 | { 70 | "id": "molc.83:01-1" 71 | } 72 | ] 73 | ] 74 | -------------------------------------------------------------------------------- /src/浙江大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "浙江大学", 3 | "file": "浙江大学.csl", 4 | "style_class": "in-text", 5 | "title": "浙江大学", 6 | "id": "https://www.zotero-chinese.com/styles/浙江大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/浙江大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "http://grs.zju.edu.cn/redir.php?catalog_id=10038&object_id=12782", 10 | "author": [ 11 | { 12 | "name": "yc" 13 | } 14 | ], 15 | "contributor": [ 16 | { 17 | "name": "韩小土" 18 | }, 19 | { 20 | "name": "Zeping Lee" 21 | } 22 | ], 23 | "citation_format": "author-date", 24 | "field": "generic-base", 25 | "updated": "2025-04-19T15:30:01+08:00", 26 | "citations": "(库恩,2012)
\n(Fourney, c1971)
\n(贾东琴、柯平,2011)
\n(Fan & Sommers, 2013)
\n(武丽丽等,2008)
\n(Myburg et al., 2014)
\n(Bawden, 2008; 中国互联网络信息中心,2012)
\n", 27 | "bibliography": "
\n
Bawden D. Origins and concepts of digital literacy[EB](2008-05-04).
\n
Fan X, Sommers C H. Food irradiation research and technology[M]. 2 edition. Ames, Iowa: Blackwell Publishing, 2013. 25–26.
\n
Fourney M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics. New York: ASME, c1971. 17–38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356–362.
\n
贾东琴,柯平. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会, 编//中国图书馆学会年会论文集. 北京: 国家图书馆出版社,2011. 45–52.
\n
库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社,2012. .
\n
武丽丽,华一新,张亚军,等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8–9.
\n
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. .
\n
", 28 | "tags": [ 29 | "姓名小写", 30 | "有标题", 31 | "期刊全称", 32 | "无URL", 33 | "无DOI" 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /src/海洋与湖沼/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "海洋与湖沼", 3 | "file": "海洋与湖沼.csl", 4 | "style_class": "in-text", 5 | "title": "海洋与湖沼", 6 | "id": "https://www.zotero-chinese.com/styles/海洋与湖沼", 7 | "link_self": "https://www.zotero-chinese.com/styles/海洋与湖沼", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,无URL、DOI)", 9 | "link_documentation": "https://std.samr.gov.cn/gb/search/gbDetailed?id=71F772D8055ED3A7E05397BE0A0AB82A", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "geography", 18 | "summary": "海洋与湖沼参考文献格式模板-2021-11-19.pdf", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴等, 2011)
\n(Fan et al, 2013)
\n(武丽丽等, 2008)
\n(Myburg et al, 2014)
\n(Bawden, 2008; 中国互联网络信息中心, 2012)
\n", 21 | "bibliography": "
\n
中国互联网络信息中心, 2012. 第 29 次中国互联网络发展状况统计报告[R].
\n
库恩, 2012. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等, 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 33(5): 8-9.
\n
贾东琴, 柯平, 2011. 面向数字素养的高校图书馆数字服务体系研究[C] //中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.
\n
BAWDEN D, 2008. Origins and concepts of digital literacy [EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
FAN X, SOMMERS C H, 2013. Food Irradiation Research and Technology [M]. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
FOURNEY M E, c1971. Advances in holographic photoelasticity [C] // Symposium on Applications of Holography in Mechanics, August 23—25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
MYBURG A A, GRATTAPAGLIA D, TUSKAN G A, et al, 2014. The genome of eucalyptus grandis [J]. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名大写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/清华大学(著者-出版年)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "清华大学(著者-出版年)", 3 | "file": "清华大学(著者-出版年).csl", 4 | "style_class": "in-text", 5 | "title": "清华大学(著者-出版年)", 6 | "id": "https://www.zotero-chinese.com/styles/清华大学(著者-出版年)", 7 | "link_self": "https://www.zotero-chinese.com/styles/清华大学(著者-出版年)", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "http://yjsy.cic.tsinghua.edu.cn/docinfo/board/boarddetail.jsp?columnId=001050603&parentColumnId=0010506&itemSeq=5365", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "清华大学研究生学位论文写作指南(2023 年 3 月)", 19 | "updated": "2025-04-19T15:30:01+08:00", 20 | "citations": "(汪冰, 1997)
\n(杨宗英, 1996)
\n(Baker et al., 1995)
\n(Crane, 1972)
\n(Jha et al., 2004)
\n(Kennedy et al., 1975)
\n(Stieg, 1981)
\n", 21 | "bibliography": "
\n
汪冰, 1997. 电子图书馆理论与实践研究[M]. 北京: 北京图书馆出版社: 16.
\n
杨宗英, 1996. 电子图书馆的现实模型[J]. 中国图书馆学报(2): 24-29.
\n
Baker S K, Jackson M E, 1995. The future of resource sharing[M]. New York: The Haworth Press.
\n
Crane D, 1972. Invisible college[M]. Chicago: Univ. of Chicago Press.
\n
Jha M, Gassman P W, Secchi S, et al., 2004. Effect of watershed subdivision on SWAT flow, sediment, and nutrient predictions[J]. JAWRA Journal of the American Water Resources Association, 40(3): 811-825.
\n
Kennedy W J, Garrison R E, 1975. Morphology and genesis of nodular chalks and hardgrounds in the Upper Cretaceous of southern England[J]. Sedimentology, 22: 311.
\n
Stieg M F, 1981. The information needs of historians[J]. College & Research Libraries, 42(6): 549-560.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/湖南师范大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "湖南师范大学", 3 | "file": "湖南师范大学.csl", 4 | "style_class": "in-text", 5 | "title": "湖南师范大学", 6 | "id": "https://www.zotero-chinese.com/styles/湖南师范大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/湖南师范大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2005(顺序编码,双语)", 9 | "link_documentation": "https://yjsy.hunnu.edu.cn/__local/3/04/8A/26688DAF90A1EDD477ADBE21D15_88680BF7_56B1F.pdf", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "generic-base", 18 | "summary": "湖南师范大学研究生学位论文的撰写格式(处发〔2006〕42 号)", 19 | "updated": "2025-01-08T17:10:42+08:00", 20 | "citations": "[1-6]", 21 | "bibliography": "
\n
\n
[1]
夏鲁惠. 高等学校毕业设计(论文)教学情况调研报告[J]. 高等理科教育, 2004(1): 46-48, 52.
\n
\n
\n
[2]
Heider, E.R. & D.C. Olivier. The structure of the color space in naming and memory for two languages [J]. Cognitive Psychology, 1972, 3(2): 337-354.
\n
\n
\n
[3]
伍蠡甫. 西方文论选[M]. 上海: 上海译文出版社, 1979: 12-17.
\n
\n
\n
[4]
张筑生. 微分半动力系统的不变集[D]. 北京: 北京大学数学系数学研究所, 1983: 1-7.
\n
\n
\n
[5]
冯西桥, 何树延. 核反应堆管道和压力容器的LBB分析[R]. 北京: 清华大学核能技术设计研究院, 1998: 9-10.
\n
\n
\n
[6]
GB/T 16159—1996, 汉语拼音正词法基本规则[S].
\n
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/澳門科技大學/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "must.1:1" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "must.1:2" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "must.2:1" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "must.2:2" 20 | } 21 | ], 22 | [ 23 | { 24 | "id": "must.3:1" 25 | } 26 | ], 27 | [ 28 | { 29 | "id": "must.3:2" 30 | } 31 | ], 32 | [ 33 | { 34 | "id": "must.4:1" 35 | } 36 | ], 37 | [ 38 | { 39 | "id": "must.4:2" 40 | } 41 | ], 42 | [ 43 | { 44 | "id": "must.5:1" 45 | } 46 | ], 47 | [ 48 | { 49 | "id": "must.5:1" 50 | } 51 | ], 52 | [ 53 | { 54 | "id": "must.5:2" 55 | } 56 | ], 57 | [ 58 | { 59 | "id": "must.1:1" 60 | }, 61 | { 62 | "id": "must.1:2" 63 | }, 64 | { 65 | "id": "must.2:1" 66 | }, 67 | { 68 | "id": "must.2:2" 69 | }, 70 | { 71 | "id": "must.3:1" 72 | }, 73 | { 74 | "id": "must.3:2" 75 | }, 76 | { 77 | "id": "must.4:1" 78 | }, 79 | { 80 | "id": "must.4:2" 81 | }, 82 | { 83 | "id": "must.5:1" 84 | }, 85 | { 86 | "id": "must.5:2" 87 | } 88 | ] 89 | ] 90 | -------------------------------------------------------------------------------- /src/环境昆虫学报/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "环境昆虫学报", 3 | "file": "环境昆虫学报.csl", 4 | "style_class": "in-text", 5 | "title": "环境昆虫学报", 6 | "id": "https://www.zotero-chinese.com/styles/环境昆虫学报", 7 | "link_self": "https://www.zotero-chinese.com/styles/环境昆虫学报", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "http://hjkcxb.alljournals.net/ch/reader/view_news.aspx?id=20210310162535001", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "biology", 18 | "summary": "《环境昆虫学报》文章写作格式模板.pdf", 19 | "updated": "2025-04-19T23:05:40+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney, c1971)
\n(贾东琴和柯平,2011)
\n(Fan and Sommers, 2013)
\n(武丽丽等,2008)
\n(Myburg et al., 2014)
\n(Bawden, 2008; 中国互联网络信息中心,2012)
\n", 21 | "bibliography": "
\n
[C]. 2011: 45-52.[贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]. 见: 中国图书馆学会, 主编. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社, 2011: 45-52]
\n
[M]. 2012.[库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012]
\n
[J]. 2008, 33(5): 8-9.[武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9]
\n
[R]. 2012.[中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012]
\n
Bawden D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers CH. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
Fourney ME. Advances in holographic photoelasticity[C]. In: Symposium on Applications of Holography in Mechanics, 1971年8月23—25日, University of Southern California, Los Angeles, California. New York: ASME, c1971: 17-38.
\n
Myburg AA, Grattapaglia D, Tuskan GA, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/现代国际关系/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "现代国际关系", 3 | "file": "现代国际关系.csl", 4 | "style_class": "note", 5 | "title": "现代国际关系", 6 | "id": "https://www.zotero-chinese.com/styles/现代国际关系", 7 | "link_self": "https://www.zotero-chinese.com/styles/现代国际关系", 8 | "author": [ 9 | { 10 | "name": "Edward Zhou" 11 | } 12 | ], 13 | "contributor": [], 14 | "citation_format": "note", 15 | "field": "political_science", 16 | "summary": "根据fanzhen《历史研究》引文规范、pulipuli制作的APA中文格式以及《现代国际关系》引文规范改制,具体用法和特性见说明", 17 | "updated": "2024-06-06T13:18:48+08:00", 18 | "citations": "1 库恩著,金吾伦、胡新和译:《科学革命的结构:第 4 版》2,北京大学出版社,2012年。
\n2 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n3 贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,2011年,第45–52页。
\n4 M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n5 武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》,2008年第5期,第8–9页。
\n6 Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol.510, 2014, pp. 356–362.
\n7 Ibid.
\n8 Ibid., p. 357.
\n9 Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, pp. 326–329.
\n", 19 | "bibliography": "
\n
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,2011年,第45–52页。
\n
库恩著,金吾伦、胡新和译:《科学革命的结构:第 4 版》2,北京大学出版社,2012年。
\n
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》,2008年第5期,第8–9页。
\n
Xuetong Fan and Christopher H. Sommers, Food irradiation research and technology, Ames, Iowa: Blackwell Publishing, 2013.
\n
M. E. Fourney, “Advances in holographic photoelasticity,” University of Southern California, Los Angeles, California, c1971, pp. 17–38.
\n
Alexander A. Myburg et al., “The genome of eucalyptus grandis,” Nature, Vol.510, 2014, pp. 356–362.
\n
", 20 | "tags": [ 21 | "姓名小写", 22 | "有标题", 23 | "期刊全称", 24 | "无URL", 25 | "无DOI" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /src/电子科技大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "电子科技大学", 3 | "file": "电子科技大学.csl", 4 | "style_class": "in-text", 5 | "title": "电子科技大学", 6 | "id": "https://www.zotero-chinese.com/styles/电子科技大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/电子科技大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/暨南大学", 9 | "link_documentation": "https://gr.uestc.edu.cn/xiazai/114/3917/", 10 | "author": [ 11 | { 12 | "name": "不秃燃的小老弟" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "generic-base", 18 | "updated": "2025-01-08T17:35:37+08:00", 19 | "citations": "[1-8]", 20 | "bibliography": "
\n
\n
[1]
库恩. 科学革命的结构:第 4 版[M]. 2. 北京: 北京大学出版社, 2012.
\n
\n
\n
[2]
Fan X, Sommers C H. Food irradiation research and technology[M]. 2. Ames, Iowa: Blackwell Publishing, 2013.
\n
\n
\n
[3]
贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会年会论文集, 北京, 2011: 45-52.
\n
\n
\n
[4]
Fourney M E. Advances in holographic photoelasticity[C]. Symposium on Applications of Holography in Mechanics, New York, c1971: 17-38.
\n
\n
\n
[5]
武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.
\n
\n
\n
[6]
Myburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
\n
\n
[7]
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.
\n
\n
\n
[8]
Bawden D. Origins and concepts of digital literacy[EB/OL](2008-05-04).
\n
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/石河子大学(著者-出版年)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "石河子大学(著者-出版年)", 3 | "file": "石河子大学(著者-出版年).csl", 4 | "style_class": "in-text", 5 | "title": "石河子大学(著者-出版年)", 6 | "id": "https://www.zotero-chinese.com/styles/石河子大学(著者-出版年)", 7 | "link_self": "https://www.zotero-chinese.com/styles/石河子大学(著者-出版年)", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2005(著者-出版年,双语,姓名不大写,无URL)", 9 | "link_documentation": "https://yjsh.shzu.edu.cn/2021/0315/c9076a154304/page.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "石河子大学学位论文格式要求与写作规范(2021-09-01,a石大校办发〔2021〕25号)", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney, c1971)
\n(贾东琴和柯平,2011)
\n(Fan & Sommers, 2013)
\n(武丽丽 等,2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心,2012; Bawden, 2008)
\n", 21 | "bibliography": "
\n
贾东琴,柯平.2011.面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会.中国图书馆学会年会论文集:2011 年卷.北京:国家图书馆出版社:45-52.
\n
库恩.2012.科学革命的结构:第 4 版[M].金吾伦,胡新和,译.2 版.北京:北京大学出版社.
\n
武丽丽,华一新,张亚军,等.2008.“北斗一号”监控管理网设计与实现[J].测绘科学,33(5):8-9.
\n
中国互联网络信息中心.2012.第 29 次中国互联网络发展状况统计报告[R].2012.
\n
Bawden D. 2008. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H. 2013. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney M E. c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. 2014. The genome of eucalyptus grandis[J]. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/福建农林大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "福建农林大学", 3 | "file": "福建农林大学.csl", 4 | "style_class": "in-text", 5 | "title": "福建农林大学", 6 | "id": "https://www.zotero-chinese.com/styles/福建农林大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/福建农林大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/暨南大学", 9 | "link_documentation": "https://yjsy.fafu.edu.cn/fa/05/c8301a195077/page.htm", 10 | "author": [ 11 | { 12 | "name": "不秃燃的小老弟" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "generic-base", 18 | "updated": "2025-01-08T17:44:54+08:00", 19 | "citations": "[1-8]", 20 | "bibliography": "
\n
\n
[1]
库恩. 科学革命的结构:第 4 版[M]. 北京: 北京大学出版社, 2012.
\n
\n
\n
[2]
Fan X, Sommers C H. Food irradiation research and technology[M]. Ames, Iowa: Blackwell Publishing, 2013.
\n
\n
\n
[3]
贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会年会论文集. 北京: 国家图书馆出版社, 2011: 45-52.
\n
\n
\n
[4]
Fourney M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics. New York: ASME, c1971: 17-38.
\n
\n
\n
[5]
武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.
\n
\n
\n
[6]
Myburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
\n
\n
[7]
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.
\n
\n
\n
[8]
Bawden D. Origins and concepts of digital literacy[EB/OL](2008-05-04).
\n
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/管理世界/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "jmw.8.2.1.1:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "jmw.8.2.1.2:01" 10 | } 11 | ], 12 | [ 13 | { 14 | "id": "jmw.8.2.1.3:01" 15 | } 16 | ], 17 | [ 18 | { 19 | "id": "jmw.8.2.1.1:01" 20 | }, 21 | { 22 | "id": "jmw.8.2.1.2:01" 23 | }, 24 | { 25 | "id": "jmw.8.2.1.3:01" 26 | } 27 | ], 28 | [ 29 | { 30 | "id": "jmw.8.2.1.4:01" 31 | } 32 | ], 33 | [ 34 | { 35 | "id": "jmw.8.2.1.5:01" 36 | } 37 | ], 38 | [ 39 | { 40 | "id": "jmw.8.2.1.6:01" 41 | } 42 | ], 43 | [ 44 | { 45 | "id": "jmw.8.2.2.1:01" 46 | } 47 | ], 48 | [ 49 | { 50 | "id": "jmw.8.2.2.2:01" 51 | } 52 | ], 53 | [ 54 | { 55 | "id": "jmw.8.2.2.3:01" 56 | } 57 | ], 58 | [ 59 | { 60 | "id": "jmw.8.2.2.1:01" 61 | }, 62 | { 63 | "id": "jmw.8.2.2.2:01" 64 | }, 65 | { 66 | "id": "jmw.8.2.2.3:01" 67 | } 68 | ], 69 | [ 70 | { 71 | "id": "jmw.8.2.2.4:01" 72 | } 73 | ], 74 | [ 75 | { 76 | "id": "jmw.8.2.2.5:01" 77 | } 78 | ], 79 | [ 80 | { 81 | "id": "jmw.8.2.2.6:01" 82 | } 83 | ], 84 | [ 85 | { 86 | "id": "jmw.9:04" 87 | } 88 | ] 89 | ] 90 | -------------------------------------------------------------------------------- /src/系统工程理论与实践/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "系统工程理论与实践", 3 | "file": "系统工程理论与实践.csl", 4 | "style_class": "in-text", 5 | "title": "系统工程理论与实践", 6 | "id": "https://www.zotero-chinese.com/styles/系统工程理论与实践", 7 | "link_self": "https://www.zotero-chinese.com/styles/系统工程理论与实践", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2005(顺序编码,双语,姓名不大写,无URL)", 9 | "link_documentation": "https://sysengi.cjoe.ac.cn/CN/column/item55.shtml", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "engineering", 18 | "summary": "《系统工程理论与实践》格式规范", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "[1-8]", 21 | "bibliography": "
\n
[1]\t库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.\n
[M]. 2012.
\n
\n
[2]\tFan X, Sommers C H. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
[3]\t贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社, 2011: 45-52.\n
[C]. 2011: 45-52.
\n
\n
[4]\tFourney M E. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–[25, ]1971, University of Southern California, Los Angeles, California. New York: ASME, c1971: 17-38.
\n
[5]\t武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.\n
[J]. 2008, 33(5): 8-9.
\n
\n
[6]\tMyburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
[7]\t中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.\n
[R]. 2012.
\n
\n
[8]\tBawden D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/经济学(季刊)/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "ceq.5.4:1", 5 | "locator": "66", 6 | "label": "page", 7 | "author-only": true 8 | } 9 | ], 10 | [ 11 | { 12 | "id": "ceq.5.4:1", 13 | "locator": "66", 14 | "label": "page", 15 | "suppress-author": true 16 | } 17 | ], 18 | [ 19 | { 20 | "id": "ceq.5.4:2", 21 | "locator": "53", 22 | "label": "page" 23 | } 24 | ], 25 | [ 26 | { 27 | "id": "ceq.5.5:1" 28 | } 29 | ], 30 | [ 31 | { 32 | "id": "ceq.5.5:2" 33 | } 34 | ], 35 | [ 36 | { 37 | "id": "ceq.5.5:3" 38 | } 39 | ], 40 | [ 41 | { 42 | "id": "ceq.5.5:4" 43 | } 44 | ] 45 | ] 46 | -------------------------------------------------------------------------------- /src/经济学(季刊)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "经济学(季刊)", 3 | "file": "经济学(季刊).csl", 4 | "style_class": "in-text", 5 | "title": "经济学(季刊)", 6 | "id": "https://www.zotero-chinese.com/styles/经济学(季刊)", 7 | "link_self": "https://www.zotero-chinese.com/styles/经济学(季刊)", 8 | "link_documentation": "https://www.nsd.pku.edu.cn/cbw/jjxjk/tgzg/250625.htm", 9 | "author": [ 10 | { 11 | "name": "Zeping Lee" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "author-date", 16 | "field": "social_science", 17 | "summary": "1. 样式的默认语言为英文。其他语言的文献需要在 `language` 字段填写对应的语言代码(如 `zh-CN`);2. CSL 无法实现要求的中英文混排。", 18 | "updated": "2025-01-18T20:26:04+08:00", 19 | "citations": "Black
\n(1948: pp.66)
\n(吉登斯,2000:第53页)
\n(布伦纳,1999)
\n(Ahmad and Wang, 1991)
\n(Riskin et al., 2001)
\n(王美今和张松,2000)
\n", 20 | "bibliography": "
\n
\n
[1]
布伦纳,“中国农村财产分配的重新考察”,载赵人伟、李实、李思勤主编《中国居民收入分配再研究》。北京:中国财政经济出版社,1999年。
\n
\n
\n
[2]
吉登斯,《现代性的后果》。译林出版社,2000年。
\n
\n
\n
[3]
王美今、张松,“中国新股弱势问题研究”,《经济研究》,2000年第9期,第49–56页。
\n
\n
\n
[4]
Ahmad, E., and Y. Wang, “Inequality and Poverty in China: Institutional Change and Public Policy, 1978 to 1988”, The World Bank Economic Review, 1991, 5(2), 231-257.
\n
\n
\n
[5]
Black, D., His Anonymous Life. 1948.
\n
\n
\n
[6]
Riskin, C., R. Zhao, and S. Li, China’s Retreat from Equality: Income Distribution and Economic Transition. New York: M.E. Sharpe, 2001.
\n
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/经济社会体制比较/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "经济社会体制比较", 3 | "file": "经济社会体制比较.csl", 4 | "style_class": "in-text", 5 | "title": "经济社会体制比较", 6 | "id": "https://www.zotero-chinese.com/styles/经济社会体制比较", 7 | "link_self": "https://www.zotero-chinese.com/styles/经济社会体制比较", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "http://cbimg.cnki.net/Editor/2020/0104/jjsh/1f0afb13-dc6b-4146-aa25-d887ba180ea6.docx", 10 | "author": [ 11 | { 12 | "name": "韩小土" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "social_science", 18 | "summary": "comparative economic and social systems author-date style", 19 | "updated": "2025-04-19T15:30:01+08:00", 20 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴和柯平, 2011)
\n(Fan & Sommers, 2013)
\n(武丽丽等, 2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心, 2012; Bawden, 2008)
\n", 21 | "bibliography": "
\n
Bawden D., 2008. “Origins and concepts of digital literacy.”(2008-05-04)[2013-03-08].
\n
Fan X. & Sommers C.H., 2013. “Food irradiation research and technology.”. 2 edition. Ames, Iowa: Blackwell Publishing: 25–26[2014-06-26].
\n
Fourney M.E., c1971. “Advances in holographic photoelasticity.”//Symposium on Applications of Holography in Mechanics  New York: ASME: 17–38.
\n
Myburg A.A., Grattapaglia D., Tuskan G.A., et al., 2014. “The genome of eucalyptus grandis.” Nature. 510: 356–362[2014-06-25].
\n
贾东琴、柯平, 2011:“面向数字素养的高校图书馆数字服务体系研究”. 中国图书馆学会, 编//《中国图书馆学会年会论文集》北京: 国家图书馆出版社: 45–52。
\n
库恩, 2012:“科学革命的结构:第 4 版”. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社。
\n
武丽丽、华一新、张亚军等, 2008:“‘北斗一号’监控管理网设计与实现”,《测绘科学》,2008, 5: 8–9[2009-10-25]。
\n
中国互联网络信息中心, 2012:“第 29 次中国互联网络发展状况统计报告”. [2013-03-26]。
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/经济管理/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "经济管理", 3 | "file": "经济管理.csl", 4 | "style_class": "in-text", 5 | "title": "经济管理", 6 | "id": "https://www.zotero-chinese.com/styles/经济管理", 7 | "link_self": "https://www.zotero-chinese.com/styles/经济管理", 8 | "link_documentation": "https://jjgl.ajcass.com/CommonBlock/GetSiteDescribeDetail/12118?channelID=12118", 9 | "author": [ 10 | { 11 | "name": "韩小土" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "numeric", 16 | "field": "social_science", 17 | "summary": "《经济管理》投稿指南(2022年修订)", 18 | "updated": "2025-01-18T20:26:04+08:00", 19 | "citations": "(Bawden, 2008)[8](Fan & Sommers, 2013)[2](Fourney, c1971)[4](Myburg等, 2014)[6](中国互联网络信息中心, 2012)[7](库恩, 2012)[1](武丽丽等, 2008)[5](贾东琴和柯平, 2011)[3]", 20 | "bibliography": "
\n
[1] 库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
[2] Fan X. and C. H. Sommers. Food Irradiation Research and Technology[M]. 2 edition. Ames, Iowa: Blackwell Publishing, 2013: 25–26[2014-06-26].
\n
[3] 贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会, 编//中国图书馆学会年会论文集. 2011, 2011 年卷: 45–52北京: 国家图书馆出版社, 2011: 45–52.
\n
[4] Fourney M. E. Advances in Holographic Photoelasticity[C]//Symposium on Applications of Holography in Mechanics. c1971: 17–38New York: ASME, c1971: 17–38.
\n
[5] 武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8–9[2009-10-25].
\n
[6] Myburg A. A., D. Grattapaglia, G. A. Tuskan, et al. The Genome of Eucalyptus Grandis[J]. Nature, 2014, 510: 356–362[2014-06-25].
\n
[7] 中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. [2013-03-26].
\n
[8] Bawden D. Origins and Concepts of Digital Literacy[EB](2008-05-04)[2013-03-08].
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/综合性期刊文献引证技术规范(著者—出版年)/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "cscj.2:1", 5 | "label": "page", 6 | "locator": "110" 7 | } 8 | ], 9 | [ 10 | { 11 | "id": "cscj.2:7", 12 | "label": "chapter", 13 | "locator": "第5章" 14 | }, 15 | { 16 | "id": "cscj.2:8", 17 | "label": "page", 18 | "locator": "233-245、272-278" 19 | } 20 | ], 21 | [ 22 | { 23 | "id": "cscj.2:2", 24 | "label": "page", 25 | "locator": "438" 26 | } 27 | ], 28 | [ 29 | { 30 | "id": "cscj.2:3", 31 | "label": "page", 32 | "locator": "56" 33 | } 34 | ], 35 | [ 36 | { 37 | "id": "cscj.2:4" 38 | } 39 | ], 40 | [ 41 | { 42 | "id": "cscj.2:5" 43 | } 44 | ], 45 | [ 46 | { 47 | "id": "cscj.2:6", 48 | "label": "page", 49 | "locator": "131-188" 50 | } 51 | ], 52 | [ 53 | { 54 | "id": "cscj.2:9", 55 | "prefix": "转引自", 56 | "label": "page", 57 | "locator": "83" 58 | } 59 | ], 60 | [ 61 | { 62 | "id": "cscj.2:10" 63 | } 64 | ], 65 | [ 66 | { 67 | "id": "cscj.2:11" 68 | } 69 | ], 70 | [ 71 | { 72 | "id": "cscj.2:12" 73 | } 74 | ] 75 | ] 76 | -------------------------------------------------------------------------------- /src/考古/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "考古", 3 | "file": "考古.csl", 4 | "style_class": "in-text", 5 | "title": "考古", 6 | "id": "https://www.zotero-chinese.com/styles/考古", 7 | "link_self": "https://www.zotero-chinese.com/styles/考古", 8 | "link_template": "https://www.zotero-chinese.com/styles/管理世界", 9 | "link_documentation": "https://kgzzs.ajcass.com/", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "anthropology", 18 | "updated": "2024-12-25T17:59:36+08:00", 19 | "citations": "[1-8]", 20 | "bibliography": "
\n
\n
[1]
库恩:《科学革命的结构:第 4 版》,北京大学出版社,2012年。
\n
\n
\n
[2]
Fan, X. and Sommers, C. H., 2013, Food Irradiation Research and Technology, Ames, Iowa: Blackwell Publishing.
\n
\n
\n
[3]
贾东琴、柯平:《面向数字素养的高校图书馆数字服务体系研究》,见中国图书馆学会主编:《中国图书馆学会年会论文集》,国家图书馆出版社,2011年。
\n
\n
\n
[4]
Fourney, M. E., c1971, “Advances in Holographic Photoelasticity”, in Symposium on Applications of Holography in Mechanics, New York: ASME.
\n
\n
\n
[5]
武丽丽等:《“北斗一号”监控管理网设计与实现》,《测绘科学》2008年第5期。
\n
\n
\n
[6]
Myburg, A. A. et al., 2014, “The Genome of Eucalyptus Grandis”, Nature, vol.510, pp.356–362.
\n
\n
\n
[7]
中国互联网络信息中心:《第 29 次中国互联网络发展状况统计报告》,2012年。
\n
\n
\n
[8]
Bawden, D., 2008, Origins and Concepts of Digital Literacy.
\n
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/臺大中文學報/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "bdclntu.1.1:1", 5 | "label": "page", 6 | "locator": "102" 7 | } 8 | ], 9 | [ 10 | { 11 | "id": "bdclntu.1.2.1:1" 12 | } 13 | ], 14 | [ 15 | { 16 | "id": "bdclntu.1.2.2:1" 17 | } 18 | ], 19 | [ 20 | { 21 | "id": "bdclntu.1.2.2:2" 22 | } 23 | ], 24 | [ 25 | { 26 | "id": "bdclntu.1.2.3:1", 27 | "label": "page", 28 | "locator": "466" 29 | } 30 | ], 31 | [ 32 | { 33 | "id": "bdclntu.1.3.1:1", 34 | "label": "page", 35 | "locator": "2 上" 36 | } 37 | ], 38 | [ 39 | { 40 | "id": "bdclntu.1.3.2:1", 41 | "label": "page", 42 | "locator": "2 上" 43 | } 44 | ], 45 | [ 46 | { 47 | "id": "bdclntu.1.4:1" 48 | } 49 | ], 50 | [ 51 | { 52 | "id": "bdclntu.1.5:1", 53 | "label": "page", 54 | "locator": "1" 55 | } 56 | ], 57 | [ 58 | { 59 | "id": "bdclntu.1.5:1", 60 | "label": "page", 61 | "locator": "3" 62 | } 63 | ], 64 | [ 65 | { 66 | "id": "bdclntu.2.1:1", 67 | "label": "page", 68 | "locator": "18" 69 | } 70 | ], 71 | [ 72 | { 73 | "id": "bdclntu.2.2.1:1" 74 | } 75 | ], 76 | [ 77 | { 78 | "id": "bdclntu.2.2.2:1" 79 | } 80 | ], 81 | [ 82 | { 83 | "id": "bdclntu.2.2.3:1", 84 | "label": "page", 85 | "locator": "18" 86 | } 87 | ], 88 | [ 89 | { 90 | "id": "bdclntu.2.2.4:1" 91 | } 92 | ], 93 | [ 94 | { 95 | "id": "bdclntu.3:1", 96 | "label": "page", 97 | "locator": "164-166、170-171", 98 | "prefix": "見" 99 | } 100 | ], 101 | [ 102 | { 103 | "id": "bdclntu.3:2", 104 | "label": "page", 105 | "locator": "3 上", 106 | "prefix": "見" 107 | } 108 | ] 109 | ] 110 | -------------------------------------------------------------------------------- /src/西北工业大学/items.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "nwpu.07:13", 4 | "type": "patent", 5 | "event-place": "中国", 6 | "language": "zh-CN", 7 | "number": "88105607.3", 8 | "publisher-place": "中国", 9 | "title": "一种温热外敷药制备方案", 10 | "author": [ 11 | { 12 | "literal": "姜锡洲" 13 | } 14 | ], 15 | "accessed": { 16 | "date-parts": [["2017", 4, 2]] 17 | }, 18 | "issued": { 19 | "date-parts": [["1989", 7, 26]] 20 | } 21 | }, 22 | { 23 | "id": "nwpu.08:14", 24 | "type": "standard", 25 | "event-place": "北京", 26 | "language": "zh-CN", 27 | "number": "GB/T 16159—1996", 28 | "publisher": "中国标准出版社", 29 | "publisher-place": "北京", 30 | "title": "汉语拼音正词法基本规则", 31 | "issued": { 32 | "date-parts": [["1996"]] 33 | } 34 | }, 35 | { 36 | "id": "nwpu.09:15", 37 | "type": "legislation", 38 | "language": "zh-CN", 39 | "note": "type: regulation", 40 | "title": "科学技术期刊管理办法", 41 | "author": [ 42 | { 43 | "literal": "中华人民共和国科学技术委员会" 44 | } 45 | ], 46 | "issued": { 47 | "date-parts": [["1991", 6, 5]] 48 | } 49 | } 50 | ] 51 | -------------------------------------------------------------------------------- /src/西北工业大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "西北工业大学", 3 | "file": "西北工业大学.csl", 4 | "style_class": "in-text", 5 | "title": "西北工业大学", 6 | "id": "https://www.zotero-chinese.com/styles/西北工业大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/西北工业大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "link_documentation": "https://gs.nwpu.edu.cn/info/2283/15345.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "generic-base", 18 | "summary": "西北工业大学研究生学位论文", 19 | "updated": "2025-04-19T23:05:38+08:00", 20 | "citations": "[1-3]", 21 | "bibliography": "
\n
\n
[1]
姜锡洲. 一种温热外敷药制备方案[P]. 中国专利: 88105607.3, 1989-07-26.
\n
\n
\n
[2]
GB/T 16159—1996, 汉语拼音正词法基本规则[S].
\n
\n
\n
[3]
中华人民共和国科学技术委员会. 科学技术期刊管理办法[A]. 1991-06-05.
\n
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/西南交通大学(著者-出版年)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "西南交通大学(著者-出版年)", 3 | "file": "西南交通大学(著者-出版年).csl", 4 | "style_class": "in-text", 5 | "title": "西南交通大学(著者-出版年)", 6 | "id": "https://www.zotero-chinese.com/styles/西南交通大学(著者-出版年)", 7 | "link_self": "https://www.zotero-chinese.com/styles/西南交通大学(著者-出版年)", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "https://gsnews.swjtu.edu.cn/info/1967/25444.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "西南交通大学研究生学位论文撰写范式(2024年8月修订)", 19 | "updated": "2025-04-19T23:05:40+08:00", 20 | "citations": "(库恩,2012)
\n(Fourney, c1971)
\n(贾东琴 等,2011)
\n(Fan et al., 2013)
\n(武丽丽 等,2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心,2012;Bawden, 2008)
\n", 21 | "bibliography": "
\n
贾东琴, 柯平. 2011. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.
\n
库恩. 2012. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽, 华一新, 张亚军, 等. 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 33(5): 8-9.
\n
中国互联网络信息中心. 2012. 第 29 次中国互联网络发展状况统计报告[R].
\n
Bawden D. 2008. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan X, Sommers C H. 2013. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney M E. c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. 2014. The genome of eucalyptus grandis[J]. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/西南大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "西南大学", 3 | "file": "西南大学.csl", 4 | "style_class": "in-text", 5 | "title": "西南大学", 6 | "id": "https://www.zotero-chinese.com/styles/西南大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/西南大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语)", 9 | "link_documentation": "http://pgs.swu.edu.cn/viscms/pgsidex/xiazaiqu2384/20210121/520434.html", 10 | "author": [ 11 | { 12 | "name": "洋芋" 13 | } 14 | ], 15 | "contributor": [ 16 | { 17 | "name": "韩小土" 18 | }, 19 | { 20 | "name": "Zeping Lee" 21 | } 22 | ], 23 | "citation_format": "author-date", 24 | "field": "generic-base", 25 | "updated": "2025-04-19T15:30:01+08:00", 26 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴和柯平, 2011)
\n(Fan & Sommers, 2013)
\n(武丽丽等, 2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心, 2012; Bawden, 2008)
\n", 27 | "bibliography": "
\n
贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[C]. 中国图书馆学会, 编. 北京: 国家图书馆出版社, 2011: 45-522011, 2011 年卷: 45-52.
\n
库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J/OL]. 测绘科学, 2008, 33(5): 8-9.
\n
中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R/OL]. .
\n
Bawden D. Origins and concepts of digital literacy[EB/OL](2008-05-04).
\n
Fan X, Sommers C H. Food irradiation research and technology[M/OL]. 2 edition. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
Fourney M E. Advances in holographic photoelasticity[C]. New York: ASME, c1971: 17-38c1971: 17-38.
\n
Myburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J/OL]. Nature, 2014, 510: 356-362.
\n
", 28 | "tags": [ 29 | "姓名小写", 30 | "有标题", 31 | "期刊缩写", 32 | "无URL", 33 | "无DOI" 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /src/西南政法大学/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "molc.0:01" 5 | } 6 | ], 7 | [ 8 | { 9 | "id": "molc.0:01", 10 | "locator": "18", 11 | "label": "page" 12 | } 13 | ], 14 | [ 15 | { 16 | "id": "molc.0:05" 17 | } 18 | ], 19 | [ 20 | { 21 | "id": "molc.0:06" 22 | } 23 | ], 24 | [ 25 | { 26 | "id": "molc.0:08" 27 | } 28 | ], 29 | [ 30 | { 31 | "id": "molc.0:13" 32 | } 33 | ], 34 | [ 35 | { 36 | "id": "molc.0:16" 37 | } 38 | ], 39 | [ 40 | { 41 | "id": "molc.0:17" 42 | } 43 | ], 44 | [ 45 | { 46 | "id": "molc.0:18", 47 | "locator": "737-738", 48 | "label": "page" 49 | } 50 | ], 51 | [ 52 | { 53 | "id": "molc.0:19" 54 | } 55 | ], 56 | [ 57 | { 58 | "id": "molc.0:20", 59 | "locator": "98", 60 | "label": "page" 61 | } 62 | ], 63 | [ 64 | { 65 | "id": "molc.82:01" 66 | } 67 | ], 68 | [ 69 | { 70 | "id": "molc.83:01-1" 71 | } 72 | ] 73 | ] 74 | -------------------------------------------------------------------------------- /src/财经研究/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "财经研究", 3 | "file": "财经研究.csl", 4 | "style_class": "in-text", 5 | "title": "财经研究", 6 | "id": "https://www.zotero-chinese.com/styles/财经研究", 7 | "link_self": "https://www.zotero-chinese.com/styles/财经研究", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(顺序编码,双语,姓名不大写,无URL、DOI)", 9 | "link_documentation": "https://qks.sufe.edu.cn/J/CJYJ/Channel/12/CN", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "social_science", 18 | "updated": "2025-04-19T23:05:38+08:00", 19 | "citations": "(库恩,2012)
\n(Fourney,c1971)
\n(贾东琴和柯平,2011)
\n(Fan和Sommers,2013)
\n(武丽丽等,2008)
\n(Myburg等,2014)
\n(中国互联网络信息中心,2012;Bawden,2008)
\n", 20 | "bibliography": "
\n
[1]贾东琴, 柯平. 面向数字素养的高校图书馆数字服务体系研究[A]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷[C]. 北京: 国家图书馆出版社, 2011: 45-52.
\n
[2]库恩. 科学革命的结构:第 4 版[M]. 金吾伦, 胡新和, 译. 2 版. 北京: 北京大学出版社, 2012.
\n
[3]武丽丽, 华一新, 张亚军, 等. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 2008, 33(5): 8-9.
\n
[4]中国互联网络信息中心. 第 29 次中国互联网络发展状况统计报告[R]. 2012.
\n
[5]Bawden D. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
[6]Fan X, Sommers C H. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing, 2013: 25-26.
\n
[7]Fourney M E. Advances in holographic photoelasticity[A]//Symposium on Applications of Holography in Mechanics[C]. New York: ASME, c1971: 17-38.
\n
[8]Myburg A A, Grattapaglia D, Tuskan G A, et al. The genome of eucalyptus grandis[J]. Nature, 2014, 510: 356-362.
\n
", 21 | "tags": [ 22 | "姓名小写", 23 | "有标题", 24 | "期刊全称", 25 | "无URL", 26 | "无DOI" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /src/重庆大学(著者-出版年)/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "重庆大学(著者-出版年)", 3 | "file": "重庆大学(著者-出版年).csl", 4 | "style_class": "in-text", 5 | "title": "重庆大学(著者-出版年)", 6 | "id": "https://www.zotero-chinese.com/styles/重庆大学(著者-出版年)", 7 | "link_self": "https://www.zotero-chinese.com/styles/重庆大学(著者-出版年)", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—2015(著者-出版年,双语,姓名不大写,无URL、DOI,全角括号)", 9 | "link_documentation": "http://graduate.cqu.edu.cn/xwsy/xwsq.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "author-date", 17 | "field": "generic-base", 18 | "summary": "重庆大学博士、硕士学位论文格式标准(2023年修订)", 19 | "updated": "2025-04-19T23:05:40+08:00", 20 | "citations": "(库恩, 2012)
\n(Fourney, c1971)
\n(贾东琴 等, 2011)
\n(Fan et al., 2013)
\n(武丽丽 等, 2008)
\n(Myburg et al., 2014)
\n(中国互联网络信息中心, 2012; Bawden, 2008)
\n", 21 | "bibliography": "
\n
贾东琴等, 2011. 面向数字素养的高校图书馆数字服务体系研究[C]//中国图书馆学会. 中国图书馆学会年会论文集: 2011 年卷. 北京: 国家图书馆出版社: 45-52.
\n
库恩, 2012. 科学革命的结构:第 4 版[M]. 金吾伦等, 译. 2 版. 北京: 北京大学出版社.
\n
武丽丽等, 2008. “北斗一号”监控管理网设计与实现[J]. 测绘科学, 33(5): 8-9.
\n
中国互联网络信息中心, 2012. 第 29 次中国互联网络发展状况统计报告[R].
\n
Bawden, D., 2008. Origins and concepts of digital literacy[EB/OL]. (2008-05-04)[2013-03-08]. http://www.soi.city.ac.uk/~dbawden/digital%20literacy%20chapter.pdf.
\n
Fan, X. et al., 2013. Food irradiation research and technology[M]. 2nd ed. Ames, Iowa: Blackwell Publishing: 25-26.
\n
Fourney, M. E., c1971. Advances in holographic photoelasticity[C]//Symposium on Applications of Holography in Mechanics, August 23–25, 1971, University of Southern California, Los Angeles, California. New York: ASME: 17-38.
\n
Myburg, A. A. et al., 2014. The genome of eucalyptus grandis[J]. Nature, 510: 356-362.
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊全称", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/首都医科大学/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "首都医科大学", 3 | "file": "首都医科大学.csl", 4 | "style_class": "in-text", 5 | "title": "首都医科大学", 6 | "id": "https://www.zotero-chinese.com/styles/首都医科大学", 7 | "link_self": "https://www.zotero-chinese.com/styles/首都医科大学", 8 | "link_template": "https://www.zotero-chinese.com/styles/GB-T-7714—1987(顺序编码,双语)", 9 | "link_documentation": "https://yjsh.ccmu.edu.cn/xwgz/lwdb/65d371968cab4a54ad9a1531f3538700.htm", 10 | "author": [ 11 | { 12 | "name": "Zeping Lee" 13 | } 14 | ], 15 | "contributor": [], 16 | "citation_format": "numeric", 17 | "field": "generic-base", 18 | "summary": "首都医科大学研究生学位论文(2023-04-26)", 19 | "updated": "2025-01-08T17:10:42+08:00", 20 | "citations": "[1-7]", 21 | "bibliography": "
\n
\n
[1]
张昆, 冯立群, 余昌钰, 徐晓东. 机器人柔性手腕的球面齿轮设计研究. 清华大学学报, 1994, 34(2): 1-7.
\n
\n
\n
[2]
竺可桢. 物理学论. 北京: 科学出版社, 1973: 56-60.
\n
\n
\n
[3]
Dupont B. Bone marrow transplantation in severe combined immunodeficiency with an unrelated MLC compatible donor. In: White H J, Smith R, eds. Proceedings of the third annual meeting of the International Society for Experimental Hematology. Houston: International Society for Experimental Hematology, 1974: 44-46.
\n
\n
\n
[4]
郑开青. 通讯系统模拟及软件: [硕士学位论文]. 北京: 清华大学无线电系, 1987.
\n
\n
\n
[5]
姜锡洲. 一种温热外敷药制备方案. 中国专利, 88105607.3, 1980-07-26.
\n
\n
\n
[6]
国家市场监督管理总局. GB 3100—1993. 国际单位制及其应用. 北京: 中国标准出版社, 1993.
\n
\n
\n
[7]
Ratziu V, Francque S, Sanyal A. Breakthroughs in therapies for NASH and remaining challenges. J Hepatol, 2022, 76(6): 1263-1278.
\n
\n
", 22 | "tags": [ 23 | "姓名小写", 24 | "有标题", 25 | "期刊缩写", 26 | "无URL", 27 | "无DOI" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /src/马克思主义研究/cites.json: -------------------------------------------------------------------------------- 1 | [ 2 | [ 3 | { 4 | "id": "marxism.1.1:01", 5 | "locator": "第22、178页", 6 | "label": "page" 7 | } 8 | ], 9 | [ 10 | { 11 | "id": "marxism.1.1:04", 12 | "locator": "1032", 13 | "label": "page" 14 | } 15 | ], 16 | [ 17 | { 18 | "id": "marxism.1.2:01", 19 | "locator": "427-428", 20 | "label": "page" 21 | } 22 | ], 23 | [ 24 | { 25 | "id": "marxism.1.3:01" 26 | } 27 | ] 28 | ] 29 | -------------------------------------------------------------------------------- /src/马克思主义研究/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "dir": "马克思主义研究", 3 | "file": "马克思主义研究.csl", 4 | "style_class": "note", 5 | "title": "马克思主义研究", 6 | "id": "https://www.zotero-chinese.com/styles/马克思主义研究", 7 | "link_self": "https://www.zotero-chinese.com/styles/马克思主义研究", 8 | "link_documentation": "http://www.mkszyyj.net/Show/11787?itemid=47369", 9 | "author": [ 10 | { 11 | "name": "Zeping Lee" 12 | } 13 | ], 14 | "contributor": [], 15 | "citation_format": "note", 16 | "field": "political_science", 17 | "updated": "2023-03-22T12:42:44+08:00", 18 | "citations": "1 《马克思恩格斯选集》第2卷,北京:人民出版社,1995年,第22、178页。
\n2 逄先知、金冲及主编:《毛泽东传》,2003年,第1032页。
\n3 [德]黑格尔:《逻辑学》(上),杨一之译,商务印书馆,2001年,第427-428页。
\n4 任平:《马克思“反思的问题视域”及其当代意义》,《中国社会科学》2006年第6期。
\n", 19 | "bibliography": "
\n
\n
[1]
《马克思恩格斯选集》第2卷,北京:人民出版社,1995年。
\n
\n
\n
[2]
逄先知、金冲及主编:《毛泽东传》,2003年。
\n
\n
\n
[3]
[德]黑格尔:《逻辑学》(上),杨一之译,商务印书馆,2001年。
\n
\n
\n
[4]
任平:《马克思“反思的问题视域”及其当代意义》,《中国社会科学》2006年第6期。
\n
\n
", 20 | "tags": [ 21 | "姓名小写", 22 | "有标题", 23 | "期刊全称", 24 | "无URL", 25 | "无DOI" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "ESNext", 4 | "esModuleInterop": true, 5 | "target": "ESNext", 6 | "moduleResolution": "Node", 7 | "outDir": "dist", 8 | "skipLibCheck": true, 9 | "forceConsistentCasingInFileNames": true, 10 | "noFallthroughCasesInSwitch": true, 11 | "isolatedModules": false, 12 | "strict": true, 13 | "noImplicitAny": true, 14 | "useUnknownInCatchVariables": false, 15 | "resolveJsonModule": true, 16 | "inlineSourceMap": true 17 | }, 18 | "lib": ["esnext"], 19 | "include": ["lib", "lib/types"] 20 | } 21 | --------------------------------------------------------------------------------