lowerRoman property

CounterStyle lowerRoman
final

Lowercase ASCII Roman numerals (e.g., i, ii, iii, ..., xcviii, xcix, c).

Implementation

static final lowerRoman = CounterStyle.define(
  name: 'lower-roman',
  system: System.additive,
  range: const IntRange(min: 1, max: 3999),
  additiveSymbols: {
    1000: 'm',
    900: 'cm',
    500: 'd',
    400: 'cd',
    100: 'c',
    90: 'xc',
    50: 'l',
    40: 'xl',
    10: 'x',
    9: 'ix',
    5: 'v',
    4: 'iv',
    1: 'i'
  },
);