-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy pathgbt7714.dtx
4852 lines (4627 loc) · 119 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 BibTeX Style
% https://github.com/zepinglee/gbt7714-bibtex-style
%
% Copyright (C) 2016--2024 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 2008 or later.
%
% \fi
%
% \iffalse
%<package>\NeedsTeXFormat{LaTeX2e}[1999/12/01]
%<package>\ProvidesPackage{gbt7714}
%<package> [2024/03/08 v2.1.6 GB/T 7714 BibTeX Style]
%
%<*driver>
\documentclass[a4paper]{l3doc}
\usepackage{hypdoc}
\usepackage[UTF8]{ctex}
\usepackage{fontspec}
\usepackage{caption}
\usepackage{booktabs}
\usepackage{gbt7714}
\usepackage{hologo}
\usepackage{listings}
\makeatletter
\hypersetup{allcolors=blue}
\IfFileExists{/System/Library/Fonts/Palatino.ttc}{
\setmainfont{Palatino}
\setsansfont[Scale=MatchLowercase]{Helvetica}
\setmonofont[Scale=MatchLowercase]{Menlo}
}{}
\citestyle{super}
\lstnewenvironment{latex}{%
\lstset{
basicstyle = \ttfamily\small,
language = [LaTeX]TeX,
gobble = 4,
frame = single,
}%
}{}
\lstnewenvironment{pseudocode}{%
\lstset{
basicstyle=\ttfamily\small,
language=bash,
gobble=2,
frame=single,
}%
}{}
\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
\makeatother
\EnableCrossrefs
\CodelineIndex
% \OnlyDescription
\begin{document}
\DocInput{\jobname.dtx}
\end{document}
%</driver>
% \fi
%
%
%
% \GetFileInfo{gbt7714.sty}
%
% \title{GB/T 7714 \hologo{BibTeX} style}
% \author{Zeping Lee\thanks{zepinglee AT gmail.com}}
% \date{\filedate\qquad\fileversion}
% \maketitle
%
%
%
% \begin{abstract}
% The \pkg{gbt7714} package provides a \BibTeX{} implementation for the China's
% national bibliography style standard GB/T 7714.
% It consists of \file{.bst} files for numeric and author-date 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{gbt7714-2015}
% (以下简称“国标”)是中国的参考文献格式推荐标准。
% 国内的绝大部分学术期刊、学位论文都使用了基于该标准的格式。
% 本宏包是国标的 \BibTeX{}\cite{bibtex} 实现,具有以下特性:
% \begin{itemize}
% \item 兼容 \pkg{natbib} 宏包\cite{natbib}。
% \item 支持“顺序编码制”和“著者-出版年制”两种风格。
% \item 自动识别语言并进行相应处理。
% \item 提供了简单的接口供用户修改样式。
% \item 同时提供了 2005 版的 \file{.bst} 文件。
% \end{itemize}
% 本宏包的主页:\url{https://github.com/zepinglee/gbt7714-bibtex-style}。
%
%
% \section{版本 v2.0 的重要修改}
%
% 从 v2.0 版本开始(2020-03-04),用户必须在文档中使用 \cs{biblilographystyle} 命令选择参考文献样式,
% 如 \opt{gbt7714-numerical} 或 \opt{gbt7714-author-year}。
% 在早期的版本中,选择文献样式的方法是将 \opt{numbers} 或 \opt{super} 等参数传递给
% \pkg{gbt7714},
% 而不能使用 \cs{bibliographystyle}。
% 这跟标准的 LaTeX 接口不一致,所以将被弃用。
%
%
% \section{使用方法}
%
% 以下是 \pkg{gbt7714} 宏包的一个简单示例。
% \begin{latex}
% \documentclass{ctexart}
% \usepackage{gbt7714}
% \bibliographystyle{gbt7714-numerical}
% \begin{document}
% \cite{...}
% ...
% \bibliography{bibfile}
% \end{document}
% \end{latex}
%
% 按照国标的规定,参考文献的标注体系分为“顺序编码制”和
% “著者-出版年制”。
% 用户应在导言区调用宏包 \pkg{gbt7714},并且使用 \cs{bibliographystyle}
% 命令选择参考文献表的样式,比如:
% \begin{latex}
% \bibliographystyle{gbt7714-numerical} % 顺序编码制
% \end{latex}
% 或者
% \begin{latex}
% \bibliographystyle{gbt7714-author-year} % 著者-出版年制
% \end{latex}
% 此外还可以使用 2005 版的格式 \file{gbt7714-2005-numerical} 和
% \file{gbt7714-2005-author-year}。
%
% 注意,版本 v2.0 更改了设置参考文献表样式的方法,
% 要求直接使用 \cs{bibliographystyle},不再使用宏包的参数,
% 而且更改了 \file{bst} 的文件名。
%
% \begin{function}{\citestyle}
% \begin{syntax}
% |\citestyle|\Arg{citation style}
% \end{syntax}
% 可选:\opt{super}, \opt{numbers}, \opt{author-year}。
% 使用 \cs{bibliography} 选择参考文献表的样式时会自动设置对应的引用样式。
% 顺序编码制的引用标注默认使用角标式(\opt{super}),
% 如“张三\textsuperscript{[2]}提出”。
% 如果要使用正文模式,如“文献 [3] 中说明”,
% 可以使用 \cs{citestyle} 命令切换为数字式(\opt{numbers})。
% \begin{latex}
% \citestyle{numbers}
% \end{latex}
% 著者-出版年制通常不需要修改引用样式。
% \end{function}
%
% \DescribeOption{sort\&compress}
% 同一处引用多篇文献时,应当将各篇文献的 key 一同写在 \cs{cite} 命令中。
% 如遇连续编号,默认会自动转为起讫序号并用短横线连接
% (见\pkg{natbib} 的 \opt{compress} 选项)。
% 如果要对引用的编号进行自动排序,需要在调用 \pkg{gbt7714} 时加
% \opt{sort\&compress} 参数,
% 这些参数会传给 \pkg{natbib} 处理。
% \begin{latex}
% \usepackage[sort&compress]{gbt7714}
% \end{latex}
% 注意国标中要求 2 个或以上的连续编号用连接号,不同于 \pkg{natbib} 默认的 3 个或以上。
% 宏包中已经作了修改。
%
% 若需要标出引文的页码,可以标在 \cs{cite} 的可选参数中,如
% |\cite[42]{knuth84}|。
% 更多的引用标注方法可以参考 \pkg{natbib} 宏包的使用说明\cite{natbib}。
%
% 使用时需要注意以下几点:
% \begin{itemize}
% \item \file{.bib} 数据库应使用 UTF-8 编码。
% \item 使用著者-出版年制参考文献表时,中文的文献\emph{必须}
% 在 key 域填写作者姓名的拼音,才能按照拼音排序,
% 详见第~\ref{sec:sort}~节。
% \end{itemize}
%
%
% \section{文献类型}
%
% 国标中规定了 16 种参考文献类型,
% 表~\ref{tab:entry-types} 列举了 \file{bib} 数据库中对应的文献类型。
% 这些尽可能兼容 \BibTeX{} 和 \pkg{biblatex} 的标准类型,但是新增了若干文献类型(带 * 号)。
%
% \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] 学校(用于 \texttt{@phdthesis})
% \item[institution] 机构(用于 \texttt{@techreport})
% \item[year] 出版年
% \item[volume] 卷
% \item[number] 期(或者专利号)
% \item[pages] 引文页码
% \item[date*] 更新或修改日期
% \item[urldate*] 引用日期
% \item[url] 获取和访问路径
% \item[doi] 数字对象唯一标识符
% \item[langid*] 语言
% \item[key] 拼音(用于排序)
% \end{description}
% 不支持的 \BibTeX{} 标准著录项目有 annote, chapter, crossref, month, type。
%
% 本宏包默认情况下可以自动识别文献语言,并自动处理文献类型和载体类型标识,
% 但是在少数情况下需要用户手动指定,如:
% \begin{latex}
% @misc{citekey,
% langid = {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}
%
% 对于著者-出版年的样式,如果中文文献较多时更推荐使用 \pkg{biblatex} 宏包,
% 其后端 \file{biber} 可以自动处理中文按照拼音排序,无须手动填写拼音。
%
%
% \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| & 输出著者的最多数量 \\
% year.after.author & |#0| & 年份置于著者之后 \\
% period.after.author & |#0| & 著者和年份之间使用句点连接 \\
% italic.book.title & |#0| & 西文书籍名使用斜体 \\
% sentence.case.title & |#1| & 将西文的题名转为 sentence case \\
% link.title & |#0| & 在题名上添加 url 的超链接 \\
% title.in.journal & |#1| & 期刊是否显示标题 \\
% show.patent.country & |#0| & 专利题名是否含国别 \\
% space.before.mark & |#0| & 文献类型标识前是否有空格 \\
% show.mark & |#1| & 显示文献类型标识 \\
% show.medium.type & |#1| & 显示载体类型标识 \\
% component.part.label & |"slash"| & 表示析出文献的符号,可选:|"in"|, |"none"| \\
% italic.journal & |#0| & 西文期刊名使用斜体 \\
% link.journal & |#0| & 在期刊题名上添加 url 的超链接 \\
% show.missing.address.publisher & |#0| & 出版项缺失时显示“出版者不详” \\
% space.before.pages & |#1| & 页码与前面的冒号之间有空格 \\
% only.start.page & |#0| & 只显示起始页码 \\
% wave.dash.in.pages & |#0| & 起止页码使用波浪号 \\
% show.urldate & |#1| & 显示引用日期 urldate \\
% show.url & |#1| & 显示 url \\
% show.doi & |#1| & 显示 DOI \\
% show.preprint & |#1| & 显示预印本信息 \\
% show.note & |#0| & 显示 note 域的信息 \\
% end.with.period & |#1| & 结尾加句点 \\
% \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)]{gbt7714-2015}
% {中国国家标准化委员会}.
% \newblock 信息与文献\quad 参考文献著录规则: GB/T
% 7714—2015[S].
% \newblock 北京: 中国标准出版社, 2015.
%
% \bibitem[Patashnik(1988{\natexlab{a}})]{bibtex}
% PATASHNIK~O.
% \newblock {\BibTeX}ing[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[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[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[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[M].
% \newblock 2nd ed.
% \newblock Reading, MA, USA: Addison-Wesley, 2004.
%
% \bibitem[吴凯(2006)]{wk2006}
% 吴凯.
% \newblock 发布GBT7714-2005.bst version1 Beta版[EB/OL].
% \newblock 2006.
% \newblock CTeX 论坛(已关闭).
%
% \bibitem[李志奇(2013)]{lqz2013}
% 李志奇.
% \newblock
% 基于biblatex的符合GBT7714—2005的中文文献生成工具[EB/OL].
% \newblock 2013.
% \newblock CTeX 论坛(已关闭).
%
% \bibitem[胡海星(2013)]{hhx2013}
% 胡海星.
% \newblock A GB/T 7714—2005 national standard compliant BibTeX
% style[EB/OL].
% \newblock 2013.
% \newblock \url{https://github.com/Haixing-Hu/GBT7714-2005-BibTeX-Style}.
%
% \bibitem[沈周(2016)]{sz2016}
% 沈周.
% \newblock 基于caspervector改写的符合GB/T
% 7714—2005标准的参考文献格式[EB/OL].
% \newblock 2016.
% \newblock \url{https://github.com/szsdk/biblatex-gbt77142005}.
%
% \bibitem[Vector(2012)]{vector2012}
% VECTOR~C~T.
% \newblock biblatex 参考文献和引用样式: caspervector[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
% 参考文献样式[M/OL].
% \newblock 2016.
% \newblock
% \url{http://mirrors.ctan.org/macros/latex/contrib/biblatex-contrib/biblatex-gb7714-2015/biblatex-gb7714-2015.pdf}.
%
% \end{thebibliography}
%
%
%
%
% \clearpage
% \appendix
% \StopEventually{}
%
% \section{宏包的代码实现}
%
% 兼容过时的接口
% \begin{macrocode}
%<*package>
\newif\ifgbt@legacy@interface
\newif\ifgbt@mmxv
\newif\ifgbt@numerical
\newif\ifgbt@super
\newcommand\gbt@obsolete@option[1]{%
\PackageWarning{gbt7714}{The option "#1" is obsolete}%
}
\DeclareOption{2015}{%
\gbt@obsolete@option{2015}%
\gbt@legacy@interfacetrue
\gbt@mmxvtrue
}
\DeclareOption{2005}{%
\gbt@obsolete@option{2005}%
\gbt@legacy@interfacetrue
\gbt@mmxvfalse
}
\DeclareOption{super}{%
\gbt@obsolete@option{super}%
\gbt@legacy@interfacetrue
\gbt@numericaltrue
\gbt@supertrue
}
\DeclareOption{numbers}{%
\gbt@obsolete@option{numbers}%
\gbt@legacy@interfacetrue
\gbt@numericaltrue
\gbt@superfalse
}
\DeclareOption{authoryear}{%
\gbt@obsolete@option{authoryear}%
\gbt@legacy@interfacetrue
\gbt@numericalfalse
}
% \end{macrocode}
%
% 将选项传递给 \pkg{natbib}
% \begin{macrocode}
\DeclareOption*{\PassOptionsToPackage{\CurrentOption}{natbib}}
\ProcessOptions\relax
% \end{macrocode}
%
% 调用宏包,注意只需要 \opt{compress} 不需要 \opt{sort}。
% \begin{macrocode}
\RequirePackage{natbib}
\RequirePackage{url}
% \end{macrocode}
%
% 如果将 \opt{compress} 传给 \pkg{natbib} 容易导致 option clash。
% 这里直接修改内部命令。
% \begin{macrocode}
\def\NAT@cmprs{\@ne}
% \end{macrocode}
%
% \begin{macro}{\citestyle}
% 定义接口切换引用文献的标注法,可用 \cs{citestyle} 调用 \opt{numerical}
% 或 \opt{authoryear},参见 \pkg{natbib}。
% \begin{macrocode}
\renewcommand\newblock{\space}
\newcommand\bibstyle@super{\bibpunct{[}{]}{,}{s}{,}{\textsuperscript{,}}}
\newcommand\bibstyle@numbers{\bibpunct{[}{]}{,}{n}{,}{,}}
\newcommand\bibstyle@authoryear{\bibpunct{(}{)}{;}{a}{,}{,}}
\newcommand\bibstyle@inline{\bibstyle@numbers}
% \end{macrocode}
% \end{macro}
%
% 在使用 \cs{bibliographystyle} 时自动切换引用文献的标注的样式。
% \begin{macrocode}
\@namedef{bibstyle@gbt7714-numerical}{\bibstyle@super}
\@namedef{bibstyle@gbt7714-author-year}{\bibstyle@authoryear}
\@namedef{bibstyle@gbt7714-2005-numerical}{\bibstyle@super}
\@namedef{bibstyle@gbt7714-2005-author-year}{\bibstyle@authoryear}
% \end{macrocode}
%
% \begin{macro}{\cite}
% 下面修改 \pkg{natbib} 的引用格式。
% 为了减少依赖的宏包,这里直接重定义命令不使用 \pkg{etoolbox} 的 \cs{patchcmd}。
%
% Super 样式的 \cs{citep} 的页码也为上标。
% 另外加上 |\kern\p@| 去掉上标式引用后与中文之间多余的空格,
% 参考 \href{https://github.com/tuna/thuthesis/issues/624}{tuna/thuthesis\#624}。
% \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\NAT@spacechar#3\fi\else #1\fi\endgroup}
\unskip\kern\p@
\textsuperscript{%
\NAT@@open
#1%
\NAT@@close
\if*#3*\else
#3%
\fi
}%
\kern\p@
\else
#1%
\fi
\endgroup
}
% \end{macrocode}
%
% 将 numbers 样式的 \cs{citep} 的页码置于括号外。
% \begin{macrocode}
\renewcommand\NAT@citenum[3]{%
\ifNAT@swa
\NAT@@open
\if*#2*\else
#2\NAT@spacechar
\fi
% #1\if*#3*\else\NAT@cmt#3\fi\NAT@@close\else#1\fi\endgroup}
#1\NAT@@close
\if*#3*\else
\textsuperscript{#3}%
\fi
\else
#1%
\fi
\endgroup
}
% \end{macrocode}
%
% Numerical 模式的 \cs{citet} 的页码:
% \begin{macrocode}
\def\NAT@citexnum[#1][#2]#3{%
\NAT@reset@parser
\NAT@sort@cites{#3}%
\NAT@reset@citea
\@cite{\def\NAT@num{-1}\let\NAT@last@yr\relax\let\NAT@nm\@empty
\@for\@citeb:=\NAT@cite@list\do
{\@safe@activestrue
\edef\@citeb{\expandafter\@firstofone\@citeb\@empty}%
\@safe@activesfalse
\@ifundefined{b@\@citeb\@extra@b@citeb}{%
{\reset@font\bfseries?}
\NAT@citeundefined\PackageWarning{natbib}%
{Citation `\@citeb' on page \thepage \space undefined}}%
{\let\NAT@last@num\NAT@num\let\NAT@last@nm\NAT@nm
\NAT@parse{\@citeb}%
\ifNAT@longnames\@ifundefined{bv@\@citeb\@extra@b@citeb}{%
\let\NAT@name=\NAT@all@names
\global\@namedef{bv@\@citeb\@extra@b@citeb}{}}{}%
\fi
\ifNAT@full\let\NAT@nm\NAT@all@names\else
\let\NAT@nm\NAT@name\fi
\ifNAT@swa
\@ifnum{\NAT@ctype>\@ne}{%
\@citea
\NAT@hyper@{\@ifnum{\NAT@ctype=\tw@}{\NAT@test{\NAT@ctype}}{\NAT@alias}}%
}{%
\@ifnum{\NAT@cmprs>\z@}{%
\NAT@ifcat@num\NAT@num
{\let\NAT@nm=\NAT@num}%
{\def\NAT@nm{-2}}%
\NAT@ifcat@num\NAT@last@num
{\@tempcnta=\NAT@last@num\relax}%
{\@tempcnta\m@ne}%
\@ifnum{\NAT@nm=\@tempcnta}{%
\@ifnum{\NAT@merge>\@ne}{}{\NAT@last@yr@mbox}%
}{%
\advance\@tempcnta by\@ne
\@ifnum{\NAT@nm=\@tempcnta}{%
% \end{macrocode}
%
% 在顺序编码制下,\pkg{natbib} 只有在三个以上连续文献引用才会使用连接号,
% 这里修改为允许两个引用使用连接号。
% \begin{macrocode}
% \ifx\NAT@last@yr\relax
% \def@NAT@last@yr{\@citea}%
% \else
% \def@NAT@last@yr{--\NAT@penalty}%
% \fi
\def@NAT@last@yr{-\NAT@penalty}%
}{%
\NAT@last@yr@mbox
}%
}%
}{%
\@tempswatrue
\@ifnum{\NAT@merge>\@ne}{\@ifnum{\NAT@last@num=\NAT@num\relax}{\@tempswafalse}{}}{}%
\if@tempswa\NAT@citea@mbox\fi
}%
}%
\NAT@def@citea
\else
\ifcase\NAT@ctype
\ifx\NAT@last@nm\NAT@nm \NAT@yrsep\NAT@penalty\NAT@space\else
\@citea \NAT@test{\@ne}\NAT@spacechar\NAT@mbox{\NAT@super@kern\NAT@@open}%
\fi
\if*#1*\else#1\NAT@spacechar\fi
\NAT@mbox{\NAT@hyper@{{\citenumfont{\NAT@num}}}}%
\NAT@def@citea@box
\or
\NAT@hyper@citea@space{\NAT@test{\NAT@ctype}}%
\or
\NAT@hyper@citea@space{\NAT@test{\NAT@ctype}}%
\or
\NAT@hyper@citea@space\NAT@alias
\fi
\fi
}%
}%
\@ifnum{\NAT@cmprs>\z@}{\NAT@last@yr}{}%
\ifNAT@swa\else
% \end{macrocode}
%
% 将页码放在括号外边,并且置于上标。
% \begin{macrocode}
% \@ifnum{\NAT@ctype=\z@}{%
% \if*#2*\else\NAT@cmt#2\fi
% }{}%
\NAT@mbox{\NAT@@close}%
\@ifnum{\NAT@ctype=\z@}{%
\if*#2*\else
\textsuperscript{#2}%
\fi
}{}%
\NAT@super@kern
\fi
}{#1}{#2}%
}%
% \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}
% \end{macro}
%
% Author-year 模式的 \cs{citet} 的页码:
% \begin{macrocode}
\def\NAT@citex%
[#1][#2]#3{%
\NAT@reset@parser
\NAT@sort@cites{#3}%
\NAT@reset@citea
\@cite{\let\NAT@nm\@empty\let\NAT@year\@empty
\@for\@citeb:=\NAT@cite@list\do
{\@safe@activestrue
\edef\@citeb{\expandafter\@firstofone\@citeb\@empty}%
\@safe@activesfalse
\@ifundefined{b@\@citeb\@extra@b@citeb}{\@citea%
{\reset@font\bfseries ?}\NAT@citeundefined
\PackageWarning{natbib}%
{Citation `\@citeb' on page \thepage \space undefined}\def\NAT@date{}}%
{\let\NAT@last@nm=\NAT@nm\let\NAT@last@yr=\NAT@year
\NAT@parse{\@citeb}%
\ifNAT@longnames\@ifundefined{bv@\@citeb\@extra@b@citeb}{%
\let\NAT@name=\NAT@all@names
\global\@namedef{bv@\@citeb\@extra@b@citeb}{}}{}%
\fi
\ifNAT@full\let\NAT@nm\NAT@all@names\else
\let\NAT@nm\NAT@name\fi
\ifNAT@swa\ifcase\NAT@ctype
\if\relax\NAT@date\relax
\@citea\NAT@hyper@{\NAT@nmfmt{\NAT@nm}\NAT@date}%
\else
\ifx\NAT@last@nm\NAT@nm\NAT@yrsep
\ifx\NAT@last@yr\NAT@year
\def\NAT@temp{{?}}%
\ifx\NAT@temp\NAT@exlab\PackageWarningNoLine{natbib}%
{Multiple citation on page \thepage: same authors and
year\MessageBreak without distinguishing extra
letter,\MessageBreak appears as question mark}\fi
\NAT@hyper@{\NAT@exlab}%
\else\unskip\NAT@spacechar
\NAT@hyper@{\NAT@date}%
\fi
\else
\@citea\NAT@hyper@{%
\NAT@nmfmt{\NAT@nm}%
\hyper@natlinkbreak{%
\NAT@aysep\NAT@spacechar}{\@citeb\@extra@b@citeb
}%
\NAT@date
}%
\fi
\fi
\or\@citea\NAT@hyper@{\NAT@nmfmt{\NAT@nm}}%
\or\@citea\NAT@hyper@{\NAT@date}%
\or\@citea\NAT@hyper@{\NAT@alias}%
\fi \NAT@def@citea
\else
\ifcase\NAT@ctype
\if\relax\NAT@date\relax
\@citea\NAT@hyper@{\NAT@nmfmt{\NAT@nm}}%
\else
\ifx\NAT@last@nm\NAT@nm\NAT@yrsep
\ifx\NAT@last@yr\NAT@year
\def\NAT@temp{{?}}%
\ifx\NAT@temp\NAT@exlab\PackageWarningNoLine{natbib}%
{Multiple citation on page \thepage: same authors and
year\MessageBreak without distinguishing extra
letter,\MessageBreak appears as question mark}\fi
\NAT@hyper@{\NAT@exlab}%
\else
\unskip\NAT@spacechar
\NAT@hyper@{\NAT@date}%
\fi
\else
\@citea\NAT@hyper@{%
\NAT@nmfmt{\NAT@nm}%
\hyper@natlinkbreak{\NAT@spacechar\NAT@@open\if*#1*\else#1\NAT@spacechar\fi}%
{\@citeb\@extra@b@citeb}%
\NAT@date
}%
\fi
\fi
\or\@citea\NAT@hyper@{\NAT@nmfmt{\NAT@nm}}%
\or\@citea\NAT@hyper@{\NAT@date}%
\or\@citea\NAT@hyper@{\NAT@alias}%
\fi
\if\relax\NAT@date\relax
\NAT@def@citea
\else
\NAT@def@citea@close
\fi
\fi
}}\ifNAT@swa\else
% \end{macrocode}
%
% 将页码放在括号外边,并且置于上标。
% \begin{macrocode}
% \if*#2*\else\NAT@cmt#2\fi
\if\relax\NAT@date\relax\else\NAT@@close\fi
\if*#2*\else\textsuperscript{#2}\fi
\fi}{#1}{#2}}
% \end{macrocode}
%
% \begin{environment}{thebibliography}
% 参考文献列表的标签左对齐
% \begin{macrocode}
\renewcommand\@biblabel[1]{[#1]\hfill}
% \end{macrocode}
% \end{environment}
%
% Patch \pkg{natbib} 内部命令,以支持 \cs{noopsort}。
% 参考 \url{https://tex.stackexchange.com/a/39718/82731}。
% \begin{macrocode}
\let\NAT@bare@aux\NAT@bare
\def\NAT@bare#1(#2){%
\begingroup\edef\x{\endgroup
\unexpanded{\NAT@bare@aux#1}(\@firstofone#2)}\x}
% \end{macrocode}
%
% \begin{macro}{\url}
% 使用 \pkg{xurl} 宏包的方法,增加 URL 可断行的位置。
% \begin{macrocode}
\g@addto@macro\UrlBreaks{%
\do0\do1\do2\do3\do4\do5\do6\do7\do8\do9%
\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
}
\Urlmuskip=0mu plus 0.1mu
% \end{macrocode}
% \end{macro}
%
% 兼容 v2.0 前过时的接口:
% \begin{macrocode}
\newif\ifgbt@bib@style@written
\@ifpackageloaded{chapterbib}{}{%
\def\bibliography#1{%
\ifgbt@bib@style@written\else
\bibliographystyle{gbt7714-numerical}%
\fi
\if@filesw
\immediate\write\@auxout{\string\bibdata{\zap@space#1 \@empty}}%
\fi
\@input@{\jobname.bbl}}
\def\bibliographystyle#1{%
\gbt@bib@style@writtentrue
\ifx\@begindocumenthook\@undefined\else
\expandafter\AtBeginDocument
\fi
{\if@filesw
\immediate\write\@auxout{\string\bibstyle{#1}}%
\fi}%
}%
}
\ifgbt@legacy@interface
\ifgbt@numerical
\ifgbt@super\else
\citestyle{numbers}
\fi
\bibliographystyle{gbt7714-numerical}
\else
\bibliographystyle{gbt7714-author-year}
\fi
\fi
%</package>
% \end{macrocode}
%
%
%
% \section{BibTeX 样式的代码实现}
% \label{bst-implementation}
% \linespread{1}
%
% \subsection{自定义选项}
% \label{sec:options}
%
% \begin{environment}{bst}
% 这里定义了一些变量用于定制样式,
% 可以在下面的 |load.config| 函数中选择是否启用。
% \begin{macrocode}
%<*author-year|numerical>
INTEGERS {
citation.et.al.min
citation.et.al.use.first
bibliography.et.al.min
bibliography.et.al.use.first
uppercase.name
terms.in.macro
year.after.author
period.after.author
italic.book.title
sentence.case.title
link.title
title.in.journal
show.patent.country
show.mark
space.before.mark
show.medium.type
short.journal
italic.journal
link.journal
bold.journal.volume
show.missing.address.publisher
space.before.pages
only.start.page
wave.dash.in.pages
show.urldate
show.url
show.doi
show.preprint
show.note
show.english.translation
end.with.period
%<*author-year>
lang.zh.order
lang.ja.order
lang.en.order
lang.ru.order
lang.other.order
%</author-year>
}
STRINGS {
component.part.label
}
% \end{macrocode}
%
% 下面每个变量若被设为 |#1| 则启用该项,若被设为 |#0| 则不启用。
% 默认的值是严格遵循国标的配置。
% \begin{macrocode}
FUNCTION {load.config}
{
% \end{macrocode}
%
% 如果姓名的数量大于等于 |et.al.min|,只著录前 |et.al.use.first| 个,
% 其后加“et al.”或“等”。
% \begin{macrocode}
%<*!ucas>
#2 'citation.et.al.min :=
#1 'citation.et.al.use.first :=
%</!ucas>
%<*ucas>
#3 'citation.et.al.min :=
#1 'citation.et.al.use.first :=
%</ucas>
#4 'bibliography.et.al.min :=
#3 'bibliography.et.al.use.first :=
% \end{macrocode}
%
% 英文姓名转为全大写:
% \begin{macrocode}
%<*!(no-uppercase|thu)>
#1 'uppercase.name :=
%</!(no-uppercase|thu)>
%<*no-uppercase|thu>
#0 'uppercase.name :=
%</no-uppercase|thu>
% \end{macrocode}
%
% 使用 TeX 宏输出“和”、“等”
% \begin{macrocode}
%<*!(macro|ucas)>
#0 'terms.in.macro :=
%</!(macro|ucas)>
%<*macro|ucas>
#1 'terms.in.macro :=
%</macro|ucas>
% \end{macrocode}
%
% 将年份置于著者后面(著者-出版年制默认)
% \begin{macrocode}
%<*numerical|ucas>
#0 'year.after.author :=
%</numerical|ucas>
%<*author-year&!ucas>
#1 'year.after.author :=
%</author-year&!ucas>
% \end{macrocode}
%
% 采用著者-出版年制时,作者姓名与年份之间使用句点连接:
% \begin{macrocode}
%<*numerical>
#1 'period.after.author :=
%</numerical>
%<*author-year>
%<*2015&!(period|ustc)>
#0 'period.after.author :=
%</2015&!(period|ustc)>
%<*period|2005|ustc>
#1 'period.after.author :=
%</period|2005|ustc>
%</author-year>
% \end{macrocode}
%
% 书名使用斜体:
% \begin{macrocode}