-
Notifications
You must be signed in to change notification settings - Fork 31
/
iso.bbx
1665 lines (1461 loc) · 47.1 KB
/
iso.bbx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\ProvidesFile{iso.bbx}
[2022/03/20 v0.4.1 ISO 690 biblatex bibliography style]
\RequirePackage{regexpatch}
% Currently available language mappings:
% Czech, English, German, Polish, Slovak, and more.
% You can list them directly with `$ ls *lbx`.
% Or you can check the translation matrix at the wiki page:
% https://github.com/michal-h21/biblatex-iso690/wiki/Translation-Guideline#translation-matrix
\DeclareLanguageMappingSuffix{-iso}
% Currently needed the following additional language strings:
\NewBibliographyString{at,bysupervisor,urlalso,refreshedon,
director,bydirector,inventor,byinventor,online,film,application,publication}
% PACKAGE OPTIONS
% Define new package options
% These toggle names are internal
\newtoggle{bbx:spcolon}
\newtoggle{bbx:totalpages}
\newtoggle{bbx:shortnum}
\newtoggle{bbx:url}
\newtoggle{bbx:isbn}
\newtoggle{bbx:doi}
\newtoggle{bbx:eprint}
\newtoggle{bbx:articlepubinfo}
\newtoggle{bbx:currentlang}
\newtoggle{bbx:noenddot}
\newtoggle{bbx:bibacrosc}
\newtoggle{bbx:familynamesc}
\newtoggle{bbx:givennamesfirst}
% Print info about package options into .log file
\protected\def\isoblx@info@noline#1{%
\PackageInfo{biblatex-iso690}{#1\@gobble}}
\let\isoblx@info\isoblx@info@noline
\AtEndOfPackage{%
\protected\def\isoblx@info#1{%
\PackageInfo{biblatex-iso690}{#1}}}
% Declare new package options
% Description of these options is in the doc file
% '\isoblx@info@noline' command prints to the .log file
\DeclareBibliographyOption{spacecolon}[true]{%
\settoggle{bbx:spcolon}{#1}%
\isoblx@info@noline{Space colon enabled: #1}}
\DeclareBibliographyOption{pagetotal}[true]{%
\settoggle{bbx:totalpages}{#1}%
\isoblx@info@noline{Total pages enabled: #1}}
\DeclareBibliographyOption{shortnumeration}[true]{%
\settoggle{bbx:shortnum}{#1}%
\isoblx@info@noline{Short numeration enabled: #1}}
\DeclareBibliographyOption{url}[true]{%
\settoggle{bbx:url}{#1}%
\isoblx@info@noline{URL field enabled: #1}}
\DeclareBibliographyOption{isbn}[true]{%
\settoggle{bbx:isbn}{#1}%
\isoblx@info@noline{ISBN field enabled: #1}}
\DeclareBibliographyOption{doi}[true]{%
\settoggle{bbx:doi}{#1}%
\isoblx@info@noline{DOI field enabled: #1}}
\DeclareBibliographyOption{eprint}[true]{%
\settoggle{bbx:eprint}{#1}%
\isoblx@info@noline{eprint field enabled: #1}}
\DeclareBibliographyOption{articlepubinfo}[true]{%
\settoggle{bbx:articlepubinfo}{#1}%
\isoblx@info@noline{Article publication info enabled: #1}}
\DeclareBibliographyOption{currentlang}[true]{%
\settoggle{bbx:currentlang}{#1}%
\isoblx@info@noline{Use current language for the bibliography: #1}}
\DeclareBibliographyOption{noenddot}[true]{%
\settoggle{bbx:noenddot}{#1}%
\isoblx@info@noline{Use no end dot for the bibliography entries: #1}}
\DeclareBibliographyOption{bibacrosc}[true]{
\settoggle{bbx:bibacrosc}{#1}%
\isoblx@info@noline{Printing acronyms such as ISBN as textsc enabled: #1}}
\DeclareBibliographyOption{familynamesc}[true]{
\settoggle{bbx:familynamesc}{#1}%
\isoblx@info@noline{Printing family names as textsc enabled: #1}}
\DeclareBibliographyOption{givennamesfirst}[true]{%
\settoggle{bbx:givennamesfirst}{#1}%
\isoblx@info@noline{Printing names as 'given family' except for the first author: #1}}
% Set default package options
\ExecuteBibliographyOptions{%
spacecolon=false,
pagetotal=false,
shortnumeration=false,
url=true,
isbn=true,
doi=true,
eprint=true,
articlepubinfo=false,% Printing article publication info is unusual
maxnames=99,% If possible, all creators should be given in the reference
minnames=1,% If any names are omitted => first creator + and others (et al.)
citetracker=true,% Citation tracker in global mode
autolang=other,% Use the 'langid' language for the entry
date=year,% Use only years
urldate=iso,% Use ISO8601 Extended Format (yyyy-mm-dd) for URL 'seen' dates
origdate=iso,% Use ISO8601 Extended Format (yyyy-mm-dd) for patent appl. dates
eventdate=long,% Use long format for eventdates
eventdateusetime=true,% Use time for eventdates
seconds=true,% iso (ISO8601) format requires 'seconds=true'
datecirca=true,% Use circa for approximate dates
currentlang=false,% Use main document language for printing of bibliography strings
noenddot=false,% Use an end dot for the bibliography entries
bibacrosc=false,% Printing acronyms such as ISBN as textsc
familynamesc=false,% Printing family names as textsc
givennamesfirst=false,% Printing names as given family except for the first author
}
% COMMANDS
% Default definitions of beginning and closing macro
% in bibliography drivers
\newbibmacro*{begentry}{}
\newbibmacro*{finentry}{\finentry}
% The separator between 'titles' and 'subtitles'
\renewcommand*{\subtitlepunct}{\addspacecolon\space}
% The separator between more standard identifiers, like ISBNs or ISSNs.
% Default separator is comma and space. You can use something like
% \renewcommand{\stdidentifierspunct}{\addsemicolon\space}
% in the preamble to change the separator
\newcommand{\stdidentifierspunct}{\addcomma\space}
% The separator between date and dateaddon
\newcommand{\dateaddonpunct}{\addspace}
% The separator between 'dates' and the numeration section
\newcommand{\numerationpunct}{\addcomma\space}
% No seperator or a dot at the very end of an entry
\renewcommand{\finentrypunct}{%
\iftoggle{bbx:noenddot}
{}
{\addperiod}%
}
% A colon preceded with or without space
\newcommand{\addspacecolon}{%
\iftoggle{bbx:spcolon}
{\addnbspace\addspcolon}
{\unspace\addspcolon}%
}
% Context-sensitive delimiters
% The delimiter between mutliple names
\newcommand*{\mkmultinamedelim}{%
\iftoggle{bbx:givennamesfirst}
% Standard defintion from biblatex.def
{\addcomma\space}
% A semicolon: legacy of older versions of standard / Czech interpretations
{\addsemicolon\space}%
}
\DeclareDelimFormat{multinamedelim}{\mkmultinamedelim}
% The delimiter before the final name
\newcommand*{\mkfinalnamedelim}{%
\iftoggle{bbx:givennamesfirst}
% Standard defintion from biblatex.def
{\ifnumgreater{\value{liststop}}{2}{\finalandcomma}{}%
\addspace\bibstring{and}\space}
% Use consistent name format for all creators
{\addsemicolon\space}%
}
\DeclareDelimFormat{finalnamedelim}{\mkfinalnamedelim}
% The delimiter between the date and the time
\DeclareDelimFormat{bibdatetimesep}{\addcomma\space}
% Default name format is ALL-CAPS
% use the package option familynamesc
% to change this to textsc
\newcommand{\familynameformat}[1]{%
\iftoggle{bbx:familynamesc}
{\textsc{#1}}
{\MakeUppercase{#1}}%
}
% Thanks Moewew for sugesting this. Make uppercase names only in bibliography.
\AtBeginBibliography{%
\renewcommand{\mkbibnamefamily}{\familynameformat}%
}
% Default bibliography environment (layout)
\defbibenvironment{bibliography}
{\list%
{}%
{\setlength{\leftmargin}{\bibhang}%
\setlength{\itemindent}{-\leftmargin}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}%
\renewcommand*{\makelabel}[1]{\hss##1}}%
{\endlist}%
{\item}%
% FIELD FORMATS
% Format title and subtitle as is
\DeclareFieldFormat*{title}{#1}
\DeclareFieldFormat*{subtitle}{#1}
% Format volume field with localisation string
\DeclareFieldFormat{volume}{\bibstring{volume}\addnbspace#1}% volume of a book
% Differentiate volume in journal
\DeclareFieldFormat[article,periodical]{volume}{%
\iftoggle{bbx:shortnum}
{\mkbibbold{#1}}
{\bibstring{jourvol}\addnbspace#1}% volume of a journal
}
% Edition field could be:
% a) numeral: use with localisation string
% b) literal: capitalize given string
\DeclareFieldFormat*{edition}{%
\ifnumeral{#1}%
{\mkbibordedition{#1}\addnbspace\bibstring{edition}}%
{\MakeCapital{#1}}%
}%
% Format pagination for page range
% Always use main document language for this field
\DeclareFieldFormat*{pages}{\mkmlpageprefix[bookpagination]{#1}}
% Differentiate page range in journal
\DeclareFieldFormat[article,periodical]{pages}{%
\iftoggle{bbx:shortnum}
{#1}
{\mkmlpageprefix[bookpagination]{#1}}%
}
% Format pagination for total number of pages
% Always use main document language for this field
\DeclareFieldFormat*{pagetotal}{\mkbibbrackets{\mkmlpagetotal[bookpagination]{#1}}}
% Format number field with localisation string
\DeclareFieldFormat*{number}{\bibstring{number}\addspace #1}
% Differentiate number in journal
\DeclareFieldFormat[article,periodical]{number}{%
\iftoggle{bbx:shortnum}
{\mkbibparens{#1}}
{\bibstring{number}\addspace #1}%
}
% Differentiate number for patent and report: format as is
\DeclareFieldFormat[patent,report]{number}{#1}
% a) url AND no urldate and type is not eBook:
% use localisation string 'also available from',
% meaning: the work is not primarily published electronically
% b) (url AND urldate) OR (url AND no urldate and type=eBook):
% use localisation string 'available from'
\DeclareFieldFormat*{url}{%
\iffieldundef{urlyear}
{\iffieldequalstr{type}{eBook}
{\mainlangbibstring{urlfrom}}
{\mainlangbibstring{urlalso}}}%
{\mainlangbibstring{urlfrom}}%
\addcolon\space\url{#1}%
}
% Format medium type in square brackets
% If available, use the localisation string for the key
\DeclareFieldFormat{howpublished}{%
\ifbibstring{#1}
{\mainlangbibstring[\mkbibbrackets]{#1}}
{\mkbibbrackets{#1}}%
}
% Format type, e.g. type of thesis
% If available, use the localisation string for the key
\DeclareFieldFormat{type}{%
\ifbibstring{#1}
{\mainlangbibstring{#1}}
{#1}%
}
\DeclareFieldFormat[thesis, patent]{type}{%
\ifbibstring{#1}
{\mainlangbiblstring{#1}}
{#1}%
}
% Format supervisor of thesis (precedes the name with a localisation string)
\DeclareFieldFormat{supervisor}{%
\mainlangbibstring{bysupervisor}\addspace#1}
% \mkbibacro typesets acronyms in small caps by default,
% if you want to pass the value as is (uppercase)
% use the bibacrosc=false package option
% Applies to DOI, ISBN, ISSN, ISAN, ISMN, ISRN, ISWC
\renewcommand*{\mkbibacro}[1]{%
\iftoggle{bbx:bibacrosc}
{\ifcsundef{\f@encoding/\f@family/\f@series/sc}
{#1}
{\textsc{\MakeLowercase{#1}}}}%
{#1}%
}
% If we really must handle more than one ISBN and ISSN.
%
% Typically there could be different ISBN / ISSN for printed and electronic
% media versions, but the standard says that the specific copy or instance of
% the document should be cited, so the author should choose the appropriate
% number in the bib file. Otherwise include comma-separated list of numbers in
% the bib field 'isbn' or 'issn'.
% Separator value between more ISBNs / ISSNs is handled by '\stdidentifierspunct'.
% Default format is the name of identifier + space + number:
% e.g. 'ISBN 978-3-642-21665-7'
\DeclareFieldFormat{isbn}{%
% Execute this rule for the first value of the csv field
\def\do##1{\mkbibacro{ISBN}\space##1%
% Execute this rule for the next value(s) of the csv field
\def\do####1{\stdidentifierspunct\mkbibacro{ISBN}\space####1}}%
% Process the csv field with \do command
\docsvfield{isbn}%
}
% Electronic ISBN, the same formatting rules as for ISBN above
\DeclareFieldFormat{eisbn}{%
\def\do##1{\mkbibacro{eISBN}\space##1%
\def\do####1{\stdidentifierspunct\mkbibacro{eISBN}\space####1}}%
\docsvfield{eisbn}%
}
% ISSN, the same formatting rules as for ISBN above
\DeclareFieldFormat{issn}{%
\def\do##1{\mkbibacro{ISSN}\space##1%
\def\do####1{\stdidentifierspunct\mkbibacro{ISSN}\space####1}}%
\docsvfield{issn}%
}
% Electronic ISSN, the same formatting rules as for ISBN above
\DeclareFieldFormat{eissn}{%
\def\do##1{\mkbibacro{eISSN}\space##1%
\def\do####1{\stdidentifierspunct\mkbibacro{eISSN}\space####1}}%
\docsvfield{issn}%
}
% LCCN
\DeclareFieldFormat{lccn}{%
\mkbibacro{LCCN}\addspace
\ifhyperref
{\href{http://lccn.loc.gov/#1}{\nolinkurl{#1}}}
{\nolinkurl{#1}}%
}
% Format other standard identifiers
% Default format is the name of identifier + space + number
\DeclareFieldFormat{isan}{\mkbibacro{ISAN}\addspace#1}
\DeclareFieldFormat{ismn}{\mkbibacro{ISMN}\addspace#1}
\DeclareFieldFormat{isrn}{\mkbibacro{ISRN}\addspace#1}
\DeclareFieldFormat{iswc}{\mkbibacro{ISWC}\addspace#1}
\DeclareFieldFormat{din}{\mkbibacro{DIN}\addspace#1}
% Format for doi identifier
\xpatchfieldformat{doi}{\mkbibacro{DOI}\addcolon\space}{\mkbibacro{doi}\addcolon}{}{}
% Format for eprint identifiers
\xpatchfieldformat{eprint}{\addcolon\space}{\addcomma\space}%
{}{\PackageWarning{biblatex-iso690}{Patching FieldFormat 'eprint' failed.}}
\xpatchfieldformat{eprint:hdl}{HDL\addcolon\space}{HDL\addcolon}%
{}{\PackageWarning{biblatex-iso690}{Patching FieldFormat 'eprint:hdl' failed.}}
\xpatchfieldformat{eprint:arxiv}{arXiv\addcolon\space}{arXiv\addcolon}%
{}{\PackageWarning{biblatex-iso690}{Patching FieldFormat 'eprint:arxiv' failed.}}
\xpatchfieldformat{eprint:jstor}{JSTOR\addcolon\space}{JSTOR\addcolon}%
{}{\PackageWarning{biblatex-iso690}{Patching FieldFormat 'eprint:jstor' failed.}}
\xpatchfieldformat{eprint:pubmed}{PMID\addcolon\space}{PMID\addcolon}%
{}{\PackageWarning{biblatex-iso690}{Patching FieldFormat 'eprint:pubmed' failed.}}
\xpatchfieldformat{eprint:googlebooks}{Google Books\addcolon\space}{Google Books\addcolon}%
{}{\PackageWarning{biblatex-iso690}{Patching FieldFormat 'eprint:googlebooks' failed.}}
% Format for venue
\DeclareFieldFormat{venue}{#1}
% Format url seen date with preceding localisation string in square brackets
\DeclareFieldFormat{urldate}{\mkbibbrackets{\mainlangbibstring{urlseen}\space#1}}
% Format for an event date
\DeclareFieldFormat{eventdate}{#1}
% Format additional date information as is (use bib file for modifications).
\DeclareFieldFormat{dateaddon}{#1}
% Format circa date with preceding localisation string in square brackets;
% default \datecircaprint is \bibstring{circa}\printdelim{datecircadelim},
% e.g. [ca. 1940].
\DeclareFieldFormat{date}{%
\ifdatecirca
{\mkbibbrackets{#1}}%
{\ifdateannotation{date}{copyright}
{\textcopyright\addnbthinspace#1}
{#1}}%
}
\DeclareFieldFormat{origdate}{%
\ifdatecirca
{\mkbibbrackets{#1}}%
{\ifdateannotation{origdate}{copyright}
{\textcopyright\addnbthinspace#1}
{#1}}%
}
% Format 'labeldate' the same as 'date' field.
% We use 'labeldate' in 'iso-authoryear' style.
% Format circa date and nodate. Dateaddon and date as is.
\DeclareFieldFormat{labeldate}{%
\ifdatecirca
{\mkbibbrackets{#1}}%
{% Check if there is 'nodate' from 'labeldate'
\iffieldequalstr{labeldatesource}{nodate}
% This is a \literal{nodate}, meaning that it uses the 'nodate'
% localisation string due to default \DeclareLabeldate setting
{\mkbibbrackets{#1}}%
{\ifboolexpr{(test {\iffieldundef{origyear}} and
test {\ifdateannotation{date}{copyright}}) or
(not test {\iffieldundef{origyear}} and
test {\ifdateannotation{origdate}{copyright}})}
{\textcopyright\addnbthinspace#1}
{#1}}}% This is the go-to format
}
\AtEveryCite{%
\DeclareFieldFormat{labeldate}{%
\iffieldequalstr{labeldatesource}{nodate}
{\mkbibbrackets{#1}}%
{#1}}%
}
% Define names to consider for 'labelname', based on
% the default definition, but adding holder as the
% very first choice for patents.
\DeclareLabelname[patent]{%
\field{holder}
\field{shortauthor}
\field{author}
\field{shorteditor}
\field{editor}
\field{translator}
}
% Define dates to consider for 'labeldate', based on
% the default definition, but without 'urldate' field,
% preventing printing url seen date in place of the year
% of a publication.
\DeclareLabeldate{%
\field{origdate}% <----- used by patents
\field{date}
\field{year}
\field{dateaddon}% <---- biblatex-iso690 data model extension
\field{eventdate}
\literal{nodate}
}
% Sorting based on the default definition, but adding
% holder and origyear to work with patent entry types.
\DeclareSortingTemplate{nyt}{
\sort{
\field{presort}
}
\sort[final]{
\field{sortkey}
}
\sort{
\field{sortname}
\field{holder}
\field{author}
\field{editor}
\field{translator}
\field{sorttitle}
\field{title}
}
\sort{
\field{sortyear}
\field{origyear}
\field{year}
}
\sort{
\field{sorttitle}
\field{title}
}
\sort{
\field{volume}
\literal{0}
}
}
% Format chapter of book with preceding localisation string
\DeclareFieldFormat{chapter}{\bibstring{chapter}\addnbspace#1\isdot}
% Version field could be:
% a) numeral: use with localisation string
% b) literal: capitalize given string
\DeclareFieldFormat{version}{%
\ifnumeral{#1}%
{\bibstring{version}\addnbspace#1}%
{\MakeCapital{#1}}%
}
% Format library field as is (location information)
\DeclareFieldFormat{library}{#1}
% Format (sub)titles as they are
\DeclareFieldFormat{journaltitle}{#1}
\DeclareFieldFormat{booktitle}{#1}
\DeclareFieldFormat{maintitle}{#1}
\DeclareFieldFormat{issuetitle}{#1}
\DeclareFieldFormat{eventtitle}{#1}
\DeclareFieldFormat{journalsubtitle}{#1}
\DeclareFieldFormat{booksubtitle}{#1}
\DeclareFieldFormat{mainsubtitle}{#1}
\DeclareFieldFormat{issuesubtitle}{#1}
\DeclareFieldFormat{eventsubtitle}{#1}
% Format other / alternative titles in square brackets
\DeclareFieldFormat{titleaddon}{\mkbibbrackets{#1}}
\DeclareFieldAlias{booktitleaddon}{titleaddon}
\DeclareFieldAlias{maintitleaddon}{titleaddon}
\DeclareFieldAlias{eventtitleaddon}{titleaddon}
% Format additional name information in square brackets
\DeclareFieldFormat{nameaddon}{\mkbibbrackets{#1}}
% NAME ALIAS
\newcommand*{\mknamealias}{%
\iftoggle{bbx:givennamesfirst}
% Standard defintion from biblatex.def
% Default name list format is first (given) followed by last (family) name
{given-family}
% Default name list format is last (family) followed by first (given) name
{family-given}%
}
\newcommand*{\mksortnamealias}{%
\iftoggle{bbx:givennamesfirst}
% Standard defintion from biblatex.def
% Default sortname list format is, except for the first name in the list,
% first (given) name followed by last (family) name
{family-given/given-family}
% Default name list format is last (family) followed by first (given) name
{family-given}%
}
\AtEndOfPackage{%
\DeclareNameAlias{default}{\mknamealias}%
\DeclareNameAlias{sortname}{\mksortnamealias}%
}
\DeclareNameAlias{author}{sortname}
\DeclareNameAlias{editor}{sortname}
\DeclareNameAlias[patent]{holder}{sortname}
% For supervisor, always use the reversed order format:
% given (first) name followed by last (family) name,
% so it may sound more naturally in this order
\DeclareNameAlias{supervisor}{given-family}
% For patents, the author field is supposed to be the inventor
% of the patent, which we always want to have in reverse name order,
% since it may sound more naturally in this order
\DeclareNameAlias[patent]{author}{given-family}
% However, if there is no holder field for a patent,
% author field should be in the default order since it acts
% as a primary creator of the patent at the beginning
% of the bib reference (consistency rule)
\DeclareStyleSourcemap{
\maps[datatype=bibtex]{
\map{
\pertype{patent}
\step[fieldsource=author]
\step[fieldset=holder, origfieldval]
}
}
}
% BIBLIOGRAPHY MACROS
% NAMES MACROS
% Based on author/editor macro
% Adds nameaddon field to author names
\newbibmacro*{names:primary}{%
\ifboolexpr{test \ifuseholder and test {\ifentrytype{patent}}
and not test {\ifnameundef{holder}}}
{\usebibmacro{byholder}%
\setunit{\addspace}%
\printfield{nameaddon}}%
{\ifboolexpr{test \ifuseauthor and not test {\ifnameundef{author}}}
{\usebibmacro{author}%
\setunit{\addspace}%
\printfield{nameaddon}}%
{\usebibmacro{editor}}}%
}
% Macro for secondary authors with their role
\newbibmacro*{names:subsidiary}{%
\usebibmacro{byeditor}%
\newunit
\usebibmacro{bytranslator}%
}
% Don't owerwrite default macros to change only delimiters / punctuation,
% declare their format instead.
% https://github.com/michal-h21/biblatex-iso690/issues/68#issuecomment-435650072
\DeclareFieldFormat{editortype}{\mkbibparens{#1}}
\DeclareDelimFormat{editortypedelim}{\addspace}
\DeclareFieldFormat{authortype}{\mkbibparens{#1}}
\DeclareDelimFormat{authortypedelim}{\addspace}
% Macro for printing supervisor field
\newbibmacro*{thesissupervisor}{%
\ifnameundef{supervisor}
{}
{\mainlangbibstring{bysupervisor}%
\setunit{\addspace}%
\printnames{supervisor}}%
}
% Macro for printing the inventor of a patent
\newbibmacro*{patentinventor}{%
\ifnameundef{author}
{}
{\mainlangbibstring{inventor}%
\setunit{\addcolon\space}%
\usebibmacro{author}}%
}
% TITLES MACROS
% Macro for formatting <prefix>titles
% 1st argument: prefix / type of title (e.g. main, book, event),
% if empty, 'title' field is handled
% 2nd argument: formatting directive (e.g. emph)
\newbibmacro{titles}[2]{%
\ifboolexpr{
test {\iffieldundef{#1title}}
and
test {\iffieldundef{#1subtitle}}}
{}
{\printtext[#2]{%
\printfield{#1title}%
\setunit{\subtitlepunct}%
\printfield{#1subtitle}}%
\setunit{\addspace}}%
\printfield{#1titleaddon}%
\newunit
}%
% Macro for printing volumes (part of volumes)
\newbibmacro{volume}{%
\iffieldundef{volume}
{}
{\printfield{volume}%
\printfield{part}%
\setunit{\addcomma\space}}%
}
% Macro for formatting multiple titles
\newbibmacro{multi:titles}{%
\iffieldundef{maintitle}
{\iffieldundef{booktitle}
{\usebibmacro{titles}{}{emph}%
\usebibmacro{volume}}
{\usebibmacro{titles}{book}{emph}%
\usebibmacro{volume}%
\usebibmacro{titles}{}{}}}%
{\usebibmacro{titles}{main}{emph}%
\usebibmacro{volume}%
\usebibmacro{titles}{}{}}%
}
% Macro for formatting multiple hierarchical titles
% (e.g. for inbook, incollection)
\newbibmacro{host:titles}{%
\iffieldundef{maintitle}
{\iffieldundef{booktitle}
{}
{\usebibmacro{titles}{book}{emph}}}
{\usebibmacro{titles}{main}{emph}}%
}%
% Macro for formatting multiple titles in periodicals
\newbibmacro{periodical:titles}{%
\usebibmacro{titles}{}{emph}%
\newunit
\iffieldundef{issuetitle}
{\iffieldundef{journaltitle}
{}
{\usebibmacro{titles}{journal}{}}}
{\usebibmacro{titles}{issue}{}}%
}
% MEDIUM TYPE MACROS
\newbibmacro*{medium-type}{%
\iffieldundef{howpublished}
{% Automatic printing of '[online]' type of medium when
% a) 'urldate' is present AND
% b) url is enabled (pkg option url=true) OR
% entry type is '@online'
\ifboolexpr{
not test {\iffieldundef{urlyear}}
and ( test {\iftoggle{bbx:url}}
or test {\ifentrytype{online}})
}
% Use a localisation string 'online' in the main document language
{\midsentence\mainlangbibstring[\mkbibbrackets]{online}}%
{}}% Don't print anything
{% The only situation when we don't want to print
% 'howpublished' field is when
% a) url is disabled (pkg option url=false) AND
% b) entry type is other than '@online' AND
% c) 'howpublished' field is 'online'.
% Please note that this field is not checked against
% any possible literal value (e.g. electronic, online article)
% that should be probably also hidden when a) AND b) hold.
\ifboolexpr{
test {\iffieldequalstr{howpublished}{online}}
and not test {\iftoggle{bbx:url}}
and not test {\ifentrytype{online}}
}
{}% Don't print 'howpublished' field
{\printfield{howpublished}}}%
}
% EDITION INFO MACROS
% Refresh date
\newbibmacro{refreshdate}{%
% the date is only supposed to be a refreshdate
% if we have an origdate
\iffieldundef{origyear}
{}
{\mainlangbibstring{refreshedon}\space\printdate}
}
% PUBLICATION INFO MACROS
% By default only year is used, but for some entries,
% we need full date (day or even time precision),
% (e.g. patents, TV shows, newspapers, online news)
% Macro for printing full date (full = YYYY-MM-DD)
\newbibmacro*{fulldate}{%
\mkdaterangeiso{}%
}
% a)
% If there is no date field in the bib entry,
% we should state there is no date by printing
% a localisation string, e.g. [n.d.].
% b)
% Order: <date> <dateaddon>
\renewbibmacro*{date}{%
\iffieldundef{year}
{\iffieldundef{dateaddon}
{\bibstring[\mkbibbrackets]{nodate}}%
{\printfield{dateaddon}}}%
{\printdate%
\setunit{\dateaddonpunct}%
\printfield{dateaddon}}%
}
% Based on publisher+location+date macro (defined in standard.bbx)
% Differs only in punctuation, and printing the organization field
%
% Wrapper for printing normal or full date. 1st argument:
% a) <empty>: \usebibmacro{date}
% b) 'full' : \usebibmacro{fulldate}
\newbibmacro*{location+publisher+dateform}[1]{%
\printlist{location}%
\ifboolexpr{test {\iflistundef{publisher}} and
test {\iflistundef{institution}} and
test {\iflistundef{organization}}}
{\setunit*{\addcomma\space}}
{\setunit*{\subtitlepunct}}% <---- different punctuation
\printlist{publisher}%
\setunit*{\addcomma\space}%
\printlist{institution}%
\setunit*{\addcomma\space}%
\printlist{organization}%
\setunit*{\addcomma\space}%
\usebibmacro{#1date}%
\newunit}
\newbibmacro*{location+publisher+date}{%
\usebibmacro{location+publisher+dateform}{}}
\newbibmacro*{location+publisher+fulldate}{%
\usebibmacro{location+publisher+dateform}{full}}
% ADDITIONAL DATE MACROS FOR PATENTS
% Application date
\newbibmacro{applicationdate}{%
\iffieldundef{origyear}
{}
{\mainlangbibstring{application}\addcolon\space\printorigdate}
}
% Publication date
\newbibmacro{publicationdate}{%
\iffieldundef{year}
{}
{\mainlangbibstring{publication}\addcolon\space\usebibmacro{fulldate}}
}
% NUMERATION MACROS
\newbibmacro*{serial:numeration}{%
\printfield{volume}%
\iftoggle{bbx:shortnum}
{}
{\setunit*{\addcomma\space}}%
\printfield{number}%
}
\newbibmacro*{book:numeration}{%
\printfield{volume}%
\setunit*{\addcomma\space}%
\printfield{chapter}%
}
% SERIES TITLE AND NUMBER MACROS
% Based on series+number macro (defined in standard.bbx)
% Differs only in punctuation
\newbibmacro*{series+number}{%
\printfield{series}%
\setunit*{\addcomma\space}%
\printfield{number}%
}%
% STANDARD IDENTIFIERS MACROS
% Bunch of standard identifiers
\newbibmacro*{identifier}{%
\iftoggle{bbx:isbn}
{\printfield{isan}%
\newunit
\printfield{eisbn}%
\newunit
\printfield{isbn}%
\newunit
\printfield{lccn}%
\newunit
\printfield{ismn}%
\newunit
\printfield{isrn}%
\newunit
\printfield{eissn}%
\newunit
\printfield{issn}%
\newunit
\printfield{iswc}%
\newunit
\printfield{din}%
\newunit}
{}%
}
% AVAILABILITY AND ACCESS MACROS
% Precedes DOI field with urlfrom localisation string
\newbibmacro*{from-doi}{%
\ifentrytype{book}
{\iffieldequalstr{type}{eBook}
{\mainlangbibstring{urlfrom}}
{\mainlangbibstring{urlalso}}}
{\mainlangbibstring{urlfrom}}%
\setunit{\addcolon\space}%
\printfield{doi}%
}
% Precedes eprint field with urlfrom localisation string
% Use default eprint formatting macro
\newbibmacro*{from-eprint}{%
\mainlangbibstring{urlfrom}
\setunit{\addcolon\space}%
\usebibmacro{eprint}%
}
% Macro for availability and access information
% with order of importance: doi, eprint, url
\newbibmacro*{availability+access}{%
\ifboolexpr{
test {\iftoggle{bbx:doi}}
and not test {\iffieldundef{doi}}
}
{\usebibmacro{from-doi}}%
{%
\ifboolexpr{
test {\iftoggle{bbx:eprint}}
and not test {\iffieldundef{eprint}}
}
{\usebibmacro{from-eprint}}%
{\usebibmacro{url}}}%
}
% The url field of @online entries is always printed
\renewbibmacro*{url}{%
\ifboolexpr{
test {\iftoggle{bbx:url}}
or test {\ifentrytype{online}}
}
{\printfield{url}}%
{}%
}
\newbibmacro*{urldate-space}{%
% if there is no publisher specified in the bib file, set unit to dot,
% so there is a separation between previous block
\ifboolexpr{%
test {\iflistundef{publisher}}%
and test {\iflistundef{location}}%
and test {\iffieldundef{year}}%
and test {\iffieldundef{version}}%
}{\setunit{\adddot\addspace}}%
{\setunit{\addspace}}%
}
% The url seen date of @online entries is always printed
\renewbibmacro*{urldate}{%
\ifboolexpr{
test {\iftoggle{bbx:url}}
or test {\ifentrytype{online}}
}
{\printurldate}%
{}%
}
% LOCATION MACROS
% Additional location information (e.g. library, repository)
\newbibmacro*{location}{%
\iffieldundef{library}
{}
{\usebibmacro{at:}%
\printfield{library}}%
}
% NOTES MACROS
% Event information
\newbibmacro*{event}{%
\printfield{eventtitle}%
\setunit{\addspace}%
\printfield{eventtitleaddon}%
\newunit
\printfield{venue}%
\setunit{\addcomma\addspace}%
\printeventdate
}