-
Notifications
You must be signed in to change notification settings - Fork 200
/
gbt7714.dtx
3872 lines (3672 loc) · 97.5 KB
/
gbt7714.dtx
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
% \iffalse meta-comment
% GB/T 7714-2015 BibTeX Style
% https://github.com/CTeX-org/gbt7714-bibtex-style
%
% Copyright (C) 2016-2019 by Zeping Lee <zepinglee AT gmail.com>
%
% This file may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% of this license or (at your option) any later version.
% The latest version of this license is in
% https://www.latex-project.org/lppl.txt
% and version 1.3c or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
%<*internal>
\iffalse
\fi
\begingroup
\def\nameoflatex{LaTeX2e}
\expandafter\endgroup\ifx\nameoflatex\fmtname\else
\csname fi\endcsname
%</internal>
%<*install>
\input docstrip.tex
\preamble
-------------------------------------------------------------------
GB/T 7714-2015 BibTeX Style
https://github.com/CTeX-org/gbt7714-bibtex-style
Version: 2019/03/21 v1.1.1
-------------------------------------------------------------------
Copyright (C) 2016-\the\year by Zeping Lee <zepinglee AT gmail.com>
-------------------------------------------------------------------
This file may be distributed and/or modified under the
conditions of the LaTeX Project Public License, either version 1.3c
of this license or (at your option) any later version.
The latest version of this license is in
https://www.latex-project.org/lppl.txt
and version 1.3c or later is part of all distributions of LaTeX
version 2005/12/01 or later.
-------------------------------------------------------------------
\endpreamble
\keepsilent
\askforoverwritefalse
\nopostamble
\generate{
\file{\jobname.sty}{\from{\jobname.dtx}{package}}
\file{\jobname-plain.bst}{\from{\jobname.dtx}{2015,authoryear}}
\file{\jobname-unsrt.bst}{\from{\jobname.dtx}{2015,numerical}}
\file{versions/2005/\jobname-2005-plain.bst}{
\from{\jobname.dtx}{2005,authoryear}
}
\file{versions/2005/\jobname-2005-unsrt.bst}{
\from{\jobname.dtx}{2005,numerical}
}
\file{versions/thu/thuthesis-author-year.bst}{
\from{\jobname.dtx}{thu,2005,authoryear}}
\file{versions/thu/thuthesis-numeric.bst}{
\from{\jobname.dtx}{thu,2005,numerical}}
\file{versions/thu/thuthesis-bachelor.bst}{
\from{\jobname.dtx}{2015,numerical}}
\file{versions/ustc/ustcthesis-authoryear.bst}{
\from{\jobname.dtx}{ustc,2015,authoryear}
}
\file{versions/ustc/ustcthesis-numerical.bst}{
\from{\jobname.dtx}{ustc,2015,numerical}
}
\file{versions/ustc/ustcthesis-bachelor.bst}{
\from{\jobname.dtx}{ustc,2015,numerical,nouppercase,nomark,italicjournal}
}
}
\endbatchfile
%</install>
%<*internal>
\fi
%</internal>
%<*driver>
\ProvidesFile{\jobname.dtx}
%</driver>
%<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01]
%<package>\ProvidesPackage{gbt7714}
%<*package>
[2019/03/21 v1.1.1 GB/T 7714-2015 BibTeX Style]
%</package>
%
%<*driver>
\documentclass[a4paper]{ltxdoc}
\usepackage[paper=a4paper,margin=1in,left=1.25in]{geometry}
\usepackage{hypdoc}
\hypersetup{allcolors=blue}
\usepackage[UTF8]{ctex}
\IfFileExists{/System/Library/Fonts/Times.ttc}{
\setmainfont{Times}
\setsansfont[Scale=MatchLowercase]{Helvetica}
\setmonofont[Scale=MatchLowercase]{Menlo}
}{}
\usepackage{caption}
\usepackage{booktabs}
\usepackage{gbt7714}
\usepackage{listings}
\lstnewenvironment{latex}{%
\lstset{%
basicstyle = \ttfamily\small,
language = [LaTeX]TeX,
gobble = 2,
frame = single,}}{}
\lstnewenvironment{pseudocode}{%
\lstset{%
basicstyle=\ttfamily\small,
language=bash,
gobble=2,
frame=single,}}{}
\makeatletter
\def\DescribeOption{\leavevmode\@bsphack\begingroup\MakePrivateLetters
\Describe@Option}
\def\Describe@Option#1{\endgroup
\marginpar{\raggedleft\PrintDescribeOption{#1}}%
\SpecialEnvIndex{#1}\@esphack\ignorespaces}
\@ifundefined{PrintDescribeOption}
{\def\PrintDescribeOption#1{\strut \MacroFont #1\ }}{}
\DeclareRobustCommand\file{\nolinkurl}
\DeclareRobustCommand\env{\texttt}
\DeclareRobustCommand\pkg{\textsf}
\DeclareRobustCommand\cls{\textsf}
\DeclareRobustCommand\opt{\texttt}
\setlength\partopsep{\z@}
\def\@listi{\leftmargin\leftmargini
\parsep \z@
\topsep 5\p@ \@plus2\p@ \@minus3\p@
\itemsep\z@}
\let\@listI\@listi
\@listi
\renewcommand\glossaryname{版本历史}
\GlossaryPrologue{\section*{\glossaryname}}
\renewcommand*{\changes@}[3]{%
\protected@edef\@tempa{%
\noexpand\glossary{#1 (#2)\levelchar
\ifx\saved@macroname\@empty
\space\actualchar\generalname
\else
\expandafter\@gobble\saved@macroname
\actualchar
\string\verb\quotechar*\verbatimchar\saved@macroname\verbatimchar
\fi
:\levelchar #3}}%
\@tempa
\endgroup
\@esphack
}
\makeatother
\EnableCrossrefs
\CodelineIndex
\RecordChanges
% \OnlyDescription
\begin{document}
\DocInput{\jobname.dtx}
\end{document}
%</driver>
% \fi
%
%
%
% \GetFileInfo{\jobname.dtx}
%
% \title{GB/T 7714-2015 \BibTeX{} style}
% \author{Zeping Lee\thanks{zepinglee AT gmail.com}}
% \date{\filedate\qquad\fileversion}
% \maketitle
%
% \changes{v1.0}{2018/01/01}{Initial release.}
%
%
% \begin{abstract}
% The \pkg{gbt7714} package provides a \BibTeX{} implementation for the China's
% bibliography style standard GB/T 7714-2015.
% It consists of two bst files for numerical and authoryear styles as well as a
% \LaTeX{} package which provides the citation style defined in the standard.
% It is compatible with \pkg{natbib} and supports language detection (Chinese
% and English) for each biblilography entry.
% \end{abstract}
%
% \section{简介}
%
% GB/T 7714-2015 《信息与文献\quad 参考文献著录规则》\cite{gbt77142015}
% (以下简称“国标”)是中国的参考文献推荐标准。
% 本宏包是国标的 \BibTeX{}\cite{bibtex} 实现,具有以下特性:
% \begin{itemize}
% \item 兼容 \pkg{natbib} 宏包\cite{natbib}
% \item 支持顺序编码制和著者-出版年制两种风格
% \item 自动识别语言并进行相应处理
% \item 提供了简单的接口供用户修改样式
% \end{itemize}
% 本宏包的主页:\url{https://github.com/CTeX-org/gbt7714-bibtex-style}。
%
%
% \section{使用方法}
%
% \DescribeOption{super}
% \DescribeOption{numbers}
% \DescribeOption{authoryear}
% 按照国标的规定,参考文献的标注体系分为“顺序编码制”和
% “著者-出版年制”(\opt{authoryear}),
% 其中顺序编码制根据引用标注样式的不同分为角标数字式(\opt{super})和
% 与正文平排的数字式(\opt{numbers})。
%
% 用户应在导言区调用宏包 \pkg{gbt7714},并在参数中选择参考文献的标注样式。
% 默认的参数是 \opt{super},额外的参数会传递给 \pkg{natbib} 宏包,比如:
% \begin{latex}
% \usepackage[authoryear]{gbt7714}
% \end{latex}
% 然后\emph{不再}需要调用 \cs{bibliographystyle} 命令设置参考文献列表风格。
%
% 使用时需要注意以下几点:
% \begin{itemize}
% \item \emph{不}再需要调用 \cs{bibliographystyle} 命令选择参考文献表的格式。
% \item bib 数据库应使用 UTF-8 编码。
% \item 使用著者-出版年制参考文献表时,中文的文献\emph{必须}
% 在 key 域填写作者姓名的拼音,才能按照拼音排序,
% 详见第~\ref{sec:sort}~节。
% \end{itemize}
%
% \DescribeMacro{\cite}
% 在正文中引用文献时应使用 \cs{cite} 命令。
% 同一处引用多篇文献时,应将各篇文献的 key 一同写在 \cs{cite} 命令中,
% 如 |\cite{knuth84,lamport94,mittelbach04}|。
% 如遇连续编号,可以自动转为起讫序号并用短横线连接。
% 它可以自动排序并用处理连续编号。
% 若需要标出引文的页码,可以标在 \cs{cite} 的可选参数中,如
% |\cite[42]{knuth84}|。
% 更多的引用标注方法可以参考 \pkg{natbib} 宏包的使用说明\cite{natbib}。
%
% \DescribeMacro{\bibliography}
% 参考文献表可以在文中使用 \cs{bibliography} 命令调用。
% 注意文献列表的样式已经在模板中根据选项设置,
% 用户\emph{不再}需要使用 \cs{bibliographystyle} 命令。
%
%
% \section{文献类型}
%
% 国标中规定了 16 种参考文献类型,
% 表~\ref{tab:entry-types} 列举了 \file{bib} 数据库中对应的文献类型。
% 这些尽可能兼容 \BibTeX{} 的标准类型,但是新增了若干文献类型(带 * 号)。
%
% \begin{table}[htb]
% \centering\small
% \caption{全部文献类型}
% \label{tab:entry-types}
% \begin{tabular}{lcl}
% \toprule
% 文献类型 & 标识代码 & Entry Type \\
% \midrule
% 普通图书 & M & book \\
% 图书的析出文献 & M & incollection \\
% 会议录 & C & proceedings \\
% 会议录的析出文献 & C & inproceedings 或 conference \\
% 汇编 & G & collection* \\
% 报纸 & N & newspaper* \\
% 期刊的析出文献 & J & article \\
% 学位论文 & D & mastersthesis 或 phdthesis \\
% 报告 & R & techreport \\
% 标准 & S & standard* \\
% 专利 & P & patent* \\
% 数据库 & DB & database* \\
% 计算机程序 & CP & software* \\
% 电子公告 & EB & online* \\
% 档案 & A & archive* \\
% 舆图 & CM & map* \\
% 数据集 & DS & dataset* \\
% 其他 & Z & misc \\
% \bottomrule
% \end{tabular}
% \end{table}
%
%
% \section{著录项目}
%
% 由于国标中规定的著录项目多于 \BibTeX{} 的标准域,
% 必须新增一些著录项目(带 * 号),
% 这些新增的类型在设计时参考了 BibLaTeX,如 date 和 urldate。
% 本宏包支持的全部域如下:
% \begin{description}
% \item[author] 主要责任者
% \item[title] 题名
% \item[mark*] 文献类型标识
% \item[medium*] 载体类型标识
% \item[translator*] 译者
% \item[editor] 编辑
% \item[organization] 组织(用于会议)
% \item[booktitle] 图书题名
% \item[series] 系列
% \item[journal] 期刊题名
% \item[edition] 版本
% \item[address] 出版地
% \item[publisher] 出版者
% \item[school] 学校(用于phdthesis)
% \item[institution] 机构(用于techreport)
% \item[year] 出版年
% \item[volume] 卷
% \item[number] 期(或者专利号)
% \item[pages] 引文页码
% \item[date*] 更新或修改日期
% \item[urldate*] 引用日期
% \item[url] 获取和访问路径
% \item[doi] 数字对象唯一标识符
% \item[language*] 语言
% \item[key] 拼音(用于排序)
% \end{description}
% 不支持的 \BibTeX{} 标准著录项目有 annote, chapter, crossref, month, type。
%
% 本宏包默认情况下可以自动识别文献语言,并自动处理文献类型和载体类型标识,
% 但是在少数情况下需要用户手动指定,如:
% \begin{latex}
% @misc{citekey,
% language = {japanese},
% mark = {Z},
% medium = {DK},
% ...
% \end{latex}
% 可选的语言有 english, chinese, japanese, russian。
%
%
% \section{文献列表的排序}
% \label{sec:sort}
%
% 国标规定参考文献表采用著者-出版年制组织时,各篇文献首先按文种集中,
% 然后按著者字顺和出版年排列;
% 中文文献可以按著者汉语拼音字顺排列,也可以按著者的笔画笔顺排列。
% 然而由于 \BibTeX{} 功能的局限性,无法自动获取著者姓名的拼音或笔画笔顺,
% 所以\emph{必须}在 bib 数据库中的 key 域手动录入著者姓名的拼音,如:
% \begin{latex}
% @book{capital,
% author = {马克思 and 恩格斯},
% key = {ma3 ke4 si1 en1 ge2 si1},
% ...
% \end{latex}
%
%
% \section{自定义样式}
%
% \BibTeX{} 对自定义样式的支持比较有限,
% 所以用户只能通过修改 \file{bst} 文件来修改文献列表的格式。
% 本宏包提供了一些接口供用户更方便地修改。
%
% 在 \file{bst} 文件开始处的 |load.config| 函数中,
% 有一组配置参数用来控制样式,表~\ref{tab:config} 列出了每一项的默认值和功能。
% 若变量被设为 |#1| 则表示该项被启用,设为 |#0| 则不启用。
% 默认的值是严格遵循国标的配置。
%
% \begin{table}[htb]
% \centering\small
% \caption{参考文献表样式的配置参数}
% \label{tab:config}
% \begin{tabular}{lcl}
% \toprule
% 参数值 & 默认值 & 功能 \\
% \midrule
% uppercase.name & |#1| & 将著者姓名转为大写 \\
% max.num.authors & |#3| & 输出著者的最多数量 \\
% period.between.author.year & |#0| & 著者和年份之间使用句点连接 \\
% sentence.case.title & |#1| & 将西文的题名转为 sentence case \\
% link.title & |#0| & 在题名上添加 url 的超链接 \\
% show.mark & |#1| & 显示文献类型标识 \\
% italic.jounal & |#0| & 西文期刊名使用斜体 \\
% show.missing.address.publisher & |#1| & 出版项缺失时显示“出版者不详” \\
% show.url & |#1| & 显示 url \\
% show.doi & |#1| & 显示 doi \\
% show.note & |#0| & 显示 note 域的信息 \\
% \bottomrule
% \end{tabular}
% \end{table}
%
% 若用户需要定制更多内容,可以学习 \file{bst} 文件的语法并修改
% \cite{btxhak,ttb,tlc2},或者联系作者。
%
%
% \section{相关工作}
%
% TeX 社区也有其他关于 GB/T 7714 系列参考文献标准的工作。
% 2005 年吴凯\cite{wk2006}发布了基于 GB/T 7714-2005 的 \BibTeX{} 样式,
% 支持顺序编码制和著者出版年制两种风格。
% 李志奇\cite{lqz2013}发布了严格遵循 GB/T 7714-2005 的 BibLaTeX 的样式。
% 胡海星\cite{hhx2013}提供了另一个 \BibTeX{} 实现,
% 还给每行 bst 代码写了 java 语言注释。
% 沈周\cite{sz2016}基于 \pkg{biblatex-caspervector}\cite{vector2012} 进行修改,
% 以符合国标的格式。
% 胡振震发布了符合 GB/T 7714-2015 标准的 BibLaTeX 参考文献样式\cite{hzz2016},
% 并进行了比较完善的持续维护。
%
%
% \begin{thebibliography}{12}
% \providecommand{\natexlab}[1]{#1}
% \providecommand{\url}[1]{#1}
% \expandafter\ifx\csname urlstyle\endcsname\relax\relax\else
% \urlstyle{same}\fi
% \providecommand{\href}[2]{\url{#2}}
% \providecommand{\doi}[1]{\href{https://doi.org/#1}{#1}}
%
% \bibitem[{中国国家标准化委员会}(2015)]{gbt77142015}
% {中国国家标准化委员会}.
% \newblock 信息与文献\quad 参考文献著录规则: GB/T
% 7714--2015\allowbreak[S].
% \newblock 北京: 中国标准出版社, 2015.
%
% \bibitem[Patashnik(1988{\natexlab{a}})]{bibtex}
% PATASHNIK~O.
% \newblock {\BibTeX}ing\allowbreak[M/OL].
% \newblock 1988{\natexlab{a}}.
% \newblock \url{http://mirrors.ctan.org/biblio/bibtex/base/btxdoc.pdf}.
%
% \bibitem[Daly(1999)]{natbib}
% DALY~P~W.
% \newblock Natural sciences citations and references\allowbreak[M/OL].
% \newblock 1999.
% \newblock \url{http://mirrors.ctan.org/macros/latex/contrib/natbib/natbib.pdf}.
%
% \bibitem[Patashnik(1988{\natexlab{b}})]{btxhak}
% PATASHNIK~O.
% \newblock Designing {\BibTeX} styles\allowbreak[M/OL].
% \newblock 1988{\natexlab{b}}.
% \newblock \url{http://mirrors.ctan.org/biblio/bibtex/base/btxhak.pdf}.
%
% \bibitem[Markey(2003)]{ttb}
% MARKEY~N.
% \newblock Tame the beast\allowbreak[M/OL].
% \newblock 2003.
% \newblock \url{http://mirrors.ctan.org/info/bibtex/tamethebeast/ttb_en.pdf}.
%
% \bibitem[Mittelbach\ et~al.(2004)Mittelbach, Goossens, Braams, Carlisle, and
% Rowley]{tlc2}
% MITTELBACH~F, GOOSSENS~M, BRAAMS~J, et~al.
% \newblock The {\LaTeX} companion\allowbreak[M].
% \newblock 2nd ed.
% \newblock Reading, MA, USA: Addison-Wesley, 2004.
%
% \bibitem[吴凯(2006)]{wk2006}
% 吴凯.
% \newblock 发布GBT7714-2005.bst version1 Beta版\allowbreak[EB/OL].
% \newblock 2006.
% \newblock \url{http://bbs.ctex.org/forum.php?mod=viewthread&tid=33591}.
%
% \bibitem[李志奇(2013)]{lqz2013}
% 李志奇.
% \newblock
% 基于biblatex的符合GBT7714-2005的中文文献生成工具\allowbreak[EB/OL].
% \newblock 2013.
% \newblock \url{http://bbs.ctex.org/forum.php?mod=viewthread&tid=74474}.
%
% \bibitem[胡海星(2013)]{hhx2013}
% 胡海星.
% \newblock A GB/T 7714-2005 national standard compliant BibTeX
% style\allowbreak[EB/OL].
% \newblock 2013.
% \newblock \url{https://github.com/Haixing-Hu/GBT7714-2005-BibTeX-Style}.
%
% \bibitem[沈周(2016)]{sz2016}
% 沈周.
% \newblock 基于caspervector改写的符合GB/T
% 7714-2005标准的参考文献格式\allowbreak[EB/OL].
% \newblock 2016.
% \newblock \url{https://github.com/szsdk/biblatex-gbt77142005}.
%
% \bibitem[Vector(2012)]{vector2012}
% VECTOR~C~T.
% \newblock biblatex 参考文献和引用样式: caspervector\allowbreak[M/OL].
% \newblock 2012.
% \newblock
% \url{http://mirrors.ctan.org/macros/latex/contrib/biblatex-contrib/biblatex-caspervector/doc/caspervector.pdf}.
%
% \bibitem[胡振震(2016)]{hzz2016}
% 胡振震.
% \newblock 符合 GB/T 7714-2015 标准的 biblatex
% 参考文献样式\allowbreak[M/OL].
% \newblock 2016.
% \newblock
% \url{http://mirrors.ctan.org/macros/latex/contrib/biblatex-contrib/biblatex-gb7714-2015/biblatex-gb7714-2015.pdf}.
%
% \end{thebibliography}
%
%
% \linespread{1.3}
% \PrintChanges
%
%
% \clearpage
% \appendix
% \StopEventually{}
%
% \section{宏包的代码实现}
%
% 下面声明和处理宏包的选项,有 \opt{authoryear} 和 \opt{numbers}。
% \begin{macrocode}
%<*package>
\newif\if@gbt@mmxv
\newif\if@gbt@numerical
\newif\if@gbt@super
\DeclareOption{2015}{\@gbt@mmxvtrue}
\DeclareOption{2005}{\@gbt@mmxvfalse}
\DeclareOption{super}{\@gbt@numericaltrue\@gbt@supertrue}
\DeclareOption{numbers}{\@gbt@numericaltrue\@gbt@superfalse}
\DeclareOption{authoryear}{\@gbt@numericalfalse}
\DeclareOption*{\PassOptionsToPackage{\CurrentOption}{natbib}}
\ExecuteOptions{2015,super}
\ProcessOptions\relax
% \end{macrocode}
%
% 只在顺序编码时使用 \opt{sort\&compress}。
% \changes{v1.0.1}{2018/03/09}{著者出版年制的文献引用不再排序}
% \begin{macrocode}
\if@gbt@numerical
\PassOptionsToPackage{sort&compress}{natbib}
\fi
\RequirePackage{natbib}
\RequirePackage{etoolbox}
\RequirePackage{url}
% \end{macrocode}
%
% \begin{macro}{\citestyle}
% 定义接口切换引用文献的标注法,可用 \cs{citestyle} 调用 \opt{numerical}
% 或 \opt{authoryear},参见 \pkg{natbib}。
% \begin{macrocode}
\newcommand\bibstyle@super{\bibpunct{[}{]}{,}{s}{,}{\textsuperscript{,}}}
\newcommand\bibstyle@numbers{\bibpunct{[}{]}{,}{n}{,}{,}}
\newcommand\bibstyle@authoryear{\bibpunct{(}{)}{;}{a}{,}{,}}
% \end{macrocode}
% \end{macro}
%
% \begin{macro}{\gbtbibstyle}
% 定义接口切换参考文献表的风格,可选 \opt{authoryear} 和 \opt{numerical},
% 这个仅用于\pkg{chapterbib}。
% \begin{macrocode}
\newcommand\gbtbibstyle[1]{%
\ifstrequal{#1}{numerical}{%
\if@gbt@mmxv
\bibliographystyle{gbt7714-unsrt}%
\else
\bibliographystyle{gbt7714-2005-unsrt}%
\fi
}{%
\ifstrequal{#1}{authoryear}{%
\if@gbt@mmxv
\bibliographystyle{gbt7714-plain}%
\else
\bibliographystyle{gbt7714-2005-plain}%
\fi
}{%
\PackageError{gbt7714}{Unknown argument #1.}%
{It should be `numerical' or `authoryear'.}%
}%
}%
}
% \end{macrocode}
% \end{macro}
%
% 处理宏包选项。
% \begin{macrocode}
\if@gbt@numerical
\if@gbt@super
\citestyle{super}%
\gbtbibstyle{numerical}%
\else
\citestyle{numbers}
\gbtbibstyle{numerical}%
\fi
\else
\citestyle{authoryear}
\gbtbibstyle{authoryear}%
\fi
% \end{macrocode}
%
% \begin{macro}{\cite}
% 下面修改 \pkg{natbib} 的引用格式,主要是将页码写在上标位置。
% Numerical 模式的 \cs{citet} 的页码:
% \begin{macrocode}
\newcommand\gbt@patchfailure[1]{%
\PackageError{gbt7714}{Failed to patch command \protect#1}{}%
}
\patchcmd{\NAT@citexnum}{%
\@ifnum{\NAT@ctype=\z@}{%
\if*#2*\else\NAT@cmt#2\fi
}{}%
\NAT@mbox{\NAT@@close}%
}{%
\NAT@mbox{\NAT@@close}%
\@ifnum{\NAT@ctype=\z@}{%
\if*#2*\else\textsuperscript{#2}\fi
}{}%
}{}{\gbt@patchfailure{\NAT@citexnum}}
% \end{macrocode}
%
% Numerical 模式的 \cs{citep} 的页码:
% \begin{macrocode}
\renewcommand\NAT@citesuper[3]{\ifNAT@swa
\if*#2*\else#2\NAT@spacechar\fi
\unskip\kern\p@\textsuperscript{\NAT@@open#1\NAT@@close\if*#3*\else#3\fi}%
\else #1\fi\endgroup}
% \end{macrocode}
%
% Author-year 模式的 \cs{citet} 的页码:
% \begin{macrocode}
\patchcmd{\NAT@citex}{%
\if*#2*\else\NAT@cmt#2\fi
\if\relax\NAT@date\relax\else\NAT@@close\fi
}{%
\if\relax\NAT@date\relax\else\NAT@@close\fi
\if*#2*\else\textsuperscript{#2}\fi
}{}{\gbt@patchfailure{\NAT@citex}}
% \end{macrocode}
%
% Author-year 模式的 \cs{citep} 的页码:
% \begin{macrocode}
\renewcommand\NAT@cite%
[3]{\ifNAT@swa\NAT@@open\if*#2*\else#2\NAT@spacechar\fi
#1\NAT@@close\if*#3*\else\textsuperscript{#3}\fi\else#1\fi\endgroup}
% \end{macrocode}
%
% 在顺序编码制下,\pkg{natbib} 只有在三个以上连续文献引用才会使用连接号,
% 这里修改为允许两个引用使用连接号。
% \changes{v1.0.3}{2018/03/29}{顺序编码制连续两个文献引用之间使用连接号}
% \changes{v1.0.4}{2018/04/12}{页码的连接号由 en dash 改为 hyphen}
% \begin{macrocode}
\patchcmd{\NAT@citexnum}{%
\ifx\NAT@last@yr\relax
\def@NAT@last@yr{\@citea}%
\else
\def@NAT@last@yr{--\NAT@penalty}%
\fi
}{%
\def@NAT@last@yr{-\NAT@penalty}%
}{}{\gbt@patchfailure{\NAT@citexnum}}
% \end{macrocode}
% \end{macro}
%
% \begin{environment}{thebibliography}
% 参考文献列表的标签左对齐
% \changes{v1.0.6}{2018/05/10}{文献列表的数字标签左对齐}
% \begin{macrocode}
\renewcommand\@biblabel[1]{[#1]\hfill}
% \end{macrocode}
% \end{environment}
%
% \begin{macro}{\url}
% 使用 \pkg{xurl} 宏包的方法,增加 URL 可断行的位置。
% \changes{v1.0.8}{2018/06/23}{使用 \pkg{xurl} 的方法改进 URL 断行}
% \begin{macrocode}
\def\UrlBreaks{%
\do\/%
\do\a\do\b\do\c\do\d\do\e\do\f\do\g\do\h\do\i\do\j\do\k\do\l%
\do\m\do\n\do\o\do\p\do\q\do\r\do\s\do\t\do\u\do\v\do\w\do\x\do\y\do\z%
\do\A\do\B\do\C\do\D\do\E\do\F\do\G\do\H\do\I\do\J\do\K\do\L%
\do\M\do\N\do\O\do\P\do\Q\do\R\do\S\do\T\do\U\do\V\do\W\do\X\do\Y\do\Z%
\do0\do1\do2\do3\do4\do5\do6\do7\do8\do9\do=\do/\do.\do:%
\do\*\do\-\do\~\do\'\do\"\do\-}
\Urlmuskip=0mu plus 0.1mu
%</package>
% \end{macrocode}
% \end{macro}
%
%
%
% \section{BibTeX 样式的代码实现}
% \label{bst-implementation}
% \linespread{1}
%
% \subsection{自定义选项}
% \label{sec:options}
%
% \begin{environment}{bst}
% 这里定义了一些变量用于定制样式,
% 可以在下面的 |load.config| 函数中选择是否启用。
% \changes{v1.0.8}{2018/06/23}{新增接口供用户自定义样式}
% \begin{macrocode}
%<*authoryear|numerical>
INTEGERS {
uppercase.name
max.num.authors
period.between.author.year
sentence.case.title
link.title
show.mark
slash.for.extraction
in.booktitle
italic.jounal
bold.journal.volume
show.missing.address.publisher
show.url
show.doi
show.note
%<*authoryear>
lang.zh.order
lang.ja.order
lang.en.order
lang.ru.order
lang.other.order
%</authoryear>
}
% \end{macrocode}
%
% 下面每个变量若被设为 |#1| 则启用该项,若被设为 |#0| 则不启用。
% 默认的值是严格遵循国标的配置。
% \begin{macrocode}
FUNCTION {load.config}
{
% \end{macrocode}
%
% 英文姓名转为全大写:
% \begin{macrocode}
#1 'uppercase.name :=
%<*nouppercase|thu>
#0 'uppercase.name :=
%</nouppercase|thu>
% \end{macrocode}
%
% 最多显示的作者数量:
% \begin{macrocode}
#3 'max.num.authors :=
% \end{macrocode}
%
% 采用著者-出版年制时,作者姓名与年份之间使用句点连接:
% \begin{macrocode}
%<*authoryear>
#0 'period.between.author.year :=
%<*period|2005|ustc>
#1 'period.between.author.year :=
%</period|2005|ustc>
%</authoryear>
% \end{macrocode}
%
% 英文标题转为 sentence case (句首字母大写,其余小写):
% \begin{macrocode}
#1 'sentence.case.title :=
%<*nosentencecase>
#0 'sentence.case.title :=
%</nosentencecase>
% \end{macrocode}
%
% 在标题添加超链接:
% \begin{macrocode}
#0 'link.title :=
%<*linktitle>
#1 'link.title :=
%</linktitle>
% \end{macrocode}
%
% 著录文献类型标识(比如“[M/OL]“):
% \begin{macrocode}
#1 'show.mark :=
%<*nomark>
#0 'show.mark :=
%</nomark>
% \end{macrocode}
%
% 使用“//”表示析出文献
% \begin{macrocode}
#1 'slash.for.extraction :=
%<*noslash>
#0 'slash.for.extraction :=
%</noslash>
% \end{macrocode}
%
% 使用“In:”表示析出文献
% \begin{macrocode}
#0 'in.booktitle :=
% \end{macrocode}
%
% 期刊名使用斜体:
% \begin{macrocode}
#0 'italic.jounal :=
%<*italicjournal>
#1 'italic.jounal :=
%</italicjournal>
% \end{macrocode}
%
% 期刊的卷使用粗体:
% \begin{macrocode}
#0 'bold.journal.volume :=
% \end{macrocode}
%
% 无出版地或出版者时,著录“出版地不详”,“出版者不详”,“S.l.” 或 “s.n.”:
% \begin{macrocode}
#1 'show.missing.address.publisher :=
%<*noslsn|ustc>
#0 'show.missing.address.publisher :=
%</noslsn|ustc>
% \end{macrocode}
%
% 是否著录 URL:
% \begin{macrocode}
#1 'show.url :=
%<*nourl>
#0 'show.url :=
%</nourl>
% \end{macrocode}
%
% 是否著录 DOI:
% \begin{macrocode}
#1 'show.doi :=
%<*nodoi|2005>
#0 'show.doi :=
%</nodoi|2005>
% \end{macrocode}
%
% 在每一条文献最后输出注释(note)的内容:
% \begin{macrocode}
#0 'show.note :=
% \end{macrocode}
%
% \changes{v1.1.1}{2019/03/21}{允许自定义文种的顺序}
% 参考文献表按照“著者-出版年”组织时,各个文种的顺序:
% \begin{macrocode}
%<*authoryear>
#1 'lang.zh.order :=
#2 'lang.ja.order :=
#3 'lang.en.order :=
#4 'lang.ru.order :=
#5 'lang.other.order :=
%</authoryear>
}
% \end{macrocode}
%
%
% \subsection{The ENTRY declaration}
%
% Like Scribe's (according to pages 231-2 of the April '84 edition),
% but no fullauthor or editors fields because BibTeX does name handling.
% The annote field is commented out here because this family doesn't
% include an annotated bibliography style. And in addition to the fields
% listed here, BibTeX has a built-in crossref field, explained later.
% \begin{macrocode}
ENTRY
{ address
author
booktitle
date
doi
edition
editor
howpublished
institution
journal
key
language
mark
medium
note
number
organization
pages
publisher
school
series
title
translator
url
urldate
volume
year
}
{ entry.lang entry.is.electronic entry.numbered }
% \end{macrocode}
%
% These string entry variables are used to form the citation label.
% In a storage pinch, sort.label can be easily computed on the fly.
% \begin{macrocode}
{ label extra.label sort.label short.list entry.mark entry.url }
% \end{macrocode}
%
%
% \subsection{Entry functions}
%
% Each entry function starts by calling output.bibitem, to write the
% |\bibitem| and its arguments to the .BBL file. Then the various fields
% are formatted and printed by output or output.check. Those functions
% handle the writing of separators (commas, periods, |\newblock|'s),
% taking care not to do so when they are passed a null string.
% Finally, fin.entry is called to add the final period and finish the
% entry.
%
% A bibliographic reference is formatted into a number of `blocks':
% in the open format, a block begins on a new line and subsequent
% lines of the block are indented. A block may contain more than
% one sentence (well, not a grammatical sentence, but something to
% be ended with a sentence ending period). The entry functions should
% call new.block whenever a block other than the first is about to be
% started. They should call new.sentence whenever a new sentence is
% to be started. The output functions will ensure that if two
% new.sentence's occur without any non-null string being output between
% them then there won't be two periods output. Similarly for two
% successive new.block's.
%
% The output routines don't write their argument immediately.
% Instead, by convention, that argument is saved on the stack to be
% output next time (when we'll know what separator needs to come
% after it). Meanwhile, the output routine has to pop the pending
% output off the stack, append any needed separator, and write it.
%
% To tell which separator is needed, we maintain an output.state.
% It will be one of these values:
% before.all just after the |\bibitem|
% mid.sentence in the middle of a sentence: comma needed
% if more sentence is output
% after.sentence just after a sentence: period needed
% after.block just after a block (and sentence):
% period and |\newblock| needed.
% Note: These styles don't use after.sentence
%
% VAR: output.state : INTEGER -- state variable for output
%
% The output.nonnull function saves its argument (assumed to be nonnull)
% on the stack, and writes the old saved value followed by any needed
% separator. The ordering of the tests is decreasing frequency of
% occurrence.
%
% 由于专著中的析出文献需要用到很特殊的“//”,所以我又加了一个 after.slash。
% 其他需要在特定符号后面输出,所以写了一个 output.after。
%
% \begin{pseudocode}
% output.nonnull(s) ==
% BEGIN
% s := argument on stack
% if output.state = mid.sentence then
% write$(pop() * ", ")
% -- "pop" isn't a function: just use stack top
% else
% if output.state = after.block then
% write$(add.period$(pop()))
% newline$
% write$("\newblock ")
% else
% if output.state = before.all then
% write$(pop())
% else -- output.state should be after.sentence
% write$(add.period$(pop()) * " ")
% fi
% fi
% output.state := mid.sentence
% fi
% push s on stack
% END
% \end{pseudocode}
%
% The output function calls output.nonnull if its argument is non-empty;
% its argument may be a missing field (thus, not necessarily a string)
%
% \begin{pseudocode}
% output(s) ==
% BEGIN
% if not empty$(s) then output.nonnull(s)
% fi
% END
% \end{pseudocode}
%
% The output.check function is the same as the output function except that, if
% necessary, output.check warns the user that the t field shouldn't be empty
% (this is because it probably won't be a good reference without the field;
% the entry functions try to make the formatting look reasonable even when
% such fields are empty).
%
% \begin{pseudocode}
% output.check(s,t) ==
% BEGIN
% if empty$(s) then
% warning$("empty " * t * " in " * cite$)
% else output.nonnull(s)
% fi
% END
% \end{pseudocode}
%
% The output.bibitem function writes the |\bibitem| for the current entry
% (the label should already have been set up), and sets up the separator
% state for the output functions. And, it leaves a string on the stack
% as per the output convention.
%
% \begin{pseudocode}
% output.bibitem ==
% BEGIN
% newline$
% write$("\bibitem[") % for alphabetic labels,
% write$(label) % these three lines
% write$("]{") % are used
% write$("\bibitem{") % this line for numeric labels
% write$(cite$)
% write$("}")
% push "" on stack
% output.state := before.all
% END
% \end{pseudocode}
%
% The fin.entry function finishes off an entry by adding a period to the
% string remaining on the stack. If the state is still before.all
% then nothing was produced for this entry, so the result will look bad,
% but the user deserves it. (We don't omit the whole entry because the
% entry was cited, and a bibitem is needed to define the citation label.)
%
% \begin{pseudocode}
% fin.entry ==
% BEGIN
% write$(add.period$(pop()))