On this page:
8.18
top
up

2FiguresπŸ”— i

procedure

( figure tag
caption
p...
[ #:stylestyle
#:label-seplabel-sep
#:label-stylelabel-style
#:continue?continue?])block?
tag:string?
caption:content?
label-sep:pre-content? =": "
label-style:element-style? =#f
continue?:any/c =#f

procedure

( figure* tag
caption
p...
[ #:stylestyle
#:label-seplabel-sep
#:label-stylelabel-style
#:continue?continue?])block?
tag:string?
caption:content?
label-sep:pre-content? =": "
label-style:element-style? =#f
continue?:any/c =#f

procedure

( figure** tag
caption
p...
[ #:stylestyle
#:label-seplabel-sep
#:label-stylelabel-style
#:continue?continue?])block?
tag:string?
caption:content?
label-sep:pre-content? =": "
label-style:element-style? =#f
continue?:any/c =#f

procedure

( figure-here tag
caption
pre-flow...
[ #:stylestyle
#:label-seplabel-sep
#:label-stylelabel-style
#:continue?continue?])block?
tag:string?
caption:content?
pre-flow:pre-flow?
label-sep:pre-content? =": "
label-style:element-style? =#f
continue?:any/c =#f
Creates a figure. The given tag is for use with figure-ref or Figure-ref . The caption is an element. The pre-flow is decoded as a flow.

For HTML output, the figure and figure* functions are the same, while figure** allows the content to be wider than the document body. For two-column Latex output, figure* and figure** generate a figure that spans columns.

For Latex output, figure-here generates a figure to be included at the position in the output text where the figure-here occurs in the source text. For HTML output, all figure variants place the figure where the use appears in the source text.

By default, style is set so that the content of the figure is centered. Use left-figure-style , center-figure-style , or right-figure-style to specify the alignment.

The label-sep and label-style arguments adjust the way that the caption’s label is shown. By default, the label is the word “Figure” followed by a space, the figure number, “:”, and a space, but label-sep can specify an alternative to the “:” and ending space. The composed label is given the style specified by label-style.

If continue? is a true value, then the figure counter is not incremented.

Changed in version 1.24 of package scribble-lib: Added the #:label-sep and #:label-style arguments.

value

left :style?

Implements figure alignments.

The left binding is a synonym for left-figure-style , provided for backward compatibility.

procedure

( figure-ref tag
...+
#:link-render-stylelink-style)element?
tag:string?
link-style:(or/c link-render-style? #f)
Generates a reference to one or more figures, using a lowercase word “figure”.

If link-style or (current-link-render-style ) at the time of rendering indicates the 'number style mode, then the word “figure” itself is not hyperlinked. Otherwise, the word figure is hyperlinked together with the referenced figure’s number.

Changed in version 1.26 of package scribble-lib: Added the #:link-render-style argument.

procedure

( Figure-ref tag
...+
#:link-render-stylelink-style)element?
tag:string?
link-style:(or/c link-render-style? #f)
Like figure-ref , but capitalizes the word “Figure”.

Changed in version 1.26 of package scribble-lib: Added the #:link-render-style argument.

procedure

( Figure-target tag[#:continue?continue?])element?

tag:string?
continue?:any/c =#f
Generates a new figure label. This function is normally not used directly, since it is used by figure .

procedure

( suppress-floats )element?

Produces an empty element that renders in Latex as \suppressfloats, which discourages the placement of figures in the column or page of the surrounding text.

2.1Configuring OutputπŸ”— i

Output uses the following style names, which can be adjusted in an overriding ".css" or ".tex" specification:

  • "Figure", "FigureMulti", "FigureMultiWide", or "HereFigure" — used for the outer of three nested-flow s for a figure, depending on whether figure , figure* , figure** , or figure-here is used to generate the figure.

  • "Leftfigure", "Centerfigure", or "Rightfigure" — used for the middle of three nested-flow s for a figure, depending on the specified style.

  • "FigureInside" — used for the inner of three nested-flow s for a figure.

  • "Legend" — Wraps the caption for a figure.

  • "LegendContinued" — Wraps the caption for a figure that does not increment the figure counter.

  • "FigureTarget" — Wraps the label anchor and text within a figure’s caption. For Latex output, the corresponding command is given a second argument, which is just the generated label (used with \label in the command’s first argument).

  • "FigureRef" — Wraps a reference to a figure. For Latex output, the corresponding command is given a second argument, which is just the target label.

top
up

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /