scriblib/figure: add suppress-floats
original commit: ac21f854a2096e96ea6940f0b0672163eadd86a4
This commit is contained in:
parent
3f43a70496
commit
41af75965d
|
@ -85,6 +85,13 @@ Generates a new figure label. This function is normally not used
|
|||
directly, since it is used by @racket[figure].}
|
||||
|
||||
|
||||
@defproc[(suppress-floats) element?]{
|
||||
|
||||
Produces an empty element that renders in Latex as
|
||||
@tt{\suppressfloats}, which discourages the placement of figures in
|
||||
the column or page of the surrounding text.}
|
||||
|
||||
|
||||
@section{Configuring Output}
|
||||
|
||||
Output uses the following style names, which can be adjusted in an
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
left-figure-style
|
||||
center-figure-style
|
||||
right-figure-style
|
||||
suppress-floats
|
||||
(rename-out [left-figure-style left]))
|
||||
|
||||
(define figure-style-extras
|
||||
|
@ -123,3 +124,6 @@
|
|||
|
||||
(define Figure-ref (ref-proc "F"))
|
||||
(define figure-ref (ref-proc "f"))
|
||||
|
||||
(define (suppress-floats)
|
||||
(make-element "suppressfloats" null))
|
||||
|
|
Loading…
Reference in New Issue
Block a user