forked from michal-h21/biblatex-iso690
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiso.bbx
1310 lines (1177 loc) · 39.4 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}[2017/04/25 v0.3.2 biblatex bibliography style]
% Currently available language mappings:
% Czech, English, Slovak, German, Polish, Bulgarian,
% French (blank)
\DeclareLanguageMappingSuffix{-iso}
% Currently needed the following additional language strings:
\NewBibliographyString{at,bysupervisor,urlalso,
director,bydirector,inventor,byinventor,online}
% PACKAGE OPTIONS
% Define new package options
% These toggle names are internal
\newtoggle{bbx:spcolon}
\newtoggle{bbx:totalpages}
\newtoggle{bbx:shortnum}
\newtoggle{bbx:thesisinfoinnotes}
\newtoggle{bbx:url}
\newtoggle{bbx:isbn}
\newtoggle{bbx:doi}
\newtoggle{bbx:eprint}
% Declare new package options
% Description of these options is in the doc file
% '\typeout' command prints to the console
\DeclareBibliographyOption{spacecolon}[true]{%
\settoggle{bbx:spcolon}{#1}%
\typeout{Space colon enabled: #1}}
\DeclareBibliographyOption{pagetotal}[true]{%
\settoggle{bbx:totalpages}{#1}%
\typeout{Showing total pages enabled: #1}}
\DeclareBibliographyOption{shortnumeration}[true]{%
\settoggle{bbx:shortnum}{#1}%
\typeout{Short numeration enabled: #1}}
\DeclareBibliographyOption{thesisinfoinnotes}[true]{%
\settoggle{bbx:thesisinfoinnotes}{#1}%
\typeout{Printing thesis info at the end enabled: #1}}
\DeclareBibliographyOption{url}[true]{%
\settoggle{bbx:url}{#1}%
\typeout{Showing URL field enabled: #1}}
\DeclareBibliographyOption{isbn}[true]{%
\settoggle{bbx:isbn}{#1}%
\typeout{Showing ISBN field enabled: #1}}
\DeclareBibliographyOption{doi}[true]{%
\settoggle{bbx:doi}{#1}%
\typeout{Showing DOI field enabled: #1}}
\DeclareBibliographyOption{eprint}[true]{%
\settoggle{bbx:eprint}{#1}%
\typeout{Showing eprint field enabled: #1}}
% Set default package options
\ExecuteBibliographyOptions{%
spacecolon=false,
pagetotal=false,
shortnumeration=false,
thesisinfoinnotes=true,
url=true,
isbn=true,
doi=true,
eprint=true,
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
seconds=true,% ISO8601 format requires 'seconds=true'
datecirca=true,% Use circa for approximate dates
}
% Default definitions of beginning and closing macro
% in bibliography drivers
\newbibmacro*{begentry}{}
\newbibmacro*{finentry}{\finentry}
% COMMANDS
% 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}
% A colon preceded with or without space
\newcommand\addspacecolon{%
\iftoggle{bbx:spcolon}
{\addnbspace\addspcolon}
{\unspace\addspcolon}%
}
% Context-sensitive delimiters
% The delimiter between mutliple names
% A semicolon: legacy of older versions of standard / Czech interpretations
\DeclareDelimFormat{multinamedelim}{\addsemicolon\space}
% The delimiter before the final name
% Use consistent name format for all creators
\DeclareDelimAlias{finalnamedelim}{multinamedelim}
% Thanks Moewew for sugesting this. Make uppercase names only in biblipgraphy.
% Default name format is ALL-CAPS
% use something like
% \let\familynameformat=\textsc
% to change this
\newcommand\familynameformat[1]{\MakeUppercase{#1}}
\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}
%\raggedright}
}%
{\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: format as is
\DeclareFieldFormat[patent]{number}{#1}
% a) url AND no urldate: use localisation string 'available ALSO from',
% meaning: the work is not primarily published electronically
% b) url AND urldate: use localisation string 'available from'
\DeclareFieldFormat*{url}{%
\iffieldundef{urlyear}
{\mainlangbibstring{urlalso}}
{\mainlangbibstring{urlfrom}}%
\addcolon\space\url{#1}%
}
% Format medium type in square brackets
\DeclareFieldFormat{howpublished}{\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}%
}
% 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 we want to override this, pass the value as is (uppercase)
% \renewcommand*{\mkbibacro}[1]{#1}
% Applies to DOI, ISBN, ISSN, ISAN, ISMN, ISRN, ISWC
% 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}%
}
% 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}%
}
% 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}
% Format url seen date with preceding localisation string in square brackets
\DeclareFieldFormat{urldate}{\mkbibbrackets{\mainlangbibstring{urlseen}\space#1}}
% a)
% Format circa date with preceding localisation string in square brackets;
% default \datecircaprint is \bibstring{circa}\printdelim{datecircadelim},
% e.g. [ca. 1940].
% b)
% 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.].
\DeclareFieldFormat{date}{%
\ifdatecirca
{\mkbibbrackets{#1}}%
{% Check if there is 'nodate' from 'labeldate',
% not applicable for 'date' (only 'labeldate').
\iffieldequalstr{labeldatesource}{nodate}
{\mkbibbrackets{#1}}% This is nodate from \literal{nodate}
{#1}}% This is the go-to format ('date' / 'labeldate')
}
% Format 'labeldate' the same as 'date' field.
% We use 'labeldate' in 'iso-authoryear' style.
\DeclareFieldAlias{labeldate}{date}
% 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{date}
\field{year}
\field{eventdate}
\field{origdate}
\literal{nodate}
}
% 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{journalsubtitle}{#1}
\DeclareFieldFormat{booksubtitle}{#1}
\DeclareFieldFormat{mainsubtitle}{#1}
\DeclareFieldFormat{issuesubtitle}{#1}
% Format other / alternative titles in square brackets
\DeclareFieldFormat{titleaddon}{\mkbibbrackets{#1}}
\DeclareFieldFormat{booktitleaddon}{\mkbibbrackets{#1}}
\DeclareFieldFormat{maintitleaddon}{\mkbibbrackets{#1}}
% Format additional name information in square brackets
\DeclareFieldFormat{nameaddon}{\mkbibbrackets{#1}}
% NAME ALIAS
% Default name list format is last (family) followed by given (first) name
\DeclareNameAlias{default}{family-given}
% For supervisor, 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}
% BIBLIOGRAPHY MACROS
% NAMES MACROS
% Based on author/editor macro
% Adds nameaddon field to names
\newbibmacro*{names:primary}{%
\ifboolexpr{
test \ifuseauthor
and
not test {\ifnameundef{author}}
}
{\usebibmacro{author}}
{\usebibmacro{editor}}%
\setunit{\addspace}\printfield{nameaddon}%
}
% 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}
% Macro for printing supervisor field
\newbibmacro*{thesissupervisor}{%
\ifnameundef{supervisor}
{}
{\printtext{\mainlangbibstring{bysupervisor}}%
\addspace%
\printnames{supervisor}}%
}
% 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{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
{\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}}}%
}
% 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{}%
}
% 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.].
\renewbibmacro*{date}{%
\iffieldundef{year}
{\bibstring[\mkbibbrackets]{nodate}}%
{\printdate}%
}
% Based on publisher+location+date macro (defined in standard.bbx)
% Differs only in punctuation
\newbibmacro*{location+publisher+date}{%
\printlist{location}%
\iflistundef{publisher}
{\setunit*{\addcomma\space}}%
{\setunit*{\subtitlepunct}}%
\printlist{publisher}%
\setunit*{\addcomma\space}%
\usebibmacro{date}%
\newunit}
% 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{isbn}%
\newunit
\printfield{ismn}%
\newunit
\printfield{isrn}%
\newunit
\printfield{issn}%
\newunit
\printfield{iswc}%
\newunit}
{}%
}
% AVAILABILITY AND ACCESS MACROS
% Precedes DOI field with urlfrom localisation string
\newbibmacro*{from-doi}{%
\mainlangbibstring{urlfrom}\addspace\printfield{doi}%
}
% Precedes eprint field with urlfrom localisation string
% Use default eprint formatting macro
\newbibmacro*{from-eprint}{%
\mainlangbibstring{urlfrom}\addspace\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}}%
{}%
}
% 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}}%
}
% OTHER MACROS
% redeclare in: bibmacro to use the main document language.
% there was discussion whether literal "In:" should be used,
% but that would look weird in non-latin languages.
% context: https://github.com/michal-h21/biblatex-iso690/pull/33
% Force to use the main document language for 'in' localisation string
\renewbibmacro*{in:}{%
\mainlangbibstring{in}%
\printunit{\intitlepunct}%
}
% Based on 'in:' macro for 'at' localisation string
\newbibmacro*{at:}{%
\mainlangbibstring{at}%
\printunit{\intitlepunct}%
}
% BIBLATEX CORE ADJUSTMENTS
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Localisation strings in the main document language
%
% \mainlangbibstring in place of \bibstring
% \mainlangbiblstring in place of \biblstring
% \mainlangbibsstring in place of \bibsstring
% [<wrapper>]{<string>}
\newrobustcmd*{\blx@imc@mainlangbibstring}[2][\@firstofone]{%
\blx@mainlangbibstring{#1}{\abx@str}{#2}}
\newrobustcmd*{\blx@imc@mainlangbiblstring}[2][\@firstofone]{%
\blx@mainlangbibstring{#1}{abx@lstr}{#2}}
\newrobustcmd*{\blx@imc@mainlangbibsstring}[2][\@firstofone]{%
\blx@mainlangbibstring{#1}{abx@sstr}{#2}}
\protected\def\blx@mainlangbibstring#1#2#3{%
{\mainlang% <---- use main document language
\blx@begunit
\blx@hyphenreset
\blx@bibstringsimple
\lowercase{\edef\blx@tempa{#3}}%
\ifcsundef{#2@\blx@tempa}
{\blx@warn@nostring\blx@tempa
\blx@endnounit}
{\blx@imc@ifcapital
{#1{\MakeCapital{\csuse{#2@\blx@tempa}}}}
{#1{\csuse{#2@\blx@tempa}}}%
\blx@endunit}}}
\blx@regimcs{%
\mainlangbibstring \mainlangbiblstring \mainlangbibsstring
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Overriding bookpagination to use document main language
%
% Use new name 'mkpagetotal' over 'mkmlpagetotal'
% Use 'mainlangbibsstring' over 'bibstring'
\newrobustcmd*{\blx@imc@mkmlpagetotal}[1][bookpagination]{%
\begingroup
\def\blx@tempa{\blx@mkmlpagetotal{pagetotal}}%
\iffieldundef{#1}
{}
{\iffieldequalstr{#1}{none}
{\def\blx@tempa{\blx@mkmlpagetotal@i}}
{\iffieldplusstringbibstring{#1}{total}
{\edef\blx@tempa{\blx@mkmlpagetotal{\thefield{#1}total}}}
{\blx@warning@entry{%
Unknown pagination type '\strfield{#1}total'}}}}%
\@ifnextchar[%]
{\blx@tempa}
{\blx@tempa[\@firstofone]}}
\protected\long\def\blx@mkmlpagetotal#1[#2]#3{%
\ifnumeral{#3}
{\setbox\@tempboxa=\hbox{%
\blx@tempcnta0#3\relax
\ifnum\blx@tempcnta=\@ne
\aftergroup\@firstoftwo
\else
\aftergroup\@secondoftwo
\fi}%
{#2{#3}\ppspace\mainlangbibsstring{#1}}
{#2{#3}\ppspace\mainlangbibsstring{#1s}}}
{\def\pno{\mainlangbibsstring{#1}}%
\def\ppno{\mainlangbibsstring{#1s}}%
#2{#3}}%
\endgroup}
\long\def\blx@mkmlpagetotal@i[#1]#2{#1{#2}\endgroup}
\blx@regimcs{\mkmlpagetotal}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Overriding pagination to use document main language
%
% Use new name 'mkmlpageprefix' over 'mkpageprefix'
% Use 'mainlangbibsstring' over 'bibstring'
\newrobustcmd*{\blx@imc@mkmlpageprefix}[1][pagination]{%
\begingroup
\def\blx@tempa{\blx@mkmlpageprefix{page}}%
\iffieldundef{#1}
{}
{\iffieldequalstr{#1}{none}
{\def\blx@tempa{\blx@mkmlpageprefix@i}}
{\iffieldbibstring{#1}
{\edef\blx@tempa{\blx@mkmlpageprefix{\thefield{#1}}}}
{\blx@warning@entry{%
Unknown pagination type '\strfield{#1}'}}}}%
\@ifnextchar[%]
{\blx@tempa}
{\blx@tempa[\@firstofone]}}
\protected\long\def\blx@mkmlpageprefix#1[#2]#3{%
\ifnumeral{#3}
{\mainlangbibsstring{#1}\ppspace}
{\ifnumerals{#3}
{\mainlangbibsstring{#1s}\ppspace}
{\def\pno{\mainlangbibsstring{#1}}%
\def\ppno{\mainlangbibsstring{#1s}}}}%
\blx@mkmlpageprefix@i[#2]{#3}}
\long\def\blx@mkmlpageprefix@i[#1]#2{#1{#2}\endgroup}
\blx@regimcs{\mkmlpageprefix}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Use space punctuation, package option 'spacecolon',
% toggle 'bbx:spcolon', command '\addspcolon' / '\addspacecolon'
% See 'biblatex.sty' for these macros
%
% Let biblatex know the new macro
\blx@regimcs{\addspcolon}
% Define the new macro
\protected\def\blx@imc@addspcolon{\blx@addsppunct{colon}}
% Implement the new macro
\def\blx@addsppunct#1{% <---- new name for spaced punctuation
%\unspace <----- commented out
\ifnum\blx@spacefactor<\blx@sf@threshold@low
\csuse{blx@qp@#1}\csuse{abx@#1}%
\else%
\ifnum\blx@spacefactor>\blx@sf@threshold@high
\csuse{blx@qp@#1}\csuse{abx@#1}%
\else%
\ifcsdef{blx@pp@\the\csname blx@sf@#1\endcsname @\blx@spacefactor}%
{\csuse{blx@qp@#1}\csuse{abx@#1}}%
{\csuse{blx@qp@#1}}%%
\fi%
\fi%
\csuse{blx@pq@#1}}%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Adds non-breaking space after open date range, e.g. '1492-- '
%
\newcommand*{\mkopenendeddaterange}{\mbox{\bibdaterangesep\addnbspace}}
% Used by '\printdate'
%
% {<short|long>}{<datetype>}
\renewrobustcmd*{\mkdaterangefull}[2]{%
\begingroup
\blx@metadateinfo{#2}%
\iffieldundef{#2year}
{\blx@nounit}
{\printtext[{#2date}]{%
\datecircaprint
% Such a season component can only come from an ISO8601 season which replaces
% a normal month so if it exists, we know that a normal date print is ruled out
\iffieldundef{#2season}
{\csuse{mkbibdate#1}{#2year}{#2month}{#2day}%
% Optionally print the time after the date
\blx@printtime{#2}{}}
{\csuse{mkbibseasondate#1}{#2year}{#2season}}%
\dateuncertainprint
\dateeraprint{#2year}%
\iffieldundef{#2endyear}
{}
{\iffieldequalstr{#2endyear}{}
{\mkopenendeddaterange}% <---- added \addnbspace
{\bibdaterangesep
\enddatecircaprint
\iffieldundef{#2endseason}
{\csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}%
% Optionally print the time after the date
\blx@printtime{#2}{end}}
{\csuse{mkbibseasondate#1}{#2endyear}{#2endseason}}%
\enddateuncertainprint
\dateeraprint{#2endyear}}}}}%
\endgroup}
% Used by '\printlabeldateextra' in 'iso-authoryear.bbx'
%
% {<short|long>}{<datetype>}
\renewrobustcmd*{\mkdaterangefullextra}[2]{%
\begingroup
\blx@metadateinfo{#2}%
\iffieldundef{#2year}
{\blx@nounit}
{\printtext[{#2date}]{%
\datecircaprint
% Such a season component can only come from an ISO8601 season which replaces
% a normal month so if it exists, we know that a normal date print is ruled out
\iffieldundef{#2season}
{\csuse{mkbibdate#1}{#2year}{#2month}{#2day}%
% Optionally print the time after the date
\blx@printtime{#2}{}}
{\csuse{mkbibseasondate#1}{#2year}{#2season}}%
\dateuncertainprint
\dateeraprint{#2year}%
\iffieldundef{#2endyear}
{\printfield{extradate}}
{\iffieldequalstr{#2endyear}{}
{\printfield{extradate}%
\printtext{\mkopenendeddaterange}}% <---- added \addnbspace
{\printtext{%
\bibdaterangesep
\enddatecircaprint
\iffieldundef{#2endseason}
{\csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}%
% Optionally print the time after the date
\blx@printtime{#2}{end}}
{\csuse{mkbibseasondate#1}{#2endyear}{#2endseason}}}%
\printfield{extradate}%
\enddateuncertainprint
\dateeraprint{#2endyear}}}}}%
\endgroup}
% other date formats for completeness
% avoids error with older biblatex version
% WARNING: of course this means that in older versions the
% date printing macro will not be changed as expected
% this is not an issue for biblatex-iso690 since it only uses
% \mkdaterangefull and \mkdaterangefullextra anyway
\providecommand*{\mkdaterangetrunc@i}{}
\renewrobustcmd*{\mkdaterangetrunc@i}[2]{%
\begingroup
\blx@metadateinfo{#2}%
\iffieldundef{#2year}
{\blx@nounit}
{\printtext[{#2date}]{%
\datecircaprint
% Such a season component can only come from an ISO8601 season which replaces
% a normal month so if it exists, we know that a normal date print is ruled out
\iffieldundef{#2season}
{\ifdateyearsequal{#2}{#2end}
{\iffieldsequal{#2month}{#2endmonth}
{\csuse{mkbibdate#1}{}{}{#2day}}
{\csuse{mkbibdate#1}{}{#2month}{#2day}}}
{\csuse{mkbibdate#1}{#2year}{#2month}{#2day}%
\iffieldsequal{#2dateera}{#2enddateera}{}
{\dateeraprint{#2year}}}}
{\ifdateyearsequal{#2}{#2end}
{\csuse{mkbibseasondate#1}{}{#2season}}
{\csuse{mkbibseasondate#1}{#2year}{#2season}%
\iffieldsequal{#2dateera}{#2enddateera}{}
{\dateeraprint{#2year}}}}%
\dateuncertainprint
\iffieldundef{#2endyear}
{}
{\iffieldequalstr{#2endyear}{}
{\mkopenendeddaterange}
{\bibdaterangesep
\enddatecircaprint
\iffieldundef{#2endseason}
{\csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}}
{\csuse{mkbibseasondate#1}{#2endyear}{#2endseason}}%
\enddateuncertainprint
\dateeraprint{#2endyear}}}}}%
\endgroup}
% avoids error with older biblatex version
% WARNING: of course this means that in older versions the
% date printing macro will not be changed as expected
% this is not an issue for biblatex-iso690 since it only uses
% \mkdaterangefull and \mkdaterangefullextra anyway
\providecommand*{\mkdaterangetruncextra@i}{}
\renewrobustcmd*{\mkdaterangetruncextra@i}[2]{%
\begingroup
\blx@metadateinfo{#2}%
\iffieldundef{#2year}
{\blx@nounit}
{\printtext[{#2date}]{%
\datecircaprint
% Such a season component can only come from an ISO8601 season which replaces
% a normal month so if it exists, we know that a normal date print is ruled out
\iffieldundef{#2season}
{\ifdateyearsequal{#2}{#2end}
{\iffieldsequal{#2month}{#2endmonth}
{\csuse{mkbibdate#1}{}{}{#2day}}
{\csuse{mkbibdate#1}{}{#2month}{#2day}}}
{\csuse{mkbibdate#1}{#2year}{#2month}{#2day}%
\iffieldsequal{#2dateera}{#2enddateera}{}
{\dateeraprint{#2year}}}}
{\ifdateyearsequal{#2}{#2end}
{\csuse{mkbibseasondate#1}{}{#2season}}
{\csuse{mkbibseasondate#1}{#2year}{#2season}%
\iffieldsequal{#2dateera}{#2enddateera}{}
{\dateeraprint{#2year}}}}%
\dateuncertainprint
\iffieldundef{#2endyear}
{\printfield{extradate}}
{\iffieldequalstr{#2endyear}{}
{\printfield{extradate}%
\printtext{\mkopenendeddaterange}}
{\printtext{%
\bibdaterangesep
\enddatecircaprint
\iffieldundef{#2endseason}
{\csuse{mkbibdate#1}{#2endyear}{#2endmonth}{#2endday}}
{\csuse{mkbibseasondate#1}{#2endyear}{#2endseason}}}%
\printfield{extradate}%
\enddateuncertainprint
\dateeraprint{#2endyear}}}}}%
\endgroup}
% {<datetype>}
\renewrobustcmd*{\mkdaterangeymd}[1]{%
\begingroup
\blx@metadateinfo{#1}%
\iffieldundef{#1year}
{\blx@nounit}
{\printtext[{#1date}]{%
\datecircaprint
% Such a season component can only come from an ISO8601 season which replaces
% a normal month so if it exists, we know that a normal date print is ruled out
\iffieldundef{#1season}
{\blx@ymddate{#1}{}%
% Optionally print the time after the date
\blx@printtime{#1}{}}
{\csuse{mkbibseasondateshort}{#1year}{#1season}}%
\dateuncertainprint
\dateeraprint{#1year}%
\iffieldundef{#1endyear}
{}
{\iffieldequalstr{#1endyear}{}
{\mkopenendeddaterange}
{\bibdaterangesep
\enddatecircaprint
\iffieldundef{#1season}
{\blx@ymddate{#1}{end}%
% Optionally print the time after the date
\blx@printtime{#1}{end}}
{\csuse{mkbibseasondateshort}{#1endyear}{#1endseason}}%
\enddateuncertainprint
\dateeraprint{#1endyear}}}}}%
\endgroup}
% {<datetype>}
\renewrobustcmd*{\mkdaterangeymdextra}[1]{%
\begingroup
\blx@metadateinfo{#1}%
\iffieldundef{#1year}
{\blx@nounit}
{\printtext[{#1date}]{%
\datecircaprint
% Such a season component can only come from an ISO8601 season which replaces
% a normal month so if it exists, we know that a normal date print is ruled out
\iffieldundef{#1season}
{\blx@ymddate[extradate]{#1}{}%
% Optionally print the time after the date
\blx@printtime{#1}{}}
{\csuse{mkbibseasondateshort}{#1year}{#1season}}%
\dateuncertainprint
\dateeraprint{#1year}%
\iffieldundef{#1endyear}
{}
{\iffieldequalstr{#1endyear}{}
{\mkopenendeddaterange}
{\printtext{%
\bibdaterangesep
\enddatecircaprint
\iffieldundef{#1season}
{\blx@ymddate{#1}{end}%
% Optionally print the time after the date
\blx@printtime{#1}{end}}
{\csuse{mkbibseasondateshort}{#1endyear}{#1endseason}}}%
\enddateuncertainprint
\dateeraprint{#1endyear}}}}}%
\endgroup}
% BIBLIOGRAPHY DRIVERS
\DeclareBibliographyDriver{book}{%
\usebibmacro{bibindex}%
\usebibmacro{begentry}%
\usebibmacro{names:primary}%