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[
@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['smaller], @racket['larger] ---
Basic styles recognized by all renders.}

View File

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

View File

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

View File

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