-
Notifications
You must be signed in to change notification settings - Fork 28
/
Zotero_easybook.tex
3868 lines (3482 loc) · 191 KB
/
Zotero_easybook.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[theorem=false,mathfont=none,openany,sub3section]{easybook}
\usepackage[lang=cn,newtx]{eb-elegantbook}
%\usepackage[T1]{fontenc}
%\usepackage{codehigh}
%\lstset{moreemph={nofont,thmenv}}
\title{优雅地用Zotero进行文献管理和论文写作}
\subtitle{A Short Intrduction to Zotero}
\author{韩敏义}
\institute{南京农业大学}
\date{2024年9月}
\version{4.00}
%\bioinfo{自定义}{信息}
%\extrainfo{Victory won\rq t come to us unless we go to it. --- M. Moore}
%\setcounter{tocdepth}{3}
\logo{logo.jpg}
\cover{cover.jpg}
% 本文档命令
%\usepackage{array} %easybase已经带
\newcommand{\ccr}[1]{\makecell{{\color{#1}\rule{1cm}{1cm}}}}
%章节显示调整
%\renewcommand\thesection{\zhnumber{chapter}.\arabic{subsection}}
%\renewcommand\thesection{\zhnumber{chapter}.\arabic{section}}
%\renewcommand\thesection{\zhnumber{section}}
%\renewcommand{\thesection}{第~\zhnumber{\arabic{section}}~节}
%package
\usepackage{hyperref}
\usepackage{cleveref}
%改为第X章
\crefformat{chapter}{#2第{#1}章#3}
%改为第X节
\crefformat{section}{#2第#1节#3}
%改为第X页
\crefformat{page}{#2第#1页#3}
%图表调整
\def\figureautorefname{图}%
\def\tableautorefname{表}%
%修改链接颜色
%\hypersetup{linkcolor=blue,
% citecolor=blue,
% urlcolor=blue}
%修改题注为符号
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\renewcommand*{\theupfootnote}{\fnsymbol{footnote}}
% 修改目录深度
\setcounter{tocdepth}{3}
%\usepackage[text={140mm,240mm},centering]{geometry}
% \usepackage[backend=biber]{biber}
%\usepackage{listings} %easybase已经带
%XML高亮显示定义
%\usepackage{color} %easybase已经带
\definecolor{gray}{rgb}{0.4,0.4,0.4}
\definecolor{darkblue}{rgb}{0.0,0.0,0.6}
\definecolor{cyan}{rgb}{0.0,0.6,0.6}
\lstset{
basicstyle=\ttfamily,
columns=fullflexible,
showstringspaces=false,
commentstyle=\color{gray}\upshape
}
\lstdefinelanguage{XML}
{
morestring=[b]",
morestring=[s]{>}{<},
morecomment=[s]{<?}{?>},
stringstyle=\color{black},
identifierstyle=\color{darkblue},
keywordstyle=\color{cyan},
morekeywords={xmlns,version,type}% list your attributes here
}
%JavaScript定义
\lstdefinelanguage{JavaScript}{
keywords={typeof, new, true, false, catch, function, return, null, catch, switch, var, if, in, while, do, else, case, break},
keywordstyle=\color{blue}\bfseries,
ndkeywords={class, export, boolean, throw, implements, import, this},
ndkeywordstyle=\color{darkgray}\bfseries,
identifierstyle=\color{black},
sensitive=false,
comment=[l]{//},
morecomment=[s]{/*}{*/},
commentstyle=\color{purple}\ttfamily,
stringstyle=\color{red}\ttfamily,
morestring=[b]',
morestring=[b]"
}
\lstset{
language=JavaScript,
%backgroundcolor=\color{lightgray},
extendedchars=true,
basicstyle=\footnotesize\ttfamily,
showstringspaces=false,
showspaces=false,
%numbers=left,
%numberstyle=\footnotesize,
%numbersep=9pt,
tabsize=2,
breaklines=true,
showtabs=false,
captionpos=b
}
%\usepackage[T1]{fontenc}
\usepackage[os=win]{menukeys} %使用目录、菜单、按键
\renewmenumacro{\menu}[-]{menus} %将默认的>改为-
\newmenumacro{\winpath}[bslash]{hyphenatepathswithfolder} %修改为winpath
%\newmenumacro{\winpath}[bslash]{hyphenatepathswithfolder}
%\usepackage{indentfirst}
\begin{document}
\maketitle
\frontmatter
\chapter*{内容简介}
\markboth{Introduction}{内容简介}
文献管理软件对于参考文献的管理、阅读,在论文撰写过程中插入参考文献有很大的帮助作用,其种类有很多,有商业软件,
如\href{https://endnote.com/}{Endnote},
\href{http://www.inoteexpress.com/aegean/}{NoteExpress}等,
也有免费开源的,如\href{https://www.zotero.org/}{Zotero},
\href{https://www.mendeley.com/download-reference-manager/}{Mendeley}等,在试用过很多软件后,发现免费开源的\href{https://www.zotero.org/}{Zotero}
可以很方便的从网上导入文献,管理文献及与Word集成,在撰写文章的时候方便的插入参考文献。
\href{https://endnote.com/}{Endnote}用的人很多,也很
简单易用,为什么还要学习\href{https://www.zotero.org/}{Zotero}呢?最吸引我的在于三个方面,首先,\href{https://www.zotero.org/}{Zotero}开源免费,不用再找破解版或license了。
其次,如果有权限,\href{https://www.zotero.org/}{Zotero}在下载题录\footnote{根据\href{https://zhidao.baidu.com/question/443193991.html}
{百度知道},题录是指文献的基本信息,包括题名、作者、关键词、作者机构、文献来源、摘要等。选择保存题录是指当获得检索结果后,
如需要将检索结果的目录保存以供他用时,可在检索结果的简单页面上选择条目进行保存。}的同时可以把全文也下载下来,
并且自动链接到相应题录上\footnote{使用新的\href{https://github.com/Zotero-CN/translators_CN}{cnki.js}后也可以在导入题录的同时下载知网的PDF。
详见\cref{sec:cnki_fulltext}。但因为网络原因或知网升级,有可能不能获取全文PDF。};最后,\href{https://www.zotero.org/}{Zotero}结合其他的同步盘如\href{https://www.jianguoyun.com}{坚果云}、
\href{https://office.live.com/start/OneDrive.aspx}{OneDrive}使得在不同电脑间同步题录和全文也变得十分方便。
因此推荐大家学习一下\href{https://www.zotero.org/}{Zotero}的使用。
\
如果你只想用\href{https://www.zotero.org/}{Zotero}从网上导入题录,请看\cref{ch:install},这章介绍了\href{https://www.zotero.org/}{Zotero}的下载安装,从网站导入题录及链接全文。
如果还想用\href{https://www.zotero.org/}{Zotero}在Word中插入参考文献,请看\cref{ch:insert},如果你还有同步题录及全文的需要,请看\cref{ch:syn}。
如果你加入了学科组,有共享群组文献的需要或从群组库复制文献,请看\cref{ch:group}。一些高级应用请看\cref{ch:questions}。
本文档在\href{http://tug.org/texlive/}{\TeX{} Live 2024} 环境下用\href{https://texstudio.org/}{TeXstudio}
编译,
文档编辑中
使用了\href{https://ctan.org/pkg/easybook}{easybook书籍模板}在此致谢;
本文档遵循\href{https://www.gnu.org/licenses/gpl-3.0.txt}{GPL LICENSE} 。
如果你觉得本文档对你有帮助,可以到项目的主页
\url{https://github.com/redleafnew/Zotero_introduction}加星。
如发现问题请反馈至\href{mailto:[email protected]}{[email protected]},
或关注我的知乎专栏\href{https://zhuanlan.zhihu.com/c_1071081428967743488}{软件随心},
访问\href{https://github.com/redleafnew/Chinese-std-GB-T-7714-related-csl}
{Chinese-STD-GB-T-7714-related-csl}
找到更多的GB/T 7714相关的csl以及\href{https://www.zotero.org/}{Zotero}使用技巧及教程,如果您想了解作者,请参见我的
\href{http://food.njau.edu.cn/info/1129/1315.htm}{学校主页}或
\href{https://baike.baidu.com/item/%E9%9F%A9%E6%95%8F%E4%B9%89}{百度百科主页}谢谢。
\tableofcontents
\listofchanges
2024.9.20:更新为4.0。针对Zotero 7.0增删部分内容。使用\href{https://ctan.org/pkg/easybook}{easybook书籍模板}。
2022.3.20:更新为3.0。
2021.10.2:更新为2.0。
2021.1.10:更新为1.12。
\mainmatter
%第一章
\chapter[Zotero下载安装及题录导入]{Zotero下载安装及题录导入\footnote{以下介绍的\href{https://www.zotero.org/}{Zotero}都是基于英文界面操作,
大家可以方便地根据截图找到相应的中文界面位置。如果想更改\href{https://www.zotero.org/}{Zotero}的界面语言
参见\cref{sec:chang_gui_lan}。}}\label{ch:install}
\section{Zotero的安装}
\href{https://www.zotero.org/}{Zotero}原来是基于Firefox浏览器的一个插件,现在有基于桌面的独立安装版。\href{https://www.zotero.org/}{Zotero}支持现在常见的操作系统,
如Windows、Linux、macOS及iOS。
可以到\url{https://www.zotero.org/download/}去下载相应操作系统及位数的安装包。
这里以Windowns 64位版本的安装文件为例进行说明。
\begin{enumerate}
\item 双击下载的安装文件,如Zotero-x.x.x\_setup.exe(x为具体的版本号,\autoref{fig:package}),
首先会显示正在解压的界面,如\autoref{fig:extracting}所示,
如果出现用户帐户控制,点击\menu{是},如\autoref{fig:userControl}:
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[width=0.3\linewidth]{ch1package}
\caption{下载的安装包}
\label{fig:package}
\end{minipage}
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale=1.4]{ch1extracting}
\caption{安装文件解压界面}
\label{fig:extracting}
\end{minipage}
\end{figure}
\item 然后出现安装向导,如\autoref{fig:installwiz1}所示,\menu{下一步}。
%fig user control
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale = 1.3]{ch1userControl}
\caption{用户帐户控制}
\label{fig:userControl}
\end{minipage}
\hspace{1em}
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale = 0.8]{ch1installwiz1}
\caption{安装向导第一步}
\label{fig:installwiz1}
\end{minipage}
\end{figure}
\item 接下来选择安装类型,如\autoref{fig:installType},
一般选择Standard(标准)就可以,如果有兴趣也可以选择Custom(定制),
选择Custom在点下一步会提示可以修改安装目录
(默认安装目录为\winpath{C:\Program Files (x86)\Zotero} )以及是否在桌面上及
开始菜单的程序组中放置图标。
\item 选择Standard后\menu{下一步}提示安装目录为\winpath{C:\Program Files (x86)\Zotero},
此处无法修改安装目录,
如\autoref{fig:ch1StartInstall}。如果要修改需要在上一步选择Custom选项。
\item 此时信息已经收集完毕,点击\menu{Install}(安装)就开始安装了,如\autoref{fig:ch1Installing}。
\item 最后安装完成,点击\menu{Finish}(完成)就可以打开Zotero,如\autoref{fig:ch1InstallComplete}所示。
\item 也可以下载
\href{https://www.zotero.org/download/client/dl?channel=release&platform=win-x64-zip}{64位ZIP格式}或
\href{https://www.zotero.org/download/client/dl?channel=release&platform=win32-zip}{32位ZIP格式},
解压到自己的文件夹后直接运行文件夹中的zotero.exe使用。或从\href{https://github.com/pedrom34/ZoteroPortable}
{https://github.com/pedrom34/ZoteroPortable}下载便携格式,
下载的方法是在页面上点击绿色的\menu{Code}按钮,
再点击\menu{Download ZIP},下载完毕后解压,运行ZoteroPortable.exe即可打开Zotero,使用也十分方便,甚至可以解压到U盘,
做到真正的便携。使用便携版的另一外好处是Zotero的配置文件和数据文件都在这个文件夹中,如果不放在系统盘,
重装系统时不用再重装Zotero,直接双击ZoteroPortable.exe即可继续使用,便携版的安装及使用详见
\href{https://zhuanlan.zhihu.com/p/350797263}{Zotero便携版的安装与使用
\url{https://zhuanlan.zhihu.com/p/350797263}}。
\end{enumerate}
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale=0.43]{ch1InstallType}
\caption{选择安装类型}
\label{fig:installType}
\end{minipage}
\hspace{1cm}
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
%fig install start
\centering
\includegraphics[scale=0.43]{ch1StartInstall}
\caption{\menu{Install}开始安装}
\label{fig:ch1StartInstall}
\end{minipage}
\end{figure}
%fig installing
\begin{figure}[htbp]
\noindent
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale=0.43]{ch1Installing}
\caption{Zotero正在安装}
\label{fig:ch1Installing}
\end{minipage}
\hspace{1cm}
\noindent
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
%fig install complete
\centering
\includegraphics[scale=0.43]{ch1InstallComplete}
\caption{Zotero安装完成}
\label{fig:ch1InstallComplete}
\end{minipage}
\end{figure}
\section{浏览器插件的安装}
要想快速的导入文献,最好装上Zotero的浏览器插件。
Zotero针对不同的浏览器(Chrome、Firefox、Safari和最新的Chromium内核的Edge,不支持IE浏览器)
有不同的插件。 在这里推荐比较好用的Chrome内核浏览器:
CentBrowser(百分浏览器),可以到\url{http://www.centbrowser.cn/history.html}
根据自己的操作系统位数,下载安装版或便携版。
在访问\href{https://www.zotero.org/download/}
{Zotero浏览器插件安装网站https://www.zotero.org/download/}时,
网站会检测当前所用浏览器内核,提示安装相应插件,
如\autoref{fig:ch1PluginWeb}所示。可以直接点击\menu{Install Chrome Connector},
然后出现是否需要安装的提示,如\autoref{fig:ch1PluginInstall},
点击\menu{添加扩展程序}进行插件安装。插件的安装过程有可能需要翻墙,
成功安装后会在合适的位置根据当前网页的类型显示不同图标,
一般网页的图标如\autoref{fig:ch1ZoteroIcon}显示,如果没有打开网站,
则会显示一个灰色的“Z”。
如果无法安装,可以到\href{https://crxdown.com/}
{https://crxdown.com/},输入ID“ekhagklcjbdpajgpjgmbionohlpdbjgc”(不含引号),点击\menu{下载},下载针对Chrome内核的插件进行离线安装。
% browser type
\begin{figure}[htbp]
\centering
\includegraphics[width=0.6\linewidth]{ch1PluginWeb}
\caption{Zotero浏览器插件安装网站会自动检测当前浏览器类型}
\label{fig:ch1PluginWeb}
\end{figure}
% install connector
\begin{figure}[htbp]
\centering
\includegraphics[width=0.6\linewidth]{ch1PluginInstall}
\caption{浏览器提示是否安装插件(扩展程序)}
\label{fig:ch1PluginInstall}
\end{figure}
%zotero icon
\begin{figure}[htbp]
\centering
\includegraphics[width=0.8\linewidth]{ch1ZoteroIcon}
\caption{Zotero浏览器中显示的图标}
\label{fig:ch1ZoteroIcon}
\end{figure}
下载后离线安装的方法是,以百分浏览器为例,
将下载的zotero\_connector\_x.crx(x为版本号)拖入百分浏览器,
而后浏览器的提示与\autoref{fig:ch1PluginInstall}类似,
如\autoref{fig:ch1PluginInstall2}。
%zotero icon
\begin{figure}[htbp]
\centering
\includegraphics[width=0.7\linewidth]{ch1PluginInstall2}
\caption{将下载的插件拖入到百分浏览器后的提示}
\label{fig:ch1PluginInstall2}
\end{figure}
Google 的 Chrome 浏览器宣布从最新Chrome版本开始默认只允许从 Chrome Web Store
下载安装扩展程序,网上有一些解决办法,但我没有试成功。
所以只能翻墙在Chrome的应用商店上下载或是使用修改版的Chrome,新版的Chromium内核的Edge
浏览器体现也不错,可以不用翻墙访问微软的扩展商店,方便地安装Zotero浏览器插件。
\section{Zotero插件安装}\label{sec:installPlug}
支持插件是Zotero的特色之一,安装插件后会使Zotero功能更加强大,Zotero插件的文件扩展名为xpi。大多数插件的发布网站为\href{https://github.com/}{Github}或\href{https://gitee.com/}{Gitee}开源仓库。本部分以\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}插件为例进行讲述,使用\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}可以安装部分常用插件,其它插件可以按下面讲述的方法进行安装。
\begin{enumerate}
\item 点击\href{https://github.com/syt2/zotero-addons/releases/latest/download/zotero-addons.xpi}{https://github.com/syt2/zotero-addons/releases/latest/download/zotero-addons.xpi},浏览器将会下载\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}的安装文件\footnote{一些常用的Zotero插件可以到\href{https://zotero-chinese.com/plugins/}{Zotero 插件商店}下载。},保存到自己可以找到的位置,如电脑桌面。
\item 在Zotero中依次点击击\menu{Tools-Plugins},如\autoref{fig:ch1installPlugin1}所示,在弹出的对话框中点击\menu{齿轮-Install Plugin From File},如\autoref{fig:ch1installPlugin2}所示,在弹出的对话框中浏览找到刚才下载的插件安装文件,如\autoref{fig:ch1installPlugin3},点击打开,然后插件就会安装,安装完毕后在管理插件界面就会出现刚才安装的插件,如\autoref{fig:ch1installPlugin4}所示。
%插件安装
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale=0.8]{ch1installPlugin1}
\caption{Zotero插件安装步骤1}
\label{fig:ch1installPlugin1}
\end{minipage}
\hspace{1.5cm}
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale=0.5]{ch1installPlugin2}
\caption{Zotero插件安装步骤2}
\label{fig:ch1installPlugin2}
\end{minipage}
\end{figure}
%插件安装步骤3
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.8]{ch1installPlugin3}
\caption{Zotero插件安装步骤3}
\label{fig:ch1installPlugin3}
\end{figure}
%插件安装步骤4
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.8]{ch1installPlugin4}
\caption{已经安装的Zotero的插件}
\label{fig:ch1installPlugin4}
\end{figure}
\item 利用\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}安装插件:
安装完Zotero插件市场后,一些常用的Zotero插件也可以通过\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}安装,方法如下:
点击Zotero工具条上\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}的按钮,将会弹出\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}的界面,在里面显示了\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}支持的插件,包括了插件的名称、简单描述、发布时间、服务器最新版本、本地安装版本、本地状态(没有安装、禁用、已安装),最好将Automatic update add-ons选中,这样安装的插件就会自动更新。右击需要安装的插件,如Jasminum(茉莉花),再点击\menu{Install},Zotero插件市场将会安装刚才选中的插件,如\autoref{fig:ch1installPlugin5}所示,如果安装不正常可以在Select Source中选择其他的安装源。可以根据自己的需求安装插件,其中\href{https://github.com/windingwind/zotero-pdf-translate}{Translate for Zotero}、\href{https://github.com/l0o0/jasminum}{Jasminum}、\href{https://github.com/windingwind/zotero-better-notes}{Better Notes for Zotero}、\href{https://github.com/windingwind/zotero-actions-tags}{Actions and Tags for Zotero}、\href{https://github.com/redleafnew/zotero-updateifsE}{Green Frog}、\href{https://github.com/MuiseDestiny/zotero-attanger}{Zotero Attanger}等是比较常用的插件,这些插件的功能及使用方法请参考网上一些教程。
%插件安装步骤5
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.6]{ch1installPlugin5}
\caption{用\href{https://github.com/syt2/zotero-addons}{Zotero 插件市场}安装插件}
\label{fig:ch1installPlugin5}
\end{figure}
\end{enumerate}
\section{建立自己的Zotero文献库}\label{sec:newLibrary}
\subsection{设置文献库在硬盘上的位置}
\begin{enumerate}
\item
建立自己的Zotero文献库首先需要选择自己的将要建立文献库在硬盘上的位置,
方法是在Zotero中依次点击\menu{Edit-Settings},
如\autoref{fig:ch1ZoteroPre1}所示。
%data folder
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.4]{ch3ZoteroPre1}
\caption{打开Zotero设置}
\label{fig:ch1ZoteroPre1}
\end{figure}
\item
在弹出的Zotero Settings对话框中,点击\menu{Advanced},再点击Files and Folders中Linked Attachment Base Directory后面的\menu{Choose...},浏览选择
我们存放全文文件夹。
文献库在Zotero中默认的存贮位置为\winpath{C:\Users\<Your Name>\Zotero},
最好我们不要将这些数据不要存放在系统盘,防止系统崩溃造成无法挽回的损失。
点击Custom后面的\menu{Choose...}以将这个目录改为自己的文件夹,如\autoref{fig:ch3BaseDir}所示
%data folder
\begin{figure}[htbp]
\centering
\includegraphics[width=0.8\linewidth]{ch3BaseDir}
\caption{Zotero文件夹设置}
\label{fig:ch3BaseDir}
\end{figure}
\item \label{sec:creat_folder}
设置完文献存贮位置后,最好还要在Zotero中根据自己的课题方向或文献的类型等建立不同的分类(文件夹),
方便对文献进行分类管理。
建立分类(文件夹)的方法是在Zotero中依次点击\menu{File-New Collection...},
如\autoref{fig:ch1ZoteroNewColl1}所示,或是在Zotero左侧的\menu{My library}上右击,
选择\menu{New Collection...},
在弹出的对话框中输入自己的分类名称,如\autoref{fig:ch1ZoteroNewColl2}所示。
%New Collection
\begin{figure}
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale=0.4]{ch1ZoteroNewColl1}
\caption{在Zotero中新建分类步骤1}
\label{fig:ch1ZoteroNewColl1}
\end{minipage}
\hspace{1.5cm}
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale=0.4]{ch1ZoteroNewColl2}
\caption{在Zotero中新建分类步骤2}
\label{fig:ch1ZoteroNewColl2}
\end{minipage}
\end{figure}
\item
然后就会看到Zotero左侧面板中出现了刚才新建的分类,
如\autoref{fig:ch1ZoteroNewColl3}所示,可以通过此方法建立多个分类,
而且可以通过在分类上右击,选择在分类下面再建立子分类,
如\autoref{fig:ch1ZoteroNewColl4}所示\footnote{除了分类(文件夹之外),还可以通过
标签和关联对文献进行管理,见\cref{sec:tag}和
\href{https://zhuanlan.zhihu.com/p/275707703}{Zotero分类、标签和关联的使用。}},
如果建立了多个分类(文件夹),在搜索文献结果中如何知道文献属于哪个或哪些文件夹呢?
Windows操作系统中,用鼠标点击选中文献后,按住\menu{ctrl},文献所属的文件夹(分类)就会高亮显示。
其他操作系统的按钮为: \keys{Option} (macOS), 或\keys{Alt} (Linux),详见
\href{https://www.zotero.org/support/collections_and_tags#identifying_collections_an_item_is_in}{Zotero官方文档}。
%New Collection2
\begin{figure}[htbp]
\begin{minipage}[t]{0.4\linewidth}
\centering
\includegraphics[scale=0.7]{ch1ZoteroNewColl3}
\caption{在Zotero中新建分类结果}
\label{fig:ch1ZoteroNewColl3}
\end{minipage}
\begin{minipage}[t]{0.7\linewidth}
\centering
\includegraphics[scale=0.45]{ch1ZoteroNewColl4}
\caption{可以在Zotero分类中新建子分类}
\label{fig:ch1ZoteroNewColl4}
\end{minipage}
\end{figure}
\end{enumerate}
\subsection{从网站导入题录及全文} \label{sec:ImportFromWeb}
有很多方式可以在Zotero库中添加文献条目,最方便的还是直接在网上数据库进行导入,
安装浏览器插件(扩展)的目的也正是为此。
浏览器上Zotero的图标会根据当前打开网页的文献类型而显示不同的图标,
默认如\autoref{fig:ch1ZoteroIcon}显示,
当前网页含有多条文献时显示为文件夹图标,如果是学位论文则显示学位帽图标。
Zotero的这种自动感知功能十分强大,
期刊的网页我目前还没有碰到过不能感知的。实际上自动感知所支持的网页还有Amazon,Nytimes等,
而且Zotero支持的网页数目还在持续增长。
Zotero支持现在常见的网络数据库,如\href{https://www.sciencedirect.com/}{ScienceDirect}、\href{https://link.springer.com/}{Springer}及\href{https://pubmed.ncbi.nlm.nih.gov/}{PubMed}文献数据库等。我们仅以\href{https://www.sciencedirect.com/}{ScienceDirect}数据库、
\href{www.cnki.net}{中国知网CNKI}和\href{https://scholar.google.cz/schhp?hl=zh-CN}{Google Scholar}为例看一下。
\subsubsection{ScienceDirect文献导入}
完全打开\href{https://www.sciencedirect.com/}{ScienceDirect}上某篇文章网页,鼠标指向Zotero在浏览器中的图标时,
会提示:\menu{Save to Zotero (ScienceDirect)}, 如\autoref{fig:ch1SDImport}。
一般括号中会显示当前文献所属的数据库或期刊名称。
此时,点击这个图标,这篇文献就会导入到Zotero库中,如\autoref{fig:ch1SDRef}。
比较吸引人的是,如果有这个数据库(期刊)的权限,
这个篇对应的PDF会同时下载下来\footnote{\href{https://www.sciencedirect.com/}{ScienceDirect}使用了一些反机器人保护措施,因此在下载PDF全文时会弹出提醒对话框,验证非机器人操作,点击对话框中的方框即可。},而且链接到这篇文献,在Zotero文献库中双击这个条目,
则系统会自动调用PDF阅读器打开这篇文献,
是不是很方便\footnote{一般情况下会调用操作系统默认地打开PDF的软件来打开PDF附件,
如果需要修改打开PDF附件的软件,请参阅\cref{sec:open_PDF}}?
如果打开文献网页时鼠标指向Zotero在浏览器中的图标时提示
\menu{Save to Zotero (Web Page with snapshot)},
原因是网页还没有完全打开,稍等一会儿或是刷新网页等显示正常了再导入。
%SD import
\begin{figure}[htbp]
\centering
\includegraphics[width=0.9\linewidth]{ch1SDImport}
\caption{导入\href{https://www.sciencedirect.com/}{ScienceDirect}数据库时的提示}
\label{fig:ch1SDImport}
\end{figure}
%SD ref
\begin{figure}
\centering
\includegraphics[width=0.9\linewidth]{ch1SDRef}
\caption{导入的\href{https://www.sciencedirect.com/}{ScienceDirect}文献在Zotero库中的显示结果}
\label{fig:ch1SDRef}
\end{figure}
\subsubsection{中国知网文献导入} \label{sec:cnki}
在中国知网主页\url{http://www.cnki.net/}搜索结果中点击具体的文献,
打开文献的页面,此时鼠标移向Zotero在浏览器中的图标时,提示\menu{Save to Zotero (CNKI)},
如\autoref{fig:ch1CNKIImport},点击这个图标,对应的文献就会导入到Zotero库中,如果有权限,
对应的全文CAJ或PDF会一起导入\footnote{但此功能不稳定,可能会因为\href{www.cnki.net}{中国知网}的升级而失效。}。如果\url{http://www.cnki.net/}
这个网站不好用,可以试试\url{http://epub.cnki.net/kns/default.htm}。
如果你在中国知网检索文献时发现题录无法识别(识别为网页),请确认你是否是在校外通过
VPN登录访问的\href{www.cnki.net}{中国知网}, 如果是这种情况,请到
\url{https://github.com/Zotero-CN/translators_CN}下载新的
\href{https://github.com/Zotero-CN/translators_CN}{cnki.js}并替换电脑上旧的
针对于中国知网的translator \href{https://github.com/Zotero-CN/translators_CN}
{cnki.js},或是通过茉莉花插件来更新
\href{https://github.com/Zotero-CN/translators_CN}{cnki.js},
详见\cref{sec:cnki_fulltext},或是设置一下浏览器详见
\href{https://zhuanlan.zhihu.com/p/110731827}{如何在家愉快地使用Zotero通过远程访问收集知网数据}。最好的办法是
通过\href{ http://fsso.cnki.net}{http://fsso.cnki.net中国知网高校/机构外部访问系统}选择自己
的学校或机构后,点击\menu{前往},而后输入自己在学校或机构的账号、密码,点击\menu{登录},或许
还需要点击\menu{Accept}同意一些条款,然后浏览器会重新定向到
\href{www.cnki.net}{https://www.cnki.net/},使用就和在学校一样了,当然有
些学校或机构可能没有在\href{www.cnki.net}{https://www.cnki.net/}列表上,只能
用上面的其它办法了,在家使用知网也参见
\href{https://zhuanlan.zhihu.com/p/351547307}{Zotero CNKI翻译器更新(适合在家使用知网)}。
%CNKI import
\begin{figure}[htbp]
\centering
\includegraphics[width=0.7\linewidth]{ch1CNKIImport}
\caption{导入的\href{www.cnki.net}{中国知网}数据库时的提示}
\label{fig:ch1CNKIImport}
\end{figure}
\subsubsection{通过Google Scholar导入文献}
在\href{https://scholar.google.cz/schhp?hl=zh-CN}{Google Scholar}搜索结果页面中,Zotero在浏览器中图标会变成一个文件夹图标,
点击这个小图标,在显示的页面中我们可以选择需要的条目,然后点击\menu{OK},如\autoref{fig:ch1googlescholar}所示,
我们选择的条目就会自动导入的Zotero库中。
但是Zotero的浏览器插件不支持\href{https://scholar.google.cz/schhp?hl=zh-CN}{Google Scholar}的一些镜像网站(如\url{https://scholar.glgoo.org/})。
%谷歌学术 import
\begin{figure}[htbp]
\centering
\includegraphics[width=0.8\linewidth]{ch1googlescholar}
\caption{\href{https://scholar.google.com}{Google Scholar}文献导入}
\label{fig:ch1googlescholar}
\end{figure}
\subsection{通过文献标识符导入题录}
如果已知文献的ISBN、DOI、PMID或arXiv ID,
可以通过文献标识符导入到Zotero库中,在Zotero中,点击魔术棒,
输入这些ID,如DOI:10.1016/j.meatsci.2016.03.026,
如\autoref{fig:DOI}所示,然后按\keys{回车键},则对应的文献就会被导入到库中,
注意如用这种方式导入文献需要保持互联网畅通\footnote{当前输入中文文献的DOI等标识符还不能有效识别。}。
%DOI import
\begin{figure}[htbp]
\centering
\includegraphics[width=0.7\linewidth]{ch1DOI}
\caption{通过DOI导入文献}
\label{fig:DOI}
\end{figure}
\subsection{已有PDF文献的导入} \label{sec:EngPDFIm}
对于以前下载的PDF文献,Zotero也可以很方便地提取PDF的元
信息(这里PDF的导入是指英文的PDF文件,
中文PDF的导入方式见\cref{sec:Chinese_PDF}),同时把此PDF作为附件链接到这篇文献中。
已有PDF文献导入的方式是将PDF直接拖入到Zotero的空白处,或两个条目中间,直到显示一条短线,放开鼠标。
如\autoref{fig:ch1PDFImport}所示,
Zotero会自动提取该PDF文件元数据(如文章的作者、题目、年代等信息),添加此PDF对应的题录到Zotero中,并且将此PDF作为条目的附件,
如\autoref{fig:ch1PDFImport1}所示。如果拖动PDF到条目上放开鼠标,此PDF将会作为条目的附件导入。
%PDF import
\begin{figure}[htbp]
\centering
\includegraphics[width=0.7\linewidth]{ch1PDFImport}
\caption{直接将PDF文件插入到Zotero中}
\label{fig:ch1PDFImport}
\end{figure}
\begin{figure}[htbp]
\centering
\includegraphics[width=0.7\linewidth]{ch1PDFImport1}
\caption{Zotero提取PDF元数据}
\label{fig:ch1PDFImport1}
\end{figure}
\subsection{从其他文献管理软件导入}\label{OtherRefSoft}
如果以前用其他文献管理软件或是从其他人的Zotero库中导入,
Zotero可以方便地导入。首先,从其他文献管理软件导出BibTex、RIS或Zotero RDF格式。
然后,在Zotero中点击\menu{File-Import},
如\autoref{fig:ch1ImportFromOther}所示
,根据提示找到导出的文件即可将那些文献导入到Zotero中。
%imort from other software
\begin{figure}
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale = 0.6]{ch1ImportFromOther}
\caption{导入其他文献管理软件数据}
\label{fig:ch1ImportFromOther}
\end{minipage}
%Manual New refence
\hspace{2cm}
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale = 0.6]{ch1ManualNew}
\caption{Zotero中手动添加新文献}
\label{fig:ch1ManualNew}
\end{minipage}
\end{figure}
\subsection{手动录入题录}\label{sec:ManualImport}
对于那些不能从网上找到的文献,如一些老的文献、国家标准、
会议论文等,只能手动录入文献的信息。手动新建文献的方法是:
在Zotero界面中点击New Item图标或\menu{File-New Item},
选择正确的文献类型,如\autoref{fig:ch1ManualNew}所示,
然后在Zotero右侧填入文献对应的信息,如:题目、作者、年代等信息,
如\autoref{fig:ch1ManualNewBook}所示。
%Manual New refence
\begin{figure}
\centering
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale = 0.5]{ch1ManualNewBook}
\caption{Zotero中新建书籍}
\label{fig:ch1ManualNewBook}
\end{minipage}
\hspace{2cm}
% %link file
\begin{minipage}[t]{\dimexpr0.5\textwidth-4em}
\centering
\includegraphics[scale = 0.8]{ch1LinkFile1}
\caption{Zotero中链接文献}
\label{fig:ch1LinkFile1}
\end{minipage}
\end{figure}
%link file2
\begin{figure}
\centering
\includegraphics[width=0.8\linewidth]{ch1LinkFile2}
\caption{通过右击Zotero中链接文献}
\label{fig:ch1LinkFile2}
\end{figure}
\subsection{链接全文}\label{sec:linkFulltex}
对于从其他网站下载的全文或其他附件信息,
我们可以手动链接到参考文献条目中,先选中对应的参考文献条目
,在Zotero中点击Add Attachment图标,
选择\menu{Attach File ...},
如\autoref{fig:ch1LinkFile1}所示,找到相应的附件。
或在条目上右击,选择\menu{Add Attachment-File},如\autoref{fig:ch1LinkFile2}所示,
后续步骤与前述相同。链接上附件后,原来存的文件可以删除。
\subsection{Zotero 修改打开附件(PDF)的阅读器的方法}\label{sec:chang_pdf_browser}
在Zotero 中内置了打开PDF的阅读器,按\cref{sec:linkFulltex}链接了全文后,
双击条目或PDF默认情况会调用其内置的PDF阅读器打开附件,
但是在内置的PDF阅读器做的标记、笔记,
用其它PDF阅读器
(如将PDF文件分享给他人后)打开后,
里面的标记、笔记会消失,只能在内置阅读器中
点击\menu{File-Save As...}另存为其它PDF
时,
再用其它阅读器打开才可以保留标记、笔记,
如果不习惯,可以设置用系统默认的或自定义PDF阅读器。步骤如下:
在Zotero依次点击\menu{Edit-Settings-General},
在Reader下面,点击Open PDFs Using后面的选择框,
点击 \menu{System Default}即可使用系统默认的PDF阅读器,
也可以点击\menu{Custom....},找到自定义的其它打开PDF的程序
,如\autoref{fig:ch1customPDFBrowser}所示。
%link file2
\begin{figure}
\centering
\includegraphics[width=0.8\linewidth]{ch1customPDFBrowser}
\caption{自定义打开PDF的软件}
\label{fig:ch1customPDFBrowser}
\end{figure}
\begin{figure}[ht]
\centering
\includegraphics[scale=0.6]{ch4attangerOpen}
\caption{使用\href{https://github.com/MuiseDestiny/zotero-attanger}{Zotero Attanger}自定义打开PDF的软件}
\label{fig:ch4attangerOpen}
\end{figure}
安装\href{https://github.com/MuiseDestiny/zotero-attanger}{Zotero Attanger}插件后,右击PDF附件,也可以选择使用什么软件打开附件,如\autoref{fig:ch4attangerOpen}所示,更详细的介绍也可参见\href{https://zhuanlan.zhihu.com/p/373952017}
{Zotero如何设置打开PDF附件的软件}。
\subsection{删除(合并)重复文献}\label{sec:delDup}
从多个不同数据库导入的文献可能会有重复,即两个条目完全相同,这时就需要手动删除重复文献。
Zotero允许一个条目同时存在于多个分类(文件夹)中,这种情况不属于重复文献。删除重复文献的方法
是点击Zotero左侧的\menu{Duplicate Items},检测到的重复文献就会出现中间的面板中,
点击其中一条文献,与之重复的文献就会全部被选中,右侧面板中显示重复文献的情况。选择其中一条
作为主条目,再点击\menu{Merge * items},重复文献就会被删除(合并),
如\autoref{fig:ch1MergeDup}所示。如果删除(合并)多条重复文献,在点击选中条目后,按
\keys{Ctrl+A}或点击\menu{Edit-Select All}选中所有重复文献,
再点击\menu{Merge * items}即可,或使用\href{https://chenglongma.com/zoplicate/}{Zoplicate}插件更智能地处理重复条目,它可以检测重复条目、批量处理重复条目、标记“非重复条目”、显示重复条目统计信息,也可以使用JavaScript脚本批量删除(合并)重复文献,
见\cref{sec:DelDupBatch}。如何选中重复条目中的某条文献见\cref{sec:selectDup}。
%删除重复文献
\begin{figure}[htbp]
\centering
\includegraphics[width=1.0\linewidth]{ch1MergeDup}
\caption{删除(合并)重复文献}
\label{fig:ch1MergeDup}
\end{figure}
\subsection{展开和折叠所有条目的方法}\label{sec:fold_collapse_item}
如果想一次展开所有条目以查看条目的附件或笔记,每次都用鼠标来点击三角有些麻烦,可以用快捷键来展开和折叠。
展开所有条目:\keys{Shift+=} (如果有数字小键盘,可以直接按\menu{+} )。
折叠所有条目:\keys{-}
操作见\href{https://zhuanlan.zhihu.com/p/544153534}{如何展开和折叠所有条目?}
\chapter{在Word中写作时用Zotero插入参考文献}\label{ch:insert}
建立了自己的Zotero文献库后,
在写文章尤其是综述类的文章时就可以方便地利用Zotero插入文献了。
现在Zotero对于Libre Office中的Writer和MS Office中的Word支持比较好。
尽管在WPS中会出现Zotero的工具条,但在插入文献时会出现错误。
本文以Word 2021为例进行讲述。如果安装正确的话,在Word中会形成Zotero的工具条,
如\autoref{fig:ch2ZotoeroTool}所示,
主要操作在这个工具条中进行。
如果在Word中没有出现Zotero的工具条,可以尝试用\cref{sec:tool_bar}的方法解决。
%tool bar
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.6]{ch2ZotoeroTool}
\caption{Zotero在Word中工具条}
\label{fig:ch2ZotoeroTool}
\end{figure}
\section{插入参考文献}\label{sec:insertRef}
我们在写文章时,尤其是文章的前言或数据的分析讨论部分及在综述类的文章中往往需要插入参考文献,
在Word中插入Zotero管理的参考文献的方法比较简单,步骤如下:
\begin{enumerate}
\item
首先打开Zotero,然后点击Zotero在Word工具条中的第一个按钮\menu{Add/Edit Citation},
在弹出的对话框中选择需要的Style(一般是期刊或数据库的名称),
点击\menu{OK},如\autoref{fig:ch2WordInsert}所示。
%select style
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.6]{ch2WordInsert}
\caption{选择需要的Style}
\label{fig:ch2WordInsert}
\end{figure}
\item
如果列表中没有需要的格式\label{tag:notyle},
点击\autoref{fig:ch2WordInsert}中的\menu{Manage Styles...},
弹出\menu{Zotero Preferences}对话框,
如\autoref{fig:ch2ZoteroPre}所示。
%Zotero Preferences
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.6]{ch2ZoteroPre}
\caption{Zotero Preferences}
\label{fig:ch2ZoteroPre}
\end{figure}
\item
点击\autoref{fig:ch2ZoteroPre}中\menu{+},
找到从其它地方得到的csl文件。
或是点击\menu{Get additional styles...},则会打开Zotero的Style仓库,
从中搜索我们需要的期刊,如meat science,
在得到的结果点击需要的期刊格式,
这个Style文件就会加入到Zotero Style管理器中,以后可以直接调用,
如\autoref{fig:ch2ZoteroStyle}所示,
返回到\autoref{fig:ch2WordInsert},点击\menu{OK}。
%lZotero仓库
\begin{figure}[htbp]
\centering
\includegraphics[width=0.7\linewidth]{ch2ZoteroStyle}
\caption{Zotero Style仓库}
\label{fig:ch2ZoteroStyle}
\end{figure}
\item
接着会出现搜索框,可以在搜索框输入关键词,
如文章的作者,年代,题目等,以个人经验,
输入文章的题目搜索的结果最为准确,点击搜索结果我们希望插入的文献,
如\autoref{fig:ch2ZoteroSearch}所示,
然后再按\keys{回车键}或点击\arrowkeyright,则选择的文献就会插入到Word中。
%搜索Zotero库
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.45]{ch2ZoteroSearch}
\caption{搜索Zotero文献库}
\label{fig:ch2ZoteroSearch}
\end{figure}
\item
但参考文献现在只是插入到正文中,还没有出现文末的参考文献列表,
要想显示它,首先将鼠标点击该Word文档的末尾,
然后点击Zotero在Word中工具条中的第二个按钮\menu{Add/Edit Bibliography},
刚插入的文献最会显示在文档的末尾,
显示的格式就是我们在\autoref{fig:ch2WordInsert}选择的Style规定的格式,
如\autoref{fig:ch2Bibliography}所示,
仅需第一次点击这个\menu{Add/Edit Bibliography}按钮,
后面在添加、删除其他文献时,正文的引用及文末的参考文献列表最自动更新,
是不是很方便?可以按相同的方法插入其他文献
\footnote{如果觉得通过搜索的方式插入文献不方便可以切换到\menu{经典视图},
见\cref{sec:classView}。}。
%文末文献
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.40]{ch2Bibliography}
\caption{插入文末参考文献的方法}
\label{fig:ch2Bibliography}
\end{figure}
\end{enumerate}
\section{删除参考文献及调整参考文献的顺序}
删除参考文献的方法比较简单,在正文中点击不需要文献,
此时文献的背景会变为灰色,选择不需要文献,剪切或删除就可以了,
文末的参考文献列表会自动更新。
如果需要删除的文献的地方引用了多条文献,
则用鼠标点击引用多条文献的地方,然后点击Zotero在Word工具条中的第一个按钮\menu{Add/Edit Citation},
在弹出的对话框中删除不需要的文献即可,
如\autoref{fig:ch2MultiRef}所示,当然单条参考文献的删除也可以用这个方法。
调整参考文献顺序的方法是,
将正文中的包括文献引用的部分剪切到合适的部分即可,文末的参考文献列表会自动更新,
如果没有自动更新点击Zotero在Word工具条中\menu{Refresh}按钮,
也可以参照\cref{sec:norefresh}打开自动更新。
%删除文献
\begin{figure}[htbp]
\centering
\includegraphics[width=0.9\linewidth]{ch2MultiRef}
\caption{删除参考文献的方法}
\label{fig:ch2MultiRef}
\end{figure}
\section{切换Style}\label{sec:changeStyle}
尽管不愿意看到,但被期刊拒稿也是常见的事情,
这时就需要修改后重新投稿,不同期刊往往正文中的引用和文末的参考文献列表格式要求不一样,
文献重投时就需要换另外一个期刊的Style。
换style的方法也比较简单,
只需要点击Zotero在Word工具条中的\keys{Document Preferences}按钮,
在列表中选择合适的期刊就可以,
如\autoref{fig:ch2ChangeStyle}所示,如果列表没有我们需要的期刊格式,
参见\cpageref{tag:notyle}\cref{sec:insertRef}。
%change style
\begin{figure}
\centering
\includegraphics[width=0.9\linewidth]{ch2ChangeStyle}
\caption{切换Style}
\label{fig:ch2ChangeStyle}
\end{figure}
%添加本地csl文件
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.45]{ch2addStyle}
\caption{添加本地csl文件}
\label{fig:ch2addStyle}
\end{figure}
\section{添加本地csl文件}\label{sec:addStyle}
如果Zotero仓库没有需要的参考文献格式,可以到\href{https://zotero-chinese.com/styles/}{Zotero中文社区中文CSL样式版块}找找有类似的中文期刊和国内一些大学的学位论文样式,或是自己进行编辑Style文件,Zotero中提供了编辑Style文件的方法,
在\url{http://editor.citationstyles.org/visualEditor/}网站上可以进行在线编辑csl文件,而后下载,同时也可以在这个网站上搜索需要的Style文件,
可以先选择格式比较接近的期刊格式,再进行编辑,详情见\href{https://zhuanlan.zhihu.com/p/336009544}{style csl文件简单编辑}。但总体上相对 Endnote的编辑格式文件而言,编辑csl文件比较复杂,如果需要可以自行百度或Google方法,或在论坛及QQ群求助。
从在线编辑网站或从其他人那得到csl文件后,需要添加到本地Style目录,在格式化参考文献时才可以使用。
添加的方法是依次点击\menu{Edit-Settings-Cite},点击Style Mangager中右下角的\menu{+},
如\autoref{fig:ch2addStyle}所示,找到自己的csl文件,再点击\menu{打开}即可。
在添加\href{https://zotero-chinese.com/styles/}{Zotero中文社区中文CSL样式}时有可能会提示“xxx.csl 不是一个有效的 CSL 1.0.2 样式文件,你可能不能和 Zotero 一起正常工作。”,如\autoref{fig:ch2invalidcsl}所示,这是因为该样式使用了 \href{https://github.com/Juris-M/citeproc-js}{citeproc-js} 提供的 \href{https://citeproc-js.readthedocs.io/en/latest/csl-m/index.html}{CSL-M} 扩展功能,属于正常现象,点击的\menu{OK}直接忽略即可。
%ch2invalidcsl
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.5]{ch2invalidcsl}
\caption{不是一个有效的 CSL 1.0.2 样式文件提示}
\label{fig:ch2invalidcsl}
\end{figure}
%remove field codes
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.5]{ch2Unlink}
\caption{去除域代码}
\label{fig:ch2Unlink}
\end{figure}
\section{去除域代码}\label{sec:Remove_field}
插入到正文的中的参考文献引用及文末的参考文献列表是以域代码的形式存在于Word文档中的,在投稿之前可以去除这些域代码,\textbf{\emph{注意去除域代码操作不可撤消,操作之前一定要谨慎!!!}}
去除后这些参考文献与其他正文显示就没有区别了,去除的方法是,首先将文件另存一个其它文件作为备份,
然后点击Zotero在Word工具条中的\menu{Unlink Citations},再点击确定,
如\autoref{fig:ch2Unlink}所示。需要注意的是去除域代码后,再插入或删除参考文献列表就不会再自动更新了,而且再用Zotero插入的文献会自动重新编号,要想在原来基础上更新,
只能在还保留域代码的文件中进行操作。
\section{使用GB/T 7714 2015 样式期刊类型显示为[Z]的原因及解决方法}\label{sec:GBShowZ}
正常情况下,文献类型为Journal Article期刊文章使用GB/T 7714 2015 样式文件(如\href{https://zotero-chinese.com/styles/gb-t-7714-2015-numeric-bilingual/}{GB/T 7714—2015(顺序编码,双语)})时文章类型标识应该显示为[J],今天碰到一个网友的却显示为[Z],形如:
\begin{lstlisting}[language=HTML]
[1] 田书欣, 程浩忠, 曾平良, 等. 大型集群风电接入输电系统规划研究综述[Z]//中国电机工程学报: v.34;No.489. 2014: 1566-1574.
\end{lstlisting}
经过检查发现,其条目的Extra字段包括如下内容:\verb|type: 10.13334/j.0258-8013.pcsee.2014.10.007|,而在csl中,标识符识别的宏为:
\begin{lstlisting}[language=XML]
<!-- 文献类型标识 -->
<macro name="type-code">
...
<else-if type="article-journal article-magazine" match="any">
<text value="J"/>
</else-if>
<else-if type="article-newspaper">
<text value="N"/>
...
<else>
<text value="Z"/>
</else>
...
</macro>
\end{lstlisting}
因此,csl调用了Extra中的文献类型信息:\verb|type: 10.13334/j.0258-8013.pcsee.2014.10.007|是标识为[Z]的原因,而这个 \verb|10.13334/j.0258-8013.pcsee.2014.10.007|在csl中是不没有对应文献类型的,所以文献标识符取值成了[Z]。
明白了原理,解决方法就比较简单了,将Extra字段清空,然后在Word中刷新文献即可。当然只把type:这个删除也可以。清除后显示为(当前条目的卷也是有问题的,要完全显示正常修改条目中的卷即可),最终显示为:
\begin{lstlisting}[language=HTML]
[1] 田书欣, 程浩忠, 曾平良, 等. 大型集群风电接入输电系统规划研究综述[J]. 中国电机工程学报, 2014, v.34;No.489(10): 1566-1574.
\end{lstlisting}
可以安装\href{https://github.com/redleafnew/zotero-updateifs}{Green Forg}插件支持批量Extra清空。
\chapter[利用坚果云同步全文]{利用坚果云同步全文\footnote{如果没有在不同电脑同步题录和全文的需要,本章可以略过。}}\label{ch:syn}
需要在不同电脑上阅读文献及写作的人有同步的需要。另外,如果出于对题录信息和全文备份的需要,也可以使用同步。在本章我们使用Zotero来同步题录信息,使用坚果云来同步全文信息。
\section{注册Zotero用户}\label{sec:zotReg}
使用Zotero来同步题录信息需要注册Zotero用户,注册的网址是\url{https://www.zotero.org/user/register},注册的流程与一般网站注册用户差别不大,
填入用户名,Email,密码等,然后点击进行人机身份验证前的方框,
根据提示完成后续步骤,最后点击 \menu{Register}完成注册,
如\autoref{fig:ch3Register}所示。注册完成后网站提示:
Thanks for registering. We’ve sent an email to activate your account.
而后查收邮箱,会收到如下内容的邮件:Thanks for signing up for a zotero.org account! Please confirm your email address
by clicking on the following link or pasting it into your browser:
\url{https://www.zotero.org/user/validate/1ab18fc52bb2b7ba6ddb},validate后面的内容会有差异,
将这些地址复制到浏览器地址栏,按回车,如果页面显示:Success! You registered your Zotero account!则邮箱验证成功。
如果收件箱内没有收到邮件,可以到垃圾邮件内找找,有可能这封邮件被邮件系统误认为是垃圾邮件了。不进行激活也可以使用,
但是无法创建群组(创建群组见\cref{sec:CreatGroup})。值得注意的是,注册Zotero用户时需要翻墙,
因为这个网站需要调用Google的人机身份验证,如果不翻墙的话,
无法完成注册\footnote{20211003现在好像不需要翻墙也可以注册Zotero账户了。},
当然也可以请国外的亲朋好友帮忙注册用户。
完成Zotero用户注册以后还需要在Zotero登录才能进行题录信息的同步,登录的方法见\cref{sec:syn}。
%register zotero
\begin{figure}[htbp]
\centering
\includegraphics[width=0.3\linewidth]{ch3Register}
\caption{注册Zotero界面}
\label{fig:ch3Register}
\end{figure}
\section{坚果云注册及设置}\label{sec:jianguoReg}
注册坚果云的目的主要是为了同步全文,Zotero也提供了同步全文的空间,
免费的空间只有300M,2G空间的年使用费为20\$,
如果是土豪可以选择使用Zotero来同步全文,
也算是为开源社区做点贡献,支持Zotero的发展。
另外一个可供选择的方法是使用Zotero来同步题录(Zotero提供的同步题录的空间貌似是无限的),
而使用同步盘来同步全文,
可以使用国外的\href{https://office.live.com/start/OneDrive.aspx}{OneDrive}、
\href{https://infini-cloud.net/en/index.html}{infiniCLOUD}、
\href{https://www.dropbox.com/}{Dropbox}、
\href{https://www.google.com/drive/}{Google Drive}、\href{https://mega.nz/}{MEGASync}等同步盘来完成,
但这些同步盘(网盘)要么在国内无法访问,要么速度比较慢,所以我们只能选择国内的同步盘来完成。
这里推荐使用坚果云同步盘,这个同步盘也支持多个操作系统,它可以还提供WebDAV的方式进行访问,对于普通用户,
它提供每个月1G的上传流量,3G的下载流量,超过以后停止上传或下载,到下个月后自动恢复,这些流量对于一般的用户也足够了。
\begin{enumerate}
\item 根据自己的操作系统到\url{https://www.jianguoyun.com/s/downloads}下载相应的客户端,
并进行安装,
安装过程与其他程序大同小异,在此不再赘述。安装完成以后,在系统托盘中会出现一个坚果的图标。
如果没有图标,可以到坚果云的安装目录中双击Nutstore.exe运行坚果云同步盘,
运行后需要注册一个坚果云的用户,
如\autoref{fig:ch3JianguoRe}所示,填入需要Email、
密码及昵称等信息,如\autoref{fig:ch3JianguoReg2}所示,
点击\menu{下一步},可能还需要手机验证。
后续还需要设置的文献贮存的地址,如\autoref{fig:ch3JianguoReg3}所示,
然后关闭此窗口。
当然也可以在坚果云的网站\url{https://www.jianguoyun.com/d/signup}上注册用户,
然后在\autoref{fig:ch3JianguoRe}点击\menu{登录},
登录完毕后再设置需要同步的目录。
%Jianguo reg
\begin{figure}[htbp]
\centering