-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathtest-aywithjournalvolume.tex
124 lines (98 loc) · 3.09 KB
/
test-aywithjournalvolume.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
%--
%测试author-year样式在没有期刊名,没有volume时,与mergedate选项的标点处理
%
\documentclass{article}
\usepackage{ctex}
\usepackage[margin=1cm]{geometry}
\usepackage[backend=biber,style=gb7714-2015ay,gbnoauthor,nohashothers=true,gbpub=true,
sorting=none
%mergedate=true
%,sortlocale=zh__stroke,nosortothers=true
]{biblatex}%sorting=nyt
%\ExecuteBibliographyOptions{mergedate=none} 只能用于导言区,但可以设置全局和pertype选项。
\begin{filecontents}[force]{\jobname.bib}
@Article{刘彻东1998A,
Title = {中国的青年刊物},
Author = {刘彻东},
Date = {1998},
Journaltitle = {中国出版},
volume={13},
Number = {5},
Pages = {38-39},
Titleaddon = {个性特色为本}
}
@Article{刘彻东1998B,
Title = {中国的青年刊物},
Author = {刘彻东},
Date = {1998},
volume={13},
Number = {5},
Pages = {38-39},
Titleaddon = {个性特色为本}
}
@Article{刘彻东1998C,
Title = {中国的青年刊物},
Author = {刘彻东},
Date = {1998},
Journaltitle = {中国出版},
Number = {5},
Pages = {38-39},
Titleaddon = {个性特色为本}
}
@Article{刘彻东1998D,
Title = {中国的青年刊物},
Author = {刘彻东},
YEAR = {1998},
Journaltitle = {中国出版},
volume={13},
Number = {5},
Pages = {38-39},
Titleaddon = {个性特色为本}
}
@Article{刘彻东1998E,
Title = {中国的青年刊物},
Author = {刘彻东},
YEAR = {1998},
volume={13},
Number = {5},
Pages = {38-39},
Titleaddon = {个性特色为本}
}
@Article{刘彻东1998F,
Title = {中国的青年刊物},
Author = {刘彻东},
YEAR = {1998},
Journaltitle = {中国出版},
Number = {5},
Pages = {38-39},
Titleaddon = {个性特色为本}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\begin{refsection}
\nocite{*}
\printbibliography[heading=subbibliography,title="no mergedate"]
\end{refsection}
\begin{refsection}
\makeatletter
\bbx@opt@mergedate@none
\makeatother
\nocite{*}
\printbibliography[heading=subbibliography,title="mergedate: none"]
\end{refsection}
\begin{refsection}
\makeatletter
\bbx@opt@mergedate@false
\makeatother
\nocite{*}
\printbibliography[heading=subbibliography,title="mergedate: false"]
\end{refsection}
\begin{refsection}
\makeatletter
\bbx@opt@mergedate@true
\makeatother
\nocite{*}
\printbibliography[heading=subbibliography,title="mergedate: true"]
\end{refsection}
\end{document}