forked from OpenHUTB/neuro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gb7714-2015ms.bbx
2950 lines (2840 loc) · 122 KB
/
gb7714-2015ms.bbx
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
%%
%% ---------------------------------------------------------------
%% biblatex-gb7714-2015 --- A biblatex implementation of the
%% GBT7714-2015 bibliography style,numerical sequence
%% Maintained by huzhenzhen
%% E-mail: [email protected]
%% Released under the LaTeX Project Public License v1.3c or later
%% ---------------------------------------------------------------
%%
%
% 版本和时间信息
%
\def\versionofgbtstyle{2022/11/07 v1.1k}
\def\versionofbiblatex{\abx@version}
\ProvidesFile{gb7714-2015ms.bbx}[\versionofgbtstyle biblatex bibliography style]
%\RequireBiber[3]%显式指定用biber后端,当用bibtex时会报错,但其实不会影响编译,只是采用bibtex后无法达成格式需求
%=====================================================================
% 加载标准样式
%=====================================================================
\RequireBibliographyStyle{numeric-comp}
\RequirePackage{xstring}%解决texlive2015的biblatex3.0不加载xstring包的问题
%=====================================================================
% 功能函数
%=====================================================================
%
% biblatex版本判断
% 20180629,v1.0k,hzz
%
% 原理方法:适用于3.10以上版本的biblatex,否则给出警告
\providetoggle{iftlatest}
\@ifpackagelater{biblatex}{2017/12/28}{%
\toggletrue{iftlatest} %假设是最新版biblatex
}{%
\blx@warning@noline{%
biblatex version is too old for this style\MessageBreak
if errors raised,Please update biblatex to the latest version.}%
}
%
% 判断CJK字符的函数,用于判断作者等信息是否由中文字符构成
% v1.0k,20180509,hzz
%
% 原理方法:用biber中的perl方法代替。因为利用tex函数对字符判断时,当字符在宏
% 中时,基于`的方法无法解决GBK编码的问题,基于CJKsymbol的方法无法解决utf-8
% 编码用xelatex编译的问题。
%
% 原理是:利用perl正则将中文标识记录到域中,
% 然后利用\iffieldundef和\iffieldequalstr进行判断
\providetoggle{ifCJKforgbt}
\def\testCJKfirst#1{%
\iffieldundef{#1}{\togglefalse{ifCJKforgbt}}{%
\iffieldequalstr{#1}{chinese}{\toggletrue{ifCJKforgbt}}{\togglefalse{ifCJKforgbt}}}}
%
% 2个卷的解析函数,用于连续出版物
%
% 原理方法: 范围起止间隔符号还是用-,而不是与date相同的/,因为有合期期刊的问题,需要用到/符号
\newcommand{\multivolparser}[1]{%
\IfSubStr{#1}{-}%
{\StrBefore{#1}{-}[\multivolfirst]\StrBehind{#1}{-}[\multivolsecond]}%
{\def\multivolfirst{#1}\def\multivolsecond{}}%
}
%
% 2个期的解析函数,用于连续出版物
%
\newcommand{\multinumberparser}[1]{%
\IfSubStr{#1}{-}%
{\StrBefore{#1}{-}[\multinumberfirst]\StrBehind{#1}{-}[\multinumbersecond]}%
{\def\multinumberfirst{#1}\def\multinumbersecond{}}%
}
%=====================================================================
% 数据模型定义
%=====================================================================
%定义类型和载体标识,从gb内容看载体基本属于介质。
%为与lee zeping的bst的样式统一,使用mark和medium这两域名
%为单个条目的姓名格式控制增加nameformat和namefmtid两个域
%为缩略信息文献表增加了shortbooktitle域
%为多语言排序增加了lansortorder域
%因为language域会被clearlang选项清除,增加languageid域,类型设为field而不是list
\DeclareDatamodelFields[type=field,datatype=literal]{mark,medium,nameformat}
\DeclareDatamodelFields[type=field,datatype=integer]{namefmtid}
\DeclareDatamodelFields[type=field,datatype=literal]{shortbooktitle}
\DeclareDatamodelFields[type=field,datatype=literal]{lansortorder}
\DeclareDatamodelFields[type=field,datatype=literal]{languageid}
\DeclareDatamodelFields[type=field,datatype=integer]{refnumber}
%因为biblatex更新3.14版本以后,biber对于为声明数据模型的条目类型
%不再默认读取,而是以空字符串作为条目类型名,自然在条目定义alias时
%就会出现问题,因此显式的声明一下newspaper,然后保留后面采用alias的方式
%而standard类型则是采用另一种方式直接在sourcemap中转换为其它类型。
\@ifpackagelater{biblatex}{2019/11/30}{%2019/12/01 v3.14
\DeclareDatamodelEntrytypes{newspaper}%
}{}
%%
%%符号的垂直位置调整一下
%% 20220625,hzz,v1.1i
\newlength{\BracketLift}
\setlength{\BracketLift}{0.0ex}
\renewcommand*{\bibleftparen}{\blx@postpunct\raise\BracketLift\hbox{(}}
\renewcommand*{\bibrightparen}{\blx@postpunct\raise\BracketLift\hbox{)}\midsentence}
\renewcommand*{\bibleftbracket}{\blx@postpunct\raise\BracketLift\hbox{[}}
\renewcommand*{\bibrightbracket}{\blx@postpunct\raise\BracketLift\hbox{]}\midsentence}
\newcommand*{\gbleftparen}{\raise\BracketLift\hbox{(}}
\newcommand*{\gbrightparen}{\raise\BracketLift\hbox{)}}
\newcommand*{\gbleftbracket}{\raise\BracketLift\hbox{[}}
\newcommand*{\gbrightbracket}{\raise\BracketLift\hbox{]}}
%=====================================================================
% 设置宏包选项
%=====================================================================
%
% 增加一个控制是否输出文献载体的选项
% 20191125,v1,0s,hzz
\newtoggle{bbx:gbmedium}
\DeclareBibliographyOption{gbmedium}[true]{%biblatex低版本
\settoggle{bbx:gbmedium}{#1}}
\ExecuteBibliographyOptions{gbmedium}
%
% 增加一个控制是否输出annotation域的选项,该域可以用于在文献条目后面输出一些注释信息
% 20190509,v1,0s,hzz
\newtoggle{bbx:gbannote}
\DeclareBibliographyOption{gbannote}[false]{%biblatex低版本
\settoggle{bbx:gbannote}{#1}}
\ExecuteBibliographyOptions{gbannote}
%
%用于在文献条目后面输出注释信息的宏
%FieldFormat{annotation}用于设置注释信息的格式
\DeclareFieldFormat{annotation}{%
\printtext{\addspace\gbleftparen#1\gbrightparen}%
}
\renewbibmacro*{annotation}{%
\iftoggle{bbx:gbannote}%
{\iffieldundef{annotation}%
{\printfile[annotation]{\bibannotationprefix\thefield{entrykey}.tex}}%
{\printfield{annotation}}}%
{}%
}
%
% 增加一个控制是否输出type域的选项
% 20190212,v1,0q,hzz
\newtoggle{bbx:gbfieldtype}
\DeclareBibliographyOption{gbfieldtype}[false]{%biblatex低版本
\settoggle{bbx:gbfieldtype}{#1}}
\ExecuteBibliographyOptions{gbfieldtype}
%
% 增加一个控制是否根据页码重设脚注数字标号的选项
% 20190422,v1,0r,hzz
\newtoggle{bbx:gbfnperpage}
\DeclareBibliographyOption{gbfnperpage}[false]{%
\settoggle{bbx:gbfnperpage}{#1}}
\ExecuteBibliographyOptions{gbfnperpage}
%
% 增加一个选项,用于控制是否实现GB/T 7714-2015标准的脚注文献表
% 20190203,v1.0p,hzz
% 原理方法:默认做patch,文献引用带圈上标数字表示,脚注中的文献用带圈非上标数字做标签
% 当前面的脚注中已经存在当前文献,那么当前文献内容不再输出而用同(4)这样的方式
% 需要注意的是由于小页环境和表格中的脚注本身的问题,可能会有一些问题
\DeclareBibliographyOption{gbfootbib}[false]{%
\ifstrequal{#1}{false}{}{\execgbfootbib\execgbfootbibfmt}}
\ExecuteBibliographyOptions{gbfootbib}
%
% 增加一个选项,用于控制分离后的脚注的格式
% 20220829,v1.1j,hzz
% 将原来的一个gbfootbib选项控制所有格式分离为由两个选项gbfootbib和gbfootbibfmt控制
% 分离后,gbfootbibfmt实现同(4)这样的方式,gbfootbib则实现全部的格式
\DeclareBibliographyOption{gbfootbibfmt}[false]{%
\ifstrequal{#1}{false}{}{\execgbfootbib}}
\ExecuteBibliographyOptions{gbfootbibfmt}
%%
\newlength{\footbibmargin}
\newlength{\footbiblabelsep}
\setlength{\footbibmargin}{1em}%脚注的段落左侧缩进距离
\setlength{\footbiblabelsep}{0.5em}%脚注中标记号与脚注段落的间距
\def\execgbfootbibfmt%
{%利用footmisc宏包来实现脚注文献的悬挂对齐
\AtEndPreamble{
\@ifclassloaded{beamer}{}{
%beamer类因为其特殊性,为避免冲突不调footmisc。
%同时footmisc与hyperref宏包也不兼容,所以使用footmisc时会破坏脚注的超链接
%如果要实现超链接可以将下句注释掉,这里留着主要是实现悬挂对齐。
%\PassOptionsToPackage{perpage,hang}{footmisc}%
%\RequirePackage{footmisc}%
%重新实现脚注的根据单页重设脚注号码
%重新实现脚注的悬挂对齐问题,不再使用footmisc,直接从latex核心代码和hyperref代码进行修改
%v1.0q 20190317 hzz
%v1.0r 20190422 hzz 根据gbfnperpage选项设置
\iftoggle{bbx:gbfnperpage}%
{\@addtoreset{footnote}{page}}{}%重设计数器
\@ifpackageloaded{hyperref}{%加载hyperref则对\H@@footnotetext做重定义
\long\def\H@@footnotetext##1{\insert\footins{%
\reset@font\footnotesize
\interlinepenalty\interfootnotelinepenalty
\splittopskip\footnotesep
\splitmaxdepth \dp\strutbox \floatingpenalty \@MM
\hsize\columnwidth \@parboxrestore
\protected@edef\@currentlabel{%
\csname p@footnote\endcsname\@thefnmark
}%
\color@begingroup
\leftskip \footbibmargin%增加的左侧缩进
\@makefntext{%
\rule\z@\footnotesep\ignorespaces##1\@finalstrut\strutbox%
}%
\color@endgroup}}%
\long\def\H@@mpfootnotetext##1{%
\global\setbox\@mpfootins\vbox{%
\unvbox\@mpfootins
\reset@font\footnotesize
\hsize\columnwidth
\@parboxrestore
\protected@edef\@currentlabel
{\csname p@mpfootnote\endcsname\@thefnmark}%
\leftskip \footbibmargin%增加的左侧缩进
\color@begingroup
\@makefntext{%
\rule\z@\footnotesep\ignorespaces##1\@finalstrut\strutbox}%
\color@endgroup}}
}{%否则对latex核心代码中的\@footnotetext做重定义
\long\def\@footnotetext##1{\insert\footins{%
\reset@font\footnotesize
\interlinepenalty\interfootnotelinepenalty
\splittopskip\footnotesep
\splitmaxdepth \dp\strutbox \floatingpenalty \@MM
\hsize\columnwidth \@parboxrestore
\protected@edef\@currentlabel{%
\csname p@footnote\endcsname\@thefnmark
}%
\color@begingroup
\leftskip \footbibmargin%增加的左侧缩进
\@makefntext{%
\rule\z@\footnotesep\ignorespaces##1\@finalstrut\strutbox%
}%
\color@endgroup}}%
\long\def\@mpfootnotetext##1{%
\global\setbox\@mpfootins\vbox{%
\unvbox\@mpfootins
\reset@font\footnotesize
\hsize\columnwidth
\@parboxrestore
\protected@edef\@currentlabel
{\csname p@mpfootnote\endcsname\@thefnmark}%
\leftskip \footbibmargin%增加的左侧缩进
\color@begingroup
\@makefntext{%
\rule\z@\footnotesep\ignorespaces##1\@finalstrut\strutbox}%
\color@endgroup}}
}
\long\def\@makefntext##1{%增加了脚注标记与正文的间隔
\parindent 1em\noindent \hb@xt@ 0em{\hss \@makefnmark\makebox[\footbiblabelsep]{}}##1}
}
%
%使脚注标记加圈并设置数字的字体为tiny,不使用修改thefootnote的方式
\def\@makefnmark{\hbox{\@textsuperscript{\textcircled{\tiny\@thefnmark}}}}
%做patch使得脚注内容中的脚注数字标签不上标
\pretocmd{\@makefntext}{%
\def\@makefnmark{%
\hbox{\textcircled{\tiny\@thefnmark}}%
}%
}{}{}
}
}
\def\execgbfootbib%
{%
%开启引用跟踪计数器,为使用\ifciteseen等测试命令
\ExecuteBibliographyOptions{citetracker=true}
%
%判断当前文献是否已经引用过且是做的footfullcite(即已经作为脚注输出文献内容)
%记录首次输出时的脚注号码,用于后面再次引用该文献时的输出,比如同(4)。
%v1.0q 20190309 区分使脚注标注适应minipage中的情况
\newbibmacro*{citesavefn}{%
\ifciteseen%当被引用过为true
{\ifcsdef{sec\arabic{refsection}\arabic{page}et\thefield{entrykey}}%当已经定义过脚注序号信息
{\csgdef{labelsec\arabic{refsection}\arabic{page}et\thefield{entrykey}}{%
\str@sameentry\gdef\@thefnmark{\csuse{sec\arabic{refsection}\arabic{page}et\thefield{entrykey}}}%
\@makefnmark%
}}%
{\csxdef{sec\arabic{refsection}\arabic{page}et\thefield{entrykey}}{%
\ifcsstring{@mpfn}{mpfootnote}{\@alph\c@mpfootnote}{\thefootnote}%
}}%
}%
{\csxdef{sec\arabic{refsection}\arabic{page}et\thefield{entrykey}}{%
\ifcsstring{@mpfn}{mpfootnote}{\@alph\c@mpfootnote}{\thefootnote}%
%判断在minipage中比较麻烦,这里使用\@mpfn的定义进行判断
}}%
}
%
%重定义\footfullcite使完成gb7714-2015的脚注文献要求
\DeclareCiteCommand{\footfullcite}[\mkbibfootnote]%
{\defcounter{maxnames}{\blx@maxbibnames}%局部定义maxnames和minnames计数器
\defcounter{minnames}{\blx@minbibnames}%使footfullcite内的作者输出与正文文献表中的一致。
\usebibmacro{prenote}%
\renewbibmacro*{postnote}{%
\iffieldundef{postnote}%
{}{\setunit{\addcolon\addspace}\printfield{postnote}}}%与ay样式不同,由于已修改postnote域格式,直接用printfield
}%
{\usebibmacro{citesavefn}%
\ifcsdef{labelsec\arabic{refsection}\arabic{page}et\thefield{entrykey}}%
{\csuse{labelsec\arabic{refsection}\arabic{page}et\thefield{entrykey}}}%\nopunct
{\usedriver{\DeclareNameAlias{sortname}{default}}{\thefield{entrytype}}}%
}%
{\multicitedelim}%
{\usebibmacro{postnote}}
}
%
% 增加一个选项,用于控制gb7714的使用范围,即英文文献和中文文献使用不同的样式
% 20180814,v1.0m,hzz
% 原理方法:
% 当gbstyle=true,则所有的文献使用国标样式,否则仅中文文献使用国标样式
\newtoggle{bbx:gbstyle}
\DeclareBibliographyOption{gbstyle}[true]{%biblatex低版本
\settoggle{bbx:gbstyle}{#1}}
%
% 增加一个控制是否输出文献类型和载体标识的选项
%
% 原理方法:
% 对于biblatex3.4以上版本DeclareBibliographyOption命令中的[datatype]如果是boolean,那么是可以省略的
% 所以用老版本的不用[datatype]的命令可以兼容所有biblatex版本
\newtoggle{bbx:gbtype}
%\DeclareBibliographyOption[boolean]{gbtype}[true]{%biblatex高版本
\DeclareBibliographyOption{gbtype}[true]{%biblatex低版本
\settoggle{bbx:gbtype}{#1}}
%
% 增加一个源文件编码选择选项,当true时可以使用GBK编码。
% v1.0k, 2018.05.08, by hzz
%
% 原理方法:将需要输出的中文字符串用命令形式表示存储,采用utf8编码时采用bbx文档
% 内的定义即是utf8编码的中文字符串,但tex源文件是gbk编码时,利用gb7714-2015-gbk.def
% 文档内的gbk编码的字符串覆盖。这种覆盖只能在宏包末尾加载时成功实现,所以使用
% AtEndOfPackage。该解决思路源自biblatex-caspervector宏包。
% 另外注意:
% gbk编码的tex文档,利用pdflatex/latex能正确编译,利用xelatex能编译,但中文显示乱码
% 在源文档前面增加 XeTeX 原语:\XeTeXinputencoding "GBK" 后,显示正常
% utf-8编码的tex文档,利用xelatex能正确编译,而pdflatex/latex不能编译。
\newtoggle{bbx:codegbk}
\DeclareBibliographyOption{gbcodegbk}[false]{%
\settoggle{bbx:codegbk}{#1}}
\def\str@bibliography{参考文献}
\def\str@references{参考文献}
\def\str@bytranslator{译}
\def\str@andotherscn{等}
\def\str@andcn{和}
\def\str@backrefpage{引用页}
\def\str@backrefpages{引用页}
\def\str@noaddress{出版地不详}
\def\str@nopublisher{出版者不详}
\def\str@edition{版}
\def\str@volumecn{卷}
\def\str@numbercn{册}
\def\str@serialcn{第}
\def\str@sameentry{同}
\def\str@incn{见}
\def\str@mathesiscn{硕士学位论文}
\def\str@phdthesiscn{博士学位论文}
\def\str@editorcn{主编}
\AtEndOfPackage{%
\iftoggle{bbx:codegbk}{%
\ExecuteBibliographyOptions{texencoding = GBK}
\input{gb7714-2015-gbk.def}
}{}}
%
% 增加一个严格按GB/T 7714-2015给出著录格式控制域的输出的选项
% v1.0k, 2018.05.08, by hzz
%
% 原理方法:
% 默认设置该选项为真,进而不输出GB/T 7714-2015中没有的域的信息
% 这样可以避免因为bib文件带有多余的域的信息的输出,比如因为bibtex样式
% 可能需要用于中英文判断的language域的信息。
\newtoggle{bbx:gbstrict}
\DeclareBibliographyOption{gbstrict}[true]{%
\settoggle{bbx:gbstrict}{#1}}
%
% 增加一个控制标题域超链接设置的选项
% v1.0k, 2018.05.24, by hzz
%
% 原理方法:
% 利用标题域格式来实现,默认设置该选项为false,不做超链接。
% 设置为true,则标题设置超链接
\newtoggle{bbx:titlelink}
\DeclareBibliographyOption{gbtitlelink}[false]{%
\settoggle{bbx:titlelink}{#1}}
%
% 增加一个控制参考文献标题是否能够被ctex宏包设置的选项
% v1.0l, 2018.07.02, by hzz
%
% 原理方法:
% 重定义biblatex的宏,去除使用本地化字符串的方式,是的可以利用ctexset进行设置
\newtoggle{bbx:ctexset}
\DeclareBibliographyOption{gbctexset}[true]{%
\settoggle{bbx:ctexset}{#1}}
\providecommand{\bibname}{参考文献}
\providecommand{\refname}{参考文献}
\AtEndOfPackage{%
\iftoggle{bbx:ctexset}{%
\def\blx@defbibstrings#1#2{%
\def\do##1{\csundef{abx@lstr@##1}\csundef{abx@sstr@##1}}%
\abx@dostrings
\csuse{abx@strings@#1}%
\setkeys{blx@lbx}{#2}%
\let\do\blx@defbibstrings@i
\csxdef{abx@strings@#1}{\abx@dostrings}%
}
}{}}
%
% 增加一个恢复域格式为标准样式的控制选项
% v1.0k, 2018.05.15, by hzz
%
% 原理方法:
% 默认设置该选项为false,采用国标要求的域格式输出相关域
% 当设置该选项为true时,则重新利用标准样式的域格式输出相关的域
\newtoggle{bbx:gbfieldstd}
\DeclareBibliographyOption{gbfieldstd}[false]{%
\settoggle{bbx:gbfieldstd}{#1}%
}
%
% 增加一个出版项自动处理控制选项,当true时使用出版者不详等信息补充缺失的出版信息。
%
\newtoggle{bbx:gbpub}
\DeclareBibliographyOption{gbpub}[false]{%
%\settoggle{bbx:gbpub}{#1} %或采用下面这一句
\ifstrequal{#1}{false}{\togglefalse{bbx:gbpub}}{\toggletrue{bbx:gbpub}}}
%
% 增加控制析出文献来源前的标点符号//输出的选项
% v1.0k, 2018.04.20,added in by hzz
\newtoggle{bbx:gbpunctin}
\DeclareBibliographyOption{gbpunctin}[true]{%
\settoggle{bbx:gbpunctin}{#1}}
%
% 增加一个处理佚名或noauthor的控制选项
%
% 原理方法:在顺序编码制中不需要使用,为与作者年制的兼容性考虑,这里也增加避免报错
\DeclareBibliographyOption{gbnoauthor}[true]{}%
%
%为日期控制格式增加一个gb7714-2015选项
%
\csdef{mkdaterangegb7714-2015}#1{%
\begingroup
\blx@metadateinfo{#1}%
\iffieldundef{#1year}
{}
{\printtext[#1date]{%
\blx@gbdate{#1}{}}}%
\endgroup}
\newrobustcmd*{\blx@gbdate}[3][]{%
\dateeraprintpre{#2#3year}%
\blx@imc@forcezerosy{\thefield{#2#3year}}\ifblank{#1}{}{\printfield{#1}}%
\iffieldundef{#2#3month}{}{\hyphen\blx@imc@forcezerosmdt{\thefield{#2#3month}}}%
\iffieldundef{#2#3day}{}{\hyphen\blx@imc@forcezerosmdt{\thefield{#2#3day}}}}
%为姓名格式选择增加的计数器
\newcounter{gbnamefmtcase}
\def\thegbnamefmtcase{\the\c@gbnamefmtcase}
%为数字标签格式选择增加的计数器/命令
\newcommand{\mkgbnumlabel}[1]{\mkbibbrackets{#1}}
\def\gbbiblabelopt@bracket{\renewcommand{\mkgbnumlabel}[1]{\mkbibbrackets{##1}}}
\def\gbbiblabelopt@parens{\renewcommand{\mkgbnumlabel}[1]{\mkbibparens{##1}}}
\def\gbbiblabelopt@dot{\renewcommand{\mkgbnumlabel}[1]{##1\adddot}}
\def\gbbiblabelopt@plain{\renewcommand{\mkgbnumlabel}[1]{##1}}
\def\gbbiblabelopt@box{\renewcommand{\mkgbnumlabel}[1]{\framebox{##1}}}
\def\gbbiblabelopt@circle{\renewcommand{\mkgbnumlabel}[1]{\textcircled{##1}}}
%为文献表中数字标签对齐方式选择增加的计数器/命令
\newcounter{gbalignlabel}
\def\thegbalignlabel{\the\c@gbalignlabel}
%为引用标签标注/文献表中本地化字符串中英文选择增加的计数器/命令
\newcounter{gbcitelocalcase}
\newcounter{gbbiblocalcase}
\def\thegbcitelocalcase{\the\c@gbcitelocalcase}
\def\thegbbiblocalcase{\the\c@gbbiblocalcase}
% 增加不同语言排序的切换选项
% numeric样式,不使用该选项,这里给出仅为兼容性考虑
% v1.0q,20190307,hzz
%
\DeclareBibliographyOption[string]{gblanorder}[chineseahead]{}
%
% 增加本地化字符串的中英文切换选项
% gbcitelocal指标注中的本地化字符串
% gbbiblocal 指文献表中的本地化字符串
% gblocal 指设置文献表和标注中的本地化字符串
% v1.0o,20190103,hzz
%
\DeclareBibliographyOption[string]{gbcitelocal}[gb7714-2015]{%
\ifstrequal{#1}{gb7714-2015}{\setcounter{gbcitelocalcase}{0}}{}%
\ifstrequal{#1}{chinese}{\setcounter{gbcitelocalcase}{1}}{}%
\ifstrequal{#1}{english}{\setcounter{gbcitelocalcase}{2}}{}%
}
\DeclareBibliographyOption[string]{gbbiblocal}[gb7714-2015]{%
\ifstrequal{#1}{gb7714-2015}{\setcounter{gbbiblocalcase}{0}}{}%
\ifstrequal{#1}{chinese}{\setcounter{gbbiblocalcase}{1}}{}%
\ifstrequal{#1}{english}{\setcounter{gbbiblocalcase}{2}}{}%
}
\DeclareBibliographyOption[string]{gblocal}[gb7714-2015]{%
\ExecuteBibliographyOptions{gbbiblocal=#1}%
\ExecuteBibliographyOptions{gbcitelocal=#1}%
}
%
% 增加序号标签格式处理选项
% v1.0l,20180623,hzz
%
\DeclareBibliographyOption[string]{gbbiblabel}[bracket]{%
\csuse{gbbiblabelopt@#1}
}
%
% 增加姓名大小写格式处理选项
%
\DeclareBibliographyOption[string]{gbnamefmt}[uppercase]{%
\ifstrequal{#1}{uppercase}{\setcounter{gbnamefmtcase}{0}}{}%
\ifstrequal{#1}{lowercase}{\setcounter{gbnamefmtcase}{1}}{}%
\ifstrequal{#1}{givenahead}{\setcounter{gbnamefmtcase}{2}}{}%given-family
\ifstrequal{#1}{familyahead}{\setcounter{gbnamefmtcase}{3}}{}
\ifstrequal{#1}{pinyin}{\setcounter{gbnamefmtcase}{4}}{}%family-given
\ifstrequal{#1}{reverseorder}{\setcounter{gbnamefmtcase}{5}}{}%family-given/given-family
\ifstrequal{#1}{quanpin}{\setcounter{gbnamefmtcase}{6}}{}%全拼
}
%
% 增加标签对齐选项
%
% right是默认的右对齐,left是左对齐,gb7714-2015是项对齐方式
\DeclareBibliographyOption[string]{gbalign}[right]{%
\ifstrequal{#1}{right}{\setcounter{gbalignlabel}{0}}{}
\ifstrequal{#1}{left}{\setcounter{gbalignlabel}{1}}{}
\ifstrequal{#1}{center}{\setcounter{gbalignlabel}{2}}{}
\ifstrequal{#1}{gb7714-2015}{\setaligngbstyle}{}
\ifstrequal{#1}{gb7714-2015ay}{\setaligngbstyleay}{}
}
%
% 选项设置
%
\ExecuteBibliographyOptions{
%firstinits=true, 针对biblatex<3.3版本的选项设置,比如texlive2015中的3.0版
giveninits=true, %针对3.3<=biblatex<3.5版本,比如texlive2016中的3.4版
sorting=none,
useprefix=true, %名字的信息包括前缀
date = year, %日期仅写到年
maxbibnames = 3,%设置名字最大数量
minbibnames = 3, %设置缩减后的名字最小数量
maxitems = 1,%设置列表最大数量
minitems = 1, %设置缩减后的列表最小数量
isbn=false,
gbstyle=true,
gbtype=true,
gbcodegbk=false,
gbstrict=true,
gbtitlelink=false,
gbfieldstd=false,
gbpub=true,
gbpunctin=true,
gbbiblabel=bracket,
gbnamefmt=uppercase,
gbalign=right,
gbctexset=true,
%urldate =edtf, %针对3.7<=biblatex<=3.9版本的选项设置,比如texlive2017中的3.7版
%eventdate =edtf,%针对3.7<=biblatex<=3.9版本的选项设置,比如texlive2017中的3.7版
urldate =gb7714-2015, %iso,针对3.10<=biblatex版本的选项设置,比如texlive2018中的3.11版
eventdate =gb7714-2015,
gblocal=gb7714-2015,
usetranslator=true,
}
%=====================================================================
% 设置本地化字符串
%=====================================================================
%
% 新建当地化字符串,用来记录“等”字符、“和”字符
%
\NewBibliographyString{andotherscn}
\NewBibliographyString{andothersincitecn}
\NewBibliographyString{andothersincite}
\NewBibliographyString{andcn}
\NewBibliographyString{andothersjp}
\NewBibliographyString{andotherskr}
\NewBibliographyString{andjp}
\NewBibliographyString{andkr}
\NewBibliographyString{andincitecn}
\NewBibliographyString{andincite}
\NewBibliographyString{volumecn}
\NewBibliographyString{numbercn}
\NewBibliographyString{serialcn}
\NewBibliographyString{incn}
\NewBibliographyString{mathesiscn}
\NewBibliographyString{phdthesiscn}
\NewBibliographyString{editorcn}
\NewBibliographyString{editorscn}
\NewBibliographyString{bytranslatorcn}
%
% 修改一些当地化字符串
%
% 原理方法:直接利用当地化格式english修改出一些中文的格式,具体修改内容参考english.lbx文件
% 当然也可以增加比如上面定义的andotherscn
% 注意:在lbx文件和bbx文件中定义本地字符串的不同语法,两个参数和一个参数的区别
\DefineBibliographyStrings{english}{
bibliography = {\str@bibliography},
references = {\str@references},
bytranslatorcn = {\str@bytranslator},%\addperiod,%将trans. by 改成 译
and = {\addcomma},%将第2和3人名间的and符号改成逗号,用\finalnamedelim命令也可以定义,参见3.9.1节
andcn = {\addcomma},%and本地化字符串的中文对应词
andincitecn = {\addcomma},%将标注中的分开,便于与文献表中的区分
andincite = {\addcomma\space},%注意add开头的命令会其把前面的空格去掉
%andothers = {et al.}, %将超过3个人名的省略,et al.改成为 等
andotherscn = {\str@andotherscn}, %将超过3个人名的省略,et al.改成为 等
andothersincitecn={\str@andotherscn},%将标注中的分开,便于与文献表中的区分
andothersincite={et al\adddot},
backrefpage = {\str@backrefpage:},
backrefpages = {\str@backrefpages:},
in={in\intitlepunct},
volumecn={\str@volumecn},
numbercn={\str@numbercn},
serialcn={\str@serialcn},
andothersjp={他},
andotherskr={외},
andjp={和},
andkr={和},
incn={\str@incn\addcolon\addspace},
mathesiscn={\str@mathesiscn},
phdthesiscn={\str@phdthesiscn},
editorscn={\str@editorcn},
editorcn={\str@editorcn},
}
%
% 增加两个命令用于临时的局部的修改本地化字符串
% 其中\setlocalbibstring修改缩写字符串,setlocalbiblstring修改长字符串
% 注意使用时因为是局部修改,因此要将其与需要修改的引用命令放在一个编组符号内
% v1.0t,hzz,20190525
\newcommand{\setlocalbibstring}[2]{%
\csdef{abx@sstr@#1}{#2}}
\newcommand{\setlocalbiblstring}[2]{%
\csdef{abx@lstr@#1}{#2}}
%=====================================================================
% 动态数据修改
%=====================================================================
%
% 各层次的数据映射和动态修改
%
% 原理方法:
% 1. 进行语言包括中英文判断,并设置和记录,比如记录到userf,usere中
% 2. 增加文献标识符如[M],[J]等,对一些容易混淆的域进行设置以增强兼容性
% 3. \DeclareSourcemap命令对于biblatex3.11以下版本只能出现一次,3.11版开始支持多个
% 4. \DeclarestyleSourcemap在biblatex v3.7版开始可以支持出现多次
% 5. 把作者和译者信息准确的记录到userf,usere中,用于后面判断是否是cjk字符。
% 注意:这里用userf,usere而不是namee,namef,是因为只有把name列表转成域,才能有效读取姓名中的字符,
% 如果用namee,namef,name信息会自动解析,所以就不能为cjk判断提供需要的信息
%
% 不同的文献类型使用相同的驱动输出可以有5种方法:
% 1. 是数据源层的映射,将其它类型转换为某一要使用驱动的类型
% 2. 是样式层映射,也是将其它类型转换为某一要使用驱动的类型
% 3. 是驱动层映射,也是将其它类型转换为某一要使用驱动的类型
% 4. 定义驱动类型别名DeclareBibliographyAlias,将其它类型定义为某一要使用驱动的类型的别名
% 驱动别名定义本质上是做了驱动层映射
% 5. 直接定义不同的类型的驱动,但驱动内容相同。
%
% 关于数据映射和驱动使用的考虑如下:
% 1. 为避免利用biber输出bib文件时的数据变动,尽量不在数据源层映射做类型转换
% 2. 为减少代码量,尽量少做内容相同的不同类型驱动
% 3. 因此类型相关的处理主要在样式层映射、驱动层映射、驱动别名
% 4. 由于biblatex默认做的驱动别名处理可能增加一些信息比如masterthesis转thesis时增加的type
% 可以在样式层映射做某些需要避免这种默认处置的转换
% 5. 当没有避免默认行为的需求时,全部采用驱动别名的方式处理,等价于驱动层的映射
%
% 文献类型和驱动考虑如下:
% 1. 连续出版物及析出文献有其特殊性,因此考虑两类periodical和article
% newpaper映射为article,并以note域做区分特殊处理
% 2. 专著和专著中的析出文献是主要的类型,因此考虑book和inbook
% standard映射为book或inbook,并以note域做区分特殊处理
% collection和proceedings基本与book类似,因此做book驱动别名处理
% incollection和inproceedings基本与inbook类似,因此做inbook驱动别名处理
% 3. 专利类型有其特殊性,考虑patent类型
% 4. 电子资源类型有其特殊性,考虑online类型
% 5. 报告类型与book有点类似,出版项处理与book一样,但有时又要有修改和更细日期
% 因此考虑用一种类型来输出,使用report类型
% 6. 手册/学位论文等类型与book有点类似,但对于出版项处理时,有缺省时,直接省略,
% 同时有version和edition的区别,因此考虑用一种类型来输出,使用manual类型
% 7. 包括报告,学位论文在内的其它所有的类型,都做一个判断,当没有出版项时,
% 且存在网址信息时,将其转换为online类型输出,否则都做为manual类型输出。
% 8. 备选类型misc当存在网址时直接转换为online,由于howpublished域可用于描述
% 更多的信息,因此不存在网址时,独立做一个备选格式
% 9. 出版项主要以如下方式处理:
% (a) location+institution+date 仅用于连续出版物
% (b)publisher+location+date 用于需要完整输出出版项的类型,比如book,collection,proceedings,in*,report
% (c)institution+location+date 用于出版项缺失时不输出的类型,包括manual,thesis,archive等其他类型
% (d)printlist{insitution} 用于电子资源,仅输出出版者或组织,为数据映射方便,本来默认的organization域转换为用insitution输出。
% (e) 不输出,主要用于连续出版物析出的文献
% 10. 日期以如下方式处理:
% date 由于存在biblatex选项,因此通过选项控制,数据源为date解析数据或year
% urldate 由于存在biblatex选项,因此通过选项控制,输出到日,且用[]包围,数据源为urldate
% newsdate 用于公告日期,公开日期或新闻日期,输出到日,但无包围符号,数据源为date
% modifydate 用于更新或修改日期,输出到日,且用()包围,数据源为date或enddate或eventdate
\DeclareSourcemap{%\perdatasource{examples.bib}
\maps[datatype=bibtex]{%
\map{%如果author或者editor或者translator存在,那么设置namea便于后面判断。
\step[fieldsource=author,final]
\step[fieldset=namea,origfieldval]
}
\map{%
\step[fieldsource=editor,final]
\step[fieldset=namea,origfieldval]
}
\map{%
\step[fieldsource=translator,final]
\step[fieldset=namea,origfieldval]
}
\map{%让address和location同步,biblatex中address是location的别名
%因此输出的时候只有location信息,但处理过程中是可以存在address的。
\step[notfield=address,final]%
\step[fieldsource=location,final]
\step[fieldset=address,origfieldval]
}
\map{
\step[notfield=location,final]%
\step[fieldsource=address,final]
\step[fieldset=location,origfieldval]
}
\map{%处理在bib文件用mark标记文献类型标识符的情况
\step[fieldsource=mark,final]
\step[fieldset=usera, origfieldval]
}
\map{%处理在bib文件中直接给出文献的姓名格式为lowercase的情况
\step[fieldsource=nameformat,match=lowercase,final]
\step[fieldset=namefmtid,fieldvalue={1}]
}
\map{%处理在bib文件中直接给出文献的姓名格式为givenahead的情况
\step[fieldsource=nameformat,match=givenahead,final]
\step[fieldset=namefmtid,fieldvalue={2}]
}
\map{%处理在bib文件中直接给出文献的姓名格式为familyahead的情况
\step[fieldsource=nameformat,match=familyahead,final]
\step[fieldset=namefmtid,fieldvalue={3}]
}
\map{%处理在bib文件中直接给出文献的姓名格式为pinyin的情况
\step[fieldsource=nameformat,match=pinyin,final]
\step[fieldset=namefmtid,fieldvalue={4}]
}
\map{%处理在bib文件中直接给出文献的姓名格式为pinyin的情况
\step[fieldsource=nameformat,match=quanpin,final]
\step[fieldset=namefmtid,fieldvalue={6}]
}
\map{%根据article确定文献类型标识符
\pertype{article}
\step[fieldset=usera, fieldvalue={J}]
}
\map{%根据periodical确定文献类型标识符
\pertype{periodical}
\step[fieldset=usera, fieldvalue={J}]
\step[fieldsource=author] %有时会把author和editor混淆,处理后使用editor
\step[fieldset=editor, origfieldval]
\step[fieldsource=publisher] %有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]
}
\map[overwrite]{%根据增加一个新闻报纸的类型newspaper确定文献类型标识符
\pertype{newspaper}
\step[fieldset=usera, fieldvalue={N}]
\step[fieldset=entrysubtype, fieldvalue=news]%因为没有专门的驱动,记录note方便映射为article后判断
}
\map[overwrite]{%
\pertype{article}
\step[fieldsource=note,match=\regexp{(n|N)(e|E)(w|W)(s|S)},final]%
\step[fieldset=usera, fieldvalue={N}]
\step[fieldset=entrysubtype, fieldvalue=news]%
}
\map[overwrite]{%
\pertype{article}
\step[fieldsource=note,match=\regexp{(n|N)(e|E)(w|W)(s|S)(p|P)(a|A)(p|P)(e|E)(r|R)},final]%
\step[fieldset=usera, fieldvalue={N}]
\step[fieldset=entrysubtype, fieldvalue=news]%
}
\map[overwrite]{%
\pertype{article}
\step[fieldsource=entrysubtype,match=\regexp{(n|N)(e|E)(w|W)(s|S)(p|P)(a|A)(p|P)(e|E)(r|R)},final]%
\step[fieldset=usera, fieldvalue={N}]
\step[fieldset=entrysubtype, fieldvalue=news]%
}
\map[overwrite]{%
\pertype{article}
\step[fieldsource=entrysubtype,match=\regexp{(n|N)(e|E)(w|W)(s|S)},final]%
\step[fieldset=usera, fieldvalue={N}]
\step[fieldset=entrysubtype, fieldvalue=news]%
}
\map{%对应增加的一个数据库类型database确定文献类型标识符
\pertype{database}
\step[fieldset=usera, fieldvalue={DB}]
\step[fieldsource=publisher] %有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]
}
\map{%对应增加的一个数据集类型dataset确定文献类型标识符
\pertype{dataset}
\step[fieldset=usera, fieldvalue={DS}]%
\step[fieldsource=publisher] %有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]
}
\map{%对应增加的一个软件类型software确定文献类型标识符
\pertype{software}
\step[fieldset=usera, fieldvalue={CP}]
\step[fieldsource=publisher] %有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]
}
\map{%对应增加的一个舆图类型map确定文献类型标识符
\pertype{map}
\step[fieldset=usera, fieldvalue={CM}]%
\step[fieldsource=publisher] %有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]
}
\map{%对应增加的一个档案类型archive确定文献类型标识符
\pertype{archive}
\step[fieldset=usera, fieldvalue={A}]
\step[fieldsource=publisher] %有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]
}
\map{%因为misc类型本身就是没有类型,而不像其它文献有明确的类型,所以
%当misc类型带有网址时,直接将其转换为online类型
\pertype{misc}
\step[fieldsource=url,final]
\step[typesource=misc,typetarget=online]
}
\map{%对应增加的一个备选类型misc确定文献类型标识符
\pertype{misc}
\step[fieldset=usera, fieldvalue={Z}]%
}
\map{
\pertype{book}
\pertype{inbook}
\step[fieldset=usera, fieldvalue={M}]
\step[fieldsource=version] %有时会把version和edition混淆,处理后直接用edition
\step[fieldset=edition, origfieldval]
}
\map[overwrite]{%兼容老的standard类型,确定文献类型标识符
\pertype{standard}
\step[fieldset=usera, fieldvalue={S}]
\step[fieldset=entrysubtype, fieldvalue=standard]%因为没有专门的驱动,记录note方便映射为book和inbook后判断
}
\map[overwrite]{%根据standard
\pertype{inbook}
\pertype{book}
\step[fieldsource=entrysubtype,match=\regexp{(s|S)(t|T)(a|A)(n|N)(d|D)(a|A)(r|R)(d|D)},final]%\x80-\xFF
\step[fieldset=usera, fieldvalue={S}]
\step[fieldset=entrysubtype, fieldvalue=standard]%
}
\map[overwrite]{%根据standard
\pertype{inbook}
\pertype{book}
\step[fieldsource=note,match=\regexp{(s|S)(t|T)(a|A)(n|N)(d|D)(a|A)(r|R)(d|D)},final]%\x80-\xFF
\step[fieldset=usera, fieldvalue={S}]
\step[fieldset=entrysubtype, fieldvalue=standard]%
}
\map{
\pertype{patent}
\step[fieldset=usera, fieldvalue={P}]
}
\map{
\pertype{inproceedings}
\pertype{conference}%兼容老的conference类型
\step[fieldset=usera, fieldvalue={C}]
\step[fieldsource=institution]%有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=publisher, origfieldval]
}
\map{
\pertype{proceedings}
\step[fieldset=usera, fieldvalue={C}]
\step[fieldsource=institution]%有时会把publisher和institution混淆,处理后使用publisher
\step[fieldset=publisher, origfieldval]
}
\map{
\pertype{incollection}
\step[fieldset=usera, fieldvalue={G}]
\step[fieldsource=institution]%有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=publisher, origfieldval]
}
\map{
\pertype{collection}
\step[fieldset=usera, fieldvalue={G}]
\step[fieldsource=institution]%有时会把publisher和institution混淆,处理后使用publisher
\step[fieldset=publisher, origfieldval]
}
\map{
\pertype{report}
\pertype{techreport}%兼容老的techreport类型
\step[fieldset=usera, fieldvalue={R}]
\step[fieldsource=institution]%有时会把publisher和institution混淆,处理后使用publisher
\step[fieldset=publisher, origfieldval]
}
\map{
\pertype{thesis}
\pertype{mastersthesis}%兼容老的mastersthesis和phdthesis类型
\pertype{phdthesis}
\step[fieldset=usera, fieldvalue={D}]
\step[fieldsource=publisher]%有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]
}
\map{
\pertype{online}
\pertype{electronic}%兼容老的electronic类型
\pertype{www}%兼容老的www类型
\step[fieldset=usera, fieldvalue={EB}]
\step[fieldsource=publisher]%有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]%因为online的出版项处理类似手册
\step[fieldsource=organization]%有时会把organization和institution混淆,处理后使用institution,以增强兼容性
\step[fieldset=institution, origfieldval]
}
\map{
\pertype{manual}
\step[fieldset=usera, fieldvalue={A}]
\step[fieldsource=edition]%有时会把version和edition混淆,处理后使用version
\step[fieldset=version, origfieldval]
\step[fieldsource=publisher]%有时会把publisher和institution混淆,处理后使用institution
\step[fieldset=institution, origfieldval]
\step[fieldsource=organization]%有时会把organization和institution混淆,处理后使用institution,以增强兼容性
\step[fieldset=institution, origfieldval]
}
\map{
\pertype{unpublished}
\step[fieldset=usera, fieldvalue={Z}]
}
\map[overwrite]{%用于处理zotero从cnki导出中文文献姓名中存在逗号的情况
\step[fieldsource={author}, match=\regexp{([\x{2FF0}-\x{9FA5}])\,\s*}, replace=\regexp{$1}]
}
\map[overwrite]{%用于处理zotero从cnki导出中文文献姓名中存在逗号的情况
\step[fieldsource={editor}, match=\regexp{([\x{2FF0}-\x{9FA5}])\,\s*}, replace=\regexp{$1}]
}%
\map[overwrite]{%用于处理zotero从cnki导出中文文献姓名中存在逗号的情况
\step[fieldsource={translator}, match=\regexp{([\x{2FF0}-\x{9FA5}])\,\s*}, replace=\regexp{$1}]
}%
\map[overwrite]{%用于处理zotero从cnki导出中文文献姓名中存在逗号的情况
\step[fieldsource={bookauthor}, match=\regexp{([\x{2FF0}-\x{9FA5}])\,\s*}, replace=\regexp{$1}]
}%
\map{%处理一些用year表示date的情况
%这样处理将会设置date域,并使得labeldatesource变为空,因为date的前缀为空(如果是urldate,那么labeldatesource就是url)。
%同时date域会被biblatex自动解析为year,month,day,并且覆盖原来的year信息
\step[fieldsource=year]
\step[fieldset=date, origfieldval]
}
\map{%将entrykey放入keywords中用于后期使用
\step[fieldsource=entrykey]
\step[fieldset=keywords, origfieldval]
}
\map{\step[fieldsource=title,match=\regexp{[\x{0100}-\x{017F}]},final]%\x80-\xFF
\step[fieldset=userd,fieldvalue={french}]%法语,0080开始到00ff的字符没法匹配有点奇怪
}
\map{%
\step[fieldsource=title,match=\regexp{[\x{0400}-\x{052F}]},final]
\step[fieldset=userd,fieldvalue={russian}]%俄语
}
\map{%
\step[fieldsource=title,match=\regexp{[\x{3040}-\x{30FF}\x{31F0}-\x{31FF}]},final]