文献管理软件 Zotero 下载安装使用与配置分享

个人 zotero 折腾过程记录与配置、插件分享。

1 前言

最开始阅读文献是使用readpaper 平台,在线翻译、做笔记、文献管理都很方便,具体使用可以参考同济子豪兄官方 ReadPaper 保姆级教程

但随着科研深入,readpaper 的文献管理功能逐渐跟不上了,而且很多文献没有 PDF 文件,需要自己下载后上传。

经过研究发现,相比 Endnote,zotero 功能够用,而且开源。通过插件也可以实现 readpaper 的在线翻译功能,配合 snipaste 软件可以截图固定,非常 nice!

【注】本文参考了知乎专栏

2 下载安装

2.1 蓝奏云

官网访问困难的,可以点击蓝奏云链接下载,更新于2023-11-8

密码:2333

image
image

2.2 官网下载

2.2.1 本体Zotero 下载

Zotero 官网访问速度慢的,建议使用蓝奏云中Zotero-6.0.18_setup.exe进行安装。

2.2.2 浏览器插件:Zotero Connector下载

2.2.3 翻译器:Zotero translators_CN下载

Zotero 官网访问速度慢的,建议下载蓝奏云中的translators.zip

2.2.4 插件

2.2.4.1 插件安装
  • 方法一: 打开【Zotero】 点击【工具】—【插件】 点击右上角【⚙】—【Install Add-on From File…】—选中需要安装的插件(部分插件不适用该方法) 安装完毕后重启【Zotero】

    image
    image
    image
    image
    image
    image
    image
    image
    image
    image

  • 方法二: 打开【Zotero】 点击【工具】—【插件】 将需要安装的插件【拖动】至该页面 安装完毕后重启【Zotero】

按需启用插件。我的插件启用情况如下:

image
image

3 基础配置

打开【Zotero】—【编辑】—【首选项】

3.1 高级

3.1.1 更改数据存储位置

安装完 zotero 后,第一件事就是更改数据存储位置。因为以后要存 PDF 文献,所以建议放在一个存储空间充裕的地方。改完位置后点击 OK 保存,重启 zotero 生效。

image
image

3.1.2 添加搜索引擎

  1. 【Zotero】—【编辑】—【首选项】—【高级】— 文件和文件夹 —【打开数据文件夹】
    image
    image
  2. locate 文件夹中打开engines.json文件
    image
    image
  3. 编辑engines.json文件,将里面的内容全选删除,粘贴为以下内容并保存。
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
[
	{
		"_name": "熊猫学术",
		"_alias": "panda",
		"_description": "谷歌学术镜像",
		"_icon": "https://sc.panda985.com/static/base/images/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://sc.panda985.com/scholar?hl=zh-CN&as_sdt=0%2C5&q={z:title}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://sc.panda985.com/static/base/images/favicon.ico"
	},
	{
		"_name": "CNKI新版",
		"_alias": "CNKI",
		"_description": "CNKI新版",
		"_icon": "https://kns.cnki.net/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://kns.cnki.net/kns8s/defaultresult/index?dbcode=SCDB&kw={z:title}&korder=SU",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://kns.cnki.net/favicon.ico"
	},
	{
		"_name": "南京师范大学图书馆",
		"_alias": "南京师范大学图书馆",
		"_description": "南京师范大学图书馆",
		"_icon": "http://lib.njnu.edu.cn/images/njnulogo.png",
		"_hidden": false,
		"_urlTemplate": "http://opac.njnu.edu.cn/opac/openlink.php?strSearchType=title&match_flag=forward&historyCount=1&strText={z:title}&doctype=ALL&with_ebook=on&displaypg=20&showmode=list&sort=CATA_DATE&orderby=desc&location=ALL&csrf_token=%29lW1vOCx%7B%2F",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "http://lib.njnu.edu.cn/images/njnulogo.png"
	},
	{
		"_name": "豆瓣读书",
		"_alias": "豆瓣读书",
		"_description": "豆瓣读书",
		"_icon": "https://book.douban.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://search.douban.com/book/subject_search?search_text={z:title}&cat=1001",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://book.douban.com/favicon.ico"
	},
	{
		"_name": "国学数典",
		"_alias": "国学数典",
		"_description": "国学数典",
		"_icon": "https://bbs.ugxsd.com/static/image/common/logo_gxsd.png",
		"_hidden": false,
		"_urlTemplate": "https://bbs.ugxsd.com/search.php?mod=forum&searchid=2634&orderby=lastpost&ascdesc=desc&searchsubmit=yes&kw={z:title}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://bbs.ugxsd.com/static/image/common/logo_gxsd.png"
	},
	{
		"_name": "读秀图书",
		"_alias": "读秀图书",
		"_description": "读秀图书",
		"_icon": "https://book.duxiu.com/images/small0408.jpg",
		"_hidden": false,
		"_urlTemplate": "https://book.duxiu.com/search?Field=all&channel=search&sw={z:title}&ecode=utf-8&edtype=&searchtype=&view=0",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://book.duxiu.com/images/small0408.jpg"
	},
	{
		"_name": "Obsidian",
		"_alias": "Obsidian",
		"_description": "在Obsidian中搜索",
		"_icon": "https://obsidian.md/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "obsidian://search?vault=Zotero&query={z:title}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://obsidian.md/favicon.ico"
	},
	{
		"_name": "Open Notes",
		"_alias": "Open Notes",
		"_description": "笔记路径放在Rights字段",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017133213.png",
		"_hidden": false,
		"_urlTemplate": "file:///{z:rights}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017133213.png"
	},
	{
		"_name": "TOC of Notes",
		"_alias": "TOC of Notes",
		"_description": "打开所有笔记的目录",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201025110921.png",
		"_hidden": false,
		"_urlTemplate": "file:////Users/a40781/Zotero/Obsidian",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201025110921.png"
	},
	{
		"_name": "N-Connected Papers",
		"_alias": "Connected Papers文献网络",
		"_description": "Connected Papers文献网络",
		"_icon": "https://www.connectedpapers.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://www.connectedpapers.com/search?q={z:title}+{z:year}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://www.connectedpapers.com/favicon.ico"
	},
	{
		"_name": "CrossRef",
		"_alias": "CrossRef",
		"_description": "CrossRef Search",
		"_icon": "https://www.crossref.org/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "http://crossref.org/openurl?{z:openURL}&pid=zter:zter321",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "http://crossref.org/favicon.ico"
	},
	{
		"_name": "谷歌学术",
		"_alias": "Google Scholar",
		"_description": "Google Scholar Search",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230633.png",
		"_hidden": false,
		"_urlTemplate": "http://scholar.google.com/scholar?as_q=&as_epq={z:title}&as_occt=title&as_sauthors={rft:aufirst?}+{rft:aulast?}&as_ylo={z:year?}&as_yhi={z:year?}&as_sdt=1.&as_sdtp=on&as_sdtf=&as_sdts=22&",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230633.png"
	},
	{
		"_name": "谷歌学术 - Title Only",
		"_alias": "Google Scholar",
		"_description": "Google Scholar Search - Title Only",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230633.png",
		"_hidden": false,
		"_urlTemplate": "http://scholar.google.com/scholar?as_q=&as_epq={z:title}&as_occt=title&as_sdt=1.&as_sdtp=on&as_sdtf=&as_sdts=22&",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230633.png"
	},
	{
		"_name": "谷歌专利",
		"_alias": "Google Scholar",
		"_description": "Google Patent - Search",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017210030.png",
		"_hidden": false,
		"_urlTemplate": "https://patents.google.com/?q=({z:title})&oq=({z:title})",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017210030.png"
	},
	{
		"_name": "Semantic Scholar - DOI",
		"_alias": "Semantic Scholar",
		"_description": "Semantic Scholar",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017165044.png",
		"_hidden": false,
		"_urlTemplate": "https://api.semanticscholar.org/{z:DOI}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017165044.png"
	},
	{
		"_name": "Google",
		"_alias": "Google",
		"_description": "Google Search",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230909.png",
		"_hidden": false,
		"_urlTemplate": "https://www.google.com/#q={z:title}+{rft:aufirst?}+{rft:aulast?}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016230909.png"
	},
	{
		"_name": "Web of Science",
		"_alias": "WOS",
		"_description": "Web of Science Search",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png",
		"_hidden": false,
		"_urlTemplate": "http://ws.isiknowledge.com/cps/openurl/service?url_ver=Z39.88-2004&{z:openURL}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png"
	},
	{
		"_name": "WOS Citing Articles",
		"_alias": "WOS Citing Articles",
		"_description": "Web of Science Citing Articles Search",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png",
		"_hidden": false,
		"_urlTemplate": "http://ws.isiknowledge.com/cps/openurl/service?url_ver=Z39.88-2004&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.citing=yes&{z:openURL}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png"
	},
	{
		"_name": "WOS Related Articles",
		"_alias": "WOS Related Articles",
		"_description": "Web of Science Related Articles Search",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png",
		"_hidden": false,
		"_urlTemplate": "http://ws.isiknowledge.com/cps/openurl/service?url_ver=Z39.88-2004&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.related=yes&{z:openURL}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016231207.png"
	},
	{
		"_name": "Sci-Hub DOI",
		"_alias": "Sci-Hub DOI",
		"_description": "SciHub Lookup Lookup",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png",
		"_hidden": false,
		"_urlTemplate": "http://sci-hub.shop/{z:DOI}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png"
	},
	{
		"_name": "Sci-Hub URL",
		"_alias": "Sci-Hub URL",
		"_description": "SciHub URL Lookup",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png",
		"_hidden": false,
		"_urlTemplate": "http://sci-hub.shop/{z:url}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png"
	},
	{
		"_name": "Sci-Hub最新网址",
		"_alias": "Sci-Hub最新网址",
		"_description": "Sci-Hub最新网址",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png",
		"_hidden": false,
		"_urlTemplate": "https://iseex.github.io/scihub/",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200912.png"
	},
	{
		"_name": "Connected Papers(手动输入doi)",
		"_alias": "Connected Papers文献网络",
		"_description": "Connected Papers文献网络",
		"_icon": "https://www.connectedpapers.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://www.connectedpapers.com",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://www.connectedpapers.com/favicon.ico"
	},
	{
		"_name": "Connected Papers(Title Only)",
		"_alias": "Connected Papers文献网络",
		"_description": "Connected Papers文献网络",
		"_icon": "https://www.connectedpapers.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://www.connectedpapers.com/search?q={z:title}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://www.connectedpapers.com/favicon.ico"
	},
	{
		"_name": "iJournal期刊影响因子(首选1)",
		"_alias": "iJournal期刊影响因子",
		"_description": "期刊影响因子查询(仅支持搜索ISSN)",
		"_icon": "https://ijournal.topeditsci.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://ijournal.topeditsci.com/search?keywordType=title&keyword={rft:jtitle}&ifStart2019=&ifEnd2019=&jcr=&sub=&isDomestic=&selfCitingRate=all&compatriotRate=all&totalReviewRatio=all&categoryId=&pageNum=1&order=&orderType=",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://ijournal.topeditsci.com/favicon.ico"
	},
	{
		"_name": "JustScience影响因子(首选2)",
		"_alias": "JustScience期刊影响因子(首选2)",
		"_description": "JustScience期刊影响因子(首选2)",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017105103.png",
		"_hidden": false,
		"_urlTemplate": "https://sci.justscience.cn/index.php?q={rft:jtitle}&sci=1",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017105103.png"
	},
	{
		"_name": "中文期刊搜索",
		"_alias": "中文期刊搜索",
		"_description": "JustScience中文期刊搜索",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017105103.png",
		"_hidden": false,
		"_urlTemplate": "https://sci.justscience.cn/index.php?q={rft:jtitle}&sci=0",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201017105103.png"
	},
	{
		"_name": "Letpub期刊搜索",
		"_alias": "Letpub期刊搜索",
		"_description": "Letpub期刊搜索(仅支持搜索ISSN)",
		"_icon": "https://www.letpub.com.cn/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "http://www.letpub.com.cn/index.php?page=journalapp&view=search&searchname={rft:jtitle}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://www.letpub.com.cn/favicon.ico"
	},
	{
		"_name": "期刊影响因子查询",
		"_alias": "期刊影响因子查询",
		"_description": "期刊影响因子查询(仅支持搜索ISSN)",
		"_icon": "https://www.xueky.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://www.xueky.com/rank.php?qk={rft:jtitle}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://www.xueky.com/favicon.ico"
	},
	{
		"_name": "期刊近五年影响因子",
		"_alias": "期刊近五年影响因子",
		"_description": "期刊近五年影响因子",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200307.png",
		"_hidden": false,
		"_urlTemplate": "http://www.greensci.net/search?kw={rft:jtitle}",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016200307.png"
	},
	{
		"_name": "Unpaywall",
		"_alias": "Unpaywall",
		"_description": "Unpaywall Lookup",
		"_icon": "https://oadoi.org/static/img/favicon.png",
		"_hidden": false,
		"_urlTemplate": "https://oadoi.org/{z:DOI}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "https://oadoi.org/static/img/favicon.png"
	},
	{
		"_name": "LibGen",
		"_alias": "LibGen",
		"_description": "Look up books on Library Genesis",
		"_icon": "http://gen.lib.rus.ec/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "http://gen.lib.rus.ec/search.php?req={rft:aufirst?}+{rft:aulast?}+{rft:title?}+{z:ISBN?}",
		"_urlParams": [],
		"_method": "GET",
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:book",
			"xmlns": "http://a9.com/-/spec/opensearch/1.1/",
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "http://gen.lib.rus.ec/favicon.ico"
	},
	{
		"_name": "Wikipedia",
		"_alias": "Wikipedia",
		"_description": "Wikipedia",
		"_icon": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016232045.png",
		"_hidden": false,
		"_urlTemplate": "https://zh.wikipedia.org/wiki/{z:title}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://figurebed-iseex.oss-cn-hangzhou.aliyuncs.com/img/20201016232045.png"
	},
	{
		"_name": "ProQuest",
		"_alias": "ProQuest",
		"_description": "ProQuest Search",
		"_icon": "https://www.proquest.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "http://proquest.umi.com/pqdweb?SQ=TI(+{z:title}+)+YR(+{z:year?}+)&RQT=305&querySyntax=PQ&searchInterface=1&moreOptState=CLOSED&TS=1139706667&JSEnabled=1&DBId=-1",
		"_urlParams": [],
		"_urlNamespaces": {
			"rft": "info:ofi/fmt:kev:mtx:journal",
			"z": "http://www.zotero.org/namespaces/openSearch#"
		},
		"_iconSourceURI": "http://www.proquest.com/favicon.ico"
	},
	{
		"_name": "Zlibrary Book",
		"_alias": "Zlibrary Book",
		"_description": "Zlibrary Book",
		"_icon": "https://z-lib.org/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://b-ok.cc/s/{z:title}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://z-lib.org/favicon.ico"
	},
	{
		"_name": "Zlibrary Articles",
		"_alias": "Zlibrary Articles",
		"_description": "Zlibrary Articles",
		"_icon": "https://z-lib.org/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://booksc.xyz/s/{z:title}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://z-lib.org/favicon.ico"
	},
	{
		"_name": "SooPAT专利搜索",
		"_alias": "SooPAT专利搜索",
		"_description": "SooPAT专利搜索",
		"_icon": "http://www.soopat.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "http://www.soopat.com/Home/Result?SearchWord={z:title}&FMZL=Y&SYXX=Y&WGZL=Y&FMSQ=Y",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "http://www.soopat.com/favicon.ico"
	},
	{
		"_name": "百度学术搜索",
		"_alias": "BaiDu",
		"_description": "百度学术搜索",
		"_icon": "http://xueshu.baidu.com/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://xueshu.baidu.com/s?wd={z:title}&rsv_bp=0&tn=SE_baiduxueshu_c1gjeupa&rsv_spt=3&ie=utf-8&f=8&rsv_sug2=0&sc_f_para=sc_tasktype%3D%7BfirstSimpleSearch%7D",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "http://xueshu.baidu.com/favicon.ico"
	},
	{
		"_name": "万方搜索",
		"_alias": "万方搜索",
		"_description": "万方搜索",
		"_icon": "http://www.wanfangdata.com.cn/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "http://www.wanfangdata.com.cn/search/searchList.do?searchType=all&showType=&pageSize=&searchWord={z:title}&isTriggerTag=",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "http://www.wanfangdata.com.cn/favicon.ico"
	},
	{
		"_name": "谷粉学术",
		"_alias": "谷粉学术",
		"_description": "谷粉学术",
		"_icon": "https://img.99lb.net/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://cc.gufenxueshu.com/scholar?q={z:title}",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://img.99lb.net/favicon.ico"
	},
	{
		"_name": "Glgoo学术",
		"_alias": "Glgoo学术",
		"_description": "Glgoo学术",
		"_icon": "https://xue.glgoo.org/favicon.ico",
		"_hidden": false,
		"_urlTemplate": "https://xue.xiayige.org/scholar?hl=zh-CN&q={z:title}&btnG=&lr=",
		"_urlParams": [],
		"_urlNamespaces": {
			"z": "http://www.zotero.org/namespaces/openSearch#",
			"": "http://a9.com/-/spec/opensearch/1.1/"
		},
		"_iconSourceURI": "https://xue.glgoo.org/favicon.ico"
	}
]

3.1.3 更新翻译器

【注】下方2.0.3、2.0.4内容也可以直接观看这个 up 主的视频教程

  1. 将蓝奏云中translators.zip解压,将解压后的文件全部复制,粘贴到 zotero 数据文件夹——translators 文件夹中
    image
    image
  2. 【Zotero】—【编辑】—【首选项】—【茉莉花】—【非官方维护中文翻译器】,先点刷新,再点更新全部
    image
    image
  3. 打开安装了 Zotero Connector 插件的浏览器,我这里是 edge。打开扩展,将 Zotero Connector 插件设为在工具栏中显示
    image
    image
  4. 右键单击 Zotero Connector 插件图标——扩展选项——Advanced——勾选图中两项,然后多点几下 update
    image
    image

3.1.4 设置 scihub 下载文献

【Zotero】—【编辑】—【首选项】—— 【高级】—— 【设置编辑器】

image
image
搜索extensions.zotero.findPDFs.resolvers,双击打开,默认情况下是只有一对[],删除[],并将以下代码粘贴进去。

1
2
3
4
5
6
7
8
9
{
    "name":"Sci-Hub",
    "method":"GET",
    "url":"https://sci-hub.se/{doi}",
    "mode":"html",
    "selector":"#pdf",
    "attribute":"src",
    "automatic":true
}

到此就成功将 Sci-Hub 配置为 PDF 解析器了,也就是说替代了默认的 Unpaywall。现在,无需重启 Zotero,即可调用 Sci-Hub 免费下载文献了。

【注】此处参考自文章

3.2 常规

我的常规配置:

image
image

3.3 同步

我采用了坚果云进行同步。

image
image

3.3.1 坚果云使用

  1. 注册【坚果云账户】
  2. 点击右上角【用户名】—进入【账户信息】
  3. 进入【安全选项】
  4. 向下拖动进入【第三方应用管理】—点击【添加应用】—输入应用名【zotero】 这里【示例】中的【服务器地址】、【账户】和【密码】(应用密码)即是【WebDAV】需填写的【URL】、【用户名】和【密码】
    image
    image
  5. 返回【Zotero】—【首选项】—【同步】 将【同步文献库的附件】改为【WebDAV】,输入【URL】、【用户名】和【密码】,点击【验证服务器】成功即可。
    image
    image

【注】坚果云验证失败看这里

3.4 引用

3.4.1 zotero 官方7714样式

  1. 点击【获取更多样式】
  2. 搜索【7714】即可安装国标引用样式。注意有1987、2005和2015三个时间,note、author-date 和 numeric 三个格式,鼠标悬停即可【预览】样式。
    image
    image

3.4.2 比较贴近东北大学要求的7714样式

zotero 官方的7714样式存在一些问题,如不能区分中英文文献,导致引用英文文献也是“等”,而不是“et al”。github 上的Chinese-STD-GB-T-7714-related-csl仓库(Gitee)提供7714 2015的官方样式及众多修改版,其中002gb样式比较符合东北大学的要求,除了网络文献的引用顺序有点差异。

image
image

  1. 从仓库或者前文的蓝奏云链接中下载样式
  2. 点击+号,选中已下载的002 csl 样式,打开。 会提示***.csl不是一个有效的 CSL 1.0.2 样式文件,你可能不能和Zotero一起正常工作,不用管,点击 OK 继续导入。
    image
    image
  3. 点击 OK 保存退出首选项。然后重新打开【编辑】—【首选项】— 【导出】— 项目格式,选择为7714
    image
    image

4 插件配置

下面这些插件都建议在中文插件网站下载。注意要下载对应 zotero 版本的插件,本文中下载的都是 zotero6的插件。

4.1 Zotero 插件合集

点击工具栏中的[

插件市场
插件市场
] ,自动管理、更新、添加 Zotero 插件
插件市场
插件市场

4.2 ZotFile

4.2.1 功能

  • 自动修改附件名
  • 提取附件中的笔记
  • 【Attaching New Files】—添加新附件
  • 【Send to Tablet】—多端同步阅读

4.2.2 配置

点击【工具】—进入【Zotfile 首选项】

  • 【General Settings】   - 【Source Folder For Attaching New Files】:自动抓取新附件建议设置为【浏览器等默认下载地址】   - 【Location of Files】:附件本地存储地址建议选择【Attach stored copy of files(s)】,存储在 Zotero 的根目录下
    image
    image
  • 【Send to Tablet】:若非本地存储空间不够,不建议使用 具体设置可参考此处
  • 【Renaming Rules】和【Advanced Settings】:可自行修改
    image
    image

4.3 ZoteroQuickLook

4.3.1 功能

按【空格】实现快速预览

4.3.2 配置

  1. 下载【QuickLook】本体安装,记住安装目录 Windows:QuickLook for Windows
  2. 【Zotero】—【编辑】—【首选项】—— 【高级】—— 【设置编辑器】,搜索extensions.zoteroquicklook.customviewcommand,双击将里面的内容修改为QuickLook.exe的文件路径
    image
    image

4.4 茉莉花-Jasminum

4.4.1 功能

  • 拆分或合并 Zotero 中条目作者姓和名
  • 根据知网上下载的文献文件来抓取引用信息(根据文件名)
  • 添加中文 PDF/CAJ 时,自动拉取知网数据,该功能默认关闭。需要到设置中开启,注意添加的文件名需要含有中文,全英文没有效果(根据文件名)
  • 为知网的学位论文 PDF 添加书签
  • 更新中文翻译器

4.4.2 配置

如何自动为知网学位论文添加【书签】 从知网下载的 PDF 格式【学位论文】不显示书签(CAJ 格式显示),【茉莉花】提供自动添加功能。要使用添加【书签】功能需要下载【PDFtk Server】,文件见网盘。

下载并安装【PDFtk Server】,蓝奏云里有 打开【Zotero】—进入【首选项】—进入【茉莉花】 选择【PDFtk Server】的路径,最后须选择 bin

image
image

4.5 zotero citation update

4.5.1 功能

更新文献被引用数

4.5.2 配置

列标题启用【存档位置】

列标题启用【存档位置】
列标题启用【存档位置】

使用:工具——更新引用

更新引用
更新引用

4.6 Zotero PDF Translate

【注】不想看文字的也可以看这个 up 的视频讲解,演示了如何申请小牛 api

4.6.1 使用与功能

双击 PDF 附件(要用 zotero 打开 PDF)。点击右上角展开翻译窗口。鼠标选中文字自动翻译。

image
image

4.6.2 翻译引擎配置

建议使用腾讯云 api,免费额度量大管饱,翻译效果也很好。或者小牛、有道智云,这两虽然免费额度是有期限的,但是可以建立自己的术语表,翻译起来更准确。

【注】小牛翻译注册后需要在首页手动领取100万免费流量,有效期一年

小牛翻译
小牛翻译

4.7 Crush Reference

论文右侧——参考文献——点击“刷新”,自动拉取参考文献目录。

image.png
image.png

4.8 移动端 :多平台同步阅读环境配置

具体操作与 #2.2 同步 设置相同

5 工作流

5.1 联动 obsidian

参考最新zotero与obsidian笔记联动教程(可代替citations和mdnotes)

5.2 工作流:以 Zotero 为中枢

还是参考 Eleven 的知乎专栏

image
image

  • 检索 / 阅读 / 笔记
    • 确定题目 / 开题报告 / 文献综述
      • 下载论文——Zotero 抓取
      • 可视化文献处理——Zotero 存储 bib,导出处理
      • 多端同步阅读——移动端同步 Zotero 账号
    • 存档 & 归类——Zotero 文件夹分类以及 Tag 分类
    • 文献笔记——与 Zotero 条目联结
  • 写作
    • 插入引文生成参考文献——Zotero 通过文字处理软件插件插入参考文献
    • 调整格式——修改 Zotero 参考文献引用格式设置
  • 回溯
    • 用 Zotero 搭建自己的知识库

5.3 下载论文

  • 正着下:抓取

    • 单篇——浏览器中打开一篇论文的详情页,左键点击右上角【插件】,出现【Full Text PDF】即为成功

      image
      image

    • 批量——在知网搜索页面点击右上角【插件】,跳出【Zotero Item Selector】

      image
      image

  • 反着下

    • 识别:从文献到题录 英文文献会自动抓取元数据,若失败请点【重新抓取 PDF 的元数据】

      image
      image

    • 检索:从题录到文献,利用【搜索引擎】进入知网下载文献

      image
      image

5.4 储存&分类

5.4.1 新建分类

image
image

5.4.2 Tag 管理

  • 添加 Tag

    image
    image

  • 给 Tag 添加颜色

    image
    image

  • 检索 Tag:单击左下角【Tag 区】中的 Tag

5.4.3 高级检索

image
image

5.5 阅读

5.5.1 导出 PDF 批注

image
image

5.5.2 联结文献笔记

5.6 写作

5.6.1 插入参考文献

image
image

5.7 分享

5.7.1 导出条目及附件

导出分类,然后选择【Zotero RDF】格式,勾选附件和笔记

image
image

5.7.2 团队协作

  • 新建群组
    image
    image
  • 三种类型的群组
    image
    image

相关内容

0%