scribble: add 'roman as a built-in element style

original commit: 2084f94c4728329ce6bbf0edc001c9237805e2da
This commit is contained in:
Matthew Flatt 2013-08-21 19:39:12 -06:00
parent 79b8235167
commit b76ed3d3ae
4 changed files with 4 additions and 2 deletions

View File

@ -780,7 +780,7 @@ recognized:
@itemize[ @itemize[
@item{@racket['tt], @racket['italic], @racket['bold], @racket['sf], @item{@racket['tt], @racket['italic], @racket['bold], @racket['roman], @racket['sf],
@racket['url], @racket['subscript], @racket['superscript], @racket['url], @racket['subscript], @racket['superscript],
@racket['smaller], @racket['larger] --- @racket['smaller], @racket['larger] ---
Basic styles recognized by all renders.} Basic styles recognized by all renders.}

View File

@ -1340,6 +1340,7 @@
[(italic) '([style "font-style: italic"])] [(italic) '([style "font-style: italic"])]
[(bold) '([style "font-weight: bold"])] [(bold) '([style "font-weight: bold"])]
[(tt) '([class "stt"])] [(tt) '([class "stt"])]
[(roman) '([class "sroman"])]
[(url) '([class "url"])] [(url) '([class "url"])]
[(no-break) '([class "nobreak"])] [(no-break) '([class "nobreak"])]
[(sf) '([style "font-family: sans-serif; font-size: 80%; font-weight: bold"])] [(sf) '([style "font-family: sans-serif; font-size: 80%; font-weight: bold"])]

View File

@ -392,6 +392,7 @@
[(url) (wrap e "Snolinkurl" 'url)] [(url) (wrap e "Snolinkurl" 'url)]
[(no-break) (wrap e "mbox" tt?)] [(no-break) (wrap e "mbox" tt?)]
[(sf) (wrap e "textsf" #f)] [(sf) (wrap e "textsf" #f)]
[(roman) (wrap e "textrm" #f)]
[(subscript) (wrap e "textsub" #f)] [(subscript) (wrap e "textsub" #f)]
[(superscript) (wrap e "textsuper" #f)] [(superscript) (wrap e "textsuper" #f)]
[(smaller) (wrap e "Smaller" #f)] [(smaller) (wrap e "Smaller" #f)]

View File

@ -13,7 +13,7 @@
} }
/* Serif: */ /* Serif: */
.main, .refcontent, .tocview, .tocsub, i { .main, .refcontent, .tocview, .tocsub, .sroman, i {
font-family: serif; font-family: serif;
} }