Variable: rst-arabic-to-roman
rst-arabic-to-roman is a variable defined in rst.el.gz.
Value
((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"))
Documentation
List of maps between Arabic numbers and their Roman numeral equivalents.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Insert list items
;; Borrowed from a2r.el (version 1.3), by Lawrence Mitchell <wence@gmx.li>. I
;; needed to make some tiny changes to the functions, so I put it here.
;; -- Wei-Wei Guo
(defconst rst-arabic-to-roman
'((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"))
"List of maps between Arabic numbers and their Roman numeral equivalents.")