-
Notifications
You must be signed in to change notification settings - Fork 8
/
DatabaseGuide.tex
2906 lines (2022 loc) · 195 KB
/
DatabaseGuide.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% !TeX encoding = UTF-8
% DatabaseGuide.tex
%\section{Database Guide}
\section{数据库指南}
\label{bib}
%This section describes the default data model defined in the \file{blx-dm.def} file which is part of \path{biblatex}. The data model is defined using the macros documented in \secref{aut:ctm:dm}. It is possible to redefine the data model which both \biblatex and \biber use so that datasources can contain new entrytypes and fields (which of course will need style support). The data model specification also allows for constraints to be defined so that data sources can be validated against the data model (using \biber's \opt{--validate-datamodel} option). Users who want to customise the data model need to look at the \file{blx-dm.def} file and to read \secref{aut:ctm:dm}.
本节描述 \file{blx-dm.def} 中定义的默认数据模型。该文件是宏包的一部分。
该数据模型的定义由\secref{aut:ctm:dm} 节中的宏实现。
因此,可以重新定义 \biblatex 和 \biber 所用的数据模型,
使得数据源可以包括新的\gls{条目类型}和\gls{域}(当然这需要\gls{样式}文件支持)。
数据模型规范还允许定义约束,使得数据源可以根据数据模型进行校验
(使用 \biber 的 \path{--validate_datamodel} 选项)。
若需要定制数据模型,请参考 \file{blx-dm.def} 文件和 \secref{aut:ctm:dm} 节。
All entry types and field names are given in all-lowercase form here. This is how the entry types and field names are given in the data model. While the \biber/\bibtex input side is case insensitive, the \latex side is case sensitive and uses the exact capitalisation from the data model. This means that the input in the \file{bib} file may use any capitalisation of entry types and field names, but when the fields are used in the \latex document---for example in \cmd{citefield}---the capitalisation must match the captalisation in the data model, for standard types and fields that would be all lowercase.
%\subsection{Entry Types}
\subsection{条目类型}
\label{bib:typ}
%This section gives an overview of the entry types supported by the default \biblatex data model along with the fields supported by each type.
本节介绍 \biblatex 默认数据模型支持的条目类型及每种条目类型支持的域。
%\subsubsection{Regular Types}
\subsubsection{常规类型}
\label{bib:typ:blx}
%The lists below indicate the fields supported by each entry type. Note that the mapping of fields to an entry type is ultimately at the discretion of the bibliography style. The lists below therefore serve two purposes. They indicate the fields supported by the standard styles which come with this package and they also serve as a model for custom styles. Note that the <required> fields are not strictly required in all cases, see \secref{bib:use:key} for details. The fields marked as <optional> are optional in a technical sense. Bibliographical formatting rules usually require more than just the <required> fields.The default data model defined a few constraints for the format of date fields, ISBNs and some special fields like \bibfield{gender} but the constraints are only used if validating against the data model with \biber's \opt{--validate-datamodel} option. Generic fields like \bibfield{abstract} and \bibfield{annotation} or \bibfield{label} and \bibfield{shorthand} are not included in the lists below because they are independent of the entry type. The special fields discussed in \secref{bib:fld:spc}, which are also independent of the entry type, are not included in the lists either. See the default data model specification in the file \file{blx-dm.def} which comes with \biblatex for a complete specification.
%The <alias> relation referred to in this subsection is the <soft alias> defined with \cmd{DeclareBibliographyAlias}. That means that the alias will use the same bibliography driver as the type it is aliased to, but that its type-specific formatting is still handled independently of the aliased type.
下面的列表说明了每种条目类型支持的域。
注意,每种条目类型对域的使用是由参考文献样式决定的。
因此,下面的列表有两个目的,一是说明本宏包标准样式支持的域,二是作为定制样式的模板。
注意,所谓“必选”域并不是在所有情况下都严格必不可少的,详见 \secref{bib:use:key} 节。
而标记“可选”的域技术上是可选的,
不过通常来说,文献格式化规则往往不会仅限于“必选”域。
默认的数据模型为日期域、ISBN类的域和 \bibfield{gender} 等特殊域定义了一些约束。
但这些约束仅用于校验这些域是否合乎数据模型(通过 \biber 的 \path{--validate_datamodel} 选项)。
通用域如 \bibfield{abstract}、\bibfield{annotation}、\bibfield{label} 和 \bibfield{shorthand} 并不在下面的列表中,因为它们独立于条目类型;
\secref{bib:fld:spc} 节讨论的特殊域同样也独立于条目类型,因此也不在下面的列表中。
需要了解完整的数据模型规范,详见\biblatex 附带文件 \file{blx-dm.def}中的默认数据模型。
本小节中的别名 <alias> 关系指的是由\cmd{DeclareBibliographyAlias} 定义的软别名 <soft alias>。这意味着这些别名会使用与其所指代原类型相同的驱动,但类型相关的格式化则独立于指代的原类型。
\begin{typelist}
\typeitem{article}
%An article in a journal, magazine, newspaper, or other periodical which forms a self"=contained unit with its own title. The title of the periodical is given in the \bibfield{journaltitle} field. If the issue has its own title in addition to the main title of the periodical, it goes in the \bibfield{issuetitle} field. Note that \bibfield{editor} and related fields refer to the journal while \bibfield{translator} and related fields refer to the article.
指从期刊、杂志、报纸或其他周期性刊物中的析出文章,具有自己的标题,是一个独立单元。
刊物名在 \bibfield{journaltitle} 域中给出。
如果除刊物名外,某期刊物也有具体的题名,那么该题名在 \bibfield{issuetitle} 域中给出。
注意,\bibfield{editor} 及相关域指的是期刊,而 \bibfield{translator} 及其相关域则涉及到文章。
\reqitem{author, title, journaltitle, year/date}
\optitem{translator, annotator, commentator, subtitle, titleaddon, editor, editora, editorb, editorc, journalsubtitle, journaltitleaddon, issuetitle, issuesubtitle, issuetitleaddon, language, origlanguage, series, volume, number, eid, issue, month, pages, version, note, issn, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{book}
%A single"=volume book with one or more authors where the authors share credit for the work as a whole. This entry type also covers the function of the \bibtype{inbook} type of traditional \bibtex, see \secref{bib:use:inb} for details.
单卷本的书籍,有一位或多位作者,其中多位作者名构成一个整体名单作为该著作的责任者。
该条目类型也涵盖了传统 \BibTeX 的 \bibtype{inbook} 类型,详见 \secref{bib:use:inb} 节。
\reqitem{author, title, year/date}
\optitem{editor, editora, editorb, editorc, translator, annotator, commentator, introduction, foreword, afterword, subtitle, titleaddon, maintitle, mainsubtitle, maintitleaddon, language, origlanguage, volume, part, edition, volumes, series, number, note, publisher, location, isbn, eid, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{mvbook}
%A multi"=volume \bibtype{book}. For backwards compatibility, multi"=volume books are also supported by the entry type \bibtype{book}. However, it is advisable to make use of the dedicated entry type \bibtype{mvbook}.
多卷本书籍。为了向后兼容,多卷书也可用 \bibtype{book} 条目类型。
然而建议最好使用该专用条目类型 \bibtype{mvbook}。
\reqitem{author, title, year/date}
\optitem{editor, editora, editorb, editorc, translator, annotator, commentator, introduction, foreword, afterword, subtitle, titleaddon, language, origlanguage, edition, volumes, series, number, note, publisher, location, isbn, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{inbook}
%A part of a book which forms a self"=contained unit with its own title. Note that the profile of this entry type is different from standard \bibtex, see \secref{bib:use:inb}.
书的一部分。它是一个独立的单元,有自己的标题。
注意,该类型的定义不同于标准 \BibTeX 给出的定义,见 \secref{bib:use:inb} 节。
\reqitem{author, title, booktitle, year/date}
\optitem{bookauthor, editor, editora, editorb, editorc, translator, annotator, commentator, introduction, foreword, afterword, subtitle, titleaddon, maintitle, mainsubtitle, maintitleaddon, booksubtitle, booktitleaddon, language, origlanguage, volume, part, edition, volumes, series, number, note, publisher, location, isbn, eid, chapter, pages, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{bookinbook}
%This type is similar to \bibtype{inbook} but intended for works originally published as a stand-alone book. A typical example are books reprinted in the collected works of an author.
类似于 \bibtype{inbook},但用于原本已经出版的单行本。
典型的例子是在一位作者作品集中再版的书籍。
\typeitem{suppbook}
%Supplemental material in a \bibtype{book}. This type is closely related to the \bibtype{inbook} entry type. While \bibtype{inbook} is primarily intended for a part of a book with its own title (\eg a single essay in a collection of essays by the same author), this type is provided for elements such as prefaces, introductions, forewords, afterwords, etc. which often have a generic title only. Style guides may require such items to be formatted differently from other \bibtype{inbook} items. The standard styles will treat this entry type as an alias for \bibtype{inbook}.
\bibtype{book} (书)的补充材料,与 \bibtype{inbook} 条目类型密切相关。
\bibtype{inbook} 主要用于一本书中带有自身标题的部分,例如一本散文集中相同作者的单独一篇散文;
而本条目用于诸如序言、导论、前言、后记等部分,往往只有一个通用标题。
一些参考文献著录标准可能会要求该条目类型的著录格式不同于 \bibtype{inbook}。
而标准样式将其视为 \bibtype{inbook} 的别名。
\typeitem{booklet}
%A book"=like work without a formal publisher or sponsoring institution. Use the field \bibfield{howpublished} to supply publishing information in free format, if applicable. The field \bibfield{type} may be useful as well.
类似于书籍,但没有正式的出版或赞助机构。
如果允许,可以使用 \bibfield{howpublished} 域提供自由格式的出版信息。
或者也可以使用 \bibfield{type} 域。
\reqitem{author/editor, title, year/date}
\optitem{subtitle, titleaddon, language, howpublished, type, note, location, eid, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{collection}
%A single"=volume collection with multiple, self"=contained contributions by distinct authors which have their own title. The work as a whole has no overall author but it will usually have an editor.
单卷本的文集,由一些具有不同作者和题名的独立稿件构成。
作品集作为一个整体没有总体意义上的作者,但通常有一位编者。
\reqitem{editor, title, year/date}
\optitem{editora, editorb, editorc, translator, annotator, commentator, introduction, foreword, afterword, subtitle, titleaddon, maintitle, mainsubtitle, maintitleaddon, language, origlanguage, volume, part, edition, volumes, series, number, note, publisher, location, isbn, eid, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{mvcollection}
%A multi"=volume \bibtype{collection}. For backwards compatibility, multi"=volume collections are also supported by the entry type \bibtype{collection}. However, it is advisable to make use of the dedicated entry type \bibtype{mvcollection}.
多卷本文集。为了向后兼容,也可用条目类型 \bibtype{collection} 表示。
然而,建议最好还是使用专用条目类型 \bibtype{mvcollection}。
\reqitem{editor, title, year/date}
\optitem{editora, editorb, editorc, translator, annotator, commentator, introduction, foreword, afterword, subtitle, titleaddon, language, origlanguage, edition, volumes, series, number, note, publisher, location, isbn, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{incollection}
%A contribution to a collection which forms a self"=contained unit with a distinct author and title. The \bibfield{author} refers to the \bibfield{title}, the \bibfield{editor} to the \bibfield{booktitle}, \ie the title of the collection.
文集中的一篇稿件,是一个独立的单元,具有自己的标题。
\bibfield{author} 指的是 \bibfield{title} 的作者,
而 \bibfield{editor} 指的是 \bibfield{booktitle}( 即文集标题)的编者。
\reqitem{author, title, booktitle, year/date}
\optitem{editor, editora, editorb, editorc, translator, annotator, commentator, introduction, foreword, afterword, subtitle, titleaddon, maintitle, mainsubtitle, maintitleaddon, booksubtitle, booktitleaddon, language, origlanguage, volume, part, edition, volumes, series, number, note, publisher, location, isbn, eid, chapter, pages, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{suppcollection}
%Supplemental material in a \bibtype{collection}. This type is similar to \bibtype{suppbook} but related to the \bibtype{collection} entry type. The standard styles will treat this entry type as an alias for \bibtype{incollection}.
\bibtype{collection} 中的补充材料。
类似于 \bibtype{suppbook} 之于 \bibtype{book}。
标准样式将其视为 \bibtype{incollection} 的别名。
\typeitem{dataset}
%A data set or a similar collection of (mostly) raw data.
一种数据集或者一种类似的(通常是)原始数据的集合
\reqitem{author/editor, title, year/date}
\optitem{subtitle, titleaddon, language, edition, type, series, number, version, note, organization, publisher, location, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{manual}
%Technical or other documentation, not necessarily in printed form. The \bibfield{author} or \bibfield{editor} is omissible in terms of \secref{bib:use:key}.
技术或其它文档,不必是印刷形式的。
按照 \secref{bib:use:key} 一节,\bibfield{author} 或者 \bibfield{editor} 是可以省略的。
\reqitem{author/editor, title, year/date}
\optitem{subtitle, titleaddon, language, edition, type, series, number, version, note, organization, publisher, location, isbn, eid, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{misc}
%A fallback type for entries which do not fit into any other category. Use the field \bibfield{howpublished} to supply publishing information in free format, if applicable. The field \bibfield{type} may be useful as well. \bibfield{author}, \bibfield{editor}, and \bibfield{year} are omissible in terms of \secref{bib:use:key}.
备选类型,用于无法归入任何其它类别的条目。
合适的话,可以使用 \bibfield{howpublished} 域,可以提供自由格式的出版信息。
或者也可以使用 \bibfield{type} 域。
按照 \secref{bib:use:key} 节,\bibfield{author}、\bibfield{editor} 和 \bibfield{year} 可以省略。
\reqitem{author/editor, title, year/date}
\optitem{subtitle, titleaddon, language, howpublished, type, version, note, organization, location, month, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{online}
%An online resource. \bibfield{author}, \bibfield{editor}, and \bibfield{year} are omissible in terms of \secref{bib:use:key}. This entry type is intended for sources such as web sites which are intrinsically online resources. Note that all entry types support the \bibfield{url} field. For example, when adding an article from an online journal, it may be preferable to use the \bibtype{article} type and its \bibfield{url} field.
在线资源。
按照 \secref{bib:use:key} 节,\bibfield{author},\bibfield{editor} 和 \bibfield{year} 可以省略。
该条目类型用于网址等固有在线资源。
注意:所有条目类型都支持 \bibfield{url} 域。
比如,当增加一篇来自在线期刊的文章时,应优先使用 \bibtype{article} 条目和它的 \bibfield{url} 域。
\reqitem{author/editor, title, year/date, doi/eprint/url}
\optitem{subtitle, titleaddon, language, version, note, organization, month, addendum, pubstate, eprintclass, eprinttype, urldate}
\typeitem{patent}
%A patent or patent request. The number or record token is given in the \bibfield{number} field. Use the \bibfield{type} field to specify the type and the \bibfield{location} field to indicate the scope of the patent, if different from the scope implied by the \bibfield{type}. Note that the \bibfield{location} field is treated as a key list with this entry type, see \secref{bib:fld:typ} for details.
专利或专利申请。专利号或登记号在 \bibfield{number} 域中给出。
\bibfield{type} 域用于描述类型,
如果专利保护范围与 \bibfield{type} 域暗指的范围不一致,则可使用\bibfield{location} 域对专利的保护范围(权利范围)进行描述。
注意,\bibfield{location} 在本条目类型中以键值列表的方式处理,详见 \secref{bib:fld:typ} 节。
\reqitem{author, title, number, year/date}
\optitem{holder, subtitle, titleaddon, type, version, location, note, month, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{periodical}
%An complete issue of a periodical, such as a special issue of a journal. The title of the periodical is given in the \bibfield{title} field. If the issue has its own title in addition to the main title of the periodical, it goes in the \bibfield{issuetitle} field. The \bibfield{editor} is omissible in terms of \secref{bib:use:key}.
周期性刊物中完整的一期,比如某一刊物的某一期特刊。
标题在 \bibfield{title} 域中给出。
如果该期除期刊主标题外还有自己的标题,那么在 \bibfield{issuetitle} 域中给出该信息。
根据 \secref{bib:use:key} 节,\bibfield{editor} 域可以省略。
\reqitem{editor, title, year/date}
\optitem{editora, editorb, editorc, subtitle, titleaddon, issuetitle, issuesubtitle, issuetitleaddon, language, series, volume, number, issue, month, note, issn, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{suppperiodical}
%Supplemental material in a \bibtype{periodical}. This type is similar to \bibtype{suppbook} but related to the \bibtype{periodical} entry type. The role of this entry type may be more obvious if you bear in mind that the \bibtype{article} type could also be called \bibtype{inperiodical}. This type may be useful when referring to items such as regular columns, obituaries, letters to the editor, etc. which only have a generic title. Style guides may require such items to be formatted differently from articles in the strict sense of the word. The standard styles will treat this entry type as an alias for \bibtype{article}.
\bibtype{periodical} 的补充材料,
类似于 \bibtype{suppbook} 之于 \bibtype{book}。
如果你意识到 \bibtype{article} 类型其实就是 \bibtype{inperiodical},那么本条目类型的作用就显而易见了。
该类型应用于仅具有通用标题的信息项,例如固定专栏、讣告、致编者的信等。
一些参考文献著录标准会严格要求这些信息的格式不同于 \bibtype{article}。
而标准样式则视其为 \bibtype{article} 的别名。
\typeitem{proceedings}
%A single"=volume conference proceedings. This type is very similar to \bibtype{collection}. It supports an optional \bibfield{organization} field which holds the sponsoring institution. The \bibfield{editor} is omissible in terms of \secref{bib:use:key}.
单卷本的会议录(会议文集,汇编)。与 \bibtype{collection} 非常相似。
它支持可选的 \bibfield{organization} 域用于给出主办机构。
根据 \secref{bib:use:key} 节,\bibfield{editor} 域可以省略。
\reqitem{title, year/date}
\optitem{editor, subtitle, titleaddon, maintitle, mainsubtitle, maintitleaddon, eventtitle, eventtitleaddon, eventdate, venue, language, volume, part, volumes, series, number, note, organization, publisher, location, month, isbn, eid, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{mvproceedings}
%A multi"=volume \bibtype{proceedings} entry. For backwards compatibility, multi"=volume proceedings are also supported by the entry type \bibtype{proceedings}. However, it is advisable to make use of the dedicated entry type \bibtype{mvproceedings}
多卷 \bibtype{proceedings} 条目,类似于 \bibtype{mvbook} 之于 \bibtype{book}。
\reqitem{title, year/date}
\optitem{editor, subtitle, titleaddon, eventtitle, eventtitleaddon, eventdate, venue, language, volumes, series, number, note, organization, publisher, location, month, isbn, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{inproceedings}
%An article in a conference proceedings. This type is similar to \bibtype{incollection}. It supports an optional \bibfield{organization} field.
会议文集中的一篇文章,与 \bibtype{incollection} 类似。支持 \bibfield{organization} 可选域。
\reqitem{author, title, booktitle, year/date}
\optitem{editor, subtitle, titleaddon, maintitle, mainsubtitle, maintitleaddon, booksubtitle, booktitleaddon, eventtitle, eventtitleaddon, eventdate, venue, language, volume, part, volumes, series, number, note, organization, publisher, location, month, isbn, eid, chapter, pages, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{reference}
%A single"=volume work of reference such as an encyclopedia or a dictionary. This is a more specific variant of the generic \bibtype{collection} entry type. The standard styles will treat this entry type as an alias for \bibtype{collection}.
单卷本的参考书,诸如百科全书或词典等。
它是一般的 \bibtype{collection} 条目类型的一种特殊变体。
标准样式将其视为 \bibtype{collection} 的别名。
\typeitem{mvreference}
%A multi"=volume \bibtype{reference} entry. The standard styles will treat this entry type as an alias for \bibtype{mvcollection}. For backwards compatibility, multi"=volume references are also supported by the entry type \bibtype{reference}. However, it is advisable to make use of the dedicated entry type \bibtype{mvreference}.
多卷本的 \bibtype{reference} 条目。标准样式将其视为 \bibtype{mvcollection} 的别名。
出于向后兼容考虑,也可以使用 \bibtype{reference} 条目。
不过,还是建议使用专门的 \bibtype{mvreference} 条目类型。
\typeitem{inreference}
%An article in a work of reference. This is a more specific variant of the generic \bibtype{incollection} entry type. The standard styles will treat this entry type as an alias for \bibtype{incollection}.。
参考书中的一篇文章,
它是一般的\bibtype{incollection} 条目的一种特殊变体。
标准样式将其视为 \bibtype{incollection} 的别名。
\typeitem{report}
%A technical report, research report, or white paper published by a university or some other institution. Use the \bibfield{type} field to specify the type of report. The sponsoring institution goes in the \bibfield{institution} field.
由大学或其它机构发行的技术报告、研究报告以及白皮书等。
使用 \bibfield{type} 域来指定报告的类型。
主办机构由 \bibfield{institution} 域给出。
\reqitem{author, title, type, institution, year/date}
\optitem{subtitle, titleaddon, language, number, version, note, location, month, isrn, eid, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{set}
%An entry set. This entry type is special, see \secref{use:use:set} for details.
条目集,是一种特殊的类型条目,详见 \secref{use:use:set} 节。
\typeitem{software}
计算机软件。标准样式将其视为\bibtype{misc}类型的别名。
%Computer software. The standard styles will treat this entry type as an alias for \bibtype{misc}.
\typeitem{thesis}
%A thesis written for an educational institution to satisfy the requirements for a degree. Use the \bibfield{type} field to specify the type of thesis.
为满足教育机构学位要求而撰写的学位论文。
使用 \bibfield{type} 域指定学位论文类型。
\reqitem{author, title, type, institution, year/date}
\optitem{subtitle, titleaddon, language, note, location, month, isbn, eid, chapter, pages, pagetotal, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{unpublished}
%A work with an author and a title which has not been formally published, such as a manuscript or the script of a talk. Use the fields \bibfield{howpublished} and \bibfield{note} to supply additional information in free format, if applicable.
有作者和标题但是没有正式出版的作品,例如手稿或演讲稿等。
允许的话,可使用 \bibfield{howpublished} 域和 \bibfield{note} 域提供自由格式的附加信息。
\reqitem{author, title, year/date}
\optitem{subtitle, titleaddon, type, eventtitle, eventtitleaddon, eventdate, venue, language, howpublished, note, location, isbn, month, addendum, pubstate, doi, eprint, eprintclass, eprinttype, url, urldate}
\typeitem{xdata}
%This entry type is special. \bibtype{xdata} entries hold data which may be inherited by other entries using the \bibfield{xdata} field. Entries of this type only serve as data containers; they may not be cited or added to the bibliography. See \secref{use:use:xdat} for details.
特殊类型,\bibtype{xdata} 条目保存有可以被其它条目用 \bibfield{xdata} 域继承的数据。
这一类型的条目只是作为数据容器,不可被引用或加入到文献表中,详见\secref{use:use:xdat} 节。
\typeitem{custom[a--f]}
%Custom types for special bibliography styles. The standard styles defined no bibliography drivers for these types and will fall back to using the driver for \bibtype{misc}.
用于特殊参考文献样式的自定义条目类型。标准样式不定义这些类型的驱动,
而是使用\bibtype{misc}驱动作为其后备驱动。
\end{typelist}
%\subsubsection{Type Aliases}
\subsubsection{类型别名}
\label{bib:typ:als}
%The entry types listed in this section are provided for backwards compatibility with traditional \bibtex styles. These aliases are resolved by the backend as the data is processed. Bibliography styles will see the entry type the alias points to, not the alias name. This <hard alias> is unlike the <soft alias> relation in the previous subsection. The relevant mappings for the \opt{bibtex} driver can be found in~\secref{apx:maps:bibtex}.
本节中列出的条目类型用于向后兼容传统的 \BibTeX 样式。
这些别名由后端程序在数据处理时统一处理。参考文献样式仅能见到这些别名所指代的类型,而不是这些别名本身。这种硬别名<hard alias> 不同于前面介绍的软别名 <soft alias> 关系。
\opt{bibtex}驱动的相关映射见~\secref{apx:maps:bibtex}。
\begin{typelist}
\typeitem{conference} %A \bibtex legacy alias for \bibtype{inproceedings}.
\BibTeX 遗留的 \bibtype{inproceedings} 的别名。
\typeitem{electronic} %An alias for \bibtype{online}
\bibtype{online}的别名。
\typeitem{mastersthesis} %Similar to \bibtype{thesis} except that the \bibfield{type} field is optional and defaults to the localised term <Master's thesis>. You may still use the \bibfield{type} field to override that.
类似于 \bibtype{thesis},差别在于 \bibfield{type} 域是可选的,默认是本地化关键字 <Master's thesis> 所代表的本地化字符串。
用户可以直接使用 \bibfield{type} 域进行重新定义。
\typeitem{phdthesis} %Similar to \bibtype{thesis} except that the \bibfield{type} field is optional and defaults to the localised term <PhD thesis>. You may still use the \bibfield{type} field to override that.
类似于 \bibtype{thesis} ,差别在于 \bibfield{type} 域是可选的,默认是本地化关键字 <PhD thesis> 所代表的本地化字符串。
用户可以直接使用 \bibfield{type} 域进行重新定义。
\typeitem{techreport} % Similar to \bibtype{report} except that the \bibfield{type} field is optional and defaults to the localised term <technical report>. You may still use the \bibfield{type} field to override that.
类似于\bibtype{report} ,差别在于 \bibfield{type} 域是可选的,默认是本地化关键字 <technical report> 所代表的本地化字符串。
用户可以直接使用 \bibfield{type} 域进行重新定义。
\typeitem{www}
% An alias for \bibtype{online}, provided for \sty{jurabib} compatibility.
\bibtype{online} 的别名,用于兼容 \sty{jurabib} 宏包。
\end{typelist}
%\subsubsection{Non-standard Types}
\subsubsection{非标准条目类型}
\label{bib:typ:ctm}
%The types in this section are similar to the custom types \bibtype{custom[a--f]}, \ie the standard bibliography styles provide no support for these types. When using the standard styles, they will be treated as \bibtype{misc} entries.
本节中的条目类型类似于自定义类型 \bibtype{custom[a--f]},
即,标准样式不支持这些类型,若使用标准样式,将会以 \bibtype{misc} 条目类型进行处理。
The types in this section are similar to the custom types \bibtype{custom[a--f]}, \ie the standard bibliography styles provide no bibliography drivers for these types. In the standard styles they will use the bibliography driver for \bibtype{misc} entries---exceptions to this rule are noted in the descriptions below. The types are known to the default data model and will be happily accepted by \biber.
\begin{typelist}
\typeitem{artwork}
%Works of the visual arts such as paintings, sculpture, and installations.
视觉艺术作品,例如绘画、雕塑和装饰艺术品。
\typeitem{audio}
%Audio recordings, typically on audio \acr{CD}, \acr{DVD}, audio cassette, or similar media. See also \bibtype{music}.
录音作品,典型的有音频 \acr{CD}、\acr{DVD}、录音磁带或类似媒介。
参考 \bibtype{music} 类型。
\typeitem{bibnote}
%This special entry type is not meant to be used in the \file{bib} file like other types. It is provided for third-party packages like \sty{notes2bib} which merge notes into the bibliography. The notes should go into the \bibfield{note} field. Be advised that the \bibtype{bibnote} type is not related to the \cmd{defbibnote} command in any way. \cmd{defbibnote} is for adding comments at the beginning or the end of the bibliography, whereas the \bibtype{bibnote} type is meant for packages which render endnotes as bibliography entries.
这一特殊条目类型并不像其它类型那样用于 \file{bib} 文件中。
它主要是为第三方宏包提供 \sty{notes2bib} 等,用于将注记并入文献中。
注记应该在 \bibfield{note} 域中。
请谨记,\bibtype{bibnote} 类型与 \cmd{defbibnote} 命令毫无关系。
\cmd{defbibnote} 命令用来在参考文献表的开始或末尾处添加评论,
而 \bibtype{bibnote} 类型是为那些将尾注作为参考条目处理的宏包准备的。
\typeitem{commentary}
%Commentaries which have a status different from regular books, such as legal commentaries.
法律身份不同于一般书籍的评注,如司法评论等。
\typeitem{image}
%Images, pictures, photographs, and similar media.
图像、图画、摄影和类似媒介。
\typeitem{jurisdiction}
%Court decisions, court recordings, and similar things.
法庭判决、法庭记录和类似物。
\typeitem{legislation}
%Laws, bills, legislative proposals, and similar things.
法律、法案、立法提案和类似物。
\typeitem{legal}
%Legal documents such as treaties.
协议等法律文书。
\typeitem{letter}
%Personal correspondence such as letters, emails, memoranda, etc.
私人函件,例如信件、电子邮件、备忘录等。
\typeitem{movie}
%Motion pictures. See also \bibtype{video}.
动画。参考 \bibtype{video} 类型。
\typeitem{music}
%Musical recordings. This is a more specific variant of \bibtype{audio}.
音乐唱片,\bibtype{audio} 的一种特殊变体。
\typeitem{performance}
%Musical and theatrical performances as well as other works of the performing arts. This type refers to the event as opposed to a recording, a score, or a printed play.
音乐或戏剧表演和其它一些表演艺术作品。
这一条目类型指的是表演的事件,而不是一种录制品,乐谱或付印的剧本。
\typeitem{review}
%Reviews of some other work. This is a more specific variant of the \bibtype{article} type. The standard styles will treat this entry type as an alias for \bibtype{article}.
一些其它工作的回顾总结。
这是 \bibtype{article} 类型的一种特殊变体。
标准样式将其视为 \bibtype{article} 的一个别称。
\typeitem{standard}
%National and international standards issued by a standards body such as the International Organization for Standardization.
由一个标准组织(例如国际标准组织)发布的国家或国际标准。
\typeitem{video}
%Audiovisual recordings, typically on \acr{DVD}, \acr{VHS} cassette, or similar media. See also \bibtype{movie}.
音像作品,典型的包括 \acr{DVD}、\acr{VHS} 录像带或其它类似媒介。
参考 \bibtype{movie} 类型。
\end{typelist}
\subsection{条目中的域}%\subsection{Entry Fields}
\label{bib:fld}
%This section gives an overview of the fields supported by the \biblatex default data model. See \secref{bib:fld:typ} for an introduction to the data types used by the data model specification and \secref{bib:fld:dat, bib:fld:spc} for the actual field listings.
本节将概略介绍 \biblatex 默认数据模型支持的域。
数据模型规范使用的数据类型简介,见 \secref{bib:fld:typ} 节,
实际使用的域的一览表,见 \secref{bib:fld:dat, bib:fld:spc} 节。
%\subsubsection{Data Types}
\subsubsection{数据类型}
\label{bib:fld:typ}
%In datasources such as a \file{bib} file, all bibliographic data is specified in fields. Some of those fields, for example \bibfield{author} and \bibfield{editor}, may contain a list of items. This list structure is implemented by the \bibtex file format via the keyword <|and|>, which is used to separate the individual items in the list. The \biblatex package implements three distinct data types to handle bibliographic data: name lists, literal lists, and fields. There are also several list and field subtypes and a content type which can be used to semantically distinguish fields which are otherwise not distinguishable on the basis of only their datatype (see \secref{aut:ctm:dm}). This section gives an overview of the data types supported by this package. See \secref{bib:fld:dat, bib:fld:spc} for information about the mapping of the \bibtex file format fields to \biblatex's data types.
在 \file{bib} 文件等数据源中,所有的文献数据都在域中给出。其中一些域,例如 \bibfield{author} 和 \bibfield{editor},可以包含一个项目列表。在 \BibTeX 文件格式中,这种列表结构通过关键词 “|and|” 来分隔列表中的每一项。
\biblatex 宏包实现了三种不同的数据类型来处理文献数据:姓名列表(name list)、文本列表(literal list)和域类型(field)。
此外,还有一些列表和域类型的子类,以及一个内容类型(content type),
用于从语义上区分那些无法仅根据数据类型进行区分的域(见 \secref{aut:ctm:dm} 节)。
本节总结了本宏包所支持的数据类型。\BibTeX 文件格式中的域与 \biblatex 数据类型的对应信息,请参考 \secref{bib:fld:dat, bib:fld:spc} 节。
\begin{description}
%\item[Name lists] are parsed and split up into the individual items at the \texttt{and} delimiter. Each item in the list is then dissected into the name part components: by default the given name, the name prefix (von, van, of, da, de, della, \dots), the family name, and the name suffix (junior, senior, \dots). The valid name parts can be customised by changing the datamodel definition described in \secref{aut:bbx:drv}. Name lists may be truncated in the \file{bib} file with the keyword <\texttt{and others}>. Typical examples of name lists are \bibfield{author} and \bibfield{editor}.
\item[姓名列表(name list)] 根据分隔词 \texttt{and} 将其解析并划分成独立的项。
然后列表中的每一项进一步分解成四个姓名成分:\footnote{
这是针对西方人名的划分。对于中文来说,姓名无需划分。当然中文名的拼音可以进行对应的划分。——译注}
名(given name,默认值)、姓名前缀(name prefix, 如 von、van、of、da、de、della 等)、姓(family name),以及姓名后缀(name suffix, 如 junior、senior 等)。
可以通过调整数据模型的定义来定制有效的姓名成分,见 \secref{aut:bbx:drv} 节。
在 \file{bib} 文件中,姓名列表可以用关键词“\texttt{and others}”来截短。
典型的姓名列表是 \bibfield{author} 和 \bibfield{editor}。
%(译者注:在bib文件中录入参考文献数据的时候,当某些机构名中含有空格的情况下,最好将整个机构用\{\}包含起来。)
%Name list fields automatically have an \cmd{ifuse*} test created as per the name lists in the default data model (see \secref{aut:aux:tst}). They are also automatically have a \opt{ifuse*} option created which controls labelling and sorting behaviour with the name (see \secref{use:opt:bib:hyb}). \biber supports a customisable set of name parts but currently this is defined to be the same set of parts as supported by traditional \bibtex:
默认的数据模型为每一个姓名列表域自动创建了相应的 \cmd{ifuse*} 测试命令(见 \secref{aut:aux:tst} 节)。
同时也自动创建了一个 \opt{ifuse*} 选项用以控制姓名的标记和排序行为(见 \secref{use:opt:bib:hyb} 节)。
\biber 支持定制姓名成分组合,不过目前定义的姓名成分组合与传统 \BibTeX 支持的相同:
\begin{itemize}
\item 姓(family name,即<last>部分)%Family name (also known as <last> part)
\item 名(given name,即<first>部分) %Given name (also known as <first> part)
\item 前缀(name prefix,即<von>部分)%Name prefix (also known as <von> part)
\item 后缀(name suffix,即<Jr>部分)%Name suffix (also known as <Jr> part)
\end{itemize}
%The supported list of name parts is defined as a constant list in the default data model using the \cmd{DeclareDatamodelConstant} command (see \ref{aut:ctm:dm}). However, it is not enough to simply add to this list in order to add support for another name part as name parts typically have to be hard coded into bibliography drivers and the backend processing. See the example file \file{93-nameparts.tex} for details on how to define and use custom name parts. Also see \cmd{DeclareUniquenameTemplate} in \secref{aut:cav:amb} for information on how to customise name disambiguation using custom name parts.
在默认数据模型中,支持的姓名成分列表由 \cmd{DeclareDatamodelConstant} 命令定义为一个固定列表(见 \ref{aut:ctm:dm} 节)。然而,由于姓名成分在参考文献驱动(driver)\footnote{参考文献驱动是biblatex中的特有概念,本质上是一个针对具体条目类型组织参考文献数据输出的宏,由\cmd{DeclareBibliographyDriver}命令定义——译注}和后端处理过程中通常需要硬编码,
因此,如果想支持额外的姓名成分,将其简单地添加到姓名成分列表中是不够的。
关于如何定义和使用定制姓名成分的细节,可以参考示例文件 \file{93-nameparts.tex}。
关于如何使用定制姓名成分来消除姓名歧义的信息,参见 \secref{aut:cav:amb} 节中的 \cmd{DeclareUniquenameTemplate} 命令。
%\item[Literal lists] are parsed and split up into the individual items at the \texttt{and} delimiter but not dissected further. Literal lists may be truncated in the \file{bib} file with the keyword <\texttt{and others}>. There are two subtypes:
\item[文本列表(literal list)] 由分隔词 \texttt{and} 划分成独立的项,但各项不再进一步细分。
在 \file{bib} 文件中,文本列表可以用关键词“\texttt{and others}”来截短。
其中又有两个子类型:
\begin{description}
%\item[Literal lists] in the strict sense are handled as described above. The individual items are simply printed as is. Typical examples of such literal lists are \bibfield{publisher} and \bibfield{location}.
\item[(狭义的)文本列表(literal lists in the strict sense)] 按照如上所述进行处理。
各独立的项目就简单如实打印。
典型的狭义文本列表是 \bibfield{publisher} 和 \bibfield{location}。
%\item[Key lists] are a variant of literal lists which may hold printable data or localisation keys. For each item in the list, styles should perform a test to determine whether it is a known localisation key (the localisation keys defined by default are listed in \secref{aut:lng:key}). If so, the localised string should be printed. If not, the item should be printed as is. The standard styles are set up to exhibit this behaviour for all key lists listed below. New key lists do not automatically perform this test, it has to be implemented explicitly via the list format. A typical example of a key list is \bibfield{language}.
\item[关键字列表(key list)] 是文本列表的变体,可以包含可打印的数据或本地化关键字。
对于列表中每一项,样式首先测试它是否为已知的本地化关键字
(本地化关键字的默认定义在 \secref{aut:lng:key} 节中)。
如果是,那么打印本地化字符串;否则这些项就按本身内容如实打印。标准样式对于下面列出的关键字列表均支持这一行为。但新的关键字列表不自动执行这一测试,必须通过列表的格式显式的执行。典型的关键字列表是 \bibfield{language}。
\end{description}
\end{description}
\begin{description}
%\item[Fields] are usually printed as a whole. There are several subtypes:
\item[域(field)] 通常以整体打印。有如下多种子类型:
\begin{description}
%\item[Literal fields] are printed as is. Typical examples of literal fields are \bibfield{title} and \bibfield{note}.
\item[文本域(literal field)] 会如实打印。
典型的文本域是 \bibfield{title} 和 \bibfield{note}。
%\item[Range fields] consist of one or more ranges where all dashes are normalized and replaced by the command \cmd{bibrangedash}. A range is something optionally followed by one or more dashes optionally followed by some non-dash (e.g. \texttt{5--7}). Any number of consecutive dashes will only yield a single range dash. A typical example of a range field is the \bibfield{pages} field. See also the \cmd{bibrangessep} command which can be used to customise the separator between multiple ranges. Range fields will be skipped and will generate a warning if they do not consist of one or more ranges. You can normalise messy range fields before they are parsed using \cmd{DeclareSourcemap} (see \secref{aut:ctm:map}).
\item[范围域(range field)] 包含了一个或更多范围,其中所有的短划线都规范化用 \cmd{bibrangedash} 命令取代。
一个范围指的是一个非短划线部分后紧跟一个或多个短划线再紧跟一个非短划线部分(比如 \texttt{5--7})。
任意数目的连续短划线都只产生一个表示范围的横线。
典型的范围域是 \bibfield{pages} 域。
也可以参考 \cmd{bibrangessep} 命令,它用于定制多重范围间的分隔符。
如果不包括范围,那么范围域将被忽略并生成警告信息。
如果范围域内容混乱,可以使用 \cmd{DeclareSourcemap} 命令在对其解析之前进行规范化(见 \secref{aut:ctm:map} 节)。
%\item[Integer fields] hold integers which may be converted to ordinals or strings as they are printed. A typical example is the \bibfield{extrayear} or \bibfield{volume} field. Such fields are sorted as integers. \biber makes a (quite serious) effort to map non-arabic representations (roman numerals for example) to integers for sorting purposes.
\item[整数域(integer field)] 包含的整数打印时会转化为序数或者字符串。
典型的例子是 \bibfield{extrayear} 和 \bibfield{volume} 域。
这些域会按照数字进行排序。
出于排序的目的,\biber 会尝试将非阿拉伯数字的表示(例如罗马数字)转成相应的整数。
\item[Integer fields] hold integers which may be converted to ordinals or strings as they are printed. A typical example is the \bibfield{extradate} or \bibfield{volume} field. Such fields are sorted as integers. \biber makes a (quite serious) effort to map non-arabic representations (roman numerals for example) to integers for sorting purposes. See the \opt{noroman} option which can be used to suppress roman numeral parsing. This can help in cases where there is an ambiguity between parsing as roman numerals or alphanumeric (e.g. <C>), see \secref{use:opt:pre:int}.
%\item[Datepart fields] hold unformatted integers which may be converted to ordinals or strings as they are printed. A typical example is the \bibfield{month} field. For every field X of datatype \bibfield{date} in the datamodel, datepart fields are automatically created with the following names: \bibfield{$<$datetype$>$year}, \bibfield{$<$datetype$>$endyear}, \bibfield{$<$datetype$>$month}, \bibfield{$<$datetype$>$endmonth}, \bibfield{$<$datetype$>$day}, \bibfield{$<$datetype$>$endday}, \bibfield{$<$datetype$>$hour}, \bibfield{$<$datetype$>$endhour}, \bibfield{$<$datetype$>$minute}, \bibfield{$<$datetype$>$endminute}, \bibfield{$<$datetype$>$second}, \bibfield{$<$datetype$>$endsecond}, \bibfield{$<$datetype$>$timezone}, \bibfield{$<$datetype$>$endtimezone}.%$<$datetype$>$ is the string preceding <date> for any datamodel field of \kvopt{datatype}{date}. For example, in the default datamodel, <event>, <orig>, <url> and the empty string <> for the date field \bibfield{date}.
\item[日期成分域(datepart field)] 保存未格式化的整数,打印时会转化为序数或者字符串。
典型的例子是 \bibfield{month} 域。
在数据模型中,对于每一个数据类型为 \bibfield{date} 的域X,
会自动创建带有如下名称的日期成分域:
\begin{flushleft}
\bibfield{\prm{datetype}year}, \bibfield{\prm{datetype}endyear}, \bibfield{\prm{datetype}month}, \bibfield{\prm{datetype}endmonth}, \bibfield{\prm{datetype}day}, \bibfield{\prm{datetype}endday}, \bibfield{\prm{datetype}hour}, \bibfield{\prm{datetype}endhour}, \bibfield{\prm{datetype}minute}, \bibfield{\prm{datetype}endminute}, \bibfield{\prm{datetype}second}, \bibfield{\prm{datetype}endsecond}, \bibfield{\prm{datetype}timezone}, \bibfield{\prm{datetype}endtimezone}
\end{flushleft}
其中,对于任何 \kvopt{datatype}{date} 数据模型域,\prm{datetype} 是在 <date> 之前的前缀字符串。
例如,在默认数据模型中,日期域 \bibfield{date} 可能的前缀字符串包括<event>, <orig>, <url> 和空字符串 <>。
%\item[Date fields] hold a date specification in \texttt{yyyy-mm-ddThh:nn[+|-][hh[:nn]|Z]} format or a date range in \texttt{yyyy-mm-ddThh:nn[+|-][hh[:nn]|Z]/yyyy-mm-ddThh:nn[+|-][hh[:nn]|Z]} format and other formats permitted by \acr{ISO8601-2} Clause 4, level 1, see \secref{bib:use:dat}. Date fields are special in that the date is parsed and split up into its datepart type components. The \bibfield{datepart} components (see above) are automatically defined and recognised when a field of datatype \bibfield{date} is defined in the datamodel. A typical example is the \bibfield{date} field.
\item[日期域(date field)] 保存形如 \texttt{yyyy-mm-ddThh:nn[+|-][hh[:nn]|Z]} 格式的日期,
或者 \texttt{yyyy-mm-ddThh:nn[+|-][hh[:nn]|Z]/yyyy-mm-ddThh:nn[+|-][hh[:nn]|Z]} 格式的日期范围,
和其它\acr{ISO8601-2} 条款4 level 1允许的格式,见 \secref{bib:use:dat} 节。
日期域的特殊之处在于,日期会被解析并分解成各个日期成分。
在数据模型中,当定义了一个数据类型为 \bibfield{date} 的域后,那么相应的 \bibfield{datepart} 成分(见上文)会自动定义并识别。典型的例子是 \bibfield{date} 域。
%\item[Verbatim fields] are processed in verbatim mode and may contain special characters. Typical examples of verbatim fields are \bibfield{file} and \bibfield{doi}.
\item[抄录域(verbatim field)] 在抄录模式下处理,可以包含特殊字符。
典型的抄录域是 \bibfield{file} 和 \bibfield{doi}。
%\item[URI fields] are processed in verbatim mode and may contain special characters. They are also URL-escaped if they don't look like they already are. The typical example of a uri field is \bibfield{url}.
\item[URI 域] 在抄录模式下处理,可以包含特殊字符,也可以进行 URL 转义。
典型的例子是 \bibfield{url} 域。
%\item[Separated value fields] A separated list of literal values. Examples are the \bibfield{keywords} and \bibfield{options} fields. The separator can be configured to be any Perl regular expression via the \opt{xsvsep} option which defaults to the usual \bibtex comma surrounded by optional whitespace.
\item[分隔值域(separated value field)]
被分隔的文本值列表。
例子是 \bibfield{keywords} 和 \bibfield{options} 域。
通过 \opt{xsvsep} 选项可以将分隔符配置成任何Perl正则表达式,
其默认值是通常 \BibTeX 中的(西文)逗号或者逗号加空格。
%\item[Pattern fields] A literal field which must match a particular pattern. An example is the \bibfield{gender} field from \secref{bib:fld:spc}.
\item[模式域(pattern field)] 是必须匹配某一特定模式的文本域。
例如 \secref{bib:fld:spc} 节的 \bibfield{gender} 域。
%\item[Key fields] May hold printable data or localisation keys. Styles should perform a test to determine whether the value of the field is a known localisation key (the localisation keys defined by default are listed in \secref{aut:lng:key}). If so, the localised string should be printed. If not, the value should be printed as is. The standard styles are set up to handle all key fields listed below in that way. New key fields do not automatically perform the test, it has to be enabled explicitly in the field format. A typical example is the \bibfield{type} field.
\item[关键字域(key field)] 可以保存可打印数据或本地化关键字。
使用时,首先测试是否为已知的本地化关键字(本地化关键字的默认定义在 \secref{aut:lng:key} 一节中)。
如果是,就打印本地化字符串;否则,就按本身内容如实打印。
标准样式都采用这种方式处理下面列出的关键字域。新的关键字域不会自动执行这一测试,要执行必须在域格式中显式的设置。
典型的例子是 \bibfield{type} 域。
%\item[Code fields] Holds \tex code.
\item[代码域(code field)] 保存 \TeX\ 代码。
\end{description}
\end{description}
%\subsubsection{Data Fields}
\subsubsection{数据域}
\label{bib:fld:dat}
%The fields listed in this section are the regular ones holding printable data in the default data model. The name on the left is the default data model name of the field as used by \biblatex and its backend. The \biblatex data type is given to the right of the name. See \secref{bib:fld:typ} for explanation of the various data types.
本节所列的域是在默认数据模型中保存可打印数据的常规域。
下面的列表中,左边的名称是域的默认数据模型名,在 \biblatex 和后端使用。
名称右侧则是相应的 \biblatex 数据类型。
不同数据类型的解释请参考 \secref{bib:fld:typ} 节。
%Some fields are marked as <label> fields which means that they are often used as abbreviation labels when printing bibliography lists in the sense of section \secref{use:bib:biblist}. \biblatex automatically creates supporting macros for such fields. See \secref{use:bib:biblist}.
一些域标记为“label”域,
这表示这些域通常用于缩写标签(abbreviation labels),当打印文献列表(bibliography lists)时(见\secref{use:bib:biblist} 节的内容)。
\biblatex 会自动创建支持这些域的宏,详见 \secref{use:bib:biblist}。
\begin{fieldlist}
%\fielditem{abstract}{literal}
%This field is intended for recording abstracts in a \file{bib} file, to be printed by a special bibliography style. It is not used by all standard bibliography styles.
\fielditem{abstract}{文本}
该域保存\file{bib} 文件中记录的摘要,某些特殊的文献著录样式会将其打印出来。
但所有的标准样式中都不使用。
%\fielditem{addendum}{literal}
%Miscellaneous bibliographic data to be printed at the end of the entry. This is similar to the \bibfield{note} field except that it is printed at the end of the bibliography entry.
\fielditem{addendum}{文本}
在条目末尾打印的杂项文献数据。
它与 \bibfield{note} 域类似,差别在于它是在文献条目末尾打印。
%\listitem{afterword}{name}
%The author(s) of an afterword to the work. If the author of the afterword is identical to the \bibfield{editor} and\slash or \bibfield{translator}, the standard styles will automatically concatenate these fields in the bibliography. See also \bibfield{introduction} and \bibfield{foreword}.
\listitem{afterword}{姓名}
后记的作者。如果后记作者与 \bibfield{editor} 或 \bibfield{translator} 相同,
那么在参考文献表中标准样式会自动把这些域关联起来。
参考 \bibfield{introduction} 域和 \bibfield{foreword} 域。
%\fielditem{annotation}{literal}
%This field may be useful when implementing a style for annotated bibliographies. It is not used by all standard bibliography styles. Note that this field is completely unrelated to \bibfield{annotator}. The \bibfield{annotator} is the author of annotations which are part of the work cited.
\fielditem{annotation}{文本}
该域在实现带注释的参考文献著录样式时很有用。
所有的标准样式都不使用。
请注意,该域与 \bibfield{annotator} 域毫无关系,后者是释文(被引用著作的一部分)的作者。
%\listitem{annotator}{name}
%The author(s) of annotations to the work. If the annotator is identical to the \bibfield{editor} and\slash or \bibfield{translator}, the standard styles will automatically concatenate these fields in the bibliography. See also \bibfield{commentator}.
\listitem{annotator}{姓名}
释文的作者。如果与 \bibfield{editor} 或 \bibfield{translator} 相同,
那么在参考文献表中标准样式会自动把这些域关联起来。
参考 \bibfield{commentator} 域。
%\listitem{author}{name}
%The author(s) of the \bibfield{title}.
\listitem{author}{姓名}
\bibfield{title} 的作者。
%\fielditem{authortype}{key}
%The type of author. This field will affect the string (if any) used to introduce the author. Not used by the standard bibliography styles.
\fielditem{authortype}{关键字}
作者的类型。
该域会影响介绍作者的字符串。
标准文献样式不使用。
%\listitem{bookauthor}{name}
%The author(s) of the \bibfield{booktitle}.
\listitem{bookauthor}{姓名}
\bibfield{booktitle} 的作者。
%\fielditem{bookpagination}{key}
%If the work is published as part of another one, this is the pagination scheme of the enclosing work, \ie \bibfield{bookpagination} relates to \bibfield{pagination} like \bibfield{booktitle} to \bibfield{title}. The value of this field will affect the formatting of the \bibfield{pages} and \bibfield{pagetotal} fields. The key should be given in the singular form. Possible keys are \texttt{page}, \texttt{column}, \texttt{line}, \texttt{verse}, \texttt{section}, and \texttt{paragraph}. See also \bibfield{pagination} as well as \secref{bib:use:pag}.
\fielditem{bookpagination}{关键字}
如果当前作品是另一个大作品的一部分,该域表示包含当前作品的大作品的分页格式。
即,\bibfield{bookpagination} 与 \bibfield{pagination} 的关系如同 \bibfield{booktitle} 之于 \bibfield{title}的关系。
该域的值会影响 \bibfield{pages} 和 \bibfield{pagetotal} 域的格式。
关键字应当是单数形式。可能的关键字包括 \texttt{page}、\texttt{column}、\texttt{line}、\texttt{verse}、\texttt{section} 和 \texttt{paragraph} 等。参考 \bibfield{pagination} 域以及 \secref{bib:use:pag} 节。
%\fielditem{booksubtitle}{literal}
%The subtitle related to the \bibfield{booktitle}. If the \bibfield{subtitle} field refers to a work which is part of a larger publication, a possible subtitle of the main work is given in this field. See also \bibfield{subtitle}.
\fielditem{booksubtitle}{文本}
\bibfield{booktitle} 的副标题。
如果说 \bibfield{subtitle} 域指的是一个大出版物中一小部分作品的副标题,
那么该域则给出了整个大作品的副标题。参考 \bibfield{subtitle}。
%\fielditem{booktitle}{literal}
%If the \bibfield{title} field indicates the title of a work which is part of a larger publication, the title of the main work is given in this field. See also \bibfield{title}.
\fielditem{booktitle}{文本}
如果 \bibfield{title} 域指的是一个大出版物中的一小部分作品的标题,那么该域则给出了整个大作品的标题。
参考 \bibfield{title}。
%\fielditem{booktitleaddon}{literal}
%An annex to the \bibfield{booktitle}, to be printed in a different font.
\fielditem{booktitleaddon}{文本}
\bibfield{booktitle} 的附语,会用不同的字体打印。
%\fielditem{chapter}{literal}
%A chapter or section or any other unit of a work.
\fielditem{chapter}{文本}
作品的章节或其它单元。
%\listitem{commentator}{name}
%The author(s) of a commentary to the work. Note that this field is intended for commented editions which have a commentator in addition to the author. If the work is a stand"=alone commentary, the commentator should be given in the \bibfield{author} field. If the commentator is identical to the \bibfield{editor} and\slash or \bibfield{translator}, the standard styles will automatically concatenate these fields in the bibliography. See also \bibfield{annotator}.
\listitem{commentator}{姓名}
作品评论的作者。
请注意,该域用于那种带评论的作品版本,即,在作者之外还有一位评论作者。
如果作品是独立的评论,那么评论作者应该在 \bibfield{author} 域中给出。
如果评论作者与 \bibfield{editor} 或 \bibfield{translator} 相同,
那么在参考文献中标准样式会自动将这些域关联起来。
参考 \bibfield{annotator} 域。
%\fielditem{date}{date}
%The publication date. See also \bibfield{month} and \bibfield{year} as well as \secref{bib:use:dat,bib:use:yearordate}.
\fielditem{date}{日期}
出版日期。参考 \bibfield{month} 和 \bibfield{year} 域以及 \secref{bib:use:dat,bib:use:yearordate} 节。
%\fielditem{doi}{verbatim}
%The Digital Object Identifier of the work.
\fielditem{doi}{抄录}
作品的数字对象标识符(Digital Object Identifier, DOI)。
%\fielditem{edition}{integer or literal}
%The edition of a printed publication. This must be an integer, not an ordinal. Don't say |edition={First}| or |edition={1st}| but |edition={1}|. The bibliography style converts this to a language dependent ordinal. It is also possible to give the edition as a literal string, for example «Third, revised and expanded edition».
\fielditem{edition}{整数或文本}
出版物的版次。
这必须是整数而不是序数。
不要用 |edition={First}| 或 |edition={1st}|,而要用 |edition={1}|。
文献样式会将其转为跟语言相关的序数。
也可以用文本字符串表示版次,例如“Third, revised and expanded edition”。
%\listitem{editor}{name}
%The editor(s) of the \bibfield{title}, \bibfield{booktitle}, or \bibfield{maintitle}, depending on the entry type. Use the \bibfield{editortype} field to specify the role if it is different from <\texttt{editor}>. See \secref{bib:use:edr} for further hints.
\listitem{editor}{姓名}
\bibfield{title}、\bibfield{booktitle} 或者 \bibfield{maintitle} 的编者,这取决于条目类型。
如果不同于真正的“\texttt{editor}”角色,可使用 \bibfield{editortype} 域来确定具体的角色。
更多提示参考 \secref{bib:use:edr} 节。
%\listitem{editora}{name}
%A secondary editor performing a different editorial role, such as compiling, redacting, etc. Use the \bibfield{editoratype} field to specify the role. See \secref{bib:use:edr} for further hints.
\listitem{editora}{姓名}
次要编者,执行汇集、编校等不同编辑任务。
可使用 \bibfield{editoratype} 域来指定具体的角色。
更多提示参考 \secref{bib:use:edr} 节。
%\listitem{editorb}{name}
%Another secondary editor performing a different role. Use the \bibfield{editorbtype} field to specify the role. See \secref{bib:use:edr} for further hints.
\listitem{editorb}{姓名}
执行不同任务的另一类次要编者。
可使用 \bibfield{editorbtype} 域来指定具体的角色。
更多提示参考 \secref{bib:use:edr} 节。
%\listitem{editorc}{name}
%Another secondary editor performing a different role. Use the \bibfield{editorctype} field to specify the role. See \secref{bib:use:edr} for further hints.
\listitem{editorc}{姓名}
执行不同编辑任务的另一类次要编者。
可使用 \bibfield{editorctype} 域来指定具体的角色。
更多提示参考 \secref{bib:use:edr} 节。
%\fielditem{editortype}{key}
%The type of editorial role performed by the \bibfield{editor}. Roles supported by default are \texttt{editor}, \texttt{compiler}, \texttt{founder}, \texttt{continuator}, \texttt{redactor}, \texttt{reviser}, \texttt{collaborator}. The role <\texttt{editor}> is the default. In this case, the field is omissible. See \secref{bib:use:edr} for further hints.
The type of editorial role performed by the \bibfield{editor}. Roles supported by default are \texttt{editor}, \texttt{compiler}, \texttt{founder}, \texttt{continuator}, \texttt{redactor}, \texttt{reviser}, \texttt{collaborator}, \texttt{organizer}. The role <\texttt{editor}> is the default. In this case, the field is omissible. See \secref{bib:use:edr} for further hints.
\fielditem{editortype}{关键字}
\bibfield{editor} 执行的编者角色类型。
默认支持的角色包括 \texttt{editor}、\texttt{compiler}、\texttt{founder}、\texttt{continuator}, \texttt{redactor}、\texttt{reviser} 和 \texttt{collaborator}。
默认值是“\texttt{editor}”,此时该域可以省略。
更多提示参考 \secref{bib:use:edr} 节。
%\fielditem{editoratype}{key}
%Similar to \bibfield{editortype} but referring to the \bibfield{editora} field. See \secref{bib:use:edr} for further hints.
\fielditem{editoratype}{关键字}
类似于 \bibfield{editortype} 但对应的是 \bibfield{editora} 域。
更多提示参考 \secref{bib:use:edr} 节。
%\fielditem{editorbtype}{key}
%Similar to \bibfield{editortype} but referring to the \bibfield{editorb} field. See \secref{bib:use:edr} for further hints.
\fielditem{editorbtype}{关键字}
类似于 \bibfield{editortype} 但对应的是 \bibfield{editorb} 域。
更多提示参考 \secref{bib:use:edr} 节。
%\fielditem{editorctype}{key}
%Similar to \bibfield{editortype} but referring to the \bibfield{editorc} field. See \secref{bib:use:edr} for further hints.
\fielditem{editorctype}{关键字}
类似于 \bibfield{editortype} 但对应的是 \bibfield{editorc} 域。
更多提示参考 \secref{bib:use:edr} 节。
%\fielditem{eid}{literal}
%The electronic identifier of an \bibtype{article}. This field may replace the \bibfield{pages} field for journals deviating from the classic pagination scheme of printed journals by only enumerating articles or papers and not pages.
The electronic identifier of an \bibtype{article} or chapter-like section of a larger work. This field may replace the \bibfield{pages} field for journals deviating from the classic pagination scheme of printed journals by only enumerating articles or papers and not pages.
\fielditem{eid}{文本}
\bibtype{article} 的电子标识符(electronic identifier)。这个域可以替代期刊的
\bibfield{pages}域,区别于某些期刊的仅列出文章而不列页码的传统页码标记格式。
%\fielditem{entrysubtype}{literal}
%This field, which is not used by the standard styles, may be used to specify a subtype of an entry type. This may be useful for bibliography styles which support a finer"=grained set of entry types.
\fielditem{entrysubtype}{文本}
该域用于指定一个条目类型的子类型。
它不会在标准样式中使用,但可用于支持更细化的条目类型集的参考文献样式。
%\fielditem{eprint}{verbatim}
%The electronic identifier of an online publication. This is roughly comparable to a \acr{doi} but specific to a certain archive, repository, service, or system. See \secref{use:use:epr} for details. Also see \bibfield{eprinttype} and \bibfield{eprintclass}.
\fielditem{eprint}{抄录}
在线出版物的电子标识符。
它大致相当于 \acr{doi},但专门针对某个档案、资源库、服务或系统。
参考 \secref{use:use:epr} 节以及 \bibfield{eprinttype} 和 \bibfield{eprintclass} 域。
%\fielditem{eprintclass}{literal}
%Additional information related to the resource indicated by the \bibfield{eprinttype} field. This could be a section of an archive, a path indicating a service, a classification of some sort, etc. See \secref{use:use:epr} for details. Also see \bibfield{eprint} and \bibfield{eprinttype}.
\fielditem{eprintclass}{文本}
域 \bibfield{eprinttype} 域指明的资源相关的附加信息。
它可以是档案的一部分、标示服务的路径、排序的某个分类等等。
参考 \secref{use:use:epr} 节以及 \bibfield{eprint} 和 \bibfield{eprinttype} 域。
%\fielditem{eprinttype}{literal}
%The type of \bibfield{eprint} identifier, \eg the name of the archive, repository, service, or system the \bibfield{eprint} field refers to. See \secref{use:use:epr} for details. Also see \bibfield{eprint} and \bibfield{eprintclass}.
\fielditem{eprinttype}{文本}
\bibfield{eprint} 标识符的类型,例如 \bibfield{eprint} 域所指的档案、资源库、服务或系统的名称。
参考 \secref{use:use:epr} 节以及 \bibfield{eprint} 和 \bibfield{eprintclass} 域。
%\fielditem{eventdate}{date}
%The date of a conference, a symposium, or some other event in \bibtype{proceedings} and \bibtype{inproceedings} entries. This field may also be useful for the custom types listed in \secref{bib:typ:ctm}. See also \bibfield{eventtitle} and \bibfield{venue} as well as \secref{bib:use:dat}.
\fielditem{eventdate}{日期}
\bibtype{proceedings} 和 \bibtype{inproceedings} 条目中的会议、研讨会或其它活动的日期。
该域还可用于 \secref{bib:typ:ctm} 一节所列的定制类型。
参考 \bibfield{eventtitle} 和 \bibfield{venue} 域以及 \secref{bib:use:dat} 节。
%\fielditem{eventtitle}{literal}
%The title of a conference, a symposium, or some other event in \bibtype{proceedings} and \bibtype{inproceedings} entries. This field may also be useful for the custom types listed in \secref{bib:typ:ctm}. Note that this field holds the plain title of the event. Things like «Proceedings of the Fifth XYZ Conference» go into the \bibfield{titleaddon} or \bibfield{booktitleaddon} field, respectively. See also \bibfield{eventdate} and \bibfield{venue}.
\fielditem{eventtitle}{文本}
\bibtype{proceedings} 和 \bibtype{inproceedings} 条目中的会议、研讨会或其它活动的标题。
该域还可以用于在 \secref{bib:typ:ctm} 一节所列的定制类型。
请注意,该域保存事件的普通标题。而诸如“Proceedings of the Fifth XYZ Conference”之类的信息会归入 \bibfield{titleaddon} 或 \bibfield{booktitleaddon} 域。参考 \bibfield{eventdate} 和 \bibfield{venue} 域。
%\fielditem{eventtitleaddon}{literal}
%An annex to the \bibfield{eventtitle} field. Can be used for known event acronyms, for example.
\fielditem{eventtitleaddon}{文本}
\bibfield{eventtitle} 域的附语。
例如可以用于已知活动的首字母缩略词。
%\fielditem{file}{verbatim}
%A local link to a \acr{pdf} or other version of the work. Not used by the standard bibliography styles.
\fielditem{file}{抄录}
某个作品的 \acr{pdf} 或其它版本的本地链接。
标准样式中不使用。
%\listitem{foreword}{name}
%The author(s) of a foreword to the work. If the author of the foreword is identical to the \bibfield{editor} and\slash or \bibfield{translator}, the standard styles will automatically concatenate these fields in the bibliography. See also \bibfield{introduction} and \bibfield{afterword}.
\listitem{foreword}{姓名}
作品前言的作者。
如果前言的作者与 \bibfield{editor} 或 \bibfield{translator} 相同,
那么在参考文献表中标准样式会自动将其与这些域关联起来。
参考 \bibfield{introduction} 和 \bibfield{afterword} 域。
%\listitem{holder}{name}
%The holder(s) of a \bibtype{patent}, if different from the \bibfield{author}. Not that corporate holders need to be wrapped in an additional set of braces, see \secref{bib:use:inc} for details. This list may also be useful for the custom types listed in \secref{bib:typ:ctm}.