summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/biblatex-contrib/biblatex-ext/biblatex-ext.tex
blob: bc425aebd3855865222c78650df1607163cb541c (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
\documentclass[11pt,a4paper]{article}
\usepackage{iftex}
\iftutex
  \usepackage{fontspec}
\else
  \usepackage[T1]{fontenc}
  \usepackage[utf8]{inputenc}
  \input glyphtounicode
  \pdfgentounicode=1
\fi
\usepackage[french,ngerman,british]{babel}
\usepackage{csquotes}
\usepackage[useregional]{datetime2}
\iftutex\else
  \usepackage{lmodern}
\fi
\usepackage[mono=false]{libertinus}
\iftutex
  \setmonofont[Scale=0.78]{Bitstream Vera Sans Mono}
  \usepackage{unicode-math}
  \setmathfont[Scale=MatchUppercase]{libertinusmath-regular.otf}
\else
  \usepackage[libertine]{newtxmath}
  \usepackage[scaled=0.78]{beramono}
  \usepackage{bm}
\fi
\usepackage[verbose,
  top=33mm,
  left=3.5cm, right=3.5cm,
  marginparwidth=2.5cm,
  height=21cm,
  footskip=47.6pt,
  headheight=17pt,
  headsep=20.40001pt,
]{geometry}
\setlength\parindent{1em}
\usepackage{microtype}
\usepackage{ragged2e}
\usepackage{hyphenat}
\usepackage{booktabs}
\usepackage{multicol}
\usepackage[svgnames]{xcolor}
\usepackage{longtable}
\usepackage{array}
\newcolumntype{L}[1]{%
  >{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}
\usepackage[listings, breakable, skins]{tcolorbox}%
\usetikzlibrary{arrows.meta}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{fit}
\usetikzlibrary{positioning}
\usepackage[style=ext-authoryear-iecomp, backend=biber, labelnumber]{biblatex}
\addbibresource{biblatex-examples.bib}
\addbibresource{biblatex-ext-examples.bib}
\usepackage{biblatex-ext-tabular}
\usepackage{biblatex-ext-oa}
% Normally, the following packages should not be loaded explicitly.
% Instead, one of them (and *only* one) should be loaded via
% biblatex-ext-oa's options.
\usepackage{biblatex-ext-oasymb-tikz}
% We need to undefine \oasymbol to be able to load the other packages as well.
\undef\oasymbol
\undef\DefineOASymbol
\usepackage{biblatex-ext-oasymb-l3draw}
% We need to undefine \oasymbol to be able to load the other packages as well.
\undef\oasymbol
\undef\DefineOASymbol
\usepackage{biblatex-ext-oasymb-pict2e}

\DeclareFieldFormat{bibentrysetcount}{\mkbibparens{\mknumalph{#1}}}
\DeclareFieldFormat{labelnumberwidth}{\mkbibbrackets{#1}}
\DeclareFieldFormat{shorthandwidth}{\mkbibbrackets{#1}}

\defbibenvironment{bibliographyNUM}
  {\list
     {\printtext[labelnumberwidth]{%
        \printfield{labelprefix}%
        \printfield{labelnumber}}}
     {\setlength{\labelwidth}{\labelnumberwidth}%
      \setlength{\leftmargin}{\labelwidth}%
      \setlength{\labelsep}{\biblabelsep}%
      \addtolength{\leftmargin}{\labelsep}%
      \setlength{\itemsep}{\bibitemsep}%
      \setlength{\parsep}{\bibparsep}}%
      \renewcommand*{\makelabel}[1]{\hss##1}}
  {\endlist}
  {\item}

\newcounter{extblxdoc@examplebib}

\makeatletter
\defbibcheck{examplebib}{%
  \xifinlist{\thefield{entrykey}}{\extblxdoc@examplebib@list}
    {}
    {\skipentry}}

\newcommand*{\extblxdoc@fixexamplelinks}{%
  \protected\def\blx@anchor{%
    \xifinlist{\the\c@refsection @\the\c@extblxdoc@examplebib
               @\abx@field@entrykey}{\blx@anchors}
      {}
      {\listxadd\blx@anchors{\the\c@refsection @\the\c@extblxdoc@examplebib
                             @\abx@field@entrykey}%
       \hyper@natanchorstart{\the\c@refsection @\the\c@extblxdoc@examplebib
                             @\abx@field@entrykey}%
       \hyper@natanchorend}}%
  \long\def\blx@bibhyperref[##1]##2{%
     \blx@sfsave\hyper@natlinkstart{\the\c@refsection
       @\the\c@extblxdoc@examplebib @##1}\blx@sfrest
     ##2%
     \blx@sfsave\hyper@natlinkend\blx@sfrest}%
}

\newcommand*{\exampleprintbib}[2][]{%
  \nocite{#2}%
  \let\extblxdoc@examplebib@list\empty
  \def\do##1{\listeadd\extblxdoc@examplebib@list{\detokenize{##1}}}%
  \docsvlist{#2}%
  \AtNextBibliography{%
    \stepcounter{extblxdoc@examplebib}%
    \extblxdoc@fixexamplelinks}%
  \printbibliography[check=examplebib, heading=none, #1]}

\newcommand*{\exampleprintbibtab}[1]{%
  \nocite{#1}%
  \let\extblxdoc@examplebib@list\empty
  \def\do##1{\listeadd\extblxdoc@examplebib@list{\detokenize{##1}}}%
  \docsvlist{#1}%
  \AtNextBibliography{%
    \stepcounter{extblxdoc@examplebib}%
    \extblxdoc@fixexamplelinks}%
  \printbibtabular[check=examplebib, heading=none]}


\usepackage{ltxdockit}
\usepackage{btxdockit}
\usepackage{cleveref}
\hypersetup{%
  colorlinks=true,
  allcolors=spot,
  bookmarksopen=false,
  bookmarksnumbered=false,
  plainpages=false}

\definecolor{highlight1}{RGB}{240, 0, 0}
\definecolor{highlight2}{RGB}{0,153, 153}
\definecolor{spot}{rgb}{0,0.2,0.6}

\lstdefinestyle{extblxstylegeneral}{%
  aboveskip    = {0\p@ \@plus 6\p@},
  belowskip    = {0\p@ \@plus 6\p@},
  tabsize      = 2,
  breaklines   = true,
  breakatwhitespace = true,
  keepspaces   = true,
  escapeinside = {(*@}{@*)},
  moredelim    = {[is][\ttfamily\bfseries\color{highlight1}]{|}{|}},
  moredelim    = {[is][\ttfamily\bfseries\color{highlight1}]{|1}{1|}},
  moredelim    = {[is][\ttfamily\bfseries\color{highlight2}]{|2}{2|}},
}

\lstdefinelanguage{extBibTeX}{%
  morekeywords=[1]{%
    @article,@artwork,@audio,@bibnote,@book,@bookinbook,@booklet,%
    @collection,@commentary,@customa,@customb,@customc,@customd,%
    @custome,@customf,@inbook,@incollection,@inproceedings,%
    @inreference,@image,@jurisdiction,@legal,@legislation,@letter,%
    @dataset,
    @manual,@misc,@movie,@music,@mvcollection,@mvreference,%
    @mvproceedings,@mvbook,@online,@patent,@performance,@periodical,%
    @proceedings,@reference,@report,@review,@set,@software,@standard,%
    @suppbook,@suppcollection,@suppperiodical,@thesis,@unpublished,@video%
   },
   morekeywords=[2]{author,title,date,journal,volume,number,pages,doi,
                    eprint,eprinttype,eprintclass},
   keywordstyle=[1]{\bfseries\spotcolor},
   keywordstyle=[2]{\spotcolor},
   sensitive=false,
}

\lstdefinestyle{extblxstylelatex}{%
  language  = {[LaTeX]TeX},
  style     = {extblxstylegeneral},
  moretexcs = {
    dimexpr,arraybackslash,newcolumntype,anchor,driver,plain,plainlang,
    anchorlang,
    thefield,bibstring,
    addbibresource,
    setlength,bibhang,addcomma,adddot,addperiod,addcolon,addspace,
    addnbspace,
    mkbibbold,mkbibemph,mkbibbrackets,mkbibparens,
    usebibmacro,newbibmacro,renewbibmacro,setunit,newunit,printfield,printlist,
    bibopenparen,bibcloseparen,bibopenbracket,bibclosebracket,
    iflistundef,iffieldundef,ifnameundef,iffieldnums,
    ExecuteBibliographyOptions,
    defbibtabular,defbibtabulartwocolumn,defbibenvironment,
    printbibliography,printbibtabular,
    autocite,
    DeclareFieldFormat,DeclareDelimFormat,
    DeclareDelimcontextAlias,UndeclareDelimcontextAlias,
    DeclareInnerCiteDelims,UndeclareInnerCiteDelims,DeclareInnerCiteDelimsAlias,
    DeclareOuterCiteDelims,UndeclareOuterCiteDelims,DeclareOuterCiteDelimsAlias,
    UndeclareCiteDelims,
    introcitepunct,volnumdelim,maintitletitledelim,voltitledelim,sernumdelim,
    jourvoldelim,
    volnumdatedelim,locdatedelim,locpubdelim,publocdelim,pubdatedelim,
    extradateonlycompcitedelim,introcitesep,introcitewidth,introcitebreak,
    DeclareOpenAccessFieldUrl,DeclareOpenAccessEprintUrl,
    DeclareOpenAccessEprintAlias,DeclareOpenAccessUrlFieldPriority},
}

\lstdefinestyle{extblxstylebibtex}{%
  language  = {extBibTeX},
  style     = {extblxstylegeneral},
}


\newcommand*{\highlight}[2][1]{\textcolor{highlight#1}{#2}}
\newcommand*{\highlightbf}[2][1]{\textcolor{highlight#1}{\textbf{#2}}}
\DeclareFieldFormat{highlight1}{\textcolor{highlight1}{#1}}
\DeclareFieldFormat{highlight2}{\textcolor{highlight2}{#1}}

\newtcolorbox{bibexample}[1][]{enhanced,
                               colframe=spot!75!black, colback=spot!5!white,
                               before title=\raggedright,
                               #1}
\newtcblisting{biblatexcode}{enhanced,
                             colframe=black!75!white, colback=black!5!white,
                             listing only,
                             frame hidden,
                             breakable,
                             listing style=extblxstylelatex}
\newtcblisting{bibtexfile}{enhanced,
                           colframe=black!75!white, colback=black!5!white,
                           listing only,
                           frame hidden,
                           breakable,
                           listing style = extblxstylebibtex}

\newtcbinputlisting{\inputexamplebibfile}[2][]{%
  listing file={#2},
  enhanced,
  colframe=black!75!white, colback=black!5!white,
  listing only,
  frame hidden,
  breakable,
  listing style = extblxstylebibtex,
  #1}

\newtcolorbox{warnbox}[1][]{%
  enhanced,
  before upper={
    \parskip=0.5\baselineskip
    \advance\parskip by 0pt plus 2pt
  },
  colframe=red, colback=red!5!white,
  underlay={%
    \path[draw=none] (interior.south east)
                     rectangle node {\warnsymbol}
                     ([xshift=15mm,yshift=.1cm]interior.north east);},
  #1}

\newtcolorbox{remindbox}[1][]{%
  enhanced,
  before upper={
    \parskip=0.5\baselineskip
    \advance\parskip by 0pt plus 2pt
  },
  colframe=yellow, colback=yellow!5!white,
  underlay={%
    \path[draw=none] (interior.south east)
                     rectangle node {\dbendsymbol}
                     ([xshift=15mm,yshift=.1cm]interior.north east);},
  #1}

\tikzset{
  MWEcommentbox/.style={font=\sffamily\footnotesize, gray!60!darkgray},
}

\AtUsedriver*{%
  \delimcontext{bib}%
  \let\newblock\relax
  \let\abx@macro@bibindex\@empty
  \let\abx@macro@pageref\@empty}


% this is taken from ltxdockit.cls, which is not loaded
\newrobustcmd*{\fnurl}[1][]{\hyper@normalise\ltd@fnurl{#1}}
\def\ltd@fnurl#1#2{\footnote{#1\hyper@linkurl{\Hurl{#2}}{#2}}}

\newrobustcmd*{\email}{\hyper@normalise\ltd@email}
\def\ltd@email#1{\href{mailto:#1}{#1}}

% title
\providecommand*{\titlepage}{}
\providecommand*{\titlefont}{}
\renewrobustcmd*{\titlepage}[1]{\setkeys{ltd@ttp}{#1}}
\renewcommand*{\titlefont}{\bfseries}
\define@key{ltd@ttp}{title}{\def\ltd@title@title{#1}}
\define@key{ltd@ttp}{subtitle}{\def\ltd@title@subtitle{#1}}
\define@key{ltd@ttp}{url}{\def\ltd@title@url{#1}}
\define@key{ltd@ttp}{author}{\def\ltd@title@author{#1}}
\define@key{ltd@ttp}{email}{\def\ltd@title@email{#1}}
\define@key{ltd@ttp}{revision}{\def\ltd@title@revision{#1}}
\define@key{ltd@ttp}{date}{\def\ltd@title@date{#1}}

\providecommand*{\printtitlepage}{}
\renewrobustcmd*{\printtitlepage}{%
  \begingroup
  \centering\titlefont
  \begingroup\LARGE
    \ifundef\ltd@title@url
      {\ltd@title@title}
      {\href{\ltd@title@url}{\ltd@title@title}}%
    \par
  \endgroup
  \vspace{0.25\baselineskip}
  \begingroup\large
    \ltd@title@subtitle\par
  \endgroup
  \expandafter\url\expandafter{\ltd@title@url}\par
  \begin{multicols}{2}
  \raggedleft
    \ltd@title@author\par
    \expandafter\email\expandafter{\ltd@title@email}\par
  \raggedright
    Version \ltd@title@revision\par\ltd@title@date
  \end{multicols}
  \endgroup}


\renewcommand\tableofcontents{%
    \pdfbookmark[1]{\contentsname}{contents}%
    \section*{\contentsname
        \@mkboth{%
           \MakeUppercase\contentsname}{\MakeUppercase\contentsname}}%
    \@starttoc{toc}%
    }
\def\@starttoc#1{%
  \begingroup
    \begin{multicols}{2}
    \makeatletter
    \RaggedRight
    \@input{\jobname.#1}%
    \if@filesw
      \expandafter\newwrite\csname tf@#1\endcsname
      \immediate\openout \csname tf@#1\endcsname \jobname.#1\relax
    \fi
    \end{multicols}
    \@nobreakfalse
  \endgroup}

\newrobustcmd*{\tex}{\TeX}
\newrobustcmd*{\etex}{\mbox{e-TeX}}
\newrobustcmd*{\pdftex}{pdf\-\tex}
\newrobustcmd*{\xetex}{Xe\-\tex}
\newrobustcmd*{\luatex}{Lua\-\tex}
\newrobustcmd*{\latex}{\LaTeX}%{La\kern-0.07em TeX}
\newrobustcmd*{\pdflatex}{pdf\-\latex}
\newrobustcmd*{\xelatex}{Xe\-\latex}
\newrobustcmd*{\lualatex}{Lua\-\latex}
\newrobustcmd*{\miktex}{Mik\-\tex}
\newrobustcmd*{\texlive}{\tex~live}
\newrobustcmd*{\bibtex}{Bib\kern-0.07em TeX}
\newrobustcmd*{\lppl}{\latex{} Project Public License}
\newrobustcmd*{\pdf}{\acr{PDF}}
\newrobustcmd*{\utf}{\mbox{\acr{UTF}-8}}
\newrobustcmd*{\pgftikz}{PGF/Ti\emph{k}Z}

\pdfstringdefDisableCommands{%
  \def\tex{TeX}%
  \def\etex{e-TeX}%
  \def\xetex{XeTeX}%
  \def\latex{LaTeX}%
  \def\xelatex{XeLaTeX}%
  \def\bibtex{BibTeX}%
  \def\lppl{LaTeX Project Public License}%
  \def\pdf{PDF}%
  \def\utf{UTF-8}%
}

\let\accentcolour\spotcolor

\newcommand*{\allsectionsfont}{\sffamily\accentcolour}

\renewcommand\section{\@startsection {section}{1}{\z@}%
                                     {-3.5ex \@plus -1ex \@minus -.2ex}%
                                     {2.3ex \@plus.2ex}%
                                     {\normalfont\Large\bfseries\allsectionsfont}}
\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
                                       {-3.25ex\@plus -1ex \@minus -.2ex}%
                                       {1.5ex \@plus .2ex}%
                                       {\normalfont\large\bfseries\allsectionsfont}}
\renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}%
                                       {-3.25ex\@plus -1ex \@minus -.2ex}%
                                       {1.5ex \@plus .2ex}%
                                       {\normalfont\normalsize\bfseries\allsectionsfont}}
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
                                      {3.25ex \@plus1ex \@minus.2ex}%
                                      {-1em}%
                                      {\normalfont\normalsize\bfseries\allsectionsfont}}
\renewcommand\subparagraph{\@startsection{subparagraph}{5}{\parindent}%
                                         {3.25ex \@plus1ex \@minus .2ex}%
                                         {-1em}%
                                         {\normalfont\normalsize\bfseries\allsectionsfont}}

% from KOMA-Script
\newcommand*{\@list@extra}{%
  \ifdim\parskip>\z@
    \topsep\z@
    \parsep\parskip
    \itemsep\z@
  \fi
}
\appto\@listi{\@list@extra}
\appto\@listii{\@list@extra}
\appto\@listiii{\@list@extra}
\appto\@listiv{\@list@extra}
\appto\@listv{\@list@extra}
\appto\@listvi{\@list@extra}

\renewcommand*{\verbatimfont}{\ttfamily}
\renewcommand*{\displayverbfont}{\ttfamily}
\renewcommand*{\marglistfont}{\accentcolour\sffamily\small}
\renewcommand*{\margnotefont}{\sffamily\small}
\renewcommand*{\optionlistfont}{\accentcolour\sffamily\displayverbfont}
\renewcommand*{\ltxsyntaxfont}{\ttfamily}
\renewcommand*{\ltxsyntaxlabelfont}{\accentcolour\displayverbfont}
\renewcommand*{\changelogfont}{\normalfont}
\renewcommand*{\changeloglabelfont}{\accentcolour\sffamily\bfseries}
\newcommand*{\stylelistlabelfont}{\accentcolour\sffamily\small}
\newcommand*{\bibfieldformatfont}{\sffamily}
\newcommand*{\bibfieldformatlabelfont}{\accentcolour\bibfieldformatfont\small}

\newenvironment*{stylelist}
  {\list{}{%
     \setlength{\labelwidth}{\marglistwidth}%
     \setlength{\labelsep}{\marglistsep}%
     \setlength{\leftmargin}{0pt}%
     \renewcommand*{\makelabel}[1]{\hss\stylelistlabelfont##1}}%
   \def\styleitem##1{%
     \item[{##1}]%
     \ltd@pdfbookmark{##1}{##1}}}
  {\endlist}

\newenvironment*{bibfieldformatlist}
  {\list{}{%
     \setlength{\labelwidth}{\marglistwidth}%
     \setlength{\labelsep}{\marglistsep}%
     \setlength{\leftmargin}{0pt}%
     \renewcommand*{\makelabel}[1]{\hss\bibfieldformatlabelfont##1}}%
   \def\bibfieldformatitem##1{%
     \item[{##1}]%
     \ltd@pdfbookmark{##1}{##1}}}
  {\endlist}

\newenvironment*{keymarglistbook}
  {\marglist
   \setlength{\itemsep}{0pt}%
   \raggedright
   \let\@@item\item
   \def\keyitem[##1]{%
     \@@item[{##1}]%
     \ltd@pdfbookmark{##1}{##1}}}
  {\endmarglist}

% modified for correct measurements
\def\ltd@option@i#1#2#3#4[#5]{%
  \item[#2]%
  \ltd@pdfbookmark{#1}{#1}%
  \begingroup\raggedright
  \ltd@textverb{=}%
  \settowidth\@tempdimb{\ltd@textverb{=}}%
  \settowidth\@tempdimc{\optionlistfont#2}%
  \ifdim\@tempdimc>\marglistwidth
    \@tempdimc=\dimexpr\@tempdimc-\marglistwidth\relax
  \else
    \@tempdimc=0pt
  \fi
  \@tempdima=\dimexpr\linewidth-\@tempdimb-\@tempdimc\relax
  \ifblank{#4}
    {}
    {\settowidth\@tempdimb{default: #4}%
     \@tempdima=\dimexpr\@tempdima-\@tempdimb-2em\relax}%
  \parbox[t]{\@tempdima}{\raggedright #3}%
  \ifblank{#4}
    {}
    {\hfill default:~#4}%
  \ifblank{#5}
    {}
    {\marginpar{\margnotefont #5}}%
  \par\endgroup
  \nobreak\vspace{\itemsep}}

% inject a label additional to the bookmark so we can link stuff
\let\exltd@pdfbookmark\ltd@pdfbookmark
\def\ltd@pdfbookmark#1#2{%
  \phantomsection\label{exltd@itm@#1}%
  \exltd@pdfbookmark{#1}{#2}}

\blx@inputonce{ext-biblatex-aux.def}{auxiliary code for ext-biblatex}
  {}{}{}{}
\newcommand*{\biblatexversion}{\extblx@requiredbiblatexversion}
\def\exltd@isofydate#1/#2/#3{#1-#2-#3}
\newcommand*{\biblatexdate}{\extblx@requiredbiblatexdate}
\expandafter\def\expandafter\biblatexdate\expandafter{%
  \expandafter\exltd@isofydate\extblx@requiredbiblatexdate}

\AtEndPreamble{%
  \deflength{\marglistwidth}{(\oddsidemargin+2cm)*85/100}}

\newcommand{\tikzmark}[2][]{\tikz[overlay,remember picture] \node (#2) {#1};}

\newcommand*{\tikztextmark}[2]{%
  \tikz[remember picture,baseline,inner sep=0pt]\node [anchor=base] (#1) {#2};}

% *{<cmd>}{<x-shift>}{<y-shift>}
% unstarred version for commands defined by biblatex-ext
% starred version for standard biblatex commands
\def\punctarrow{%
  \@ifstar\punctarrow@ii\punctarrow@i}

\def\punctarrow@i{%
  \def\punctarrow@cmdfont{\bfseries}%
  \def\punctarrow@hyperref##1##2{%
    \hyperref[exltd@itm@##1]{##2}%
  }%
  \punctarrow@iii
}

\def\punctarrow@ii{
  \def\punctarrow@cmdfont{\itshape}%
  \let\punctarrow@hyperref\@secondoftwo
  \punctarrow@iii
}

\def\punctarrow@iii#1#2#3{%
  \ifdimcomp{#2}{<}{0pt}
    {\def\punctarrow@nodeanchor{east}}
    {\def\punctarrow@nodeanchor{west}}%
  \draw[spot,thick,latex-,rounded corners] (#1) |- ++ (#2,#3)
    node[anchor=\punctarrow@nodeanchor,text = black]
    {\punctarrow@hyperref{#1}{\punctarrow@cmdfont\cmd{#1}}};%
}

% By Stefan Kottwitz, see https://tex.stackexchange.com/a/799/35864
\newcommand*\ttjustify{%
  \fontdimen2\font=0.4em% interword space
  \fontdimen3\font=0.2em% interword stretch
  \fontdimen4\font=0.1em% interword shrink
  \fontdimen7\font=0.1em% extra space
  \hyphenchar\font=`\-% allowing hyphenation
}

% no \mbox here, we may have to break things
\renewrobustcmd*{\sty}[1]{{\verbatimfont\ttjustify #1}}
\newrobustcmd*{\blxstyle}[1]{{\verbatimfont\ttjustify #1}}
\newrobustcmd*{\filename}[1]{{\verbatimfont\ttjustify #1}}
\renewrobustcmd*{\bibfield}[1]{\sty{#1}}
\renewrobustcmd*{\opt}[1]{\sty{#1}}
\newrobustcmd*{\optval}[1]{\sty{#1}}
\newrobustcmd*{\bibmacro}[1]{\sty{#1}}
\renewrobustcmd*{\bibtype}[1]{\sty{@#1}}
\renewrobustcmd*{\cmd}[1]{\sty{\textbackslash #1}}
\let\cs\cmd
\newrobustcmd*{\bibfieldformat}[1]{{\bibfieldformatfont #1}}

\newrobustcmd*{\gencode}[1]{{\verbatimfont\ttjustify #1}}

\def\exltd@buildhypercmd@i#1{%
  \expandafter\newrobustcmd\expandafter*\expandafter
    {\csname hyper#1@i\endcsname}[2][]{%
    \hyperref[exltd@itm@##1]{\csname #1\endcsname{##2}}}
  \csdef{hyper#1}{\@dblarg{\csname hyper#1@i\endcsname}}}

\def\exltd@buildhypercmd{\forcsvlist{\exltd@buildhypercmd@i}}

\exltd@buildhypercmd{cmd,opt,bibmacro,len,blxstyle,sty,bibfield,bibfieldformat,
  filename}

\newrobustcmd*{\hyperkvopt}[2]{{%
  \verbatimfont\hyperref[exltd@itm@#1]{#1}\penalty\@M
  \hskip 0em plus 0.15em\relax
  =\penalty\hyphenpenalty
  \hskip 0em plus 0.15em\relax #2}}

\newcommand*{\ctan}{\mkbibacro{CTAN}}
\newcommand*{\gitbaseurl}{https://github.com/moewew/biblatex-ext}
\newcommand*{\extblxversion}{0.13}
\newcommand*{\biber}{Biber}
\newcommand*{\gitissuelink}[1]{%
  \href{\gitbaseurl/issues/#1}{issue \##1 on github}}

\newrobustcmd*{\CSdelim}{%
  \textcolor{spot}{\margnotefont\footnotesize context sensitive}}
\newrobustcmd*{\CSdelimMark}{%
  \leavevmode\marginpar{\CSdelim}}

\newcommand*{\mpdl}{$\langle$}
\newcommand*{\mpdr}{$\rangle$}

\iftutex
  \newcommand*{\hmpdl}{$\langle$}
  \newcommand*{\hmpdr}{$\rangle$}
\else
  \newcommand*{\hmpdl}{$\bm{\langle}$}
  \newcommand*{\hmpdr}{$\bm{\rangle}$}
\fi

\def\textvisiblespace{%
  \raisebox{-2.2pt}{%
    \mbox{\kern.04em\vrule \@height.5ex \@width.12ex}%
    \vbox{\hrule \@width.2em \@height.12ex}%
    \hbox{\vrule \@height.5ex \@width.12ex}%
    \kern.04em}}

% Bourbaki dangerous bend symbol by Heiko Oberdiek
% https://tex.stackexchange.com/users/16967/heiko-oberdiek
% https://tex.stackexchange.com/a/262510/35864
\newcommand*{\dbendsymbol@tikz}{%
  \begin{tikzpicture}[
    line cap=but,
    line join=round,
    x=1.2em,
    line width=2pt,
    y=2*(height("Z")-\pgflinewidth)*(1-sin(10)),
    rotate=-10,
    rounded corners=1.5pt,]
    \draw (.5,.5) node[scale=2,draw,diamond,fill=yellow,color=yellow] {};
    \draw (1, 0) -- (0, 0) -- (1, 1) -- (0, 1);
  \end{tikzpicture}}

\newsavebox{\dbendsymbol@box}
\sbox{\dbendsymbol@box}{\dbendsymbol@tikz}
\newcommand*{\dbendsymbol}{\usebox{\dbendsymbol@box}}

\newcommand*{\warnsymbol@tikz}{%
  \begin{tikzpicture}[
    line cap=but,
    line join=round,
    line width=2pt,
    rounded corners=1.5pt,]
    \node[regular polygon, regular polygon sides=3,
          scale=1.2, inner sep=-.22em,
           draw=red]
      {\raisebox{.26em}{\LARGE\bfseries !}};
  \end{tikzpicture}}

\newsavebox{\warnsymbol@box}
\sbox{\warnsymbol@box}{\warnsymbol@tikz}
\newcommand*{\warnsymbol}{\usebox{\warnsymbol@box}}

\makeatother

\titlepage{%
  title    = {The \sty{biblatex-ext} Bundle},
  subtitle = {Extensions for the \sty{biblatex} standard styles},
  url      = {\gitbaseurl},
  author   = {Moritz Wemheuer},
  email    = {mwemheu@posteo.de},%
  revision = {\extblxversion},
  date     = {\DTMDate{2021-06-08}},
}

\hypersetup{%
  pdftitle    = {The biblatex-ext Bundle},
  pdfsubject  = {Extensions for the \sty{biblatex} standard styles},
  pdfauthor   = {Moritz Wemheuer},
  pdfkeywords = {latex, biblatex, bibtex, bibliography, references, citation},
}

\hyphenation{%
  star-red
  un-star-red
  bib-lio-gra-phy
  white-space
  bib-open-paren
  bib-close-paren
  bib-open-bracket
  bib-close-bracket
  main-title-after-title
  jour-vol-delim
  in-name-before-title
  tikz-picture
  Define-OA-Symbol
}


\begin{document}

\printtitlepage
\tableofcontents

\section{Introduction}\label{sec:int}
\subsection{About}
The \sty{biblatex-ext} bundle provides an extended version of the standard
styles that come with \sty{biblatex}.
For each standard style this bundle provides a style with the same name
prefixed with \blxstyle{ext-} which can be used as a drop-in replacement for the
standard style~-- for example, the replacement for \blxstyle{authoryear-icomp}
is called \hyperblxstyle{ext-authoryear-icomp}.

The aim of the styles of this bundle is to offer a simple interface to change
some of the stylistic decisions made for the standard styles that would
otherwise need cumbersome and tedious redefinitions.
Additionally, some customisation features that were not deemed appropriate
for inclusion in the \sty{biblatex} kernel are provided.
Other than that the styles are as close to the standard styles as possible.
They do not attempt to offer options or commands for customisations that
are already fairly simple to achieve with the tools provided by the standard
styles.\footnote{Please be gentle and allow for a lot of wiggle room for what
exactly \enquote{simple} means. And don't get mad if the principle is not
followed at all times and the occasional solution for things that already are
\enquote{simple enough} pop up here and there.}

The initial motivation for this bundle was what has now become the option
\hyperopt{innamebeforetitle}.
It is fairly straighforward to print the name of the editor of an
\bibtype{incollection} before the \bibfield{booktitle}.
But if one does not want to resort to clever tricks,%
\footnote{See \url{https://tex.stackexchange.com/q/122218/} and
\url{https://tex.stackexchange.com/q/173638/} for example.}
the modifications needed to do this in a stable, safe and clean manner by
redefining the bibliography drivers can easily amass hundred lines of code~--
code you may not want to see in your preamble.
Some contributed \sty{biblatex} styles already place the editor in the
desired position, but you may not want to commit to the other changes implied
by switching to one of those styles.
Especially styles written for the sole purpose of implementing the requirements
of a particular style guide may have to go to great lengths to do so and are
therefore not as easily modified as the standard styles.
The styles of this bundle, on the other hand, try to stay as close to the
standard styles as possible both in output and implementation to allow you
to customise the styles with minimum additional effort over the standard styles.


A few words of warning:
The styles of this bundle are only really useful if you want to use one of their
features to avoid having to go through the lengthy and tedious redefinitions the
standard styles would require.
Before you get involved in modifying the standard styles or one of the styles
of this bundle, you may want to have a look at the host of other styles
available for \sty{biblatex},\fnurl{https://www.ctan.org/topic/biblatex}
maybe you are lucky and the style you are looking for has already been
implemented by someone else.
As was the intention, most methods to modify the standard styles are also
applicable to the styles of this bundle, but you may break some of their
features if you happen to modify something that the \blxstyle{ext-} styles
redefine themselves.
While many contributed \sty{biblatex} styles are examples of good \sty{biblatex}
style coding, this cannot be said of all of the files included in this bundle.
Especially the citation styles for compact citations have to work harder
to implement the citation delimiter feature properly.
So if you want to get inspired for your \sty{biblatex} coding, be warned that
terrible things lurk in the \filename{.cbx} files.
The standard \filename{.cbx} files will give you a much better impression of how
things should be done.


\subsection{Requirements}\label{sec:req}
The use of the styles requires a current version of the \sty{biblatex} package.
At the time of writing the latest version of \sty{biblatex} is
\biblatexversion{} (dated \biblatexdate),
that version is required for the styles to work properly.
A warning will be issued if you use an older version.
You may choose to ignore that warning, but the styles cannot be guaranteed to
work properly in that case:
you might get other warnings or errors, and some features of the style might
just fail silently.

Use of the \biber{} backend is strongly encouraged.
Most of the new features of this bundle do not require \biber{} explicitly in
their implementation, but many \sty{biblatex} standard features only work
properly with \biber{}.

\subsection{Compatibility with earlier versions}\label{sec:backw}
In an ideal world all changes to the styles in this bundle would be fully
backwards compatible. Unfortunately we do not live in this ideal world.
Most changes to this bundle should introduce new features that have little
relevant impact on existing functionality. But the occasional change
may have more lasting consequences and may cause existing customisations to
fail.
In fact all changes have the potential to break someone's code, since
\sty{biblatex} styles have little to no distinction between public and internal
code.
Still, some changes are more likely to be problematic than others and those
should be kept to a minimum. They can, however, be required to move development
forward.

If possible, backwards compatiblity measures that allow old code to
continue to work are in place. Sometimes that is not feasible and in those
cases the next best solution is to warn if old code is used, so please check
the log file for warnings~-- especially after an update.
But at times not even that is possible, so it is always a good idea to consult
the change history after an update and to examine the output with extra
scrutiny.
Higher-level changes are found in the revision history in \cref{sec:log},
more technical changes and commentary can be found in \filename{CHANGES.md},
the full set of changes can be investigated by comparing the tagged and
publicly available source code.

\subsection{Installation}\label{sec:install}
This style bundle is available on \ctan.%
\fnurl{https://ctan.org/pkg/biblatex-ext}
The current release is also available in \miktex{} and \texlive{} 2018 or
newer.
If at all possible you should install this bundle via your \tex{} distribution
(using \miktex{} Console\fnurl{https://miktex.org/howto/miktex-console} or
\gencode{tlmgr} for \texlive
\fnurl{https://www.tug.org/texlive/pkginstall.html}).
If you must install this package manually, get the files from \ctan{}
and install the \filename{.bbx}, \filename{.cbx}, \filename{.def},
\filename{.sty} and \filename{.lua} files preferably to
\path{tex/latex/biblatex-ext} of your local or home \TeX{} tree%
\fnurl{https://texfaq.org/FAQ-inst-wlcf}, the other
files (\path{CHANGES.md}, \path{README.md}, \path{biblatex-ext.tex},
\path{biblatex-ext.pdf} and \path{biblatex-ext-examples.bib}) go into
\path{doc/latex/biblatex-ext}. You may have to refresh your file name database
afterwards, so \tex{} can find the files.

\subsection{License}\label{sec:license}
Permission is granted to copy, distribute and\slash or modify this software
under the terms of the \lppl, version 1.3c%
\fnurl{https://www.latex-project.org/lppl/lppl-1-3c.txt}
or (at your option) any later version%
\fnurl{https://www.latex-project.org/lppl.txt}.
This bundle is maintained by Moritz Wemheuer (\textcopyright 2017--2021).


\subsection{Feedback}\label{sec:feedback}
You can use the \sty{biblatex-ext} project page on GitHub%
\footnote{\url{\gitbaseurl}} to report bugs and
submit suggestions and feature requests, or you can do so via email.

If you do not want to report a bug or request a feature, but are simply in need
of assistance, you might want to consider posting your question on the
\texttt{comp.text.tex} newsgroup or \tex{}~--~\latex{} Stack Exchange.%
\fnurl{https://tex.stackexchange.com/questions/tagged/biblatex}
If after a consultation on one of these sites it turns out you have happened
upon a bug or that you can formulate a request for a new feature that could be
useful, please head over to GitHub or send me an email.

\section{Use}\label{sec:use}
The \sty{biblatex-ext} bundle is a collection of \sty{biblatex} style files.
You can load the styles exactly as you would load the standard styles:
\begin{biblatexcode}
\usepackage[style=(*@\prm{style}@*)]{biblatex}
\end{biblatexcode}
The naming of the styles follows the scheme
\mbox{\blxstyle{ext-}\prm{standard style}}, e.g.,
the style corresponding to \blxstyle{authoryear-icomp} is called
\hyperblxstyle{ext-authoryear-icomp}.

This manual assumes familiarity with the concepts of \sty{biblatex} and does
not attempt to explain any of the standard \sty{biblatex} features, so you may
want to have the \sty{biblatex} documentation%
\fnurl{http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/biblatex.pdf}
at hand to fully appreciate what is going on.
If you are new to \sty{biblatex} the three hundred odd pages of the manual
can be hard to stomach at first, so you may want to have a look at a more
gentle introduction.
Of the many introductory texts and tutorials available on the internet%
\fnurl{https://tex.stackexchange.com/q/13509/35864}
the author particularly likes
Knut Hegna and Dag Langmyhr's \emph{Local Guide to \sty{biblatex}}%
\fnurl{https://www.mn.uio.no/ifi/tjenester/it/hjelp/latex/biblatex-guide.pdf}
and Paul Stanley's \emph{\sty{biblatex}~-- An Easier Read}%
\fnurl{https://github.com/PaulStanley/biblatex-tutorial/releases}.
French speakers may want to consider Maïeul Rouquette's
\foreignlanguage{french}{\emph{(Xe)\LaTeX{} Appliqué aux sciences humaines}}
available on \ctan\fnurl{https://ctan.org/pkg/latex-sciences-humaines}.
If you read German you may be interested in Dominik Waßenhoven's two-part
series \foreignlanguage{ngerman}{\emph{Bibliographien erstellen mit
\sty{biblatex}}} in \foreignlanguage{ngerman}{\emph{Die \TeX nische Komödie}}
2/2008\fnurl{https://archiv.dante.de/DTK/PDF/komoedie_2008_2.pdf} (pp.~53--75)
and 4/2008\fnurl{https://archiv.dante.de/DTK/PDF/komoedie_2008_4.pdf} (pp.~31--51).
Please keep in mind that some of these texts were written a while ago and
that \sty{biblatex} is actively developed: technical details may have changed
and new features make some things easier.

\clearpage
\section{Styles}\label{sec:styles}
This bundle provides an extended version of each standard style as well as a
few new styles.
\subsection{Standard styles}\label{sec:styles:standard}
Please refer to the \sty{biblatex} documentation%
\fnurl{http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/biblatex.pdf}
and the style examples%
\fnurl{http://mirrors.ctan.org/macros/latex/contrib/biblatex/doc/examples/}
for a more detailed description of each standard style.
The relations between the styles are exactly as in their standard counterparts.
The \blxstyle{ext-} styles only build on top of the standard files.
\begin{stylelist}
\styleitem{ext-numeric}
An extended version of the standard \blxstyle{numeric} style for citations with
numeric labels.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-numeric]{biblatex}
\end{lstlisting}
\tcblower
[1, 2, 5, 6, 7]
\end{bibexample}

\styleitem{ext-numeric-comp}
An extended version of the standard \blxstyle{numeric-comp} style.
Similar to \blxstyle{ext-numeric}, but citation labels are
compressed to give \enquote{[1--3]} instead of \enquote{[1, 2, 3]}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-numeric-comp]{biblatex}
\end{lstlisting}
\tcblower
[1, 2, 5--7]
\end{bibexample}

\styleitem{ext-numeric-verb}
An extended version of the standard \blxstyle{numeric-verb} style.
This style is similar to the \blxstyle{numeric} style, but each citation label
is in its own set of brackets: \enquote{[1], [2], [3]}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-numeric-verb]{biblatex}
\end{lstlisting}
\tcblower
[1], [3], [5], [6], [7]
\end{bibexample}

\styleitem{ext-alphabetic}
An extended version of the standard \blxstyle{alphabetic} style for citations
with alphabetic labels derived from author name and year.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-alphabetic]{biblatex}
\end{lstlisting}
\tcblower
[SR98, Knu86c]
\end{bibexample}

\styleitem{ext-alphabetic-verb}
An extended version of the standard \blxstyle{alphabetic-verb} style.
This style is based on \blxstyle{ext-alphabetic}, but like
\blxstyle{ext-numeric-verb} places each citation label in its own pair of
brackets: \enquote{[SR98], [Knu86c]}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-alphabetic-verb]{biblatex}
\end{lstlisting}
\tcblower
[SR98], [Knu86c]
\end{bibexample}

\styleitem{ext-authoryear}
An extended version of the standard \blxstyle{authoryear} style for citations
using author name and year.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde 1998
\end{bibexample}

\styleitem{ext-authoryear-comp}
An extended version of the standard \blxstyle{authoryear-comp} style.
The style is based on the author-year citations of \blxstyle{ext-authoryear},
but several works by the same author are compressed by not displaying the
author multiple times: \enquote{Knuth 1984, 1986} instead of
\enquote{Knuth 1984; Knuth 1986}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-comp]{biblatex}
\end{lstlisting}
\tcblower
Knuth 1984, 1986
\end{bibexample}

\styleitem{ext-authoryear-ibid}
An extended version of the standard \blxstyle{authoryear-ibid} style.
This style is similar to \blxstyle{ext-authoryear}, but repeated citations are
replaced with \enquote{ibidem}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-ibid]{biblatex}
\end{lstlisting}
\tcblower
Knuth 1984\quad ibid.
\end{bibexample}

\styleitem{ext-authoryear-icomp}
An extended version of the standard \blxstyle{authoryear-icomp} style.
This style combines the two styles \blxstyle{ext-authoryear-comp} and
\blxstyle{ext-authoryear-ibid}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-icomp]{biblatex}
\end{lstlisting}
\tcblower
Knuth 1984, 1986 \quad Sigfridsson and Ryde 1998 \quad ibid.
\end{bibexample}

\styleitem{ext-authortitle}
An extended version of the standard \blxstyle{authortitle} style for citations
by author and title.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authortitle]{biblatex}
\end{lstlisting}
\tcblower
Maron, \emph{Animal Triste}
\end{bibexample}

\styleitem{ext-authortitle-comp}
An extended version of the standard \blxstyle{authortitle-comp} style.
This style is based on \blxstyle{ext-authortitle} and compresses several
citations by the same author just like \blxstyle{ext-author\-year-comp}:
\enquote{Aristotle, \emph{Physics}, \emph{Poetics}} instead of
\enquote{Aristotle, \emph{Physics}; Aristotle, \emph{Poetics}}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authortitle-comp]{biblatex}
\end{lstlisting}
\tcblower
Aristotle, \emph{Physics}, \emph{Poetics}
\end{bibexample}

\styleitem{ext-authortitle-ibid}
An extended version of the standard \blxstyle{authortitle-ibid} style.
This style is similar to \blxstyle{ext-authortitle}, but replaces repeated
citations of the same work with \enquote{ibidem}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authortitle-ibid]{biblatex}
\end{lstlisting}
\tcblower
Maron, \emph{Animal Triste}\quad ibid.
\end{bibexample}

\styleitem{ext-authortitle-icomp}
An extended version of the standard \blxstyle{authortitle-icomp} style.
This style combines \blxstyle{ext-authortitle-comp} and
\blxstyle{ext-authortitle-ibid}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authortitle-icomp]{biblatex}
\end{lstlisting}
\tcblower
Aristotle, \emph{Physics}, \emph{Poetics}\quad Maron, \emph{Animal Triste}\quad
ibid.
\end{bibexample}

\styleitem{ext-authortitle-terse}
An extended version of the standard \blxstyle{authortitle-terse} style.
This style is similar to \blxstyle{ext-authortitle}, but the title is omitted
in citations if there is only one work by the relevant author.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authortitle-terse]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde \quad Aristotle, \emph{Physics}; Aristotle, \emph{Poetics}
\end{bibexample}

\styleitem{ext-authortitle-tcomp}
An extended version of the standard \blxstyle{authortitle-tcomp} style.
This style combines \blxstyle{ext-authortitle-terse} and
\blxstyle{ext-authortitle-comp}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authortitle-tcomp]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde \quad Aristotle, \emph{Physics}, \emph{Poetics}
\end{bibexample}

\styleitem{ext-authortitle-ticomp}
An extended version of the standard \blxstyle{authortitle-ticomp} style.
This style combines \blxstyle{ext-authortitle-terse},
\blxstyle{ext-authortitle-comp} and \blxstyle{ext-authortitle-ibid}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authortitle-ticomp]{biblatex}
\end{lstlisting}
\tcblower
Aristotle, \emph{Physics}, \emph{Poetics} \quad Sigfridsson and Ryde \quad ibid.
\end{bibexample}

\styleitem{ext-verbose}
An extended version of the standard \blxstyle{verbose} style.
This style shows the full bibliographic reference the first time a work is
cited.

\styleitem{ext-verbose-ibid}
An extended version of the standard \blxstyle{verbose-ibid} style.
Based on \blxstyle{ext-verbose}, repeated citations to the same work are
replaced with \enquote{ibidem}.

\styleitem{ext-verbose-note}
An extended version of the standard \blxstyle{verbose-note} style.
Based on \blxstyle{ext-verbose} and intended for use in footnotes, subsequent
citations link back to the footnote the entry was cited at first and in full.

\styleitem{ext-verbose-inote}
An extended version of the standard \blxstyle{verbose-inote} style.
Similar to \blxstyle{verbose-note}, but repeated citations to the same work are
replaced with \enquote{ibidem}.

\styleitem{ext-verbose-trad1}
An extended version of the standard \blxstyle{verbose-trad1} style.
This style makes extensive use of scholarly abbreviations and is otherwise
similar to \blxstyle{ext-verbose}.

\styleitem{ext-verbose-trad2}
An extended version of the standard \blxstyle{verbose-trad2} style.
The style is similar to \blxstyle{ext-verbose-inote} and
uses scholarly abbreviations to shorten citations.

\styleitem{ext-verbose-trad3}
An extended version of the standard \blxstyle{verbose-trad3} style.
This style is similar to \blxstyle{ext-verbose-trad2}.
\end{stylelist}

\subsection{New styles}\label{sec:styles:new}
The following styles are not mere extensions of a particular standard style,
instead they implement new combinations or extensions of the concepts available
in the standard styles.
\begin{stylelist}
\styleitem{ext-authoryear-ecomp}
An author-year citation that is even more compact than
\blxstyle{ext-authoryear-comp}, it compresses lists of \bibfield{extradate}
letters from \enquote{Knuth 1986a,b,c} to \enquote{Knuth 1986a\bibrangedash c}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-ecomp]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde 1998 \quad Knuth 1986a\bibrangedash c
\end{bibexample}

\styleitem{ext-authoryear-iecomp}
An author-year citation that is even more compact than
\blxstyle{ext-authoryear-icomp}, it compresses lists of \bibfield{extradate}
letters from \enquote{Knuth 1986a,b,c} to \enquote{Knuth 1986a\bibrangedash c}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-iecomp]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde 1998 \quad ibid.\quad Knuth 1986a\bibrangedash c
\end{bibexample}

\styleitem{ext-authoryear-terse}
An author-year citation style that suppresses years for author lists with only
one work in the bibliography.
This style is like \blxstyle{ext-authortitle-terse}, but it is based on
\blxstyle{ext-authoryear} and not on \blxstyle{ext-authortitle}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-terse]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde \quad Knuth 1984 \quad Knuth 1986
\end{bibexample}

\styleitem{ext-authoryear-tcomp}
A compact author-year citation style that suppresses years for author lists
with only one work in the bibliography.
This style is like \blxstyle{ext-authortitle-tcomp}, but it is based on
\blxstyle{ext-authoryear} and not on \blxstyle{ext-authortitle}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-tcomp]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde \quad Knuth 1984, 1986
\end{bibexample}

\styleitem{ext-authoryear-tecomp}
A compact author-year citation style that combines
\blxstyle{ext-authoryear-tcomp} and \blxstyle{ext-authoryear-ecomp}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-tecomp]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde \quad Knuth 1984, 1986a\bibrangedash c
\end{bibexample}

\styleitem{ext-authoryear-ticomp}
A compact author-year citation style with \enquote{ibidem} function that
suppresses years for author lists with only one work in the bibliography.
This style is like \blxstyle{ext-authortitle-ticomp}, but it is based on
\blxstyle{ext-authoryear} and not on \blxstyle{ext-authortitle}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-ticomp]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde \quad ibid. \quad Knuth 1984, 1986
\end{bibexample}

\styleitem{ext-authoryear-tiecomp}
A compact author-year citation style that combines
\blxstyle{ext-authoryear-ticomp} and \blxstyle{ext-authoryear-iecomp}.
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\usepackage[style=ext-authoryear-tiecomp]{biblatex}
\end{lstlisting}
\tcblower
Sigfridsson and Ryde \quad ibid. \quad Knuth 1984, 1986a\bibrangedash c
\end{bibexample}

\end{stylelist}

\clearpage
\section{Options}\label{sec:opt}
All options of the \sty{biblatex} package are supported and each style supports
the options of its standard counterpart.

\subsection{General options}\label{sec:opt:gen}
Additionally, all styles support the following options in global, per-type and
per-entry scope.
The default values are such that the styles can be used as drop-in replacement
for the standard files without significant changes in output.

\begin{optionlist}
\boolitem[true]{articlein}
Whether or not to display \enquote{in:} before the journal information in
\bibtype{article} entries.
All other entry types are not affected by this option.
If it is desired to remove the \enquote{in:} for more entry types or
a more specific behaviour is required, then it is still going to be
necessary to modify the bibmacro~\bibmacro{in:}.

\begingroup
\makeatletter
\togglefalse{bbx:doi}
\newcommand*{\highlighthere}[1]{%
  \iffieldequalstr{entrykey}{sigfridsson}
    {\textcolor{highlight1}{#1}}
    {\iffieldequalstr{entrykey}{westfahl:space}
       {\textcolor{highlight2}{#1}}
       {#1}}}
\DeclareFieldFormat{highlighthere}{\highlighthere{#1}}
\renewbibmacro*{in:}{%
  \blx@begunit\blx@endunit
  \printtext[highlighthere]{%
    \bibstring{in}}%
  \printunit{\highlighthere{\intitlepunct}}}

\begin{bibexample}[title={\kvopt{articlein}{true}}]
\toggletrue{bbx:articlein}
\exampleprintbib{sigfridsson,westfahl:space}
\end{bibexample}

\begin{bibexample}[title={\kvopt{articlein}{false}}]
\togglefalse{bbx:articlein}
\exampleprintbib{sigfridsson,westfahl:space}
\end{bibexample}
\makeatother
\endgroup

\boolitem[false]{citexref}
This option controls if \bibtype{inbook}, \bibtype{incollection} and
\bibtype{inproceedings} entries that are tied to a parent entry with
\bibfield{xref} or \bibfield{crossref} show all data of their
parent entry inline as usual or if they cite their parent entry
instead \emph{if} the parent is listed in the bibliography as a
separate entry.
With the default setting \kvopt{citexref}{false} the parent is not
cited, the entry is shown as in the standard styles.
If the option is set to \optval{true}, the block following the
\enquote{in:} with the parent data is replaced by a citation to the
parent entry and thus becomes more compact.

\begin{remindbox}
Parent entries will only be cited by this feature
if they appear in the bibliography.

The option itself does \emph{not} cause the parent entry to be added
to the bibliography automatically.
This needs to happen either explicitly by citing the parent
(possibly with \cmd{nocite})
or implicitly via the \opt{minxrefs} or \opt{mincrossrefs} option.
\end{remindbox}

\nocite{westfahl:frontier}
\begin{bibexample}[title={\kvopt{citexref}{true}}]
\makeatletter
\renewbibmacro*{crosscite}[1]{%
  \printtext[highlight1]{%
    \iftoggle{bbx:citexref}
      {\iffieldundef{crossref}
         {\iffieldundef{xref}
            {\usebibmacro{#1}}
            {\printtext{\bbx@xrefcite{\thefield{xref}}}}}
         {\printtext{\bbx@xrefcite{\thefield{crossref}}}}}
      {\usebibmacro{#1}}}}
\makeatother
\toggletrue{bbx:citexref}
\exampleprintbib{westfahl:space,westfahl:frontier}
\end{bibexample}

\begin{bibexample}[title={\kvopt{citexref}{false}}]
\makeatletter
\renewbibmacro*{crosscite}[1]{%
  \printtext[highlight1]{%
    \iftoggle{bbx:citexref}
      {\iffieldundef{crossref}
         {\iffieldundef{xref}
            {\usebibmacro{#1}}
            {\printtext{\bbx@xrefcite{\thefield{xref}}}}}
         {\printtext{\bbx@xrefcite{\thefield{crossref}}}}}
      {\usebibmacro{#1}}}}
\makeatother
\togglefalse{bbx:citexref}
\exampleprintbib{westfahl:space,westfahl:frontier}
\end{bibexample}

The citation produced by this option is implemented via
\cmd{bbx@xrefcite},
which is set up to inherit most styling from \cmd{cite}.
\cmd{bbx@xrefcite} can be modified as usual
(and independent of \cmd{cite})
if the delimiter context alias is removed.
\begin{bibexample}[enhanced,
  title={Example customisation of \cmd{bbx@xrefcite}}]
\begin{lstlisting}[style=extblxstylelatex]
\UndeclareDelimcontextAlias{bbx@xrefcite}
\DeclareInnerCiteDelims{bbx@xrefcite}{\bibopenparen}{\bibcloseparen}
\end{lstlisting}
\tcblower
\makeatletter
\renewbibmacro*{crosscite}[1]{%
  \printtext[highlight1]{%
    \iftoggle{bbx:citexref}
      {\iffieldundef{crossref}
         {\iffieldundef{xref}
            {\usebibmacro{#1}}
            {\printtext{\bbx@xrefcite{\thefield{xref}}}}}
         {\printtext{\bbx@xrefcite{\thefield{crossref}}}}}
      {\usebibmacro{#1}}}}
\makeatother
\UndeclareDelimcontextAlias{bbx@xrefcite}
\DeclareInnerCiteDelims{bbx@xrefcite}{\bibopenparen}{\bibcloseparen}
\toggletrue{bbx:citexref}
\exampleprintbib{westfahl:space,westfahl:frontier}
\end{bibexample}

The bibliography macro that prints the citation in \cmd{bbx@xrefcite}
is called \bibmacro{bbx:inxrefcite}.
By default this bibliography macro just expands to the bibliography
macro \bibmacro{cite}.
In some cases it might be easier to obtain the desired result by
redefining this bibliography macro than by redefining the complete
citation command \cmd{bbx@xrefcite} with \cmd{DeclareCiteCommand}.
\begin{remindbox}
For general citation commands
this strategy of only changing the bibliography macro and not
the complete citation command will not always result in
the expected output, but in the context of \opt{citexref},
where we have control over how exactly the citation command is going
to be used, we can sometimes use this shortcut.
\end{remindbox}

The following example shows the standard behaviour of \opt{citexref}
with a numeric style and a customisation involving
\bibmacro{bbx:inxrefcite} that emulates the output of \cmd{textcite}.

\begin{bibexample}[enhanced,
  title={Standard behaviour of \cmd{bbx@xrefcite}
         with \blxstyle{ext-numeric}}]
\begin{lstlisting}[style=extblxstylelatex]
%\usepackage[style=ext-numeric, citexref=true]{biblatex}
\end{lstlisting}
\tcblower
\makeatletter
\renewbibmacro*{crosscite}[1]{%
  \printtext[highlight1]{%
    \iftoggle{bbx:citexref}
      {\iffieldundef{crossref}
         {\iffieldundef{xref}
            {\usebibmacro{#1}}
            {\printtext{\bbx@xrefcite{\thefield{xref}}}}}
         {\printtext{\bbx@xrefcite{\thefield{crossref}}}}}
      {\usebibmacro{#1}}}}
\makeatother
\UndeclareDelimcontextAlias{bbx@xrefcite}
\DeclareOuterCiteDelims{bbx@xrefcite}{\bibopenbracket}{\bibclosebracket}
\toggletrue{bbx:citexref}
% emulate all the 'numeric'/default behaviour
\DeclareNameAlias{sortname}{given-family}
\renewbibmacro*{author}{%
  \ifboolexpr{
    test \ifuseauthor
    and
    not test {\ifnameundef{author}}
  }
    {\printnames{author}%
     \iffieldundef{authortype}
       {}
       {\setunit{\printdelim{authortypedelim}}%
        \usebibmacro{authorstrg}}}
    {}}
\renewbibmacro*{editor}{%
  \ifboolexpr{
    test \ifuseeditor
    and
    not test {\ifnameundef{editor}}
  }
    {\printnames{editor}%
     \setunit{\printdelim{editortypedelim}}%
     \usebibmacro{editorstrg}%
     \clearname{editor}}
    {}}
\renewbibmacro*{editor+others}{%
  \ifboolexpr{
    test \ifuseeditor
    and
    not test {\ifnameundef{editor}}
  }
    {\printnames{editor}%
     \setunit{\printdelim{editortypedelim}}%
     \usebibmacro{editor+othersstrg}%
     \clearname{editor}}
    {}}
\renewbibmacro*{date}{\printdate}%
\renewbibmacro*{cite}{%
  \printtext[bibhyperref]{%
    \printfield{labelprefix}%
    \printfield{labelnumber}}}
\exampleprintbib[env=bibliographyNUM]{westfahl:space,westfahl:frontier}
\end{bibexample}

\begin{bibexample}[enhanced,
  title={\cmd{textcite}-like behaviour of \cmd{bbx@xrefcite}
         with \blxstyle{ext-numeric}}]
\begin{lstlisting}[style=extblxstylelatex]
%\usepackage[style=ext-numeric, citexref=true]{biblatex}

\UndeclareCiteDelims{bbx@xrefcite}
\DeclareDelimcontextAlias{bbx@xrefcite}{textcite}

\renewbibmacro*{bbx:inxrefcite}{%
  \usebibmacro{textcite:init}%
  \usebibmacro{textcite}%
  \usebibmacro{textcite:postnote}}
\end{lstlisting}
\tcblower
\makeatletter
\renewbibmacro*{crosscite}[1]{%
  \printtext[highlight1]{%
    \iftoggle{bbx:citexref}
      {\iffieldundef{crossref}
         {\iffieldundef{xref}
            {\usebibmacro{#1}}
            {\printtext{\bbx@xrefcite{\thefield{xref}}}}}
         {\printtext{\bbx@xrefcite{\thefield{crossref}}}}}
      {\usebibmacro{#1}}}}
% emulate all the 'numeric'/default behaviour
\DeclareNameAlias{sortname}{given-family}
\renewbibmacro*{author}{%
  \ifboolexpr{
    test \ifuseauthor
    and
    not test {\ifnameundef{author}}
  }
    {\printnames{author}%
     \iffieldundef{authortype}
       {}
       {\setunit{\printdelim{authortypedelim}}%
        \usebibmacro{authorstrg}}}
    {}}
\renewbibmacro*{editor}{%
  \ifboolexpr{
    test \ifuseeditor
    and
    not test {\ifnameundef{editor}}
  }
    {\printnames{editor}%
     \setunit{\printdelim{editortypedelim}}%
     \usebibmacro{editorstrg}%
     \clearname{editor}}
    {}}
\renewbibmacro*{editor+others}{%
  \ifboolexpr{
    test \ifuseeditor
    and
    not test {\ifnameundef{editor}}
  }
    {\printnames{editor}%
     \setunit{\printdelim{editortypedelim}}%
     \usebibmacro{editor+othersstrg}%
     \clearname{editor}}
    {}}
\renewbibmacro*{date}{\printdate}%
\renewbibmacro*{cite}{%
  \printtext[bibhyperref]{%
    \printfield{labelprefix}%
    \printfield{labelnumber}}}
\renewbibmacro*{textcite}{%
  \iffieldequals{namehash}{\cbx@lasthash}
    {\setunit{\multicitedelim}}
    {\ifnameundef{labelname}
       {\printfield[citetitle]{labeltitle}}
       {\printnames{labelname}}%
     \setunit*{\printdelim{namelabeldelim}}%
     \printtext{\bibopenbracket}\global\booltrue{cbx:parens}%
     \stepcounter{textcitecount}%
     \savefield{namehash}{\cbx@lasthash}}%
  \ifnumequal{\value{citecount}}{1}
    {\usebibmacro{prenote}}
    {}%
  \usebibmacro{cite}%
  \setunit{%
    \ifbool{cbx:parens}
      {\bibclosebracket\global\boolfalse{cbx:parens}}
      {}%
    \textcitedelim}}
\newbibmacro*{textcite:init}{%
  \ifnumless{\value{multicitecount}}{2}
    {\global\boolfalse{cbx:parens}%
     \global\undef\cbx@lasthash}
    {\global\undef\cbx@lasthash}}
\renewbibmacro*{textcite:postnote}{%
  \usebibmacro{postnote}%
  \ifthenelse{\value{multicitecount}=\value{multicitetotal}}
    {\setunit{}%
     \printtext{%
       \ifbool{cbx:parens}
         {\bibclosebracket\global\boolfalse{cbx:parens}}
         {}}}
    {\setunit{%
       \ifbool{cbx:parens}
         {\bibclosebracket\global\boolfalse{cbx:parens}}
         {}%
       \textcitedelim}}}
\makeatother
\UndeclareCiteDelims{bbx@xrefcite}
\DeclareDelimcontextAlias{bbx@xrefcite}{textcite}
\renewbibmacro*{bbx:inxrefcite}{%
  \usebibmacro{textcite:init}%
  \usebibmacro{textcite}%
  \usebibmacro{textcite:postnote}}
\toggletrue{bbx:citexref}
\exampleprintbib[env=bibliographyNUM]{westfahl:space,westfahl:frontier}
\end{bibexample}


\boolitem[false]{innamebeforetitle}
Whether or not the \bibfield{editor} is moved before the
\bibfield{booktitle} field for \bibtype{incollection}
and \bibtype{inproceedings} entries.

\begin{remindbox}[breakable]
  This option does \emph{not} influence the position of the
  \bibfield{editor} field for \bibtype{inbook} entries.

  The primary name connected to a \bibtype{book} entry is its
  \bibfield{author}, which for \bibtype{inbook} entries normally
  corresponds to the \bibfield{bookauthor}
  (usually \bibfield{author} and \bibfield{bookauthor} will be the
   same for \bibfield{inbook} entries) and that is the name one
  would normally expect to see before the title.
  In most cases where one wants the \bibfield{editor} to appear before
  the \bibfield{booktitle}, the entry in question is
  an~\bibtype{incollection} or~\bibtype{inproceedings}.
\end{remindbox}

\begin{bibexample}[title={\kvopt{innamebeforetitle}{true}}]
\makeatletter
\renewbibmacro*{bbx:in:editor}[1]{%
  \ifboolexpr{
    test \ifuseeditor
    and
    not test {\ifnameundef{editor}}
  }
    {\printtext[highlight1]{%
       \ifboolexpr{togl {bbx:innameidem} and test {\bbx@ineditoridem}}
         {\bibstring[\mkibid]{idem\thefield{gender}}}
         {\printnames[ineditor]{editor}}%
       \setunit{\printdelim{editortypedelim}}%
       \usebibmacro{#1}}%
     \clearname{editor}}
    {}}
\makeatother
\toggletrue{bbx:innamebeforetitle}
\exampleprintbib{pines}
\end{bibexample}

\begin{bibexample}[title={\kvopt{innamebeforetitle}{false}}]
\renewbibmacro*{byeditor+others}{%
  \ifnameundef{editor}
    {}
    {\printtext[highlight1]{%
       \usebibmacro{byeditor+othersstrg}%
       \setunit{\addspace}%
       \printnames[byeditor]{editor}%
       \newunit}
     \clearname{editor}}%
  \usebibmacro{byeditorx}%
  \usebibmacro{bytranslator+others}}
\togglefalse{bbx:innamebeforetitle}
\exampleprintbib{pines}
\end{bibexample}

\boolitem[false]{innameidem}
Whether or not the \bibfield{editor} of the \bibfield{booktitle}
for the entry types \bibtype{inbook}, \bibtype{incollection} and
\bibtype{inproceedings} is replaced by \enquote{idem} in case the
\bibfield{editor} and \bibfield{author} name lists coincide.
This option only has an effect if \hyperopt{innamebeforetitle} is set to
\optval{true}.

\begin{bibexample}[title={\kvopt{innameidem}{true}}
  {\small (and \kvopt{innamebeforetitle}{true})}]
\togglefalse{bbx:isbn}
\makeatletter
\renewbibmacro*{bbx:in:editor}[1]{%
  \ifboolexpr{
    test \ifuseeditor
    and
    not test {\ifnameundef{editor}}
  }
    {\printtext[highlight1]{%
       \ifboolexpr{togl {bbx:innameidem} and test {\bbx@ineditoridem}}
         {\bibstring[\mkibid]{idem\thefield{gender}}}
         {\printnames[ineditor]{editor}}%
       \setunit{\printdelim{editortypedelim}}%
       \usebibmacro{#1}%
       \clearname{editor}}}
    {}}
\makeatother
\toggletrue{bbx:innamebeforetitle}\toggletrue{bbx:innameidem}
\exampleprintbib{gaonkar:in}
\end{bibexample}

\begin{bibexample}[title={\kvopt{innameidem}{false}}
  {\small (and \kvopt{innamebeforetitle}{true})}]
\togglefalse{bbx:isbn}
\makeatletter
\renewbibmacro*{bbx:in:editor}[1]{%
  \ifboolexpr{
    test \ifuseeditor
    and
    not test {\ifnameundef{editor}}
  }
    {\printtext[highlight1]{%
       \ifboolexpr{togl {bbx:innameidem} and test {\bbx@ineditoridem}}
         {\bibstring[\mkibid]{idem\thefield{gender}}}
         {\printnames[ineditor]{editor}}%
       \setunit{\printdelim{editortypedelim}}%
       \usebibmacro{#1}%
       \clearname{editor}}}
    {}}
\makeatother
\toggletrue{bbx:innamebeforetitle}\togglefalse{bbx:innameidem}
\exampleprintbib{gaonkar:in}
\end{bibexample}


\boolitem[false]{maintitleaftertitle}
Whether or not the \bibfield{maintitle} is printed after the
\bibfield{title} or \bibfield{booktitle} of the work.
If \opt{maintitleaftertitle} is \optval{true}, the \bibfield{volume} field will
be printed with the \hyperbibfieldformat{volumeof} format.

\begingroup
\makeatletter
\renewbibmacro*{maintitle+title}{%
  \blx@begunit\blx@endunit
   \iftoggle{bbx:maintitleaftertitle}
     {}
     {\iffieldsequal{maintitle}{title}
        {\clearfield{maintitle}%
         \clearfield{mainsubtitle}%
         \clearfield{maintitleaddon}}
        {\printtext[highlight1]{%
           \iffieldundef{maintitle}
             {}
             {\usebibmacro{maintitle}%
              \newunit\newblock
              \iffieldundef{volume}
                {}
                {\printfield{volume}%
                 \printfield{part}%
                 \setunit{\maintitletitledelim}}}}}}%
  \printtext[highlight2]{\usebibmacro{title}\blx@begunit\blx@endunit}%
  \printunit{}%
   \iftoggle{bbx:maintitleaftertitle}
     {\iffieldsequal{maintitle}{title}
        {\clearfield{maintitle}%
         \clearfield{mainsubtitle}%
         \clearfield{maintitleaddon}}
        {\iffieldundef{maintitle}
           {}
           {\setunit{\titlemaintitledelim}%
            \printtext[highlight1]{%
              \iffieldundef{volume}
                {}
                {\printfield[volumeof]{volume}%
                 \printfield{part}%
                 \setunit{\addspace}%
                 \bibstring{ofseries}%
                 \setunit{\addspace}}%
              \usebibmacro{maintitle}}}}
       {}}%
  \newunit}%
\renewcommand*{\maintitletitledelim}{\highlight{\addcolon\space}}
\makeatother
\begin{bibexample}[title={\kvopt{maintitleaftertitle}{true}}]
\togglefalse{bbx:isbn}
\toggletrue{bbx:maintitleaftertitle}
\exampleprintbib{knuth:ct:a}
\end{bibexample}

\begin{bibexample}[title={\kvopt{maintitleaftertitle}{false}}]
\togglefalse{bbx:isbn}
\togglefalse{bbx:maintitleaftertitle}
\exampleprintbib{knuth:ct:a}
\end{bibexample}
\endgroup
\end{optionlist}

\subsection{Style-specific options}\label{sec:opt:style}
\begin{optionlist}
\optitem[true]{dashed}{\optval{true}, \optval{false}, \optval{fullhash},
                       \optval{bibnamehash}}

The \opt{dashed} option of the \hyperblxstyle[ext-authoryear]{authoryear}- and
\hyperblxstyle[ext-authortitle]{authortitle}-like bibliography styles allows for
finer control over the dashes than in the standard styles.
The option is available globally and additionally on a per-type and per-entry
level.

This option controls whether or not recurring lists of authors/editors in the
bibliography are replaced with a dash.
The standard values \optval{true} and \optval{false} are still valid and give
the exact same output as in the standard styles.
This means that the output is fully compatible with the standard styles.
The new values \optval{fullhash} and \optval{bibnamehash} differ in how exactly
they determine if a list of authors/editors is the same as the previous.
\begin{valuelist}
\item[true] An alias for \optval{fullhash}.
\item[false] Disable this feature.
\item[bibnamehash] Replace recurring name lists with a dash.
                   Compare name lists using \bibfield{bib\-name\-hash}, taking
                   into account only names that are actually listed in the
                   bibliography account.
\item[fullhash] Replace recurring name lists with a dash.
                Compare name lists using \bibfield{fullhash}, taking into
                account all names in the list, even those that are truncated
                and do not appear in the bibliography.
\end{valuelist}


\begin{refsection}
\makeatletter
Assuming \kvopt{maxnames}{1} and no name list disambiguation
(\kvopt{uniquelist}{false}), the four entries
\inputexamplebibfile[listing options={linerange={1-14,16-20,22-22},
                                      style = extblxstylebibtex}]
                    {biblatex-ext-examples.bib}
give
\renewcommand*{\bibnamedash}{\textbf{\textemdash\addspace}}
\DeclareFieldFormat{highlighthere}{%
  \iffieldequalstr{entrykey}{elk:einio}
    {\highlight[1]{#1}}
    {\iffieldequalstr{entrykey}{appleby:abl}
       {\highlight[2]{#1}}
       {#1}}}
\renewbibmacro*{author}{%
  \printtext[highlighthere]{%
  \ifboolexpr{
    test \ifuseauthor
    and
    not test {\ifnameundef{author}}
  }
    {\usebibmacro{bbx:dashcheck}
       {\printtext{\bibnamedash}}
       {\usebibmacro{bbx:savehash}%
        \printnames{author}}%
        \iffieldundef{authortype}
          {\setunit{\printdelim{nameyeardelim}}}
          {\setunit{\printdelim{authortypedelim}}}%
     \iffieldundef{authortype}
       {}
       {\usebibmacro{authorstrg}%
        \setunit{\printdelim{nameyeardelim}}}}%
    {\global\undef\bbx@lasthash
     \usebibmacro{labeltitle}%
     \setunit*{\printdelim{nonameyeardelim}}}}%
  \usebibmacro{date+extradate}}
\let\ExecuteBibliographyOptions\@gobble
\nocite{elk:bronto,elk:einio,appleby:abl,appleby:civ}
\begin{bibexample}[title={\kvopt{dashed}{false}}]
\csuse{extblx@opt@dashed@false}
\printbibliography[heading=none]
\end{bibexample}

\begin{bibexample}[title={\kvopt{dashed}{bibnamehash}}]
\csuse{extblx@opt@dashed@bibnamehash}
\printbibliography[heading=none]
\end{bibexample}

\begin{bibexample}[title={\kvopt{dashed}{fullhash}}]
\csuse{extblx@opt@dashed@fullhash}
\printbibliography[heading=none]
\end{bibexample}
\makeatother
\end{refsection}
With \kvopt{dashed}{bibnamehash} the dash replaces the name list if they are
indistinguishable in the bibliography, while with \kvopt{dashed}{fullhash} the
lists are only replaced if they are indistinguishable in the data source.



\optitem[false]{introcite}{\optval{false}, \optval{plain}, \optval{label}}

\begin{warnbox}
The \opt{introcite} option is available for the bibliography styles of the
\hyperblxstyle[ext-authoryear]{authoryear} and
\hyperblxstyle[ext-authortitle]{authortitle} family.
It cannot be used with citation styles of the
\hyperblxstyle[ext-verbose]{verbose} family, where
it may produce undesired output or errors.
The option is available globally and on a per-type and per-entry level, where
only the values \optval{plain} (and the default \optval{false}) are supported.
\end{warnbox}

This option controls whether or not the citation label is repeated in the
bibliography.
There are two possible output formats.
\begin{valuelist}
\item[false] Do not show the citation label in the bibliography.
\item[plain] Show the citation label at the beginning of an entry.
\item[label] Show the citation label as the label of a list similar to the
             \hyperblxstyle[ext-numeric]{numeric} or
             \hyperblxstyle[ext-alphabetic]{alphabetic} styles.
\end{valuelist}

The difference between \optval{plain} and \optval{label} is that the former
simply prints the citation label at the beginning of the entry, while the latter
prints the citation label similar to the item labels in a list or the numeric
labels in a \hyperblxstyle[ext-numeric]{numeric} bibliography.

\begingroup
\togglefalse{bbx:doi}
\setlength{\introcitewidth}{5.5\biblabelsep}
\DeclareFieldFormat{bbx@introcite}{\highlight{#1}}
\renewcommand*{\introcitepunct}{\highlight{\addcolon}\space}
\makeatletter
\begin{bibexample}[title={\kvopt{introcite}{false}}]
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@false}
\exampleprintbib{sigfridsson,knuth:ct:a,knuth:ct:b}
\end{bibexample}

\begin{bibexample}[title={\kvopt{introcite}{plain}}]
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@plain}
\exampleprintbib{sigfridsson,knuth:ct:a,knuth:ct:b}
\end{bibexample}

\begin{bibexample}[title={\kvopt{introcite}{label}}]
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@label}
\exampleprintbib{sigfridsson,knuth:ct:a,knuth:ct:b}
\end{bibexample}
\makeatother
\endgroup


The label produced by the \optval{plain} option can be customised as follows.
\begin{ltxsyntax}
\csitem{introcitepunct}

The punctuation inserted between the label and the
rest of the entry with \kvopt{introcite}{plain}.
The default value is a colon followed by a space.
\begin{bibexample}
\togglefalse{bbx:doi}
\renewcommand*{\introcitepunct}{\highlight{\textbf{\addcolon}\textvisiblespace}}
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@plain}
\exampleprintbib{sigfridsson}
\end{bibexample}
\end{ltxsyntax}

\begin{keymarglistbook}
\keyitem[bbx:introcite:plain:keeprelated] This toggle controls whether or
  not the citation label is also repeated for default related entries.
  The default value \optval{false} suppresses the label for related entries.
\begin{bibexample}[title={\gencode{\string\togglefalse\{%
  bbx:introcite:plain:keeprelated\}} (default)}]
\togglefalse{bbx:doi}
\csletcs{extblx@introcite}{extblx@opt@introcite@plain}
\exampleprintbib{vizedom:related}
\end{bibexample}
\begin{bibexample}[title={\gencode{\string\toggletrue\{%
  bbx:introcite:plain:keeprelated\}}}]
\toggletrue{bbx:introcite:plain:keeprelated}
\renewbibmacro*{related:init}{%
  \csundef{bbx:relatedloop}%
  \iftoggle{bbx:introcite:plain:keeprelated}{%
    \DeclareFieldFormat{bbx@introcite}{\highlight{##1}}%
    \renewcommand*{\introcitepunct}{\highlight{\addcolon}\space}%
  }{\renewbibmacro{introcite:plain}{}}}
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@plain}
\exampleprintbib{vizedom:related}
\end{bibexample}
Note that the implementation of some related types automatically suppresses
the introcite label~-- or rather, does not add the label in the first place.
That means that the resulting bibliography should be checked for consistency
if the toggle is set to \optval{true}.
\end{keymarglistbook}

The \optval{label} option can be configured to not allow the label to run into
the remaining bibliography entry thus creating the appearance of a tabular-like
bibliography.
The citation label is not broken across lines, instead it moves the entry text
into the next line with \cmd{introcitebreak} if the width of the citation is
greater than \len{introcitewidth}.

\begin{ltxsyntax}
\lenitem{introcitewidth} The maximum width of the citation label.
  The initial value is 8 times \len{biblabelsep}.
\lenitem{introcitesep} This length sets the minimal space between the end of the
  citation label and the beginning of the rest of the entry.
  The initial value is \len{biblabelsep}.
\csitem{introcitebreak} The command to execute if a citation label exceeds
  \len{introcitewidth}. The default is \cs{leavevmode}\cs{newline}.
\end{ltxsyntax}

\makeatletter
\togglefalse{bbx:doi}
\begingroup
\setlength{\introcitewidth}{4.2\biblabelsep}
\setlength{\introcitesep}{3.8\biblabelsep}
\begin{bibexample}[enhanced, title={Lengths for \kvopt{introcite}{label}},
overlay={%
  \draw[highlight1, line width=.24mm,|-|] (frame.west)++(5.5mm,-.38cm) --
    node [at end, below=1pt] {\len{introcitewidth}} ++
    (\introcitewidth,0);
  \draw[highlight2, line width=.24mm,|-|] (frame.west)++
    (5.5mm+\introcitewidth,-.8mm) -- node [at start, above=2pt]
    {\len{introcitesep}} ++ (\introcitesep,0);
  \draw[highlight2, line width=.24mm,|-|] (frame.west)++
    (5.5mm+\introcitewidth,2.32cm) -- ++ (\introcitesep,0);
}
]
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@label}
\exampleprintbib{sigfridsson,coleridge,geer}
\end{bibexample}
\endgroup

\begin{bibexample}[enhanced, breakable,
  title={\kvopt{introcite}{label} with empty \cs{introcitebreak}}]
\begin{lstlisting}[style=extblxstylelatex]
%\usepackage[..., introcite=label]{biblatex}
\renewcommand*{\introcitebreak}{}
\end{lstlisting}
\tcblower
\renewcommand*{\introcitebreak}{}
\setlength{\introcitewidth}{1.8cm}
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@label}
\exampleprintbib{coleridge,geer}
\end{bibexample}

\begin{bibexample}[enhanced, breakable,
  title={\kvopt{introcite}{label} with \len{introcitewidth} set to zero
  and \len{introcitesep} equal to \len{bibhang}}]
\begin{lstlisting}[style=extblxstylelatex]
%\usepackage[..., introcite=label]{biblatex}
\setlength{\introcitewidth}{0pt}
\setlength{\introcitesep}{\bibhang}
\end{lstlisting}
\tcblower
\setlength{\introcitewidth}{0pt}
\setlength{\introcitesep}{\bibhang}
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@label}
\exampleprintbib{sigfridsson,geer}
\end{bibexample}
\makeatother

In order to reproduce the citation label accurately in the bibliography,
some initialisation and housekeeping needs to be done.
\begin{ltxsyntax}
\cmditem{AtIntrocite}{code}
\cmditem*{AtIntrocite}*{code}

Appends the \prm{code} to an internal hook executed when initializing
\cmd{introcite}.
The starred variant of the command clears the initialisation hook,
so the defaults can be overwritten.
The default settings execute the internal macro
\cs{extblx@introcite@init}, which makes sure that the label produced
for introcite takes into account the citation settings and suppresses
unwanted citation tracking and hyperlinks.
\end{ltxsyntax}

The appearance of the citation label can be customised mostly as if it were
produced by a true citation command called \cmd{bbx@introcite}.
The delimiter context is \gencode{bbx@introcite}, the inner citation delimiters
can be accessed as \gencode{bbx@introcite} as well.
The label does not have outer citation delimiters, you can use the wrapper
field format \gencode{bbx@introcite} instead. In fact this approach is more
versatile than the outer citation delimiter feature (see the discussion in
\cref{sec:opt:citedelims}).
The default settings for \cmd{bbx@introcite} emulate the output of \cmd{cite}.

\begin{bibexample}[breakable,
  title={Example customisations for \kvopt{introcite}{plain}}]
\begin{lstlisting}[style=extblxstylelatex]
%\usepackage[..., introcite=plain]{biblatex}
\DeclareFieldFormat{bbx@introcite}{\mkbibbrackets{#1}}
\DeclareDelimFormat[bbx@introcite]{nameyeardelim}{\addcomma\space}
\UndeclareInnerCiteDelims{bbx@introcite}
\renewcommand*{\introcitepunct}{\quad}
\end{lstlisting}
\tcblower
\DeclareFieldFormat{bbx@introcite}{\mkbibbrackets{#1}}
\DeclareDelimFormat[bbx@introcite]{nameyeardelim}{\addcomma\space}
\UndeclareInnerCiteDelims{bbx@introcite}
\renewcommand*{\introcitepunct}{\quad}
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@plain}
\exampleprintbib{sigfridsson}
\end{bibexample}

\begin{bibexample}[breakable,
  title={Example customisations for \kvopt{introcite}{plain}}]
\begin{lstlisting}[style=extblxstylelatex]
%\usepackage[..., introcite=plain]{biblatex}
\DeclareFieldFormat{bbx@introcite}{\mkbibbold{#1}}
\renewcommand*{\introcitepunct}{\\}
\end{lstlisting}
\tcblower
\DeclareFieldFormat{bbx@introcite}{\mkbibbold{#1}}
\renewcommand*{\introcitepunct}{\\}
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@plain}
\exampleprintbib{sigfridsson}
\end{bibexample}

\begin{bibexample}[breakable,
  title={Example customisations for \kvopt{introcite}{label}}]
\begin{lstlisting}[style=extblxstylelatex]
%\usepackage[..., introcite=label]{biblatex}
\DeclareFieldFormat{bbx@introcite}{\mkbibbold{#1}}
\DeclareDelimFormat[bbx@introcite]{nameyeardelim}{\addspace}
\DeclareInnerCiteDelims{bbx@introcite}{\bibopenparen}{\bibcloseparen}
\setlength{\introcitewidth}{0pt}
\setlength{\introcitesep}{\bibhang}
\end{lstlisting}
\tcblower
\DeclareFieldFormat{bbx@introcite}{\mkbibbold{#1}}
\DeclareDelimFormat[bbx@introcite]{nameyeardelim}{\addspace}
\DeclareInnerCiteDelims{bbx@introcite}{\bibopenparen}{\bibcloseparen}
\setlength{\introcitewidth}{0pt}
\setlength{\introcitesep}{\bibhang}
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@label}
\exampleprintbib{coleridge,geer}
\end{bibexample}

If you are using an author-year citation style together with
\kvopt{introcite}{label} or \kvopt{introcite}{label}, you may be interested in
combining this with \kvopt{bibstyle}{ext-authortitle} instead to move the year
back to the end of the entry.
\makeatletter
\begin{bibexample}[breakable, enhanced, title={\kvopt{introcite}{label} with
  \kvopt{style}{ext-authoryear} and \kvopt{bibstyle}{ext-authortitle}}]
\begin{lstlisting}[style=extblxstylelatex]
%\usepackage[
%  citestyle=ext-authoryear,
%  bibstyle=ext-authortitle,
%  sorting=nyt,
%  introcite=label,
%  ...
%]{biblatex}
\setlength{\introcitewidth}{0pt}
\setlength{\introcitesep}{\bibhang}
\end{lstlisting}
\tcblower
\setlength{\introcitewidth}{0pt}
\setlength{\introcitesep}{\bibhang}
\bbx@opt@mergedate@false
\renewbibmacro*{author}{%
  \ifboolexpr{
    test \ifuseauthor
    and
    not test {\ifnameundef{author}}
  }
    {\usebibmacro{bbx:dashcheck}
       {\bibnamedash}
       {\printnames{author}%
        \setunit{\printdelim{authortypedelim}}%
        \usebibmacro{bbx:savehash}}%
     \usebibmacro{authorstrg}}
    {\global\undef\bbx@lasthash}}
\csuse{extblx@opt@dashed@false}
\csletcs{extblx@introcite}{extblx@opt@introcite@label}
\exampleprintbib{sigfridsson,geer}
\end{bibexample}
\makeatother
\end{optionlist}

\clearpage
\section{Further Customisations}\label{sec:opt:cust}
Aside from the new options mentioned in the last section the styles of this
bundle also offer additional field formats, punctuation and delimiter commands,
a new citation delimiter interface and a few new bibliography macros.

The citation delimiter interface is a novel feature of \sty{biblatex-ext},
but for the other subsections familiarity with the underlying \sty{biblatex}
concepts is assumed.
Some of this is easier understood by looking at the source code directly,
so it might not be a bad idea to have \filename{ext-standard.bbx} open when
perusing this section of the manual.

\subsection{Field formats}\label{sec:opt:field}
The styles of this bundle offer customisable field formats
in a few places where the standard styles employ hard-coded formatting
directives instead.
Field formats can be modified with \cmd{DeclareFieldFormat}.

\begin{bibfieldformatlist}

\bibfieldformatitem{biblabeldate} The format for the labeldate in the
  bibliography for \hyperblxstyle[ext-authoryear]{authoryear}-like styles.
  The default is to wrap the date in round brackets.
  \begin{bibexample}
  \togglefalse{bbx:doi}
  \DeclareFieldFormat{biblabeldate}{\highlight{\bibopenparen}\highlight[2]{#1}%
    \highlight{\bibcloseparen}}
  \exampleprintbib{sigfridsson}
  \end{bibexample}
\begin{bibexample}[title={Customisation example for
  \bibfieldformat{biblabeldate}}]
\begin{lstlisting}[style=extblxstylelatex]
\DeclareFieldFormat{biblabeldate}{|1#11|}
\DeclareDelimFormat[bib]{nameyeardelim}{|2\addperiod\space2|}
\end{lstlisting}
\tcblower
\togglefalse{bbx:doi}
\DeclareFieldFormat{biblabeldate}{\highlight[1]{#1}}
\DeclareDelimFormat[bib]{nameyeardelim}{\highlight[2]{\textbf{%
  \addperiod}}\space\bibsentence}
\exampleprintbib{sigfridsson}
\end{bibexample}


\bibfieldformatitem{biblistlabeldate} Like \bibfieldformat{biblabeldate},
  but for bibliography lists created by \cmd{printbiblist}.
  The default is to use the same format as \hyperbibfieldformat{biblabeldate}.

\bibfieldformatitem{issuedate} The format of the \bibfield{issue} and
  \bibfield{date} information for \bibtype{article}s. By default this block is
  wrapped in round brackets.
  \begin{bibexample}
  \csuse{bbx@opt@mergedate@false}%
  \togglefalse{bbx:doi}
  \DeclareFieldFormat{issuedate}{\highlight{\bibopenparen}\highlight[2]{#1}%
    \highlight{\bibcloseparen}}
  \exampleprintbib{sigfridsson}
  \end{bibexample}

A customisation example for \bibfield{issuedate} can be found in the
\hypercmd{volnumdatedelim} description.

\bibfieldformatitem{volumeof} The format for the \bibfield{volume} of a
  \bibfield{maintitle} used when \hyperkvopt{maintitleaftertitle}{true}.
  \begin{bibexample}
  \togglefalse{bbx:isbn}\toggletrue{bbx:maintitleaftertitle}
  \DeclareFieldFormat{volumeof}{\highlight{\bibstring{volume}}~%
    \highlight[2]{#1}}
  \exampleprintbib{knuth:ct:a}
  \end{bibexample}

\bibfieldformatitem{biblabeltitle}
  The format for the title when it is used in \blxstyle{authoryear}
  styles to replace a missing author/editor.
  By default this field format is an alias for \bibfieldformat{title}.
  \begin{bibexample}
  \DeclareFieldFormat{biblabeltitle}{\highlight[1]{#1}}%
  \exampleprintbib{jcg}
  \end{bibexample}

\bibfieldformatitem{titlecase:title} The standard styles follow an
  all-or-nothing approach when it comes to title casing. The field format
  \bibfieldformat{titlecase} intended to enable sentence case with
  \cmd{MakeSentenceCase*} is applied to all title-like fields alike. Finer
  control over the title casing of each field could require involved code.%
  \fnurl{https://tex.stackexchange.com/a/22981/}
  The field format \bibfieldformat{titlecase:title} is applied to the fields
  \bibfield{title} and \bibfield{subtitle}.
  By default this field format is an alias for \bibfieldformat{titlecase}.

\bibfieldformatitem{titlecase:booktitle}
  Like \hyperbibfieldformat{titlecase:title}, but controls the title casing
  of the \bibfield{booktitle} and \bibfield{booksubtitle} fields.

\bibfieldformatitem{titlecase:maintitle}
  Like \hyperbibfieldformat{titlecase:title}, but controls the title casing
  of the \bibfield{maintitle} and \bibfield{mainsubtitle} fields.

\bibfieldformatitem{titlecase:journaltitle}
  Like \hyperbibfieldformat{titlecase:title}, but controls the title casing
  of the \bibfield{journaltitle} and \bibfield{journalsubtitle} fields.

\bibfieldformatitem{titlecase:issuetitle}
  Like \hyperbibfieldformat{titlecase:title}, but controls the title casing
  of the \bibfield{issuetitle} and \bibfield{issuesubtitle} fields.

\bibfieldformatitem{titlecase:biblabeltitle}
  Like \hyperbibfieldformat{titlecase:title}, but controls the title casing
  of the title printed instead of missing author/editor name in
  \blxstyle{authoryear} styles.

The \bibfieldformat{citetitle} field format can be used to change the title
case in author-title citations, so there is no
\bibfieldformat{citetitle:labeltitle}.

\begin{bibexample}[title={Default output for \bibfieldformat{titlecase}
  field formats}]%
\DeclareFieldFormat{titlecase:title}{\highlight[1]{#1}}
\DeclareFieldFormat{titlecase:journaltitle}{\highlight[2]{#1}}
\togglefalse{bbx:doi}
\exampleprintbib{shore}
\end{bibexample}

\begin{bibexample}[title={Example changes to \bibfieldformat{titlecase} field
  formats}]%
\begin{lstlisting}[style=extblxstylelatex]
\DeclareFieldFormat{titlecase:title}{|1\MakeSentenceCase*{#1}1|}
\DeclareFieldFormat{titlecase:journaltitle}{|2#12|}
\end{lstlisting}
\tcblower
\DeclareFieldFormat{titlecase:title}{\highlight[1]{\MakeSentenceCase*{#1}}}
\DeclareFieldFormat{titlecase:journaltitle}{\highlight[2]{#1}}
\togglefalse{bbx:doi}
\exampleprintbib{shore}
\end{bibexample}
\end{bibfieldformatlist}

\subsection{Punctuation}\label{sec:opt:punct}
The package provides the following commands to modify the delimiters and
punctuation between fields.
Normal punctuation commands should be redefined with \cmd{renewcommand},
while context-sensitive commands marked with \CSdelim{} should be redefined
with \cmd{DeclareDelimFormat}.
A short overview over common punctuation commands defined by \sty{biblatex-ext}
as well as standard \sty{biblatex} in an example bibliography
can be found in \cref{sec:punctinuse}.
\begin{ltxsyntax}
\csitem{innametitledelim}\CSdelimMark
Similar to \cmd{nametitledelim}, but for names after the \enquote{in:} if
\hyperopt{innamebeforetitle} is \optval{true}.
The default value is that of \cmd{nametitledelim} for all contexts.
Since the definition of \cmd{nametitledelim} is different for the delimiter
contexts \optval{bib} and \optval{biblist}, you may have to use the optional
argument to redefine the delimiter.\footnote{The author admits that it is
somewhat pointless to make \cmd{innametitledelim} context sensitive.
But the obvious parallels with \cmd{nametitledelim} were too tempting.
It is probably too late now.}
\begin{bibexample}
\toggletrue{bbx:innamebeforetitle}
\togglefalse{bbx:isbn}
\DeclareFieldFormat{editortype}{\mkbibparens{#1}}
\DeclareDelimFormat{editortypedelim}{\addspace}
\DeclareDelimFormat[bib,biblist]{innametitledelim}{\highlight{\textbf{%
  \addperiod}\textvisiblespace}\bibsentence}% <- hacky & hard-coded!
\exampleprintbib{pines}
\end{bibexample}
\begin{remindbox}
Note that \bibfieldformat{editortype} and \cmd{editortypedelim}
were changed to
\begin{biblatexcode}
\DeclareFieldFormat{editortype}{\mkbibparens{#1}}
\DeclareDelimFormat{editortypedelim}{\addspace}
\end{biblatexcode}
in this example to avoid punctuation clashes.
\end{remindbox}

Since \cmd{nametitledelim} and \cmd{innametitledelim} are independent,
the following output is easily achieved.
Note that the optional argument to \cmd{DeclareDelimFormat} is used
to make sure the definitions apply to the bibliography and bibliography lists
contexts, this is necessary because these contexts have special pre-defined
values that would otherwise not be redefined.
\begin{bibexample}[title={Example customisations for \cs{innametitledelim}}]
\begin{lstlisting}[style=extblxstylelatex]
\ExecuteBibliographyOptions{innamebeforetitle=true}
\DeclareDelimFormat[bib,biblist]{nametitledelim}{|1\addcolon\space1|}
\DeclareDelimFormat[bib,biblist]{innametitledelim}{|2\addcomma\space2|}
\end{lstlisting}
\tcblower
\toggletrue{bbx:innamebeforetitle}
\DeclareDelimFormat[bib,biblist]{nametitledelim}{\highlightbf[1]{\addcolon}%
  \space}
\DeclareDelimFormat[bib,biblist]{innametitledelim}{\highlightbf[2]{\addcomma}%
  \space}
\exampleprintbib{gaonkar,gaonkar:in}
\end{bibexample}

\csitem{maintitletitledelim}
The punctuation between the \bibfield{maintitle} and \bibfield{title} or
\bibfield{booktitle} of a work if \hyperopt{maintitleaftertitle} is
\optval{false}.
The default is \cs{newunitpunct}.
\begin{bibexample}
\togglefalse{bbx:isbn}
\renewcommand*{\maintitletitledelim}{\highlight{\textbf{\addperiod}%
  \textvisiblespace}\bibsentence}% <- hacky & hard-coded!
\exampleprintbib{knuth:ct:a}
\end{bibexample}

\csitem{voltitledelim}
The punctuation between the \bibfield{volume} and \bibfield{title} or
\bibfield{booktitle} of a work if \hyperopt{maintitleaftertitle} is
\optval{false}.
The default is a colon followed by a space.
\begin{bibexample}
\togglefalse{bbx:isbn}
\renewcommand*{\voltitledelim}{\highlight{\textbf{\addcolon}%
  \textvisiblespace}\bibsentence}
\exampleprintbib{knuth:ct:a}
\end{bibexample}

\csitem{titlemaintitledelim}
The punctuation between the \bibfield{title} or \bibfield{booktitle} and
\bibfield{maintitle} of a work if \hyperopt{maintitleaftertitle} is
\optval{true}.
The default is \cmd{newunitpunct}.
\begin{bibexample}
\togglefalse{bbx:isbn}
\toggletrue{bbx:maintitleaftertitle}
\renewcommand*{\titlemaintitledelim}{\highlight{\textbf{\addperiod}%
  \textvisiblespace}\bibsentence}%<- hacky & hard-coded!
\exampleprintbib{knuth:ct:a}
\end{bibexample}

\csitem{titleaddonpunct}
The punctuation between \bibfield{title}\slash\bibfield{subtitle} and
\bibfield{maintitle} as well as other \bibfield{title}-like and
\bibfield{maintitle}-like fields. The default is \cmd{newunitpunct}
\begin{bibexample}
\renewcommand*{\titleaddonpunct}{\highlight{\textbf{\addperiod}%
  \textvisiblespace}\bibsentence}%<- hacky & hard-coded!
\exampleprintbib{salam}
\end{bibexample}
\begin{bibexample}[title={Example customisation of \cmd{titleaddonpunct}}]
\begin{lstlisting}[style=extblxstylelatex]
\DeclareFieldFormat{booktitleaddon}{|1\mkbibbrackets{#1}1|}
\renewcommand*{\titleaddonpunct}{\addspace}
\end{lstlisting}
\tcblower
\DeclareFieldFormat{booktitleaddon}{\highlight{\mkbibbrackets{#1}}}
\renewcommand*{\titleaddonpunct}{\addspace}
\renewbibmacro*{event+venue+date}{}
\exampleprintbib{salam}
\end{bibexample}

\csitem{jourvoldelim}
The delimiter between the \bibfield{journaltitle} and \bibfield{volume} fields
for \bibtype{article} if no \bibfield{series} is present.
The default is a space.
\begin{bibexample}
\togglefalse{bbx:doi}
\renewcommand*{\jourvoldelim}{\highlight{\textvisiblespace}}
\csuse{bbx@opt@mergedate@false}%
\exampleprintbib{sigfridsson}
\end{bibexample}

\begin{bibexample}[title={Example customisation of \cmd{jourvoldelim}
  and \cmd{volnumdelim}}]
\begin{lstlisting}[style=extblxstylelatex]
\DeclareFieldFormat[article,periodical]{volume}{|1\bibstring{jourvol}~#11|}
\DeclareFieldFormat[article,periodical]{number}{|2\bibstring{number}~#12|}
\renewcommand*{\jourvoldelim}{|1\addcomma\space1|}
\renewcommand*{\volnumdelim}{|2\addcomma\space2|}
\end{lstlisting}
\tcblower
\togglefalse{bbx:doi}
\DeclareFieldFormat[article,periodical]{volume}{\highlight[1]{\bibstring{jourvol}~#1}}
\DeclareFieldFormat[article,periodical]{number}{\highlight[2]{\bibstring{number}~#1}}
\renewcommand*{\jourvoldelim}{\highlight[1]{\addcomma\space}}
\renewcommand*{\volnumdelim}{\highlight[2]{\addcomma\space}}
\csuse{bbx@opt@mergedate@false}%
\exampleprintbib{sigfridsson}
\end{bibexample}

\csitem{jourserdelim}
The delimiter between the \bibfield{journaltitle} and \bibfield{series} fields
for \bibtype{article}.
The default is \cmd{newunitpunct}.
\begin{bibexample}
\togglefalse{bbx:doi}
\csuse{bbx@opt@mergedate@false}%
\renewcommand*{\jourserdelim}{\highlight{\textbf{\addperiod}\textvisiblespace}%
                              \bibsentence% <- hacky ...
                              }% <- hard-coded!
\exampleprintbib{reese,shore}
\end{bibexample}

\csitem{servoldelim}
The delimiter between the \bibfield{series} and \bibfield{volume} fields
for \bibtype{article}.
The default is \hypercmd{jourvoldelim}.
\begin{bibexample}
\togglefalse{bbx:doi}
\csuse{bbx@opt@mergedate@false}%
\renewcommand*{\servoldelim}{\highlight{\textvisiblespace}}% <- hard-coded!
\exampleprintbib{reese,shore}
\end{bibexample}

\csitem{volnumdatedelim}
The delimiter between the \bibfield{volume}, \bibfield{number} block and the
date information for \bibtype{article}.
The default is a space.
\begin{bibexample}
\togglefalse{bbx:doi}
\csuse{bbx@opt@mergedate@false}%
\renewcommand*{\volnumdatedelim}{\highlight{\textvisiblespace}}
\exampleprintbib{sigfridsson}
\end{bibexample}
\begin{bibexample}[title={Example customisation of \cmd{volnumdatedelim}}]
\begin{lstlisting}[style=extblxstylelatex]
\DeclareFieldFormat{issuedate}{|1#11|}
\renewcommand*{\volnumdatedelim}{|2\addcomma\space2|}
\end{lstlisting}
\tcblower
\togglefalse{bbx:doi}
\csuse{bbx@opt@mergedate@false}%
\DeclareFieldFormat{issuedate}{\highlight[1]{#1}}
\renewcommand*{\volnumdatedelim}{\highlight[2]{\addcomma\space}}
\exampleprintbib{sigfridsson}
\end{bibexample}


\csitem{volnumdelim}
The delimiter between \bibfield{volume} and \bibfield{number} for
\bibtype{article}.
The default is a dot.
\begin{bibexample}
\togglefalse{bbx:doi}
\renewcommand*{\volnumdelim}{\highlightbf{\adddot}}
\exampleprintbib{sigfridsson}
\end{bibexample}

\begin{bibexample}[title={Example customisation of~\cmd{volnumdelim}}]
\begin{lstlisting}[style=extblxstylelatex]
\DeclareFieldFormat[article,periodical]{number}{|1\mkbibparens{#1}1|}
\renewcommand*{\volnumdelim}{}
\end{lstlisting}
\tcblower
\togglefalse{bbx:doi}
\DeclareFieldFormat[article,periodical]{number}{\highlight{\mkbibparens{#1}}}
\renewcommand*{\volnumdelim}{}
\exampleprintbib{sigfridsson}
\end{bibexample}

\csitem{sernumdelim}
The delimiter between \bibfield{series} and \bibfield{number} for
\bibtype{book}- and \bibtype{inbook}-like entries.
The default is a space.
\begin{bibexample}
\renewcommand*{\sernumdelim}{\highlight{\textvisiblespace}}
\exampleprintbib{coleridge}
\end{bibexample}

\csitem{locdatedelim}
The delimiter between \bibfield{location} and \bibfield{date}.
The default is a comma followed by a space.
\begin{bibexample}
\renewcommand*{\locdatedelim}{\highlight{\textbf{\addcomma}\textvisiblespace}}
\csuse{bbx@opt@mergedate@false}%
\exampleprintbib{jaffe}
\end{bibexample}

\csitem{locpubdelim}
The delimiter between \bibfield{location} and \bibfield{publisher}\slash%
\bibfield{organization}\slash\bibfield{institution}.
The default is a colon followed by a space.
\begin{bibexample}
\csuse{bbx@opt@mergedate@false}%
\renewcommand*{\locpubdelim}{\highlight{\textbf{\addcolon}\textvisiblespace}}
\exampleprintbib{knuth:ct:a}
\end{bibexample}


\csitem{publocdelim}
The delimiter between \bibfield{publisher}\slash
\bibfield{organization}\slash
\bibfield{institution} and \bibfield{location}.
The default is a comma followed by a space.
This delimiter is not used by the default style, since the standard
order of fields is \bibfield{location}, \bibfield{publisher}\slash
\bibfield{organization}\slash\bibfield{institution}, \bibfield{date}.
You could use \cmd{publocdelim} if you changed the order of these
fields to \bibfield{publisher}\slash\bibfield{organization}\slash
\bibfield{institution}, \bibfield{location} \bibfield{date} by
redefining the bibmacro~\bibmacro{pubinstorg+location+date} as follows.
\begin{bibexample}[title={Example use of \cmd{publocdelim}
  and \cmd{locdatedelim}}]
\begin{lstlisting}[style=extblxstylelatex]
\renewbibmacro*{pubinstorg+location+date}[1]{%
  \printlist{#1}%
  \setunit*{|1\publocdelim1|}%
  \printlist{location}%
  \setunit*{|2\locdatedelim2|}%
  \usebibmacro{date}%
  \newunit}
\end{lstlisting}
\tcblower
\renewcommand*{\publocdelim}{\highlight[1]{\textbf{\addcomma}\textvisiblespace}}
\renewcommand*{\locdatedelim}{\highlight[2]{%
  \textbf{\addcomma}\textvisiblespace}}
\renewbibmacro*{pubinstorg+location+date}[1]{%
  \printlist{#1}%
  \setunit*{\publocdelim}%
  \printlist{location}%
  \setunit*{\locdatedelim}%
  \usebibmacro{date}%
  \newunit}
\csuse{bbx@opt@mergedate@false}%
\exampleprintbib{knuth:ct:a}
\end{bibexample}


\csitem{pubdatedelim}
The delimiter between \bibfield{publisher}\slash\bibfield{organization}\slash
\bibfield{institution} and \bibfield{date}.
The default is a comma followed by a space.
\begin{bibexample}
\renewcommand*{\pubdatedelim}{\highlight{\textbf{\addcomma}\textvisiblespace}}
\csuse{bbx@opt@mergedate@false}%
\exampleprintbib{knuth:ct:a}
\end{bibexample}
\begin{bibexample}[title={Example customisation of \cmd{pubdatedelim}}]
\begin{lstlisting}[style=extblxstylelatex]
\renewcommand*{\pubdatedelim}{\addspace}
\end{lstlisting}
\tcblower
\renewcommand*{\pubdatedelim}{\addspace}
\csuse{bbx@opt@mergedate@false}%
\exampleprintbib{knuth:ct:a}
\end{bibexample}


\csitem{extradateonlycompcitedelim}\CSdelimMark
Similar to \cmd{compcitedelim}, but indended for use between compressed
citations where the second is an \bibfield{extradate} only.
The default is a comma (\emph{not} followed by a space).
\begin{bibexample}
\DeclareDelimFormat{extradateonlycompcitedelim}{\highlightbf{\addcomma}}
\cite{knuth:ct:b,knuth:ct:c}
\end{bibexample}


\csitem{extradateonlycompciterangedelim}\CSdelimMark
Similar to \hypercmd{extradateonlycompcitedelim}, but indended for use in a
compressed list of \bibfield{extradate}s in the \blxstyle{-ecomp} styles.
The default is \cmd{bibrangedash}.
\begin{bibexample}
\DeclareDelimFormat{extradateonlycompciterangedelim}{%
  \highlightbf{\bibrangedash}}
\cite{knuth:ct:b,knuth:ct:c,knuth:ct:d}
\end{bibexample}
\end{ltxsyntax}

\subsection{Delimiters for citation commands}\label{sec:opt:citedelims}
The delimiters for citation commands provided by the styles of this bundle
offer a simple way to customise the bracketing of citation commands.

The citation commands \cmd{cite}, \cmd{parencite} and \cmd{textcite} come with
two sets of delimiters: A pair of \emph{outer delimiters} wrapped around the
resulting citation in its entirety and a pair of \emph{inner delimiters} that
sets off certains bits of the citation label from other information.
An example for outer delimiters would be the round brackets of \cmd{parencite}
for \hyperblxstyle[ext-authoryear]{authoryear}-like styles or the
square brackets of \cmd{cite} for \hyperblxstyle[ext-numeric]{numeric}- or
\hyperblxstyle[ext-alphabetic]{alphabetic}-like styles.
Inner delimiters would be the round brackets in \cmd{textcite} around
the year for \hyperblxstyle[ext-authoryear]{authoryear} or around the title for
\hyperblxstyle[ext-authortitle]{authortitle}.
See \cref{tab:citationdelims} for more details.

The delimiters are set up to work as paired delimiters, but you are free to
use non-matching pairs or to leave the opening or closing delimiter empty.
If you want to add punctuation, the context-sensitive delimiters
\gencode{nameyeardelim}, \gencode{nametitledelim},
\gencode{postnotedelim} and friends are more approriate.

\begin{remindbox}
Although the outer delimiters can be set up using \cmd{DeclareCiteCommand}'s
optional \prm{wrapper} argument for most styles, this is not possible for all
styles.
Similarly, inner delimiters can be set up with \cmd{DeclareFieldFormat} in some
styles, but other styles need more intricate implementations.
This means that the commands discussed here can be used to place the citations
between delimiters, but not natively to pass the result of a citation to a
wrapper command as an argument.
\end{remindbox}

\begin{table}[btph]
\centering
\caption[Outer and inner citation delimiters by style]{\highlight[1]{Outer} and
\highlight[2]{inner} citation delimiters by style. If the style does not use
the delimiters by default, \mpdl{} and \mpdr{} are substituted in the
appropriate place.}
\label{tab:citationdelims}
\begin{tabular}{@{}llll@{}}
\toprule
             & \multicolumn{3}{c}{Citation command}\\
             \cmidrule(lr){2-4}
Style family & \cmd{cite} & \cmd{parencite} & \cmd{textcite}\\
\midrule
\blxstyle{alphabetic} & \highlightbf[1]{[}Knu84\highlightbf[1]{]} &
  \highlightbf[1]{[}Knu84\highlightbf[1]{]} & \highlightbf[1]{\hmpdl}Knuth
  \highlightbf[2]{[}Knu84\highlightbf[2]{]}\highlightbf[1]{\hmpdr}\\
\blxstyle{numeric} & \highlightbf[1]{[}2\highlightbf[1]{]} &
  \highlightbf[1]{[}2\highlightbf[1]{]} & \highlightbf[1]{\hmpdl}Knuth
  \highlightbf[2]{[}2\highlightbf[2]{]}\highlightbf[1]{\hmpdr}\\
\blxstyle{authortitle} & \highlightbf[1]{\hmpdl}Knuth,
  \highlightbf[2]{\hmpdl}\emph{\TeX book}\highlightbf[2]{\hmpdr}%
  \highlightbf[1]{\hmpdr} & \highlightbf[1]{(}Knuth,
  \highlightbf[2]{\hmpdl}\emph{\TeX book}\highlightbf[2]{\hmpdr}%
  \highlightbf[1]{)} & \highlightbf[1]{\hmpdl}Knuth \highlightbf[2]{(}%
  \emph{\TeX book}\highlightbf[2]{)}\highlightbf[1]{\hmpdr}\\
\blxstyle{authoryear} & \highlightbf[1]{\hmpdl}Knuth
  \highlightbf[2]{\hmpdl}1984\highlightbf[2]{\hmpdr}%
  \highlightbf[1]{\hmpdr} & \highlightbf[1]{(}Knuth
  \highlightbf[2]{\hmpdl}1984\highlightbf[2]{\hmpdr}%
  \highlightbf[1]{)} & \highlightbf[1]{\hmpdl}Knuth
  \highlightbf[2]{(}1984\highlightbf[2]{)}\highlightbf[1]{\hmpdr}\\
\bottomrule
\end{tabular}
\end{table}

\begin{ltxsyntax}
\cmditem{DeclareOuterCiteDelims}{cite command}{opening delimiter}
        {closing delimiter}

Sets up the outer delimiters for the citation command
\cmd{\prm{cite command}}. The name of the \prm{cite command}
is given without leading backslash in the argument, it normally corresponds to
the delimiter context.

Note that outer citation delimiters are often hard-coded so they usually do not
respond to delimiter context aliases.
Inner citation delimiters, on the other hand, usually follow delimiter context
aliases.
This may lead to initially surprising results if aliases are used.

You may use almost any input for \prm{opening delimiter} and
\prm{closing delimiter} as long as typesetting of
\enquote{\prm{opening delimiter}text\prm{closing delimiter}} does not lead to
errors when arbitrary grouping such as
\enquote{\{\prm{opening delimiter}\allowbreak text\}\allowbreak
\prm{closing delimiter}}
or \enquote{\prm{opening delimiter}\allowbreak text\allowbreak
\{\prm{closing delimiter}\}}
is introduced.
It cannot be guaranteed that the opening and closing delimiters are executed
at the same level of grouping, let alone in the same group.
As mentioned above, citation delimiters cannot be used to introduce a
wrapper command for the citation output, i.e.\ to pass the entire output of the
citation command as argument to a macro.

Instead of hard-coded \gencode{(}, \gencode{)}, \gencode{[} and \gencode{]}
their \sty{biblatex} counterparts \cmd{bibopenparen}, \cmd{bibcloseparen},
\cmd{bibopenbracket} and \cmd{bibclosebracket} are preferable, since these
commands respond to nesting and check if opening brackets are always closed.

\cmditem{DeclareOuterCiteDelimsAlias}{cite alias}{cite command}
\cmditem*{DeclareOuterCiteDelimsAlias*}{cite alias}{cite command}

Use the outer delimiters of \cmd{\prm{cite command}} for
\cmd{\prm{cite alias}} as well.
The unstarred version uses \cmd{def} assignment while the starred version uses
\cmd{let}. This means that the starred version copies the values of the
definitions at the time of executing the aliasing command,
whereas the alias created by the unstarred version will only evaluate the
delimiters whenever the citation command is called.

\cmditem{UndeclareOuterCiteDelims}{cite command}

Completely remove the definitions of the outer delimiters for
\cmd{\prm{cite command}}.

\cmditem{DeclareInnerCiteDelims}{cite command}{opening delimiter}
        {closing delimiter}

Sets up the inner delimiters for the citation command
\cmd{\prm{cite command}}.

This command is similar to \hypercmd{DeclareOuterCiteDelims} and the same
restrictions for the arguments apply.

Note that inner citation delimiters usually follow context delimiter aliases.
Outer citation delimiters, on the other hand, do not respond to context
delimiter aliases.
This may lead to initially surprising results if aliases are used.

\cmditem{DeclareInnerCiteDelimsAlias}{cite alias}{cite command}
\cmditem*{DeclareInnerCiteDelimsAlias*}{cite alias}{cite command}

Use the inner delimiters of \cmd{\prm{cite command}} for
\cmd{\prm{cite alias}} as well.
The unstarred version uses \cmd{def} assignment while the starred version uses
\cmd{let}. This means that the starred version copies the values of the
definitions at the time of executing the aliasing command,
whereas the alias created by the unstarred version will only evaluate the
delimiters whenever the citation command is called.

\cmditem{UndeclareInnerCiteDelims}{cite command}

Completely remove the definitions of the inner delimiters for
\cmd{\prm{cite command}}.

\cmditem{UndeclareCiteDelims}{cite command}

Remove inner and outer delimiters for \cmd{\prm{cite command}}
by calling \cmd{UndeclareOuterCiteDelims}
and \cmd{UndeclareInnerCiteDelims}.

\cmditem{RegisterCiteDelims}{modifier}{cite command}

Register a pair of \prm{modifier} citation delimiters for
\cmd{\prm{cite command}}.
This command will define a delimiter wrapper command
\cmd{mk\prm{modifier}\prm{cite command}s} that places its argument between
the opening delimiter
\cs{ext\allowbreak blx@\allowbreak cite\allowbreak delim@\allowbreak
  \prm{cite command}@\allowbreak\prm{modifier}@\allowbreak open} and
the closing delimiter
\cs{ext\allowbreak blx@\allowbreak cite\allowbreak delim@\allowbreak
  \prm{cite command}@\allowbreak\prm{modifier}@\allowbreak close}.
No error will be raised if the opening or closing delimiters are not defined,
but an error will be raised if \cmd{mk\prm{modifier}\prm{cite command}s} is
already defined.

The styles of this bundle only use the values \optval{outer} and \optval{inner}
for \prm{modifier}, but other values are possible. With \optval{outer} and
\optval{inner} you can use \hypercmd{DeclareOuterCiteDelims} or
\hypercmd{DeclareInnerCiteDelims} and friends to define the opening and closing
delimiters, otherwise you need to define them manually.

All styles of \sty{biblatex-ext} define the wrapper commands listed in
\cref{tab:delimwrappers}.
\begin{table}[btph]
\centering
\caption{Delimiter wrappers defined by \sty{biblatex-ext}}
\label{tab:delimwrappers}
\begin{minipage}{\linewidth}
\renewcommand\footnoterule{}
\centering
\begin{tabular}{@{}lll@{}}
\toprule
                 & \multicolumn{2}{c}{Modifier} \\
                 \cmidrule(lr){2-3}
Citation command & Outer & Inner\\
\midrule
\cmd{cite} & \cmd{mkoutercitedelims} & \cmd{mkinnercitedelims}\\
\cmd{parencite} & \cmd{mkouterparencitedelims} & \cmd{mkinnerparencitedelims}\\
\cmd{textcite} & \cmd{mkoutertextcitedelims} & \cmd{mkinnertextcitedelims}\\
\cmd{footcite} & \cmd{mkouterfootcitedelims} & \cmd{mkinnerfootcitedelims}\\
\cmd{supercite}\footnote{If defined by the citation style.}
 & \cmd{mkoutersupercitedelims} & ---\\
\cmd{bbx@xrefcite} & \cmd{mkouterbbx@xrefcitedelims} &
  \cmd{mkinnerbbx@xrefcitedelims}\\
\enquote{\cmd{bbx@introcite}} & ---%
    \footnote{Use the field format \bibfieldformat{bbx@introcite} instead,
      see \cref{sec:opt:style}.} & \cmd{mkinnerbbx@introcitedelims}\\
\bottomrule
\end{tabular}
\end{minipage}
\end{table}


The default setup for \hyperblxstyle{ext-authoryear} mirroring
the standard \blxstyle{authoryear} is as follows.
%
\begin{bibexample}[title={\cmd{parencite} setup of
  \blxstyle{ext-authoryear}}]
\begin{lstlisting}[style=extblxstylelatex]
\DeclareOuterCiteDelims{parencite}{\bibopenparen}{\bibcloseparen}
\DeclareInnerCiteDelims{parencite}{}{}
\end{lstlisting}
\tcblower
lorem \parencite{knuth:ct:a} ipsum \parencite{sigfridsson}
\end{bibexample}
%
\begin{bibexample}[title={\cmd{textcite} setup of
  \blxstyle{ext-authoryear}}]
\begin{lstlisting}[style=extblxstylelatex]
\DeclareOuterCiteDelims{textcite}{}{}
\DeclareInnerCiteDelims{textcite}{\bibopenparen}{\bibcloseparen}
\end{lstlisting}
\tcblower
lorem \textcite{knuth:ct:a} ipsum \textcite{sigfridsson}
\end{bibexample}
%
If you wanted \cmd{parencite} of \hyperblxstyle{ext-authoryear}
to look like \enquote{[Sigfridsson and Worman (1998)]} you would use
\citereset
\begin{bibexample}
\begin{lstlisting}[style=extblxstylelatex]
\DeclareOuterCiteDelims{parencite}{|1\bibopenbracket1|}{|1\bibclosebracket1|}
\DeclareInnerCiteDelims{parencite}{|2\bibopenparen2|}{|2\bibcloseparen2|}
\end{lstlisting}
\tcblower
\DeclareOuterCiteDelims{parencite}{\highlightbf[1]{\bibopenbracket}}{%
  \highlightbf[1]{\bibclosebracket}}
\DeclareInnerCiteDelims{parencite}{\highlightbf[2]{\bibopenparen}}{%
  \highlightbf[2]{\bibcloseparen}}
\parencite{sigfridsson}\quad\parencite{worman,geer}\quad
\parencite{knuth:ct:a,knuth:ct:b,knuth:ct:c}
\end{bibexample}
\end{ltxsyntax}

\subsection{Selected bibliography macros}\label{sec:opt:bibmacros}
The following macros are defined in \filename{ext-standard.bbx} and may make
certain things easier to customise.
Many of these macros are replacements for bare \cmd{printfield} or
\cmd{printlist} in the bibliography drivers, or pack a frequently-used
sequence of commands into one central place.

\begin{keymarglistbook}
\keyitem[barevolume+volumes]
A bibliography macro to print the \bibfield{volume}, \bibfield{part} and
\bibfield{volumes} fields for \bibtype{mvbook}-, \bibtype{book}- and
\bibtype{inbook}-like entry types.
If \bibfield{maintitle} is defined, the \bibfield{volume} and \bibfield{part}
fields will be printed by \bibmacro{maintitle+title} or
\bibmacro{maintitle+booktitle} instead.

\begin{bibexample}
\renewbibmacro*{barevolume+volumes}{%
  \printtext[highlight1]{%
    \iffieldundef{maintitle}
      {\printfield{volume}%
       \printfield{part}}
      {}%
    \newunit
    \printfield{volumes}}}
\csuse{bbx@opt@mergedate@false}%
\exampleprintbib{knuth:ct,matuz:doody}
\end{bibexample}

\keyitem[edition]
A bibliography macro to print the \bibfield{edition} field, this avoids a direct
\lstinline|\printfield{edition}| in the bibliography drivers.
This bibliography macro is particularly useful to suppress the
\bibfield{edition} field in its standard position to print it elsewhere
without having to use \cmd{clearfield}, \cmd{savefield} and \cmd{restorefield}.
\begin{bibexample}[title={Example use of the \bibmacro{edition} bibmacro
  for superscript edition before date}]
\begin{lstlisting}[style=extblxstylelatex]
\renewbibmacro*{edition}{}

\DeclareFieldFormat{superedition}{\textsuperscript{#1}}
\newbibmacro*{superedition}{%
  \iffieldnums{edition}
    {\printfield[superedition]{edition}}
    {\printfield{edition}%
     \setunit{\addspace}}}

\renewcommand*{\pubdatedelim}{\addspace}
\renewcommand*{\locdatedelim}{\pubdatedelim}
\renewbibmacro*{pubinstorg+location+date}[1]{%
  \printlist{location}%
  \iflistundef{#1}
    {\setunit*{\locdatedelim}}
    {\setunit*{\locpubdelim}}%
  \printlist{#1}%
  \setunit*{\pubdatedelim}%
  \usebibmacro{superedition}%
  \usebibmacro{date}%
  \newunit}
\end{lstlisting}
\tcblower
\renewbibmacro*{edition}{}
\DeclareFieldFormat{superedition}{\textsuperscript{#1}}
\newbibmacro*{superedition}{%
  \iffieldnums{edition}
    {\printfield[superedition]{edition}}
    {\printfield{edition}%
     \setunit{\addspace}}}
\renewcommand*{\pubdatedelim}{\addspace}
\renewcommand*{\locdatedelim}{\pubdatedelim}
\renewbibmacro*{pubinstorg+location+date}[1]{%
  \printlist{location}%
  \iflistundef{#1}
    {\setunit*{\locdatedelim}}
    {\setunit*{\locpubdelim}}%
  \printlist{#1}%
  \setunit*{\pubdatedelim}%
  \usebibmacro{superedition}%
  \usebibmacro{date}%
  \newunit}
\csuse{bbx@opt@mergedate@false}%
\exampleprintbib{malinowski}
\end{bibexample}

\keyitem[version]
Similar to the \hyperbibmacro{edition} bibliography macro, \bibmacro{version}
prints the \bibfield{version} field, this avoids a direct
\lstinline|\printfield{version}| in the bibliography drivers.

\keyitem[pagetotal]
Similar to the \hyperbibmacro{edition} bibliography macro, \bibmacro{pagetotal}
prints the \bibfield{pagetotal} field, this avoids a direct
\lstinline|\printfield{pagetotal}| in the bibliography drivers.

\keyitem[in:editor(+others)]
The bibliography macro to print the \bibfield{editor} before the
\bibfield{booktitle} for \bibtype{inbook}, \bibtype{incollection} and
\bibtype{inproceedings} when \hyperopt{innamebeforetitle} is set to
\optval{true}.
The \cmd{printname} uses the name format \bibfield{ineditor}.

\keyitem[language]
A bibliography macro to print the \bibfield{language} field, this avoids a
direct \lstinline|\printlist{language}| in the bibliography drivers.

\keyitem[note]
A bibliography macro to print the \bibfield{note} field, this avoids a direct
\lstinline|\printfield{note}| in the bibliography drivers.

\keyitem[pubinstorg+location+date]
A general-purpose bibliography macro to catch
\bibmacro{publisher+location+date},
\bibmacro{institution+location+date} and \bibmacro{organization+location+date}.
This bibliography macro has one mandatory argument: the name of a list field,
sensible values are \bibfield{publisher}, \bibfield{institution} and
\bibfield{organization}.
By default the macro is defined and used as follows.
\begin{biblatexcode}
\newbibmacro*{pubinstorg+location+date}[1]{%
  \printlist{location}%
  \iflistundef{|#1|}
    {\setunit*{\locdatedelim}}
    {\setunit*{\locpubdelim}}%
  \printlist{|#1|}%
  \setunit*{\pubdatedelim}%
  \usebibmacro{date}%
  \newunit}

\renewbibmacro*{|publisher|+location+date}{%
  \usebibmacro{pubinstorg+location+date}{|publisher|}}

\renewbibmacro*{|institution|+location+date}{%
  \usebibmacro{pubinstorg+location+date}{|institution|}}

\renewbibmacro*{|organization|+location+date}{%
  \usebibmacro{pubinstorg+location+date}{|organization|}}
\end{biblatexcode}

An example use of \bibmacro{pubinstorg+location+date} is shown
in the description of~\hypercmd{publocdelim}.

\keyitem[type+number]
A bibliography macro to print the \bibfield{type} and \bibfield{number} fields.
\end{keymarglistbook}

\clearpage
\section{Tabular Bibliographies}\label{sec:tabularbib}
\label{exltd@itm@biblatex-ext-tabular}
An experimental addition to this bundle is the package
\sty{biblatex-ext-tabular} which allows you to typeset tabular
(two-column) bibliographies.
The package must be loaded after \sty{biblatex} and has no further options.
\begin{biblatexcode}
\usepackage[(*@\prm{options}@*)]{biblatex}
(*@\dots @*)
\usepackage{biblatex-ext-tabular}
\end{biblatexcode}
If it turns out that the tabular bibliography package is useful on its own,
it may be split off from the rest of this bundle in the future.
In that case the name \sty{biblatex-ext-tabular} may be deprecated in favour
of something more snappy.
The old name should then continue to work, but you may have to install a new
package to be able to use it.

The package \sty{biblatex-ext-tabular} can be used independently of the styles
provided in this bundle.
But no matter what style you use, you will probably have to apply some tweaks
here and there to make the output look acceptable.

The code for the tabular bibliographies is based on Audrey's%
\fnurl{https://tex.stackexchange.com/users/4483/audrey}
answer to a question%
\fnurl{https://tex.stackexchange.com/q/71088/35864}
on \tex{}~--~\latex{} Stack Exchange.
The code has been modernised to keep in sync with changes to internal macros
and modified to allow for slightly more flexible setups, so any bugs you find
are mine and not Audrey's. Please report them via the channels mentioned above
in~\cref{sec:feedback}.

Before tabular bibliographies can be used, a suitable definition
must be supplied with \hypercmd{defbibtabular}.

\begin{ltxsyntax}
\cmditem{printbibtabular}[key=value, \dots]

This commands prints a tabular bibliography.
It accepts the same options as \cmd{printbibliography}, but note that
\optval{env} must be a tabular bibliography declared with
\hypercmd{defbibtabular}.
The default value for \optval{env} is \optval{bibtabular}.

\begin{warnbox}
Note that there is no default definition for the
\opt{bibtabular} environment, so you must define it with
\hypercmd{defbibtabular} before use.
An error will be issued if you fail to provide a definition
for \optval{bibtabular} before you use \cmd{printbibtabular} with the default
\optval{env} value and no bibliography will be printed.
\end{warnbox}

\cmditem{defbibtabular}{name}{begin code}{end code}{row code}

This command defines a tabular bibliography.
The \prm{name} is an identifier passed to the \optval{env} option of
\hypercmd{printbibtabular} when selecting the environment.
The \prm{begin code} is \latex{} code to be executed at the beginning of the
environment, usually it will begin a tabular environment.
The \prm{end code} is executed at the end of the environment and would
usually end the tabular environment.
The \prm{row code} holds the code for one row in the tabular bibliography,
it should have no more columns than ordered in \prm{begin code} and should
end with \lstinline|\\|.

\begin{remindbox}
Please keep in mind that the tabular bibliography is subject to all limitations
of the particular tabular environment you decide to use.
\end{remindbox}

Within the \prm{row code} argument the following macros are defined and can be
used to typeset the result of bibliography macros.
Each cell should normally be wrapped into exactly one of the following macros
since they are responsible for providing the necessary entry data to the
bibliography macros.

\cmditem{plain}{code}

Typesets \prm{code} with the entry data of the current entry.

\cmditem{plainlang}{code}

Like \cmd{plain}, but typesets \prm{code} in the language of the current
item if the language switching options are enabled.

\cmditem{anchor}{code}

Like \cmd{plain}, but additionally sets a link anchor for the current entry.
That link anchor is used when a citation links to the bibliography entry.
There should only be one \cmd{anchor} or \hypercmd{anchorlang} per entry (and
hence per row),
and for proper linking there should be at least one.
Usually \cmd{anchor} or \hypercmd{anchorlang} is the first cell in a row.

\cmditem{anchorlang}{code}

Like \hypercmd{anchor}, but in the entry language like \hypercmd{plainlang}.

\cmditem{driver}{precode}

Typesets the bibliography entry using the correct driver.
This always uses the entry language if language switching is enabled.
The \prm{precode} argument can be used to execute code before the driver
is executed.
Usually \cmd{driver} would be issued in the last (and widest) cell in a row,
duplicate information can be cleaned up with help of the \prm{precode} argument.

Recall that standard \env{tabular} can't break across pages, so you may want
to give \env{longtable} a try.
Additionally, the standard column specifiers \gencode{l}, \gencode{r} and
\gencode{c} define flexible-sized columns which might not be appropriate here;
\gencode{p} defines fixed-width columns but imposes justification, which does
not look good if the columns are too narrow.
You may want to look into fixed-width flush-left or flush-right columns%
\fnurl{https://tex.stackexchange.com/q/12703/35864}.
\end{ltxsyntax}

The package also defines two helpful bibliography macros.
\begin{keymarglistbook}
  \keyitem[tabular:sortname] Prints the labelname/sortname.
  \keyitem[tabular:omitsortname] Suppresses the labelname/sortname in the current
    group.
\end{keymarglistbook}
\begin{remindbox}
  These two bibliography macros have a fairly basic definition that should make
  them compatible with most styles (not only \sty{biblatex-ext}
  or standard styles).
  Consequently, they may not be able to support all advanced features of
  the style you are using.

  If you are missing anything, you will have to write versions of those macros
  that are tailored to the specific style you are loading and the features you
  want to use.
\end{remindbox}


For the common case of two-column tabular bibliographies there is a thin
wrapper around \hypercmd{defbibtabular} that might turn out a bit easier to use.
\begin{ltxsyntax}
  \cmditem{defbibtabulartwocolumn}{name}{begin code}{end code}%
  {anchor code}{driver precode}

  This defines a two-column tabular bibliography environment with \prm{name},
  \prm{begin code} and \prm{end code} as for \hypercmd{defbibtabular}.

  The first column is an \hypercmd{anchorlang} column that executes
  \prm{anchor code}, the second column executes a pre-code and
  the bibliography driver.

\begin{biblatexcode}
\defbibtabulartwocolumn{(*@\prm{name}@*)}
  {(*@\prm{begin code}@*)}{(*@\prm{end code}@*)}
  {(*@\prm{anchor code}@*)}{(*@\prm{driver precode}@*)}
\end{biblatexcode}
is equivalent to
\begin{biblatexcode}
\defbibtabular{(*@\prm{name}@*)}
  {(*@\prm{begin code}@*)}{(*@\prm{end code}@*)}
  {\anchorlang{(*@\prm{anchor code}@*)} & \driver{(*@\prm{driver precode}@*)} \\}
\end{biblatexcode}
\end{ltxsyntax}

An annotated example document with a simple tabular bibliography can
be found on the following pages.

\clearpage
\begin{bibexample}[breakable,
  title={Example document with tabular bibliography}]
\begin{lstlisting}[style=extblxstylelatex]
\documentclass[british]{article}
\usepackage{babel}
\usepackage{csquotes}

(*@\tikzmark[\strut]{lblxs}@*)\usepackage[backend=biber, style=ext-authoryear]{biblatex}(*@\tikzmark{lblxe}@*)
(*@\tikzmark[\strut]{ltblxs}@*)\usepackage{biblatex-ext-tabular}(*@\tikzmark{ltblxe}@*)

(*@\tikzmark[\strut]{tabss}@*)\usepackage{longtable}
\usepackage{array}
\newcolumntype{L}[1]{%
  >{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}(*@\tikzmark{tabse}@*)

(*@\tikzmark[\strut]{dbtabs}@*)\defbibtabular{bibtabular}
  {\setlength{\LTpre}{0pt}%
   \setlength{\LTpost}{0pt}%
   \renewcommand*{\arraystretch}{2}%
   \begin{longtable}{%
     @{}
     L{\dimexpr0.3\textwidth-\tabcolsep\relax}
     L{\dimexpr0.7\textwidth-\tabcolsep\relax}
     @{}}}
  {\end{longtable}}
  {\anchorlang{\usebibmacro{tabular:sortname}} &
   \driver{\usebibmacro{tabular:omitsortname}} \\}(*@\tikzmark{dbtabe}@*)

\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson,nussbaum}
ipsum \autocite{geer}.

(*@\tikzmark[\strut]{pbts}@*)\printbibtabular(*@\tikzmark{pbte}@*)
\end{document}
\end{lstlisting}%
\tikz[overlay,remember picture]{%
  \node[draw, rounded corners, highlight1, very thick,
    fit=(lblxs.north west) (lblxe.south east)
        (ltblxs.north west) (ltblxe.south east)] (lblxb) {};
  \node (lblxt)[MWEcommentbox, right=0cm of lblxb, text width=3.25cm]
    {Load \sty{biblatex} as usual,\\then load \hypersty{biblatex-ext-tabular}};

  \node[draw, rounded corners, highlight2, very thick,
    fit=(tabss.north west) (tabse.south east)] (tabsb) {};
  \node (tabst)[MWEcommentbox, right=0em of tabsb, text width=2.36cm]
    {Set up enhanced table support as desired};

  \node[draw, rounded corners, highlight1, very thick,
    fit=(dbtabs.north west) (dbtabe.south east)] (dbtabb) {};
  \node (dbtabt)[MWEcommentbox, right=0em of dbtabb, text width=4.5cm]
    {Set up a tabular bibliography with~\hypercmd{defbibtabular}};

  \node[draw, rounded corners, highlight1, very thick, inner sep=0.1em,
    fit=(pbts.north west) (pbte.south east)] (pbtb) {};
  \node (pbtt)[MWEcommentbox, right=1em of pbtb, text width=7cm]
    {Print bibliography table with~\hypercmd{printbibtabular}};
}
\tcblower
  \defbibtabular{bibtabular}
    {\setlength{\LTpre}{0pt}%
     \setlength{\LTpost}{0pt}%
     \renewcommand*{\arraystretch}{2}%
     \begin{longtable}{%
       @{}
       L{\dimexpr0.3\textwidth-\tabcolsep\relax}
       L{\dimexpr0.7\textwidth-\tabcolsep\relax}
       @{}}}
    {\end{longtable}}
    {\anchorlang{\usebibmacro{tabular:sortname}} &
     \driver{\usebibmacro{tabular:omitsortname}} \\}

  \exampleprintbibtab{sigfridsson,geer,nussbaum}
\end{bibexample}
This defines a two-column bibliography where the first column shows the
primary name associated with the work (the labelname/sortname) and the
second colum shows the bibliography data with the primary name suppressed
to avoid duplication.
The anchor is set to the first column, so that a viewer jumps there
if a link to the entry is followed.

Using \cmd{defbibtabulartwocolumn} the example from above could be written as
\begin{biblatexcode}
\documentclass[british]{article}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=ext-authoryear]{biblatex}
\usepackage{biblatex-ext-tabular}

\usepackage{longtable}
\usepackage{array}
\newcolumntype{L}[1]{%
  >{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}

\defbibtabulartwocolumn{bibtabular}
  {\setlength{\LTpre}{0pt}%
   \setlength{\LTpost}{0pt}%
   \renewcommand*{\arraystretch}{2}%
   \begin{longtable}{%
     @{}
     L{\dimexpr0.3\textwidth-\tabcolsep\relax}
     L{\dimexpr0.7\textwidth-\tabcolsep\relax}
     @{}}}
  {\end{longtable}}
  {\usebibmacro{tabular:sortname}}
  {\usebibmacro{tabular:omitsortname}}

\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson,nussbaum}
ipsum \autocite{geer}.

\printbibtabular
\end{document}
\end{biblatexcode}


\clearpage
\section{Open Access Symbols}\label{sec:oa}
\label{exltd@itm@biblatex-ext-oa}
The package \sty{biblatex-ext-oa} was inspired by a question%
\fnurl{https://tex.stackexchange.com/q/459449/35864}
by pluton\fnurl{https://tex.stackexchange.com/users/371/pluton} on TeX.SX
about promoting open access works by adding a small open access symbol into
the margin.

The package must be loaded after \sty{biblatex}.
It is not tied to use with styles of this bundle, though it cannot be
guaranteed that everything will work out of the box with all other styles.
The package works as expected with the standard styles and
should work with most contributed styles at least to some extent.
For the actual typesetting of the symbol \sty{biblatex-ext-oa}
patches the bibliography macro \bibmacro{begentry} to include a call to the
bibliography macro \hyperbibmacro{oamark}.
\begin{biblatexcode}
\usepackage[(*@\prm{\sty{biblatex} options}@*)]{biblatex}
(*@\dots @*)
\usepackage[(*@\prm{\sty{biblatex-ext-oa} options}@*)]{biblatex-ext-oa}
\end{biblatexcode}

The package may load the support packages
\hypersty{biblatex-ext-oa-doiapi},
\hypersty{biblatex-ext-oasymb-pict2e},
\hypersty{biblatex-ext-oasymb-l3draw}
and \hypersty{biblatex-ext-oasymb-tikz}.
The preferred way to use those packages is to have them loaded
automatically via \sty{biblatex-ext-oa}'s package options.
It should usually not be necessary to load any of these support packages
directly with \cmd{usepackage}, but it is possible to use them as
stand-alone packages should the need arise in other situations.

\begin{warnbox}
Note that the macro \hypercmd{oasymbol} must be defined and should contain an
open access symbol that can be printed in the margin for the package
\sty{biblatex-ext-oa} to work properly.
The package \sty{biblatex-ext-oa} itself does not provide a definition for
\hypercmd{oasymbol} if the option \hyperopt{symbolpackage} is not used.
So you should either set that option or define command \hypercmd{oasymbol}
yourself.
\end{warnbox}

The package \sty{biblatex-ext-oa} provides the following load-time options.
\begin{optionlist}
\boolitem[true]{enable}

This option controls whether the package is only loaded (\optval{false}) or
loaded and active (\optval{true}).

\enquote{Active} means that the initial state of the global bibliography option
\hyperopt{openaccess} is \optval{auto} and that useful default settings are
applied for semi-automatic open access detection.
These useful defaults include patches of the bibmacro \bibmacro{begentry}
and, if \hyperopt{doiapi} is enabled, also \bibmacro{doi+eprint+url}.

If the package is loaded with \opt{enable} set to \optval{false} the global
bibliography option \hyperopt{openaccess} will be set to \optval{false} and no
sensible defaults are defined for the semi-automatic open access detection.

\optitem[false]{symbolpackage}{\optval{false}, \optval{pict2e}, \optval{l3draw},
  \optval{tikz}}

Load one of the available open access symbol support packages.
\begin{valuelist}
  \item[false] Don't load any symbol package.
    \begin{warnbox}
      Since \sty{biblatex-ext-oa} does not provide a default definition for
      \hypercmd{oasymbol}, you will have to make sure to define that command
      yourself if you don't load any of the symbol packages.
    \end{warnbox}
  \item[pict2e] Load \hypersty{biblatex-ext-oasymb-pict2e} to provide a
    definition for \hypercmd{oasymbol} drawn in \sty{pict2e}.
    See \cref{sec:oa:symbol,sec:oa:symbol-pict2e}.
  \item[l3draw] Load \hypersty{biblatex-ext-oasymb-l3draw} to provide a
    definition for \hypercmd{oasymbol} drawn in \sty{l3draw}.
    See \cref{sec:oa:symbol,sec:oa:symbol-l3draw}.
    \begin{remindbox}
      Please keep in mind that \sty{l3draw} is still considered experimental.
    \end{remindbox}
  \item[tikz] Load \hypersty{biblatex-ext-oasymb-tikz} to provide a
    definition for \hypercmd{oasymbol} that is drawn with \pgftikz.
    See \cref{sec:oa:symbol,sec:oa:symbol-tikz}.
    \begin{remindbox}
      The package \hypersty{biblatex-ext-oasymb-tikz} will load \pgftikz.
    \end{remindbox}
\end{valuelist}

\begingroup
\makeatletter
% Avoid a multiply defined label.
% I know this is terrible, ...
\def\ltd@pdfbookmark#1#2{%
  \exltd@pdfbookmark{#1}{#2}}
\makeatother
\optitem{symbol}{\prm{symbol}}
\endgroup

Set \hypercmd{oasymbol} to output the symbol identified as \prm{symbol}.
This option is passed on to the \prm{symbolpackage} selected
with the \hyperopt{symbolpackage} option.
Possible values can be found in the respective subsections
of \cref{sec:oa:symbol}.

\begin{warnbox}
Note that this option is only available if the
option~\hyperopt{symbolpackage} has been set to a valid value different
from \optval{false} or one of the open access symbol packages has
been loaded manually (the latter is usually not recommended, the
option~\hyperopt{symbolpackage} is the preferred way to load those
packages).
\end{warnbox}

\boolitem[false]{doiapi}

Whether or not to load the support package \hypersty{biblatex-ext-oa-doiapi}
that provides a Lua module to query open access information
from Unpaywall\fnurl{https://unpaywall.org/} via the DOI of an entry.

\begin{warnbox}
The package \hypersty{biblatex-ext-oa-doiapi} and thus this option
can only be used with \lualatex.
\end{warnbox}
\end{optionlist}

The following macros in \sty{biblatex-ext-oa} are also of interest.
\begin{ltxsyntax}


\cmditem{LoadOASymbolPackage}[symbol]{package}

This command provides an alternative to \hyperopt{symbolpackage} for loading
a symbol package.
The mandatory argument \prm{package} can take the same values as the
\hyperopt{symbolpackage} option.
The optional argument \prm{symbol} has the same meaning as the possible values
for the \hyperopt{symbol} package option.

The command can only be used in the preamble.
It may only be used once and only if none of the symbol packages have been
loaded either explicitly or via the \hyperopt{symbolpackage} option.

This command is related to \hypercmd{DefineOASymbol} (see \cref{sec:oa:symbol}).

\csitem{oasymbol}
This commands holds the little symbol that is going to be printed in the margin
to mark open access publications.

This command is initially undefined and must be defined for the
package to work.
One way of giving this command a useful definition is via the
\hyperopt{symbolpackage} option of \sty{biblatex-ext-oa}.
\end{ltxsyntax}

An entry will be marked as open access if it has a \enquote{best open access
URL}.
This best open access URL will be determined according to the rules set out by
the \hyperopt{openaccess} bibliography option (see \cref{sec:oa:detect}) in the
\cmd{AtDataInput} hook,
it is stored in the newly defined field \hyperbibfield{bestoaurl}.
\begin{fieldlist}
\fielditem{bestoaurl}{literal}
This field holds the \enquote{best open access URL} as determined by the open
access detection outlined in \cref{sec:oa:detect}.

Note that this field need not hold the URL in expanded form.
\end{fieldlist}

Depending on the load-time options the package may define the following two
bibliography macros.
\begin{keymarglistbook}
\keyitem[oamark]

Prints the open access symbol if a best open access URL is available.
This bibliography macro is available if the package is loaded with
\hyperopt{enable} set to \optval{true}

\keyitem[api:bestoaurl]

Display the best open access URL according to the Unpaywall API.
The URL is not shown if it coincides with the DOI, the check for that is
performed by \hypercmd{OpenaccessURLisDOI} (see \cref{sec:oa:doiapi}).
This macro is only available if both the \hyperopt{enable} and the
\hyperopt{doiapi} options are set to \optval{true}.

This macro is useful in connection with the Unpaywall API since the best
open access URL may not be amongst the fields that are already displayed
in the entry.
\end{keymarglistbook}

\begin{remindbox}
With \opt{enable} set to \optval{true} the package will furthermore patch
the bibliography macro \bibmacro{begentry} to execute the bibliography macro
\hyperbibmacro{oamark}.
If additionally \hyperopt{doiapi} is \optval{true}, the bibliography macro
\bibmacro{doi+eprint+url} will be patched to include a call to
\hyperbibmacro{api:bestoaurl}.
Please keep that in mind should you need to redefine \bibmacro{begentry}
or \bibmacro{doi+eprint+url}.
\end{remindbox}

\subsection{Open access detection}\label{sec:oa:detect}
The heart of the package \sty{biblatex-ext-oa} is the bibliography option
\hyperopt{openaccess}, which can be set globally, per type or per entry.

A longer example document exploring various aspects of open access
detection can be found at
\url{https://github.com/moewew/biblatex-ext/blob/release/oaslinks.tex}.

\begin{optionlist}
\optitem[auto {\normalfont(\optval{none})}]{openaccess}{\optval{auto},
  \optval{doiapi}, \optval{forcedoiapi}, \optval{true}, \optval{false},
  \optval{none}, \prm{open access field}}

This option controls how the best open access URL is detected.
The initial value is \optval{auto} unless the package is loaded with the
\hyperopt{enable} option set to \optval{false} in which case the initial
value changes to \optval{none}.

All of the following values are valid at all three levels (global,
per-type and per-entry), but not all options may be useful at all
available levels.
\begin{valuelist}
\item[auto] Use a semi-automatic heuristic to find the best open access URL.

\item[all] Assume that all known \enquote{open access fields} contain an open
  access URL.

  Note that an entry still needs at least one field that open access field
  for the open access symbol to show up.

\item[none] Assume that no known \enquote{open access field} contains an open
  access URL.

  The value \optval{none} may be used to disable the \opt{openaccess} feature.

\item[doiapi] Use API queries from the \sty{biblatex-ext-oa-doiapi} package
  to determine the best open access link from the DOI.

  \begin{warnbox}
  This option requires that the \hyperopt{doiapi} package option be
  set to \optval{true} and only works with \lualatex.
  Furthermore it needs a DOI in the \bibfield{doi} field.
  If the \bibfield{doi} field is empty, this option falls back to \optval{auto}.
  \end{warnbox}

\item[onlydoiapi] Like \optval{doiapi}, but does not fall back to \optval{auto}
  in case no DOI is present.

\item[forcedoiapi] Like \optval{doiapi}, but overrides more specific option
  levels that would say otherwise.

  By default more specific options take precedence over more general options,
  that means that a per-entry option trumps a per-type option, which in turn
  overrides the global setting.
  If \optval{forcedoiapi} is set it will prevail over more specific options that
  would say otherwise. A common use case is to override per-entry options with
  a global \optval{forcedoiapi}.

\item[forceonlydoiapi] A combination of \optval{onlydoiapi} and
  \optval{forcedoiapi}.
  This options overrides all more specific values and does not fall back to
  \optval{auto} in case the DOI is not given.

\item[true] An alias for \optval{all}.
\item[false] An alias for \optval{none}.

\item[\prm{open access field}] Specifies that the open access version is given
  by \prm{open access field}.
  This value would normally be used only on a per-entry level.

  Any field for which \hypercmd{DeclareOpenAccessFieldUrl} has declared a URL
  specification is a valid \enquote{open access field}.
\end{valuelist}

\end{optionlist}

The heuristics to find the best open access link are governed
by the following commands and rely on information present in the \filename{.bib}
file (ideally in field annotations).

\begin{ltxsyntax}
\cmditem{DeclareOpenAccessFieldUrl}[openness]{field}{url spec}

Declares \prm{field} to be an \enquote{open access field}.
The code for \prm{url spec} should expand to the full URL under which the entry
can be accessed.
The optional \prm{openness} argument indicates whether the URL will always be
open access (\texttt{always}) or whether it is only open access under certain
conditions (\texttt{conditional});
if it is not present \texttt{conditional} is assumed.

If the package is loaded with \opt{enable} set to \optval{true},
the following declarations are active.
\begin{biblatexcode}
\DeclareOpenAccessFieldUrl{url}{\thefield{url}}
\DeclareOpenAccessFieldUrl{doi}{https://doi.org/\thefield{doi}}
\end{biblatexcode}

\cmditem{UndeclareOpenAccessFieldUrl}{field}

Disable \prm{field} as \enquote{open access field} and remove its mapping
to a URL.

\cmditem{DeclareOpenAccessEprintUrl}[openness]{eprinttype}{url spec}

Declares the \bibfield{eprinttype} \prm{eprinttype} to be an
\enquote{open access eprint type}.
The code for \prm{url spec} should expand to the full URL under which the entry
can be accessed.

The optional \prm{openness} argument indicates whether the URL will always be
open access (\texttt{always}) or whether it is only open access under certain
conditions (\texttt{conditional});
if it is not present \texttt{conditional} is assumed.

The \texttt{always} decision can be overridden on a per-entry basis by
giving the field annotation \texttt{closedaccess}.
If a field has openness \texttt{conditional} it is only considered for a
particular entry if the field annotation \texttt{openaccess} is set.

If the package is loaded with \opt{enable} set to \optval{true},
the following declarations are active.
\begin{biblatexcode}
\DeclareOpenAccessEprintUrl{jstor}{%
  http://www.jstor.org/stable/\thefield{eprint}}
\DeclareOpenAccessEprintUrl{hdl}{%
  http://hdl.handle.net/\thefield{eprint}}
\DeclareOpenAccessEprintUrl{pubmed}{%
  http://www.ncbi.nlm.nih.gov/pubmed/\thefield{eprint}}
\DeclareOpenAccessEprintUrl[always]{arxiv}{%
  https://arxiv.org/\abx@arxivpath/\thefield{eprint}}
\end{biblatexcode}
Since articles on the arXiv are always open access, the declaration
for \bibfield{arxiv} features the optional \prm{openness} argument
\texttt{always}.

\cmditem{DeclareOpenAccessEprintAlias}{alias}{eprinttype}

Handle the open access URL detection for \prm{alias} exactly as that for
\prm{eprinttype}.

If the package is loaded with \opt{enable} set to \optval{true},
the following declarations are active.
\begin{biblatexcode}
\DeclareOpenAccessEprintAlias{JSTOR}{jstor}
\DeclareOpenAccessEprintAlias{HDL}{hdl}
\DeclareOpenAccessEprintAlias{PubMed}{pubmed}
\DeclareOpenAccessEprintAlias{arXiv}{arxiv}
\end{biblatexcode}

\cmditem{UndeclareOpenAccessEprintUrl}{eprinttype}

Disable \prm{eprinttype} as \enquote{open access eprint type} and remove its
mapping to a URL.

\cmditem{DeclareOpenAccessUrlFieldPriority}{fields}

Define the priority order of \enquote{open access fields} if several fields
contain valid open access URLs.
The fields processed in the given order and the last field prevails, meaning
that fields later in the list have higher priority.

The default definition if the package is active is
\begin{biblatexcode}
\DeclareOpenAccessUrlFieldPriority{url,eprint,doi}
\end{biblatexcode}
which means that the DOI is given preference over eprints, which in turn
prevail over the \bibfield{url} field.
\end{ltxsyntax}

The \optval{auto} detection works as follows.
\begin{itemize}
\item The best known open access URL is cleared.
\item For each non-empty field listed in
  \hypercmd{DeclareOpenAccessUrlFieldPriority} the URL specification is
  obtained.
  \begin{itemize}
    \item If the field has \prm{openness} \texttt{always}, the best known open
    access URL is updated with the new value, unless the field has been
    explicitly marked as closed acces with the field annotation
    \texttt{closedaccess}.
    \item If the field has \prm{openness} \texttt{conditional}, the best known
    open access URL is updated with the new value if the field has been marked
    with the field annotation \texttt{openaccess}.
  \end{itemize}
\end{itemize}

For \optval{auto}-detection, an open access article with DOI would
ideally use the field annotation \texttt{openaccess}
(\lstinline[style=extblxstylebibtex]|{doi+an = {=openaccess},|).
% cipriani
\inputexamplebibfile[listing options={linerange={23-34},
                                      style = extblxstylebibtex}]
                    {biblatex-ext-examples.bib}
Preprints on the arXiv, on the other hand, need no field annotation, because
they are always open access.
% meckes
\inputexamplebibfile[listing options={linerange={35-43},
                                      style = extblxstylebibtex}]
                    {biblatex-ext-examples.bib}
\makeatletter
\renewcommand{\extblx@oa@marginmark@do}{%
  \vbox to 0pt{%
    \kern-3\dp\strutbox
    \strut
    \hfill
    \rlap{\kern.6em
      \ifhyperref
        {\href{\thefield{bestoaurl}}}
        {\@firstofone}%
      {\oasymbol}}
    \vss
  }%
}
\makeatother
\begin{bibexample}
\exampleprintbib{cipriani,meckes,sigfridsson}
\end{bibexample}

If the \opt{openaccess} option is set to one specific field only, only
that field will be taken into consideration and it will be assumed that the
field contains an open access link unless the field annotation
\texttt{closedaccess} is set.
In particular the \prm{openness} of each field does not play a role.


\subsection{Open access detection with the Unpaywall API}\label{sec:oa:doiapi}
\label{exltd@itm@biblatex-ext-oa-doiapi}
Inspired by Eric Marsden's%
\fnurl{https://tex.stackexchange.com/users/29621/eric-marsden}
answer to the open access symbol question on TeX.SX, the package
\sty{biblatex-ext-oa-doiapi}, which can be loaded via the \hyperopt{doiapi}
option of \sty{biblatex-ext-oa}, provides means to automatically find the
best open access link to a given article via its DOI by querying the
Unpaywall API\fnurl{https://unpaywall.org/}.

\begin{warnbox}
This package can only be used with \lualatex{} and needs online
access.
Furthermore the Unpaywall API requires an email address and asks to limit
requests to 100,000 calls per day\fnurl{https://unpaywall.org/products/api}.
\end{warnbox}

To avoid too many calls to the API, the package caches its information in the
temporary \filename{.oai} file.
It is safe to delete that file at any point, but if you do so the next
\lualatex{} run may take a while, because all information has to be retrieved
from the APIs.
To avoid old information sticking around for too long you can set a cache
expiration period.

\begin{ltxsyntax}
\cmditem{SetDOIAPIMail}{email}

Define the email address that is going to be used for API queries that require
an email.

\begin{warnbox}
There is no predefined default email address.
If the package is loaded and no email was provided until the
beginning of the document (as tested in an \cmd{AtEndPreamble} hook)
you will receive a warning.
A fatal error will be thrown if you try to query the Unpaywall database
without an email address.
\end{warnbox}

\cmditem{SetDOIAPICacheExpiration}{days}

Set the expiration period for the cache.
If the information for an entry in the cache is older than \prm{days} days
it will be queried again.
The default expiration period is seven days.

\cmditem{IsOpenaccess}{DOI}{true}{false}

Expands to \prm{true} if the DOI is an open access work according to the
Unpaywall database and to \prm{false} otherwise.

\cmditem{GetOpenaccessURLWrapped}{DOI}

Obtain the best open access URL as returned by the Unpaywall API wrapped in
the \cmd{url} macro.

\cmditem{OpenaccessURLisDOI}{DOI}{true}{false}

Expands to \prm{true} if the best open access URL as returned by the Unpaywall
API is the DOI and to \prm{false} otherwise.
\end{ltxsyntax}


\subsection{Open access symbols}\label{sec:oa:symbol}
Currently, this bundle offers three methods of drawing the open access
symbols.
Each method is packed up in a little sub-package, end users are not
expected to load these packages manually, instead they should use
the option~\hyperopt{symbolpackage} of \hypersty{biblatex-ext-oa}.

The package \hypersty{biblatex-ext-oasymb-pict2e} draws the symbols using
\sty{pict2e}'s \env{picture} environment.
The package \hypersty{biblatex-ext-oasymb-tikz}
uses \pgftikz's \env{tikzpicture}.
The package \hypersty{biblatex-ext-oasymb-l3draw} finally
uses \LaTeX3's \sty{l3draw} package.
The main purpose of these packages is to define the macro \cmd{oasymbol}
for use with \sty{biblatex-ext-oa}.

All packages define a similar set of macros, so they are not indended to
be loaded together.
If used as stand-alone packages, all packages only have one option.

\begin{optionlist}
\optitem[plos]{symbol}{\optval{plos}, \optval{oanet}}

This options determines which of the two available symbols is going to
be used for \hypercmd{oasymbol}.

The possible values are
\begin{valuelist}
\item[plos] Use the open access symbol by PLOS | Public Library of Science%
  \fnurl{https://www.plos.org/} \csuse{extblx@oasymb@pict@plos}.

  The drawing is based on a CC0%
  \fnurl{https://creativecommons.org/publicdomain/zero/1.0/deed.en}
  work by PLoS (now PLOS | Public Library of Science),
  modified by Wikipedia users Nina, Beao, and JakobVoss%
\fnurl{https://commons.wikimedia.org/wiki/File:Open_Access_logo_PLoS_white.svg}.

\item[oanet] Use the open access symbol by open-access.net%
  \fnurl{https://open-access.net/}
  \csuse{extblx@oasymb@pict@oanet}.

  The drawing is based on the logo uploaded to Wikimedia%
  \fnurl{https://commons.wikimedia.org/wiki/File:Open_access.svg}
  and originally from open-access.net%
  \fnurl{https://open-access.net/fileadmin/logos/oa.svg}.
  Wikimedia claims the content does not meet the threshold of originality
  for copyright protection.
  Even if that is not the case, the legal notices on open-access.net%
  \fnurl{https://open-access.net/impressum}
  place all contents under a Creative Commons 4.0 Attribution International
  (CC BY 4.0) Licence\fnurl{https://creativecommons.org/licenses/by/4.0/}
  unless stated otherwise.
  The logo designer is listed as
  \emph{Medien + Design,
  Center für Digitale Systeme,
  Kompetenzzentrum e-Learning / Multimedia,
  Freie Universität Berlin}.

  There is no implication that the open-access.net logo is not covered by
  the CC BY 4.0 terms.
  Indeed, the German \enquote{about us} page explicitly states
  \foreignquote{ngerman}{%
    Das Logo der Informationsplattform darf nachgenutzt werden,
    gerne mit einem Link zu open-access.net.}%
  \fnurl{https://open-access.net/ueber-uns/}
  The English version has \enquote{The logo of the information platform
  may be reused with a link to open-access.net}%
  \fnurl{https://open-access.net/en/about-us/}.
  While the German version leaves some leeway as to whether or not a link is
  required as attribution, the English version seems more explicit.

  That means that if you do not follow Wikimedia in considering the symbol
  not protected by copyright in your~-- and all other relevant jurisdictions%
  ~-- due to its failure to cross the threshold of originality,
  you should probably treat it as CC BY 4.0 and treat the link to
  \url{https://open-access.net} as attribution requested by the Licensor
  according to Section 3(a)(1)(A) of the license.
  If you can't reasonably meet the requirements of the license in your work,
  you may want to consider using the PLOS logo, which is licensed under CC0.
\end{valuelist}
\end{optionlist}

Apart from \hypercmd{oasymbol} the packages only define one other user-level
command.
\begin{ltxsyntax}
\cmditem{DefineOASymbol}[symbol]

This command redefines \hypercmd{oasymbol} to point to a different version
of the symbol.
The possible values for the \prm{symbol} argument are the values of the
\hyperopt{symbol} option.
\end{ltxsyntax}

\subsubsection[\sty{pict2e}]{Open access symbols with \sty{pict2e}}
\label{sec:oa:symbol-pict2e}
\label{exltd@itm@biblatex-ext-oasymb-pict2e}
The main purpose of the package \sty{biblatex-ext-oasymb-pict2e}
is to define the command \hypercmd{oasymbol}.
As mentioned above, usually this package is not going to be loaded as a
stand-alone package, instead it is loaded via
\hypersty[symbolpackage]{biblatex-ext-oa}.

The package requires and loads the packages
\sty{pict2e}\fnurl{https://ctan.org/pkg/pict2e} by Hubert Gäßlein,
Rolf Nie\-praschk and Josef Tkadlec
as well as
\sty{xcolor}\fnurl{https://ctan.org/pkg/xcolor} by Uwe Kern.

If used as a stand-alone package, \sty{biblatex-ext-oasymb-pict2e} has one
load-time option, namely \hyperopt{symbol}, and defines one command besides
\hypercmd{oasymbol}, namely \hypercmd{DefineOASymbol}.
The option determines whether \cmd{oasymbol} is defined to display
the PLOS symbol~(\csuse{extblx@oasymb@pict@plos})
or the open-access.net symbol~(\csuse{extblx@oasymb@pict@oanet}).
The command \hypercmd{DefineOASymbol} can be used to change the definition
of \cmd{oasymbol} on the fly.


\subsubsection[Ti\emph{k}Z]{Open access symbols with Ti\emph{k}Z}
\label{sec:oa:symbol-tikz}
\label{exltd@itm@biblatex-ext-oasymb-tikz}
The main purpose of the package \sty{biblatex-ext-oasymb-tikz}
is to define the command \hypercmd{oasymbol}.
As mentioned above, usually this package is not going to be loaded as a
stand-alone package, instead it is loaded via
\hypersty[symbolpackage]{biblatex-ext-oa}.

This package requires and loads the package
\sty{tikz}\fnurl{https://ctan.org/pkg/pgf} by Till Tantau as well as all
its dependencies.

If used as a stand-alone package, \sty{biblatex-ext-oasymb-tikz} has one
load-time option, namely \hyperopt{symbol}, and defines one command besides
\hypercmd{oasymbol}, namely \hypercmd{DefineOASymbol}.
The option determines whether \cmd{oasymbol} is defined to display
the PLOS symbol~(\csuse{extblx@oasymb@tikz@plos})
or the open-access.net symbol~(\csuse{extblx@oasymb@tikz@oanet}).
The command \hypercmd{DefineOASymbol} can be used to change the definition
of \cmd{oasymbol} on the fly.

This package used to be called \sty{biblatex-ext-oa-tikzsymbols},
for consistency reasons it has been renamed to \sty{biblatex-ext-oasymb-tikz}.

The command \cmd{DefineTikZOASymbol} has been renamed to the more generic
\hypercmd{DefineOASymbol}.
Backwards compatibility code for that change is in place.


\subsubsection[\sty{l3draw}]{Open access symbols with \sty{l3draw}}
\label{sec:oa:symbol-l3draw}
\label{exltd@itm@biblatex-ext-oasymb-l3draw}
The main purpose of the package \sty{biblatex-ext-oasymb-l3draw}
is to define the command \hypercmd{oasymbol}.
As mentioned above, usually this package is not going to be loaded as a
stand-alone package, instead it is loaded via
\hypersty[symbolpackage]{biblatex-ext-oa}.

This package requires and loads the full force of \LaTeX3.
Aside from the main package \sty{expl3}\fnurl{https://ctan.org/pkg/expl3} it
loads \sty{xparse}\fnurl{https://ctan.org/pkg/xparse},
and \sty{l3keys2e}\fnurl{https://ctan.org/pkg/l3keys2e}.
Drawing is performed with the (still experimental)
\sty{l3draw}\fnurl{https://ctan.org/pkg/l3experimental} packages.
The code works best with version 2021-02-18 or above
of~\sty{l3draw}.

If used as a stand-alone package, \sty{biblatex-ext-oasymb-l3draw} has one
load-time option, namely \hyperopt{symbol}, and defines one command besides
\hypercmd{oasymbol}, namely \hypercmd{DefineOASymbol}.
The option determines whether \cmd{oasymbol} is defined to display
the PLOS symbol~(\csuse{extblx@oasymb@draw@plos})
or the open-access.net symbol~(\csuse{extblx@oasymb@draw@oanet}).
The command \hypercmd{DefineOASymbol} can be used to change the definition
of \cmd{oasymbol} on the fly.




\clearpage
\section{Revision History}\label{sec:log}
The GitHub repository of this project uses release tags, so you can compare
the changes in source code there.\footnote{\url{\gitbaseurl/compare/}}
See also \filename{CHANGES.md}.

The numbers on the right indicate the relevant section of the manual.
\begin{changelog}
\begin{release}{0.13}{2021-06-08}
  \item Fixed title formatting with related entries in
    \blxstyle{authoryear} style family
  \item Added \hyperbibfieldformat{biblabeltitle} and
    \hyperbibfieldformat{titlecase:biblabeltitle} field formats
    \see{sec:opt:field}
\end{release}
\begin{release}{0.12b}{2021-04-22}
  \item Fixed bug with refcontext assignment in
    \hypercmd{printbibtabular}\see{sec:tabularbib}
\end{release}
\begin{release}{0.12a}{2021-04-20}
  \item Fixed bug with \opt{env} option for
    \hypercmd{printbibtabular}\see{sec:tabularbib}
\end{release}
\begin{release}{0.12}{2021-02-27}
  \item Added \hypercmd{UndeclareCiteDelims}\see{sec:opt:citedelims}
  \item Clarified \hyperopt{innamebeforetitle} documentation%
    \see{sec:opt:gen}
\end{release}
\begin{release}{0.11}{2021-02-19}
  \item Synced with \sty{l3draw} changes.
\end{release}
\begin{release}{0.10}{2021-01-01}
  \item Synced with \sty{biblatex} 3.16 changes.
\end{release}
\begin{release}{0.9}{2020-08-21}
  \item Synced with \sty{biblatex} 3.15 changes.
\end{release}
\begin{release}{0.8g}{2020-08-09}
  \item Synced \hypersty{biblatex-ext-oasymb-l3draw} with 2020-08-07
    \sty{l3color}/\sty{l3draw} changes.\see{sec:oa:symbol-l3draw}
\end{release}
\begin{release}{0.8f}{2020-05-09}
  \item Fixed inner cite delimiters for \cmd{footcitetext}%
  \see{sec:opt:citedelims}
\end{release}
\begin{release}{0.8e}{2020-05-05}
  \item Fixed \hyperopt{introcite} definition for
    \blxstyle{ext-numeric-comp}\see{sec:opt:style}
  \item Fixed issue with \bibfield{labelprefix} in
    \hypercmd{printbibtabular}\see{sec:tabularbib}
\end{release}
\begin{release}{0.8d}{2020-03-15}
  \item Fixed issue with \hyperbibmacro{tabular:sortname}\see{sec:tabularbib}
\end{release}
\begin{release}{0.8c}{2019-11-30}
  \item Stopped querying \url{https://doi.org} API for DOI
    verification\see{sec:oa:doiapi}
\end{release}
\begin{release}{0.8b}{2019-11-01}
  \item Fixed bug in \blxstyle{ext-verbose-trad2}%
    \see{sec:styles:standard}
\end{release}
\begin{release}{0.8a}{2019-10-31}
  \item Fixed default value of \hypercmd{servoldelim}\see{sec:opt:punct}
  \item Fixed bug in \blxstyle{ext-authoryear-tiecomp}%
    \see{sec:styles:new}
\end{release}
\begin{release}{0.8}{2019-08-25}
  \item Added \hypercmd{AtIntrocite} \see{sec:opt:style}
  \item Require \sty{biblatex} v3.13 (2010/08/17)\see{sec:req}
\end{release}
\begin{release}{0.7a}{2019-04-04}
  \item Fixed bug in the \opt{env} option of \hypercmd{printbibtabular}%
    \see{sec:tabularbib}
\end{release}
\begin{release}{0.7}{2019-02-08}
  \item Added outer citation delimiters for \cmd{supercite}%
    \see{sec:opt:citedelims}
  \item Added \hypersty{biblatex-ext-oasymb-pict2e}\see{sec:oa:symbol-pict2e}
  \item Added \hypersty{biblatex-ext-oasymb-l3draw}\see{sec:oa:symbol-l3draw}
  \item Renamed  \sty{biblatex-ext-oa-tikzsymbols} to
    \hypersty{biblatex-ext-oasymb-tikz}\see{sec:oa:symbol-tikz}
  \item Deprecated option \opt{tikzsymbol} of \hypersty{biblatex-ext-oa} in
    favour of \hyperopt{symbolpackage} and \hyperopt{symbol}\see{sec:oa}
  \item Renamed and generalised \cmd{DefineTikZOASymbol} to
    \hypercmd{DefineOASymbol}\see{sec:oa:symbol}
  \item Renamed and generalised \cmd{LoadTikZOASymbol} to
    \hypercmd{LoadOASymbolPackage}\see{sec:oa}
\end{release}
\begin{release}{0.6b}{2019-01-11}
  \item Fixed issue loading \texttt{socket.url} module in
    \hypersty{biblatex-ext-oa-doiapi}\see{sec:oa:doiapi}
\end{release}
\begin{release}{0.6a}{2019-01-04}
  \item Minor improvements for \hypersty{biblatex-ext-oa}\see{sec:oa}
\end{release}
\begin{release}{0.6}{2018-11-23}
  \item Require \sty{biblatex} 3.12
  \item Made \hyperopt{dashed} and \hyperopt{introcite} options available on a
    per-entry and per-type basis\see{sec:opt:style}
  \item Added \hypercmd{titleaddonpunct}\see{sec:opt:punct}
  \item Added \hypersty{biblatex-ext-oa} package for open access detection and
    symbols\see{sec:oa}
\end{release}
\begin{release}{0.5a}{2018-10-09}
  \item Fixed a bug with \cmd{footcites} and \cmd{footcitetexts} in
    \blxstyle{ext-authoryear}
\end{release}
\begin{release}{0.5}{2018-10-02}
  \item New \hyperblxstyle[ext-authoryear-ecomp]{ext-authoryear-*ecomp} style
    subfamily\see{sec:styles:new}
  \item Added outer cite delimiters for \cmd{footcite}\see{sec:opt:citedelims}
  \item Added experimental tabular bibliography\see{sec:tabularbib}
\end{release}
\begin{release}{0.4}{2018-06-10}
  \item Renamed \cmd{DeclareOuterCiteDelim} and friends to
    \hypercmd{DeclareOuterCiteDelims}\see{sec:opt:citedelims}
  \item Added \hypercmd{RegisterCiteDelims}\see{sec:opt:citedelims}
  \item Renamed \enquote{virtual} cite command \cmd{bbx:introcite} to
    \cmd{bbx@introcite}\see{sec:opt:style}
  \item Renamed \opt{citeinxref} to \hyperopt{citexref}\see{sec:opt}
\end{release}
\begin{release}{0.3}{2018-06-04}
  \item Added \hyperbibfieldformat[titlecase:title]{titlecase:\dots title}
    field formats\see{sec:opt:field}
  \item Added \hypersty{bbx:introcite:plain:keeprelated} toggle%
    \see{sec:opt:style}
  \item Added \hypercmd{jourvoldelim}, \hypercmd{jourserdelim} and
    \hypercmd{servoldelim}\see{sec:opt:punct}
  \item Improved documentation
\end{release}
\begin{release}{0.2}{2018-03-28}
  \item Rework lengths for \hyperkvopt{introcite}{label}\see{sec:opt:style}
  \item Fixed meaning of \hypercmd{maintitletitledelim}\see{sec:opt:punct}
  \item Added \hypercmd{voltitledelim}\see{sec:opt:punct}
\end{release}
\begin{release}{0.1a}{2018-03-20}
  \item Fixed inner citation delimiters for \hyperblxstyle{ext-authoryear},
    \hyperblxstyle{ext-authortitle} and their \blxstyle{-ibid} versions%
    \see{sec:opt:citedelims}
  \item Fixed \cmd{smartcite} delimiters\see{sec:opt:citedelims}
\end{release}
\begin{release}{0.1}{2018-03-18}
  \item First public release
\end{release}
\end{changelog}

\begin{bibexample}[breakable]
\printbibliography[heading=bibintoc, title={Example \refname}]
\end{bibexample}

\clearpage
\appendix
\section{Punctuation Commands in Use}\label{sec:punctinuse}
The following example bibliography shows some common punctuation commands
in use.
Commands provided by standard \sty{biblatex} are marked in
\textit{\cmd{italics}}, new commands defined by \sty{biblatex-ext} are in
\textbf{\cmd{bold}} and linked to their documentation.
\begin{bibexample}[title={Punctuation and delimiters
  (defined by \textit{standard \sty{biblatex}} and
  \textbf{\sty{biblatex-ext}})},
  top=6mm,bottom=4mm,remember,
  overlay={
    % geer
    \punctarrow*{nameyeardelim}{-.8mm}{6mm}
    \punctarrow*{nametitledelim}{2.5mm}{6mm}
    % companion
    \punctarrow*{multinamedelim}{-2.5mm}{6mm}
    \punctarrow*{finalnamdelim}{2.5mm}{4mm}
    \punctarrow{locpubdelim}{-2.5mm}{-5mm}
    \punctarrow{pubdatedelim}{2.5mm}{-4mm}
    % knuth:ct:a
    \punctarrow{maintitletitledelim}{-2.5mm}{-.8cm}
    \punctarrow{voltitledelim}{2.5mm}{-4mm}
    % moore
    \punctarrow*{intitlepunct}{-4mm}{-4mm}
    \punctarrow*{bibpagespunct}{-2.5mm}{-4mm}
    \punctarrow*{bibrangedash}{.2cm}{-4mm}
    % sigfridsson
    \punctarrow{jourvoldelim}{-.2cm}{-4mm}
    \punctarrow{volnumdelim}{.2cm}{-4mm}
    % vizedom:related
    \punctarrow*{translatortypedelim}{2.5mm}{6mm}
    \punctarrow*{begrelateddelim}{.8cm}{-4mm}
    % westfahl:frontier
    \punctarrow*{editortypedelim}{2.5mm}{6mm}
    \punctarrow*{newunitpunct}{-.2cm}{-4mm}
    % westfahl:space
    \punctarrow*{bibnamedash}{2.5mm}{5mm}
    \punctarrow*{subtitlepunct}{2.5mm}{5mm}
  }
]
\frenchspacing
\list{}
  {\setlength{\leftmargin}{\bibhang}%
   \setlength{\itemindent}{-\leftmargin}%
   \setlength{\itemsep}{8mm}%
   \setlength{\parsep}{\bibparsep}}
\item\nocite{geer}
  Geer, Ingrid de\tikztextmark{nameyeardelim}{\textvisiblespace}(1985)%
  \tikztextmark{nametitledelim}{.} \enquote{Earl, Saint, Bishop, Skald --
  and Music. The Orkney Earldom of the Twelfth Century. A Musicological Study}.
  PhD thesis. Uppsala: Uppsala Universitet.

\item\nocite{companion}
  Goossens, Michel\tikztextmark{multinamedelim}{,} Frank Mittelbach
  \tikztextmark{finalnamdelim}{and} Alexander Samarin (1994).
  \emph{The LaTeX Companion}. 1st ed. Reading, Mass.%
  \tikztextmark{locpubdelim}{:} Addison-Wesley\tikztextmark{pubdatedelim}{,}
  1994. 528 pp.

\item\nocite{knuth:ct:a}
  Knuth, Donald E. (1984). \emph{Computers \& Typesetting}%
  \tikztextmark{maintitletitledelim}{.} Vol. A\tikztextmark{voltitledelim}{:}
  \emph{The \TeX{} book}. Reading, Mass.: Addison-Wesley, 1984.

\item\nocite{moore}
  Moore, Gordon E. (1965). \enquote{Cramming more components onto integrated
  circuits}. In\tikztextmark{intitlepunct}{:} \emph{Electronics} 38.8%
  \tikztextmark{bibpagespunct}{,} pp. 114\tikztextmark{bibrangedash}{--}117.

\item\nocite{sigfridsson}
  Sigfridsson, Emma and Ulf Ryde (1998). \enquote{Comparison of methods for
  deriving atomic charges from the electrostatic potential and moments}.
  In: \emph{Journal of Computational
  Chemistry}\tikztextmark{jourvoldelim}{\textvisiblespace}19%
  \tikztextmark{volnumdelim}{.}4 (1998), pp. 377--395.

\item\nocite{vizedom:related}
  Vizedom, Monika B. and Gabrielle L. Cafee%
  \tikztextmark{translatortypedelim}{,} trans. (1960).
  \emph{The Rites of Passage.} University of Chicago Press%
  \tikztextmark{begrelateddelim}{.} Trans. of Arnold van Gennep.
  \emph{Les rites de passage.}
  Paris: Nourry, 1909.

\item\nocite{westfahl:frontier}
  Westfahl, Gary\tikztextmark{editortypedelim}{,} ed. (2000a).
  \emph{Space and Beyond. The Frontier Theme in Science Fiction}%
  \tikztextmark{newunitpunct}{.} Westport, Conn. and London: Greenwood, 2000.

\item\nocite{westfahl:space}
  \tikztextmark{bibnamedash}{--} (2000b). \enquote{The True Frontier%
  \tikztextmark{subtitlepunct}{.} Confronting and Avoiding the Realities of
  Space in American Science Fiction Films}. In: \emph{Space and Beyond.
  The Frontier Theme in Science Fiction}. Ed. by Gary Westfahl. Westport, Conn.
  and London: Greenwood, 2000, pp. 55--65.
\endlist
\end{bibexample}

\end{document}
\endinput