# File lib/text/format/roman.rb, line 97
 97:   def initialize(options = {})
 98:     @offset   = options[:offset].to_i || 1
 99:     @lower    = options[:lower]       || false
100:     @postfix  = options[:postfix]     || nil
101:     @prefix   = options[:prefix]      || nil
102: 
103:     @offset   = 1 if @offset < 1
104:   end