use PDF-based picts in the Latex build of the Quick tutorial; in general, change a .pdf image extension to .png for HTML output; add package-original-identifiers and fix package-exporte-identifiers

svn: r13432

original commit: e5756667d67e7c98462656d4c55d1c82eb6753ed
This commit is contained in:
Matthew Flatt 2009-02-04 21:03:28 +00:00
parent 4458927b2d
commit c39df9872e
3 changed files with 12 additions and 3 deletions

View File

@ -110,6 +110,11 @@
(with-attributes-assoc raw-style))
null))
(define (pdf-to-png p)
(if (equal? (filename-extension p) #"pdf")
(path-replace-suffix p #".png")
p))
#; ; no need for these index-local searches
#reader scribble/reader (begin ; easier to format
@ -1002,7 +1007,7 @@
`([width ,(to-num (read-bytes 4 in))]
[height ,(to-num (read-bytes 4 in))])
null))))])
`((img ([src ,(let ([p (install-file src)])
`((img ([src ,(let ([p (install-file (pdf-to-png src))])
(if (path? p)
(url->string (path->url (path->complete-path p)))
p))]

View File

@ -1,4 +1,4 @@
% This is the default prefix for Scribble-generated HTML
% This is the default prefix for Scribble-generated Latex
\documentclass{article}

View File

@ -669,7 +669,11 @@ Used as a style for an @scheme[element] to inline an image. The
@scheme[path->main-collects-relative].
For Latex output, a @filepath{.gif} suffix on @scheme[path] is
replaced with a @filepath{.png} suffix.}
replaced with a @filepath{.png} suffix (because animated GIFs can be
useful in HTML output, but Latex does not support GIFs). For HTML
output, a @filepath{.pdf} suffix on @scheme[path] is replaced with a
@filepath{.png} suffix (because PDF line drawings can be more
appropriate for Latex output, but HTML output needs bitmaps).}
@defproc[(block? [v any/c]) boolean?]{