Document here-figures.

original commit: 4b4d7f5f0bed64d56dcc53cec5ab92ea4917eb2b
This commit is contained in:
Vincent St-Amour 2011-03-27 14:47:25 -04:00
parent 7bedf21f05
commit 5a9053820f

View File

@ -19,7 +19,9 @@ rendering support.}
@deftogether[(
@defproc[(figure [tag string?] [caption content?] [pre-flow pre-flow?] ...) block?]
@defproc[(figure* [tag string?] [caption content?] [pre-flow pre-flow?] ...) block?]
@defproc[(figure** [tag string?] [caption content?] [pre-flow pre-flow?] ...) block?]
@defproc[(figure** [tag string?] [caption content?] [pre-flow pre-flow?] ...)
block?]
@defproc[(figure-here [tag string?] [caption content?] [pre-flow pre-flow?] ...) block?]
)]{
Creates a figure. The given @scheme[tag] is for use with
@ -30,6 +32,9 @@ For HTML output, the @scheme[figure*] and @scheme[figure*] functions
center the figure content, while @scheme[figure**] allows the content
to be wider than the document body.
For latex output, @scheme[figure-here] generates a figure to be
included at the position in the text where the call to
@scheme[figure-here] occurs.
For two-column latex output, @scheme[figure*] and @scheme[figure**]
generate a figure that spans columns.}