add support for 'color and 'bgcolor styles

svn: r8064

original commit: e4a588e40563e8ddf71bc7200e9adf602b17bb44
This commit is contained in:
Matthew Flatt 2007-12-19 16:52:54 +00:00
parent 18d1528808
commit c46667ae55
3 changed files with 55 additions and 10 deletions

View File

@ -432,15 +432,26 @@
[(string? style)
`((span ([class ,style]) ,@(super render-element e part ri)))]
[(and (pair? style)
(eq? (car style) 'show-color))
`((font ((style ,(format "background-color: ~a"
(apply string-append "#"
(map (lambda (v) (let ([s (format "0~x" v)])
(substring s (- (string-length s) 2))))
(cdr style))))))
(tt nbsp nbsp nbsp nbsp nbsp))
nbsp
,@(super render-element e part ri))]
(or (eq? (car style) 'bg-color)
(eq? (car style) 'color)))
(unless (and (list? style)
(or (and (= 4 (length style))
(andmap byte? (cdr style)))
(and (= 2 (length style))
(member (cadr style)
'("white" "black" "red" "green" "blue" "cyan" "magenta" "yellow")))))
(error 'render-font "bad color style: ~e" style))
`((font ((style ,(format "~acolor: ~a"
(if (eq? (car style) 'bg-color)
"background-"
"")
(if (= 2 (length style))
(cadr style)
(apply string-append "#"
(map (lambda (v) (let ([s (format "0~x" v)])
(substring s (- (string-length s) 2))))
(cdr style)))))))
,@(super render-element e part ri)))]
[(target-url? style)
(if (current-no-links)
(super render-element e part ri)

View File

@ -68,7 +68,11 @@
(printf "\\newcommand{\\smaller}[1]{{\\footnotesize #1}}\n")
(printf "\\definecolor{PaleBlue}{rgb}{0.90,0.90,1.0}\n")
(printf "\\definecolor{LightGray}{rgb}{0.90,0.90,0.90}\n")
(printf "\\newcommand{\\schemeinput}[1]{\\colorbox{LightGray}{\\hspace{-0.5ex}\\schemeinputbg{#1}\\hspace{-0.5ex}}}\n")
(printf "\\newcommand{\\intextcolor}[2]{\\textcolor{#1}{#2}}\n")
(printf "\\newcommand{\\intextrgbcolor}[2]{\\textcolor[rgb]{#1}{#2}}\n")
(printf "\\newcommand{\\incolorbox}[2]{{\\fboxrule=0pt\\fboxsep=0pt\\colorbox{#1}{#2}}}\n")
(printf "\\newcommand{\\inrgbcolorbox}[2]{{\\fboxrule=0pt\\fboxsep=0pt\\colorbox[rgb]{#1}{#2}}}\n")
(printf "\\newcommand{\\schemeinput}[1]{\\incolorbox{LightGray}{\\schemeinputbg{#1}}}\n")
(printf "\\newcommand{\\highlighted}[1]{\\colorbox{PaleBlue}{\\hspace{-0.5ex}\\schemeinputbg{#1}\\hspace{-0.5ex}}}\n")
(printf "\\newcommand{\\plainlink}[1]{#1}\n")
(printf "\\newcommand{\\techlink}[1]{#1}\n")
@ -175,6 +179,23 @@
[else (error 'latex-render "unrecognzied style symbol: ~s" style)])]
[(string? style)
(wrap e style (regexp-match? #px"^scheme(?!error)" style))]
[(and (pair? style)
(or (eq? (car style) 'bg-color)
(eq? (car style) 'color)))
(wrap e (format "~a{~a}"
(format (if (eq? (car style) 'bg-color)
"in~acolorbox"
"intext~acolor")
(if (= (length style) 2)
""
"rgb"))
(if (= (length style) 2)
(cadr style)
(format "~a,~a,~a"
(/ (cadr style) 255.0)
(/ (caddr style) 255.0)
(/ (cadddr style) 255.0))))
#f)]
[(image-file? style)
(let ([fn (install-file (image-file-path style))])
(printf "\\includegraphics{~a}" fn))]

View File

@ -342,6 +342,19 @@ The @scheme[style] field is normally either
@scheme['subscript], @scheme['superscript], or
@scheme['hspace];}
@item{a list of the form @scheme[(list 'color _name)] or
@scheme[(list 'color _byte _byte _byte)] to set the text color,
where @scheme[_name] is one of @scheme["white"],
@scheme["black"], @scheme["red"], @scheme["green"],
@scheme["blue"], @scheme["cyan"], @scheme["magenta"], or
@scheme["yellow"], or three @scheme[_byte]s specify RGB
values;}
@item{a list of the form @scheme[(list 'bg-color _name)] or
@scheme[(list 'bg-color _byte _byte _byte)] to set the text
background color (with the same constraints and meanings as for
@scheme['color]);}
@item{an instance of @scheme[target-url] to generate a hyperlink; or}
@item{an instance of @scheme[image-file] to support an inline image.}