citum-schema-style 0.65.0

Citum style schema types and styling engine
Documentation
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
/*
SPDX-License-Identifier: MIT OR Apache-2.0
SPDX-FileCopyrightText: © 2023-2026 Bruce D'Arcus and Citum contributors
*/

//! Style presets for common formatting patterns.
//!
//! Presets are named bundles of configuration that encode common patterns from major
//! citation styles. Instead of inheriting from a parent style, styles can compose
//! presets for different concerns (contributors, dates, titles).
//!
//! ## Usage
//!
//! Style authors can use preset names for defaults and override individual settings:
//!
//! ```yaml
//! options:
//!   contributors: apa
//!   dates: year-only
//!   titles: apa
//! ```
//!
//! ## Preset Expansion
//!
//! Each preset expands to concrete `Config` values. The style author can:
//! 1. Use a preset name for defaults
//! 2. Override individual fields as needed
//! 3. Skip presets entirely and specify everything explicitly

use crate::grouping::{GroupSort, GroupSortKey, SortKey as GroupSortKey_};
use crate::options::multilingual::{MultilingualConfig, MultilingualMode};
use crate::options::{
    AndOptions, ContributorConfig, DateConfig, DelimiterPrecedesLast, DemoteNonDroppingParticle,
    DisplayAsSort, MonthFormat, NameForm, ShortenListOptions, Sort, SortKey, SortSpec, Substitute,
    SubstituteKey, TitleRendering, TitlesConfig,
};
#[cfg(feature = "schema")]
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;

/// Contributor formatting presets.
///
/// Each preset encodes the contributor formatting conventions for a major citation
/// style or style family. Use doc comments to describe the visual behavior so
/// style authors can choose the right preset without knowing style guide names.
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]
#[serde(rename_all = "kebab-case")]
#[non_exhaustive]
pub enum ContributorPreset {
    /// First author family-first, "&" symbol, et al. after 20 authors,
    /// initials with period-space, comma before "&".
    /// Example: "Smith, J. D., & Jones, M. K."
    Apa,
    /// First author family-first, "and" text, contextual serial comma,
    /// full given names (no initials).
    /// Example: "Smith, John D., and Mary K. Jones"
    Chicago,
    /// All authors family-first, no conjunction, compact initials (no
    /// period/space), et al. after 6 of 7+.
    /// Example: "Smith JD, Jones MK, Brown AB"
    Vancouver,
    /// Given-first format, "and" text, initials with period-space,
    /// comma before "and".
    /// Example: "J. D. Smith, M. K. Jones, and A. B. Brown"
    Ieee,
    /// All authors family-first, "and" text, compact initials (period,
    /// no space), comma before "and".
    /// Example: "Smith, J.D., Jones, M.K., and Brown, A.B."
    Harvard,
    /// All authors family-first, no conjunction, compact initials (no
    /// period/space), space sort-separator, et al. after 3 of 5+.
    /// Example: "Smith JD, Jones MK, Brown AB"
    Springer,
    /// Numeric compact author list for journal-heavy corpora:
    /// all family-first, no conjunction, sort-only particle demotion,
    /// space sort-separator, et al. after 6 of 7+.
    NumericCompact,
    /// Numeric medium author list variant:
    /// same as `numeric-compact`, but et al. after 3 of 4+.
    NumericMedium,
    /// Numeric tight: all family-first, no initials, et al. after 3 of 7+.
    /// Tighter than `numeric-compact` (use-first: 3 vs 6).
    /// Example: "Smith J, Jones M, Brown A, et al."
    NumericTight,
    /// Numeric large: all family-first, no initials, et al. after 10 of 11+.
    /// For biomedical journals that show nearly all authors.
    /// Example: "Smith J, Jones M, Brown A, [10 authors], et al."
    NumericLarge,
    /// Numeric all-authors: all family-first, no conjunction, compact initials,
    /// no list shortening, particle demotion disabled.
    /// Example: "Smith JD, Jones MK, Brown AB"
    NumericAllAuthors,
    /// Numeric given-first with period-only initials (no space), no conjunction,
    /// and comma delimiters.
    /// Example: "J.D. Smith, M.K. Jones, A.B. Brown"
    NumericGivenDot,
    /// Annual Reviews style: all family-first, no initials, et al. after 5 of 7+,
    /// particle demotion never. Distinguishable by "never" demote policy.
    /// Example: "van der Berg J, Smith M, Jones A, Brown B, White C, et al."
    AnnualReviews,
    /// Math/physics author-date: all family-first, period initial (no trailing
    /// space), comma sort-separator, no conjunction. Used across Springer
    /// math/physics and related author-date journals.
    /// Example: "Smith, J., Jones, M., Brown, A."
    MathPhys,
    /// Social science first-author inversion: first author family-first,
    /// remaining authors given-first, period-space initials, comma
    /// sort-separator, no conjunction. Common in sociology and civil engineering.
    /// Example: "Smith, J. D., M. K. Jones, A. B. Brown"
    SocSciFirst,
    /// Physics numeric given-first: no author inversion, period-space initial,
    /// no conjunction, sort-only particle demotion. Used by numeric physics
    /// journals like APS.
    /// Example: "J. Smith, M. Jones, A. Brown"
    PhysicsNumeric,
}

impl ContributorPreset {
    /// Convert named-style presets to config.
    fn config_named_presets(&self) -> ContributorConfig {
        match self {
            ContributorPreset::Apa => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::First),
                and: Some(AndOptions::Symbol),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some(". ".to_string()),
                name_form: Some(NameForm::Initials),
                shorten: Some(ShortenListOptions {
                    min: 21,
                    use_first: 19,
                    ..Default::default()
                }),
                ..Default::default()
            },
            ContributorPreset::Chicago => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::First),
                and: Some(AndOptions::Text),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Contextual),
                ..Default::default()
            },
            ContributorPreset::Vancouver => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                initialize_with: Some("".to_string()),
                name_form: Some(NameForm::Initials),
                shorten: Some(ShortenListOptions {
                    min: 7,
                    use_first: 6,
                    ..Default::default()
                }),
                ..Default::default()
            },
            ContributorPreset::Ieee => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::None),
                and: Some(AndOptions::Text),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some(". ".to_string()),
                name_form: Some(NameForm::Initials),
                ..Default::default()
            },
            ContributorPreset::Harvard => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::Text),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some(".".to_string()),
                name_form: Some(NameForm::Initials),
                ..Default::default()
            },
            ContributorPreset::Springer => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some("".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(" ".to_string()),
                shorten: Some(ShortenListOptions {
                    min: 5,
                    use_first: 3,
                    ..Default::default()
                }),
                ..Default::default()
            },
            #[allow(clippy::unreachable, reason = "Subset of variants handled here")]
            _ => unreachable!(),
        }
    }

    /// Convert numeric-style presets to config.
    fn config_numeric_presets(&self) -> ContributorConfig {
        match self {
            ContributorPreset::NumericCompact => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some("".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(" ".to_string()),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::SortOnly),
                shorten: Some(ShortenListOptions {
                    min: 7,
                    use_first: 6,
                    ..Default::default()
                }),
                ..Default::default()
            },
            ContributorPreset::NumericMedium => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some("".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(" ".to_string()),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::SortOnly),
                shorten: Some(ShortenListOptions {
                    min: 4,
                    use_first: 3,
                    ..Default::default()
                }),
                ..Default::default()
            },
            ContributorPreset::NumericTight => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some("".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(" ".to_string()),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::SortOnly),
                shorten: Some(ShortenListOptions {
                    min: 7,
                    use_first: 3,
                    ..Default::default()
                }),
                ..Default::default()
            },
            ContributorPreset::NumericLarge => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some("".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(" ".to_string()),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::SortOnly),
                shorten: Some(ShortenListOptions {
                    min: 11,
                    use_first: 10,
                    ..Default::default()
                }),
                ..Default::default()
            },
            ContributorPreset::NumericAllAuthors => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some("".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(" ".to_string()),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::Never),
                ..Default::default()
            },
            ContributorPreset::NumericGivenDot => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::None),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some(".".to_string()),
                name_form: Some(NameForm::Initials),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::SortOnly),
                ..Default::default()
            },
            #[allow(clippy::unreachable, reason = "Subset of variants handled here")]
            _ => unreachable!(),
        }
    }

    /// Convert specialty-style presets to config.
    fn config_specialty_presets(&self) -> ContributorConfig {
        match self {
            ContributorPreset::AnnualReviews => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Never),
                initialize_with: Some("".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(" ".to_string()),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::Never),
                shorten: Some(ShortenListOptions {
                    min: 7,
                    use_first: 5,
                    ..Default::default()
                }),
                ..Default::default()
            },
            ContributorPreset::MathPhys => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::All),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some(".".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(", ".to_string()),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::SortOnly),
                ..Default::default()
            },
            ContributorPreset::SocSciFirst => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::First),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                delimiter_precedes_last: Some(DelimiterPrecedesLast::Always),
                initialize_with: Some(". ".to_string()),
                name_form: Some(NameForm::Initials),
                sort_separator: Some(", ".to_string()),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::SortOnly),
                ..Default::default()
            },
            ContributorPreset::PhysicsNumeric => ContributorConfig {
                display_as_sort: Some(DisplayAsSort::None),
                and: Some(AndOptions::None),
                delimiter: Some(", ".to_string()),
                initialize_with: Some(". ".to_string()),
                name_form: Some(NameForm::Initials),
                demote_non_dropping_particle: Some(DemoteNonDroppingParticle::SortOnly),
                ..Default::default()
            },
            #[allow(clippy::unreachable, reason = "Subset of variants handled here")]
            _ => unreachable!(),
        }
    }

    /// Convert this preset to a concrete `ContributorConfig`.
    pub fn config(&self) -> ContributorConfig {
        match self {
            ContributorPreset::Apa
            | ContributorPreset::Chicago
            | ContributorPreset::Vancouver
            | ContributorPreset::Ieee
            | ContributorPreset::Harvard
            | ContributorPreset::Springer => self.config_named_presets(),
            ContributorPreset::NumericCompact
            | ContributorPreset::NumericMedium
            | ContributorPreset::NumericTight
            | ContributorPreset::NumericLarge
            | ContributorPreset::NumericAllAuthors
            | ContributorPreset::NumericGivenDot => self.config_numeric_presets(),
            ContributorPreset::AnnualReviews
            | ContributorPreset::MathPhys
            | ContributorPreset::SocSciFirst
            | ContributorPreset::PhysicsNumeric => self.config_specialty_presets(),
        }
    }
}

/// Date formatting presets.
///
/// Each preset defines how dates are displayed in citations and bibliographies,
/// including month format, EDTF uncertainty/approximation markers, and range
/// delimiters.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]
#[serde(rename_all = "kebab-case")]
#[non_exhaustive]
pub enum DatePreset {
    /// Long month names, EDTF markers, en-dash ranges.
    /// Example: "January 15, 2024", "ca. 2024", "2024?"
    Long,
    /// Short month names, EDTF markers, en-dash ranges.
    /// Example: "Jan 15, 2024"
    Short,
    /// Numeric months, EDTF markers, en-dash ranges.
    /// Example: "1/15/2024"
    Numeric,
    /// ISO 8601 numeric format, no EDTF markers.
    /// Example: "2024-01-15"
    Iso,
}

impl DatePreset {
    /// Convert this preset to a concrete `DateConfig`.
    pub fn config(&self) -> DateConfig {
        match self {
            DatePreset::Long => DateConfig {
                month: MonthFormat::Long,
                ..Default::default()
            },
            DatePreset::Short => DateConfig {
                month: MonthFormat::Short,
                ..Default::default()
            },
            DatePreset::Numeric => DateConfig {
                month: MonthFormat::Numeric,
                ..Default::default()
            },
            DatePreset::Iso => DateConfig {
                month: MonthFormat::Numeric,
                uncertainty_marker: None,
                approximation_marker: None,
                ..Default::default()
            },
        }
    }
}

/// Title formatting presets.
///
/// Each preset defines how different types of titles (articles, books, journals)
/// are formatted. Presets typically differ in whether titles are quoted, italicized,
/// or plain.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]
#[serde(rename_all = "kebab-case")]
#[non_exhaustive]
pub enum TitlePreset {
    /// APA style: article titles plain, book/journal titles italic.
    /// Example: Article title. *Book Title*. *Journal Title*.
    Apa,
    /// Chicago style: article titles quoted, book/journal titles italic.
    /// Example: "Article Title." *Book Title*. *Journal Title*.
    Chicago,
    /// IEEE style: article titles quoted, book/journal titles italic.
    /// Example: "Article title," *Book Title*. *Journal Title*.
    Ieee,
    /// Humanities style: monographs, periodicals, and serials all italic,
    /// articles plain. Common in geography, history, and social sciences.
    /// Example: Article title. *Book Title*. *Journal Title*. *Series Title*.
    Humanities,
    /// Journal-focused emphasis: periodicals and serials italic,
    /// monographs plain.
    JournalEmphasis,
    /// Scientific/Vancouver style: all titles plain (no formatting).
    /// Example: Article title. Book title. Journal title.
    Scientific,
}

impl TitlePreset {
    /// Convert this preset to a concrete `TitlesConfig`.
    pub fn config(&self) -> TitlesConfig {
        use crate::options::titles::TextCase;
        let emph_rendering = TitleRendering {
            emph: Some(true),
            ..Default::default()
        };
        match self {
            TitlePreset::Apa => TitlesConfig {
                component: Some(TitleRendering {
                    text_case: Some(TextCase::SentenceApa),
                    ..Default::default()
                }),
                monograph: Some(TitleRendering {
                    text_case: Some(TextCase::SentenceApa),
                    emph: Some(true),
                    ..Default::default()
                }),
                periodical: Some(emph_rendering),
                ..Default::default()
            },
            TitlePreset::Chicago | TitlePreset::Ieee => TitlesConfig {
                component: Some(TitleRendering {
                    quote: Some(true),
                    ..Default::default()
                }),
                monograph: Some(emph_rendering.clone()),
                periodical: Some(emph_rendering),
                ..Default::default()
            },
            TitlePreset::Humanities => TitlesConfig {
                component: Some(TitleRendering::default()),
                monograph: Some(emph_rendering.clone()),
                periodical: Some(emph_rendering.clone()),
                serial: Some(emph_rendering),
                ..Default::default()
            },
            TitlePreset::JournalEmphasis => TitlesConfig {
                component: Some(TitleRendering::default()),
                periodical: Some(emph_rendering.clone()),
                serial: Some(emph_rendering),
                ..Default::default()
            },
            TitlePreset::Scientific => TitlesConfig {
                component: Some(TitleRendering {
                    text_case: Some(TextCase::SentenceNlm),
                    ..Default::default()
                }),
                monograph: Some(TitleRendering {
                    text_case: Some(TextCase::SentenceNlm),
                    ..Default::default()
                }),
                periodical: Some(TitleRendering::default()),
                ..Default::default()
            },
        }
    }
}

/// Sort order presets for bibliography entries.
///
/// Each preset encodes the sort key sequence for a citation style family.
/// Use for the `bibliography.sort` field to avoid repeating boilerplate key lists.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]
#[serde(rename_all = "kebab-case")]
#[non_exhaustive]
pub enum SortPreset {
    /// Author → year → title. Standard for author-date styles (APA, Chicago, Harvard).
    AuthorDateTitle,
    /// Author → title → year. Used in some footnote and note styles.
    AuthorTitleDate,
    /// Citation number only. Used in numeric styles (Vancouver, IEEE).
    CitationNumber,
}

impl SortPreset {
    /// Convert this preset to a concrete `Sort`.
    pub fn sort(&self) -> Sort {
        match self {
            SortPreset::AuthorDateTitle => Sort {
                shorten_names: false,
                render_substitutions: false,
                template: vec![
                    SortSpec {
                        key: SortKey::Author,
                        ascending: true,
                    },
                    SortSpec {
                        key: SortKey::Year,
                        ascending: true,
                    },
                    SortSpec {
                        key: SortKey::Title,
                        ascending: true,
                    },
                ],
            },
            SortPreset::AuthorTitleDate => Sort {
                shorten_names: false,
                render_substitutions: false,
                template: vec![
                    SortSpec {
                        key: SortKey::Author,
                        ascending: true,
                    },
                    SortSpec {
                        key: SortKey::Title,
                        ascending: true,
                    },
                    SortSpec {
                        key: SortKey::Year,
                        ascending: true,
                    },
                ],
            },
            SortPreset::CitationNumber => Sort {
                shorten_names: false,
                render_substitutions: false,
                template: vec![SortSpec {
                    key: SortKey::CitationNumber,
                    ascending: true,
                }],
            },
        }
    }

    /// Convert this preset to a `GroupSort` for use in citation sorting.
    pub fn group_sort(&self) -> GroupSort {
        let keys: Vec<GroupSortKey> = match self {
            SortPreset::AuthorDateTitle => vec![
                GroupSortKey {
                    key: GroupSortKey_::Author,
                    ascending: true,
                    order: None,
                    sort_order: None,
                },
                GroupSortKey {
                    key: GroupSortKey_::Issued,
                    ascending: true,
                    order: None,
                    sort_order: None,
                },
                GroupSortKey {
                    key: GroupSortKey_::Title,
                    ascending: true,
                    order: None,
                    sort_order: None,
                },
            ],
            SortPreset::AuthorTitleDate => vec![
                GroupSortKey {
                    key: GroupSortKey_::Author,
                    ascending: true,
                    order: None,
                    sort_order: None,
                },
                GroupSortKey {
                    key: GroupSortKey_::Title,
                    ascending: true,
                    order: None,
                    sort_order: None,
                },
                GroupSortKey {
                    key: GroupSortKey_::Issued,
                    ascending: true,
                    order: None,
                    sort_order: None,
                },
            ],
            SortPreset::CitationNumber => vec![],
        };
        GroupSort { template: keys }
    }
}

/// Substitute presets for author substitution fallback logic.
///
/// These presets define the order in which fields are tried when the primary
/// author is missing. Most styles follow the standard order, but some have
/// variations.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]
#[serde(rename_all = "kebab-case")]
#[non_exhaustive]
pub enum SubstitutePreset {
    /// Standard substitution order: Editor → Title → Translator.
    /// Used by most citation styles (APA, Chicago, etc.).
    Standard,
    /// Editor-first: Editor → Translator → Title.
    /// Prioritizes contributors over title.
    EditorFirst,
    /// Title-first: Title → Editor → Translator.
    /// Used when anonymous works should show title prominently.
    TitleFirst,
    /// Editor only with short role labels.
    EditorShort,
    /// Editor only with long role labels.
    EditorLong,
    /// Editor then translator with short role labels.
    EditorTranslatorShort,
    /// Editor then translator with long role labels.
    EditorTranslatorLong,
    /// Editor then title with short role labels.
    EditorTitleShort,
    /// Editor then title with long role labels.
    EditorTitleLong,
    /// Editor then translator then title with short role labels.
    EditorTranslatorTitleShort,
    /// Editor then translator then title with long role labels.
    EditorTranslatorTitleLong,
}

impl SubstitutePreset {
    /// Convert this preset to a concrete `Substitute`.
    pub fn config(&self) -> Substitute {
        match self {
            SubstitutePreset::Standard => Substitute {
                contributor_role_form: None,
                template: vec![
                    SubstituteKey::Editor,
                    SubstituteKey::Title,
                    SubstituteKey::Translator,
                ],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorFirst => Substitute {
                contributor_role_form: None,
                template: vec![
                    SubstituteKey::Editor,
                    SubstituteKey::Translator,
                    SubstituteKey::Title,
                ],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::TitleFirst => Substitute {
                contributor_role_form: None,
                template: vec![
                    SubstituteKey::Title,
                    SubstituteKey::Editor,
                    SubstituteKey::Translator,
                ],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorShort => Substitute {
                contributor_role_form: Some("short".to_string()),
                template: vec![SubstituteKey::Editor],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorLong => Substitute {
                contributor_role_form: Some("long".to_string()),
                template: vec![SubstituteKey::Editor],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorTranslatorShort => Substitute {
                contributor_role_form: Some("short".to_string()),
                template: vec![SubstituteKey::Editor, SubstituteKey::Translator],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorTranslatorLong => Substitute {
                contributor_role_form: Some("long".to_string()),
                template: vec![SubstituteKey::Editor, SubstituteKey::Translator],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorTitleShort => Substitute {
                contributor_role_form: Some("short".to_string()),
                template: vec![SubstituteKey::Editor, SubstituteKey::Title],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorTitleLong => Substitute {
                contributor_role_form: Some("long".to_string()),
                template: vec![SubstituteKey::Editor, SubstituteKey::Title],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorTranslatorTitleShort => Substitute {
                contributor_role_form: Some("short".to_string()),
                template: vec![
                    SubstituteKey::Editor,
                    SubstituteKey::Translator,
                    SubstituteKey::Title,
                ],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
            SubstitutePreset::EditorTranslatorTitleLong => Substitute {
                contributor_role_form: Some("long".to_string()),
                template: vec![
                    SubstituteKey::Editor,
                    SubstituteKey::Translator,
                    SubstituteKey::Title,
                ],
                overrides: HashMap::new(),
                role_substitute: HashMap::new(),
                unknown_fields: std::collections::BTreeMap::new(),
            },
        }
    }
}

/// Multilingual rendering policy presets.
///
/// Each preset encodes the romanization and translation conventions for a major
/// citation style or style family when rendering references in an English-language
/// context.  Style YAML authors can write a bare preset name:
///
/// ```yaml
/// options:
///   multilingual: romanized-translated
/// ```
///
/// and Citum resolves it to the full [`MultilingualConfig`] at load time.
///
/// Preset names describe the **rendering behavior**, not a specific style family.
/// For CJK-inclusive 3-way views (e.g. `romanized original [translated]`) use an
/// explicit `pattern:` block instead — that display is something these styles
/// *allow*, not something they mandate by default.
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]
#[serde(rename_all = "kebab-case")]
#[non_exhaustive]
pub enum MultilingualPreset {
    /// Romanize titles and append an English translation in brackets.
    ///
    /// Title pattern: `romanized [translated]` (= `Combined` mode).
    /// Names: romanized.  Script: `Latn`.
    ///
    /// Appropriate for APA, Chicago, MLA, Harvard, Vancouver, AMA, NLM, CSE,
    /// and most other English-language styles.  All of these styles require
    /// romanized names and romanized titles; translation is recommended or
    /// required for non-English titles; original-script display is a house
    /// option that styles *allow* but do not mandate.
    RomanizedTranslated,
    /// Romanize titles and names only — no translation appended.
    ///
    /// Title pattern: romanized form only (= `Transliterated` mode).
    /// Names: romanized.  Script: `Latn`.
    ///
    /// Appropriate for IEEE and numeric styles where the translation bracket
    /// is typically omitted.
    RomanizedOnly,
}

impl MultilingualPreset {
    /// Resolve this preset into a concrete [`MultilingualConfig`].
    pub fn config(self) -> MultilingualConfig {
        match self {
            MultilingualPreset::RomanizedTranslated => MultilingualConfig {
                title_mode: Some(MultilingualMode::Combined),
                name_mode: Some(MultilingualMode::Transliterated),
                preferred_script: Some("Latn".to_string()),
                ..Default::default()
            },
            MultilingualPreset::RomanizedOnly => MultilingualConfig {
                title_mode: Some(MultilingualMode::Transliterated),
                name_mode: Some(MultilingualMode::Transliterated),
                preferred_script: Some("Latn".to_string()),
                ..Default::default()
            },
        }
    }
}

/// Entry for `options.multilingual`: either a preset name or an explicit config block.
///
/// Style YAML can use a short preset name:
/// ```yaml
/// options:
///   multilingual: romanized-translated
/// ```
/// or a full explicit block:
/// ```yaml
/// options:
///   multilingual:
///     title-mode: combined
///     name-mode: transliterated
///     preferred-script: Latn
/// ```
#[derive(Debug, Clone, Serialize, PartialEq)]
#[cfg_attr(feature = "schema", derive(JsonSchema))]
#[serde(untagged)]
pub enum MultilingualConfigEntry {
    /// A named preset (`"romanized-translated"` or `"romanized-only"`).
    Preset(MultilingualPreset),
    /// An explicit multilingual configuration block.
    Explicit(Box<MultilingualConfig>),
}

impl MultilingualConfigEntry {
    /// Resolve this entry into a concrete [`MultilingualConfig`].
    pub fn resolve(self) -> MultilingualConfig {
        match self {
            MultilingualConfigEntry::Preset(p) => p.config(),
            MultilingualConfigEntry::Explicit(c) => *c,
        }
    }
}

/// Custom deserializer for [`MultilingualConfigEntry`].
///
/// Accepts either a bare preset name (`"romanized-translated"`, `"romanized-only"`) or a full
/// `MultilingualConfig` map block. A hand-written visitor is used instead of
/// `#[serde(untagged)]` because the untagged mechanism wraps inner
/// deserializers in a content-based buffer that converts externally-tagged
/// YAML maps (like `{pattern: [...]}`) into serde enum inputs — and those
/// inputs cannot be re-dispatched through `deserialize_any`, causing a
/// *"untagged and internally tagged enums do not support enum input"* error
/// on serialization roundtrips.
impl<'de> serde::Deserialize<'de> for MultilingualConfigEntry {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        struct EntryVisitor;

        impl<'de> serde::de::Visitor<'de> for EntryVisitor {
            type Value = MultilingualConfigEntry;

            fn expecting(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
                write!(f, "a multilingual preset name or an explicit config block")
            }

            fn visit_str<E: serde::de::Error>(self, v: &str) -> Result<Self::Value, E> {
                let preset =
                    MultilingualPreset::deserialize(serde::de::value::StrDeserializer::new(v))?;
                Ok(MultilingualConfigEntry::Preset(preset))
            }

            fn visit_map<A: serde::de::MapAccess<'de>>(
                self,
                map: A,
            ) -> Result<Self::Value, A::Error> {
                let config = MultilingualConfig::deserialize(
                    serde::de::value::MapAccessDeserializer::new(map),
                )?;
                Ok(MultilingualConfigEntry::Explicit(Box::new(config)))
            }
        }

        deserializer.deserialize_any(EntryVisitor)
    }
}

#[cfg(test)]
#[allow(
    clippy::unwrap_used,
    clippy::expect_used,
    clippy::panic,
    clippy::indexing_slicing,
    clippy::todo,
    clippy::unimplemented,
    clippy::unreachable,
    clippy::get_unwrap,
    reason = "Panicking is acceptable and often desired in tests."
)]
mod tests {
    use super::*;

    #[test]
    fn test_contributor_preset_apa() {
        let config = ContributorPreset::Apa.config();
        assert_eq!(config.and, Some(AndOptions::Symbol));
        assert_eq!(config.display_as_sort, Some(DisplayAsSort::First));
        let shorten = config.shorten.unwrap();
        assert_eq!(shorten.min, 21);
        assert_eq!(shorten.use_first, 19);
    }

    #[test]
    fn test_contributor_preset_chicago() {
        let config = ContributorPreset::Chicago.config();
        assert_eq!(config.and, Some(AndOptions::Text));
        assert_eq!(config.display_as_sort, Some(DisplayAsSort::First));
    }

    #[test]
    fn test_contributor_preset_vancouver() {
        let config = ContributorPreset::Vancouver.config();
        assert_eq!(config.and, Some(AndOptions::None));
        assert_eq!(config.display_as_sort, Some(DisplayAsSort::All));
    }

    #[test]
    fn test_contributor_preset_springer() {
        let config = ContributorPreset::Springer.config();
        assert_eq!(config.and, Some(AndOptions::None));
        assert_eq!(config.display_as_sort, Some(DisplayAsSort::All));
        assert_eq!(config.sort_separator, Some(" ".to_string()));
        let shorten = config.shorten.unwrap();
        assert_eq!(shorten.min, 5);
        assert_eq!(shorten.use_first, 3);
    }

    #[test]
    fn test_contributor_preset_numeric_compact() {
        let config = ContributorPreset::NumericCompact.config();
        assert_eq!(config.and, Some(AndOptions::None));
        assert_eq!(config.display_as_sort, Some(DisplayAsSort::All));
        assert_eq!(config.sort_separator, Some(" ".to_string()));
        assert_eq!(
            config.demote_non_dropping_particle,
            Some(DemoteNonDroppingParticle::SortOnly)
        );
        let shorten = config.shorten.unwrap();
        assert_eq!(shorten.min, 7);
        assert_eq!(shorten.use_first, 6);
    }

    #[test]
    fn test_contributor_preset_numeric_all_authors() {
        let config = ContributorPreset::NumericAllAuthors.config();
        assert_eq!(config.and, Some(AndOptions::None));
        assert_eq!(config.display_as_sort, Some(DisplayAsSort::All));
        assert_eq!(config.sort_separator, Some(" ".to_string()));
        assert_eq!(config.initialize_with, Some("".to_string()));
        assert_eq!(
            config.demote_non_dropping_particle,
            Some(DemoteNonDroppingParticle::Never)
        );
        assert!(config.shorten.is_none());
    }

    #[test]
    fn test_contributor_preset_numeric_given_dot() {
        let config = ContributorPreset::NumericGivenDot.config();
        assert_eq!(config.and, Some(AndOptions::None));
        assert_eq!(config.display_as_sort, Some(DisplayAsSort::None));
        assert_eq!(config.initialize_with, Some(".".to_string()));
        assert_eq!(
            config.demote_non_dropping_particle,
            Some(DemoteNonDroppingParticle::SortOnly)
        );
        assert_eq!(
            config.delimiter_precedes_last,
            Some(DelimiterPrecedesLast::Always)
        );
    }

    #[test]
    fn test_date_preset_long() {
        let config = DatePreset::Long.config();
        assert_eq!(config.month, MonthFormat::Long);
        assert!(config.uncertainty_marker.is_some());
    }

    #[test]
    fn test_date_preset_iso() {
        let config = DatePreset::Iso.config();
        assert_eq!(config.month, MonthFormat::Numeric);
        // ISO preset suppresses EDTF markers
        assert!(config.uncertainty_marker.is_none());
        assert!(config.approximation_marker.is_none());
    }

    #[test]
    fn test_title_preset_apa() {
        let config = TitlePreset::Apa.config();
        // Component titles should be plain (no formatting)
        let component = config.component.unwrap();
        assert!(component.quote.is_none() || component.quote == Some(false));
        // Monograph titles should be italic
        let monograph = config.monograph.unwrap();
        assert_eq!(monograph.emph, Some(true));
    }

    #[test]
    fn test_title_preset_chicago() {
        let config = TitlePreset::Chicago.config();
        // Component titles should be quoted
        let component = config.component.unwrap();
        assert_eq!(component.quote, Some(true));
        // Monograph titles should be italic
        let monograph = config.monograph.unwrap();
        assert_eq!(monograph.emph, Some(true));
    }

    #[test]
    fn test_preset_yaml_roundtrip() {
        let yaml = r#"apa"#;
        let preset: ContributorPreset = serde_yaml::from_str(yaml).unwrap();
        assert_eq!(preset, ContributorPreset::Apa);

        let serialized = serde_yaml::to_string(&preset).unwrap();
        assert!(serialized.contains("apa"));
    }

    #[test]
    fn test_all_presets_serialize() {
        // Ensure all presets can be serialized/deserialized
        let contributor_presets = vec![
            ContributorPreset::Apa,
            ContributorPreset::Chicago,
            ContributorPreset::Vancouver,
            ContributorPreset::Ieee,
            ContributorPreset::Harvard,
            ContributorPreset::Springer,
            ContributorPreset::NumericCompact,
            ContributorPreset::NumericMedium,
            ContributorPreset::NumericTight,
            ContributorPreset::NumericLarge,
            ContributorPreset::NumericAllAuthors,
            ContributorPreset::NumericGivenDot,
            ContributorPreset::AnnualReviews,
            ContributorPreset::MathPhys,
            ContributorPreset::SocSciFirst,
            ContributorPreset::PhysicsNumeric,
        ];
        for preset in contributor_presets {
            let yaml = serde_yaml::to_string(&preset).unwrap();
            let _: ContributorPreset = serde_yaml::from_str(&yaml).unwrap();
        }

        let date_presets = vec![
            DatePreset::Long,
            DatePreset::Short,
            DatePreset::Numeric,
            DatePreset::Iso,
        ];
        for preset in date_presets {
            let yaml = serde_yaml::to_string(&preset).unwrap();
            let _: DatePreset = serde_yaml::from_str(&yaml).unwrap();
        }

        let title_presets = vec![
            TitlePreset::Apa,
            TitlePreset::Chicago,
            TitlePreset::Ieee,
            TitlePreset::Humanities,
            TitlePreset::JournalEmphasis,
            TitlePreset::Scientific,
        ];
        for preset in title_presets {
            let yaml = serde_yaml::to_string(&preset).unwrap();
            let _: TitlePreset = serde_yaml::from_str(&yaml).unwrap();
        }

        let substitute_presets = vec![
            SubstitutePreset::Standard,
            SubstitutePreset::EditorFirst,
            SubstitutePreset::TitleFirst,
            SubstitutePreset::EditorShort,
            SubstitutePreset::EditorLong,
            SubstitutePreset::EditorTranslatorShort,
            SubstitutePreset::EditorTranslatorLong,
            SubstitutePreset::EditorTitleShort,
            SubstitutePreset::EditorTitleLong,
            SubstitutePreset::EditorTranslatorTitleShort,
            SubstitutePreset::EditorTranslatorTitleLong,
        ];
        for preset in substitute_presets {
            let yaml = serde_yaml::to_string(&preset).unwrap();
            let _: SubstitutePreset = serde_yaml::from_str(&yaml).unwrap();
        }
    }

    #[test]
    fn test_substitute_preset_standard() {
        let config = SubstitutePreset::Standard.config();
        assert_eq!(
            config.template,
            vec![
                SubstituteKey::Editor,
                SubstituteKey::Title,
                SubstituteKey::Translator,
            ]
        );
    }

    #[test]
    fn test_substitute_preset_title_first() {
        let config = SubstitutePreset::TitleFirst.config();
        assert_eq!(config.template[0], SubstituteKey::Title);
    }
}