637 lines
23 KiB
Racket
637 lines
23 KiB
Racket
#lang scribble/doc
|
|
@require[scribble/manual]
|
|
@require["utils.ss"]
|
|
@require[(for-syntax scheme/base)]
|
|
|
|
@title[#:tag "manual"]{PLT Manual Forms}
|
|
|
|
@declare-exporting[scribble/manual]
|
|
|
|
The @filepath{manual.ss} module provides all of @filepath{basic.ss}, and
|
|
more...
|
|
|
|
@; ------------------------------------------------------------------------
|
|
@section[#:tag "scribble:manual:code"]{Typesetting Code}
|
|
|
|
@defform[(schemeblock datum ...)]{
|
|
|
|
Typesets the @scheme[datum] sequence as a table of Scheme code inset
|
|
by two spaces. The source locations of the @scheme[datum]s determine
|
|
the generated layout. For example,
|
|
|
|
@schemeblock[
|
|
(schemeblock
|
|
(define (loop x)
|
|
(loop (not x))))
|
|
]
|
|
|
|
produces the output
|
|
|
|
@schemeblock[
|
|
(define (loop x)
|
|
(loop (not x)))
|
|
]
|
|
|
|
with the @scheme[(loop (not x))] indented under @scheme[define],
|
|
because that's the way it is idented the use of @scheme[schemeblock].
|
|
|
|
Furthermore, @scheme[define] is typeset as a keyword (bold and black)
|
|
and as a hyperlink to @scheme[define]'s definition in the reference
|
|
manual, because this document was built using a for-label binding of
|
|
@scheme[define] (in the source) that matches the for-label binding of
|
|
the definition in the reference manual. Similarly, @scheme[not] is a
|
|
hyperlink to the its definition in the reference manual.
|
|
|
|
Use @scheme[unsyntax] to escape back to an expression that produces an
|
|
@scheme[element]. For example,
|
|
|
|
@let[([unsyntax #f])
|
|
(schemeblock
|
|
(schemeblock
|
|
(+ 1 (unsyntax (elem (scheme x) (subscript "2"))))))
|
|
]
|
|
|
|
produces
|
|
|
|
@schemeblock[
|
|
(+ 1 (unsyntax (elem (scheme x) (subscript "2"))))
|
|
]
|
|
|
|
The @scheme[unsyntax] form is regonized via
|
|
@scheme[free-identifier=?], so if you want to typeset code that
|
|
includes @scheme[unsyntax], you can simply hide the usual binding:
|
|
|
|
@SCHEMEBLOCK[
|
|
(schemeblock
|
|
(let ([(UNSYNTAX (scheme unsyntax)) #f])
|
|
(schemeblock
|
|
(syntax (+ 1 (unsyntax x))))))
|
|
]
|
|
|
|
Or use @scheme[SCHEMEBLOCK], whose escape form is @scheme[UNSYNTAX]
|
|
instead of @scheme[unsyntax].
|
|
|
|
A few other escapes are recognized symbolically:
|
|
|
|
@itemize{
|
|
|
|
@item{@scheme[(#,(scheme code:line) datum ...)] typesets as the
|
|
sequence of @scheme[datum]s (i.e., without the
|
|
@scheme[code:line] wrapper.}
|
|
|
|
@item{@scheme[(#,(scheme code:comment) content-expr)] typesets as a
|
|
comment whose content (i.e., sequence of elements) is produced
|
|
by @scheme[content-expr].}
|
|
|
|
@item{@schemeidfont{code:blank} typesets as a blank line.}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@defform[(SCHEMEBLOCK datum ...)]{Like @scheme[schemeblock], but with
|
|
the expression escape @scheme[UNSYNTAX] instead of @scheme[unsyntax].}
|
|
|
|
@defform[(schemeblock0 datum ...)]{Like @scheme[schemeblock], but
|
|
without insetting the code.}
|
|
|
|
@defform[(SCHEMEBLOCK0 datum ...)]{Like @scheme[SCHEMEBLOCK], but
|
|
without insetting the code.}
|
|
|
|
@defform[(schemeinput datum ...)]{Like @scheme[schemeblock], but the
|
|
@scheme[datum] are typeset after a prompt representing a REPL.}
|
|
|
|
@defform[(schememod lang datum ...)]{Like @scheme[schemeblock], but
|
|
the @scheme[datum] are typeset inside a @schemefont{#module}-form
|
|
module whose language is @scheme[lang].}
|
|
|
|
@defform[(scheme datum ...)]{Like @scheme[schemeblock], but typeset on
|
|
a single line and wrapped with its enclosing paragraph, independent of
|
|
the formatting of @scheme[datum].}
|
|
|
|
@defform[(schemeresult datum ...)]{Like @scheme[scheme], but typeset
|
|
as a REPL value (i.e., a single color with no hyperlinks).}
|
|
|
|
@defform[(schemeid datum ...)]{Like @scheme[scheme], but typeset
|
|
as an unbound identifier (i.e., no coloring or hyperlinks).}
|
|
|
|
@defform[(schememodname datum ...)]{Like @scheme[scheme], but typeset
|
|
as a @schemefont{#module} language name.}
|
|
|
|
@defproc[(litchar [str string?]) element?]{Typesets @scheme[str] as a
|
|
representation of literal text. Use this when you have to talk about
|
|
the individual characters in a stream of text, as as when documenting
|
|
a reader extension.}
|
|
|
|
@defproc[(verbatim [str string?]) flow-element?]{Typesets @scheme[str]
|
|
as a table/paragraph in typewriter font with the linebreaks specified
|
|
by newline characters in @scheme[str]. ``Here strings'' are often
|
|
useful with @scheme[verbatim].}
|
|
|
|
@defproc[(schemefont [pre-content any/c] ...) element?]{Typesets the given
|
|
content as uncolored, unhyperlinked Scheme. This procedure is useful
|
|
for typesetting things like @scheme{#module}, which are not
|
|
@scheme[read]able by themselves.}
|
|
|
|
@defproc[(schemevalfont [pre-content any/c] ...) element?]{Like
|
|
@scheme[schemefont], but colored as a value.}
|
|
|
|
@defproc[(schemeresultfont [pre-content any/c] ...) element?]{Like
|
|
@scheme[schemefont], but colored as a REPL result.}
|
|
|
|
@defproc[(schemeidfont [pre-content any/c] ...) element?]{Like
|
|
@scheme[schemefont], but colored as an identifier.}
|
|
|
|
@defproc[(schemekeywordfont [pre-content any/c] ...) element?]{Like
|
|
@scheme[schemefont], but colored as a syntactic form name.}
|
|
|
|
@defproc[(schemeparenfont [pre-content any/c] ...) element?]{Like
|
|
@scheme[schemefont], but colored like parentheses.}
|
|
|
|
@defproc[(schememetafont [pre-content any/c] ...) element?]{Like
|
|
@scheme[schemefont], but colored as meta-syntax, such as backquote or
|
|
unquote.}
|
|
|
|
@defproc[(procedure [pre-content any/c] ...) element?]{Typesets the given
|
|
content as a procedure name in a REPL result (e.g., in typewriter font
|
|
with a @litchar{#<procedure:} prefix and @litchar{>} suffix.).}
|
|
|
|
@defform[(var datum)]{Typesets @scheme[var] as an identifier that is
|
|
an argument or sub-form in a procedure being
|
|
documented. Normally, the @scheme[defproc] and @scheme[defform]
|
|
arrange for @scheme[scheme] to format such identifiers automatically
|
|
in the description of the procedure, but use @scheme[var] if that
|
|
cannot work for some reason.}
|
|
|
|
@defform[(svar datum)]{Like @scheme[var], but for subform non-terminals
|
|
in a form definition.}
|
|
|
|
@; ------------------------------------------------------------------------
|
|
@section{Definition Reference}
|
|
|
|
@defform/subs[(defproc (id arg-spec ...)
|
|
result-contract-expr-datum
|
|
pre-flow ...)
|
|
([arg-spec (arg-id contract-expr-datum)
|
|
(arg-id contract-expr-datum default-expr)
|
|
(keyword arg-id contract-expr-datum)
|
|
(keyword arg-id contract-expr-datum default-expr)])]{
|
|
|
|
Produces a sequence of flow elements (encaptured in a @scheme[splice])
|
|
to document a procedure named @scheme[id]. The @scheme[id] is indexed,
|
|
and it also registered so that @scheme[scheme]-typeset uses of the
|
|
identifier (with the same for-label binding) are hyperlinked to this
|
|
documentation. The @scheme[id] should have a for-label binding (as
|
|
introduced by @scheme[require-for-label]) that determines the module
|
|
binding being defined.
|
|
|
|
Each @scheme[arg-spec] must have one of the following forms:
|
|
|
|
@specsubform[(arg-id contract-expr-datum)]{
|
|
An argument whose contract is specified by
|
|
@scheme[contract-expr-datum] which is typeset via
|
|
@scheme[schemeblock0].}
|
|
|
|
@specsubform[(arg-id contract-expr-datum default-expr)]{
|
|
Like the previous case, but with a default value. All arguments
|
|
with a default value must be grouped together, but they can be
|
|
in the middle of required arguments.}
|
|
|
|
@specsubform[(keyword arg-id contract-expr-datum)]{
|
|
Like the first case, but for a keyword-based argument.}
|
|
|
|
@specsubform[(keyword arg-id contract-expr-datum default-expr)]{
|
|
Like the previous case, but with a default
|
|
value.}
|
|
|
|
@specsubform[#, @schemeidfont{...}]{ Any number of the preceding argument
|
|
(normally at the end).}
|
|
|
|
@specsubform[#, @schemeidfont{...+}]{One or more of the preceding argument
|
|
(normally at the end).}
|
|
|
|
The @scheme[result-contract-expr-datum] is typeset via
|
|
@scheme[schemeblock0], and it represents a contract on the procedure's
|
|
result.
|
|
|
|
The @scheme[pre-flow]s list is parsed as a flow that documents the
|
|
procedure. In this description, references to @svar[arg-id]s
|
|
are typeset as procedure arguments.
|
|
|
|
The typesetting of all data before the @scheme[pre-flow]s ignores the
|
|
source layout.}
|
|
|
|
|
|
@defform[(defproc* ([(id arg-spec ...)
|
|
result-contract-expr-datum] ...)
|
|
pre-flow ...)]{
|
|
|
|
Like @scheme[defproc], but for multiple cases with the same
|
|
@scheme[id].
|
|
|
|
When an @scheme[id] has multiple calling cases, they must be defined
|
|
with a single @scheme[defproc*], so that a single definition point
|
|
exists for the @scheme[id]. However, multiple distinct @scheme[id]s
|
|
can also be defined by a single @scheme[defproc*], for the case that
|
|
it's best to document a related group of procedures at once.}
|
|
|
|
|
|
@defform/subs[(defform maybe-literals (id . datum) pre-flow ...)
|
|
([maybe-literals code:blank
|
|
(code:line #:literals (literal-id ...))])]{
|
|
|
|
Produces a a sequence of flow elements (encaptured in a
|
|
@scheme[splice]) to document a syntatic form named by @scheme[id]. The
|
|
@scheme[id] is indexed, and it is also registered so that
|
|
@scheme[scheme]-typeset uses of the identifier (with the same
|
|
for-label binding) are hyperlinked to this documentation. The
|
|
@scheme[id] should have a for-label binding (as introduced by
|
|
@scheme[require-for-label]) that determines the module binding being
|
|
defined.
|
|
|
|
The @scheme[pre-flow]s list is parsed as a flow that documents the
|
|
procedure. In this description, a reference to any identifier in
|
|
@scheme[datum] is typeset as a sub-form non-terminal. If
|
|
@scheme[#:literals] clause is provided, however, instances of the
|
|
@scheme[literal-id]s are typeset normally.
|
|
|
|
The typesetting of @scheme[(id . datum)] preserves the source
|
|
layout, like @scheme[schemeblock], and unlike @scheme[defproc].}
|
|
|
|
@defform[(defform* maybe-literals [(id . datum) ..+] pre-flow ...)]{
|
|
|
|
Like @scheme[defform], but for multiple forms using the same
|
|
@scheme[id].}
|
|
|
|
@defform[(defform/subs maybe-literals (id . datum)
|
|
([nonterm-id clause-datum ...+] ...)
|
|
pre-flow ...)]{
|
|
|
|
Like @scheme[defform], but including an auxiliary grammar of
|
|
non-terminals shown with the @scheme[id] form. Each
|
|
@scheme[nonterm-id] is specified as being any of the corresponding
|
|
@scheme[clause-datum]s, where the formatting of each
|
|
@scheme[clause-datum] is preserved.}
|
|
|
|
|
|
@defform[(defform/none datum pre-flow ...)]{
|
|
|
|
Like @scheme[defform], but without registering a definition.}
|
|
|
|
|
|
@defform[(defidform id pre-flow ...)]{
|
|
|
|
Like @scheme[defform], but with a plain @scheme[id] as the form.}
|
|
|
|
|
|
@defform[(specform maybe-literals (id . datum) pre-flow ...)]{
|
|
|
|
Like @scheme[defform], with without indexing or registering a
|
|
definition, and with indenting on the left for both the specification
|
|
and the @scheme[pre-flow]s.}
|
|
|
|
|
|
@defform[(specsubform maybe-literals datum pre-flow ...)]{
|
|
|
|
Similar to @scheme[defform], but without any specific identifier being
|
|
defined, and the table and flow are typeset indented. This form is
|
|
intended for use when refining the syntax of a non-terminal used in a
|
|
@scheme[defform] or other @scheme[specsubform]. For example, it is
|
|
used in the documentation for @scheme[defproc] in the itemization of
|
|
possible shapes for @svar[arg-spec].
|
|
|
|
The @scheme[pre-flow]s list is parsed as a flow that documents the
|
|
procedure. In this description, a reference to any identifier in
|
|
@scheme[datum] is typeset as a sub-form non-terminal.}
|
|
|
|
|
|
@defform[(specsubform/subs maybe-literals datum
|
|
([nonterm-id clause-datum ...+] ...)
|
|
pre-flow ...)]{
|
|
|
|
Like @scheme[specsubform], but with a grammar like
|
|
@scheme[defform/subs].}
|
|
|
|
|
|
@defform[(specspecsubform maybe-literals datum pre-flow ...)]{
|
|
|
|
Like @scheme[specsubform], but indented an extra level. Since using
|
|
@scheme[specsubform] within the body of @scheme[specsubform] already
|
|
nests indentation, @scheme[specspecsubform] is for extra indentation
|
|
without nesting a description.}
|
|
|
|
|
|
@defform[(specspecsubform/subs maybe-literals datum
|
|
([nonterm-id clause-datum ...+] ...)
|
|
pre-flow ...)]{
|
|
|
|
Like @scheme[specspecsubform], but with a grammar like
|
|
@scheme[defform/subs].}
|
|
|
|
|
|
@defform[(defparam id arg-id contract-expr-datum pre-flow ...)]{
|
|
|
|
Like @scheme[defproc], but for a parameter. The
|
|
@scheme[contract-expr-datum] serves as both the result contract on the
|
|
parameter and the contract on values supplied for the parameter. The
|
|
@scheme[arg-id] refers to the parameter argument in the latter case.}
|
|
|
|
@defform[(defboolparam id arg-id pre-flow ...)]{
|
|
|
|
Like @scheme[defparam], but the contract on a parameter argument is
|
|
@scheme[any/c], and the contract on the parameter result is
|
|
@scheme[boolean?].}
|
|
|
|
|
|
@defform[(defthing id contract-expr-datum pre-flow ...)]{
|
|
|
|
Like @scheme[defproc], but for a non-procedure binding.}
|
|
|
|
|
|
@defform/subs[(defstruct struct-name ([field-name contract-expr-datum] ...)
|
|
flag-keywords
|
|
pre-flow ...)
|
|
([struct-name id
|
|
(id super-id)]
|
|
[flag-keywords code:blank
|
|
#:mutable
|
|
(code:line #:inspector #f)
|
|
(code:line #:mutable #:inspector #f)])]{
|
|
|
|
Similar to @scheme[defform] or @scheme[defproc], but for a structure
|
|
definition.}
|
|
|
|
|
|
@defform/subs[(schemegrammar maybe-literals id clause-datum ...+)
|
|
([maybe-literals code:blank
|
|
(code:line #:literals (literal-id ...))])]{
|
|
|
|
Creates a table to define the grammar of @scheme[id]. Each identifier
|
|
mentioned in a @scheme[clause-datum] is typeset as a non-terminal,
|
|
except for the identifiers listed as @scheme[literal-id]s, which are
|
|
typeset as with @scheme[scheme].}
|
|
|
|
|
|
@defform[(schemegrammar* maybe-literals [id clause-datum ...+] ...)]{
|
|
|
|
Like @scheme[schemegrammar], but for typesetting multiple productions
|
|
at once, aligned around the @litchar{=} and @litchar{|}.}
|
|
|
|
@; ------------------------------------------------------------------------
|
|
@section{Classes and Interfaces}
|
|
|
|
@defform[(defclass id super-id (intf-id ...) pre-flow ...)]{
|
|
|
|
Creates documentation for a class @scheme[id] that is a subclass of
|
|
@scheme[super-id] and implements each interface @scheme[intf-id]. Each
|
|
@scheme[super-id] (except @scheme[object%]) and @scheme[intf-id] must
|
|
be documented somewhere via @scheme[defclass] or @scheme[definterface].
|
|
|
|
The decoding of the @scheme[pre-flow] sequence should start with
|
|
general documentation about the class, followed by constructor
|
|
definition (see @scheme[defconstructor]), and then field and method
|
|
definitions (see @scheme[defmethod]). In rendered form, the
|
|
constructor and method specification are indented to visually group
|
|
them under the class definition.}
|
|
|
|
@defform[(defclass/title id super-id (intf-id ...) pre-flow ...)]{
|
|
|
|
Like @scheme[defclass], also includes a @scheme[title] declaration
|
|
with the style @scheme['hidden]. In addition, the constructor and
|
|
methods are not left-indented.
|
|
|
|
This form is normally used to create a section to be rendered on its
|
|
own HTML. The @scheme['hidden] style is used because the definition
|
|
box serves as a title.}
|
|
|
|
@defform[(definterface id (intf-id ...) pre-flow ...)]{
|
|
|
|
Like @scheme[defclass], but for an interfaces. Naturally,
|
|
@scheme[pre-flow] should not generate a constructor declaration.}
|
|
|
|
@defform[(definterface/title id (intf-id ...) pre-flow ...)]{
|
|
|
|
Like @scheme[definterface], but for single-page rendering as in
|
|
@scheme[defclass/title].}
|
|
|
|
@defform/subs[(defconstructor (arg-spec ...) pre-flow ...)
|
|
([arg-spec (arg-id contract-expr-datum)
|
|
(arg-id contract-expr-datum default-expr)])]{
|
|
|
|
Like @scheme[defproc], but for a constructor declaration in the body
|
|
of @scheme[defclass], so no return contract is specified. Also, the
|
|
@scheme[new]-style keyword for each @scheme[arg-spec] is implicit from
|
|
the @scheme[arg-id].}
|
|
|
|
@defform[(defconstructor/make (arg-spec ...) pre-flow ...)]{
|
|
|
|
Like @scheme[defconstructor], but specifying by-position
|
|
initialization arguments (for use with @scheme[make-object]) instead
|
|
of by-name arguments (for use with @scheme[new]).}
|
|
|
|
@defform[(defconstructor*/make [(arg-spec ...) ...] pre-flow ...)]{
|
|
|
|
Like @scheme[defconstructor/make], but with multiple constructor
|
|
patterns analogous @scheme[defproc*].}
|
|
|
|
@defform[(defmethod (id arg-spec ...)
|
|
result-contract-expr-datum
|
|
pre-flow ...)]{
|
|
|
|
Like @scheme[defproc], but for a method within a @scheme[defclass] or
|
|
@scheme[definterface] body.}
|
|
|
|
@defform[(defmethod* ([(id arg-spec ...)
|
|
result-contract-expr-datum] ...)
|
|
pre-flow ...)]{
|
|
|
|
Like @scheme[defproc*], but for a method within a @scheme[defclass] or
|
|
@scheme[definterface] body.}
|
|
|
|
@; ------------------------------------------------------------------------
|
|
@section{Various String Forms}
|
|
|
|
@defproc[(defterm [pre-content any/c] ...) element?]{Typesets the
|
|
given content as a defined term (e.g., in italic). Consider using
|
|
@scheme[deftech] instead, though, so that uses of @scheme[tech] can
|
|
hyper-link to the definition.}
|
|
|
|
@defproc[(onscreen [pre-content any/c] ...) element?]{ Typesets the given
|
|
content as a string that appears in a GUI, such as the name of a
|
|
button.}
|
|
|
|
@defproc[(menuitem [menu-name string?] [item-name string?]) element?]{
|
|
Typesets the given combination of a GUI's menu and item name.}
|
|
|
|
@defproc[(filepath [pre-content any/c] ...) element?]{Typesets the given content
|
|
as a file name (e.g., in typewriter font and in in quotes).}
|
|
|
|
@defproc[(exec [pre-content any/c] ...) element?]{Typesets the given content
|
|
as a command line (e.g., in typewriter font).}
|
|
|
|
@defproc[(envvar [pre-content any/c] ...) element?]{Typesets the given
|
|
content as an environment variable (e.g., in typewriter font).}
|
|
|
|
@defproc[(Flag [pre-content any/c] ...) element?]{Typesets the given
|
|
content as a flag (e.g., in typewriter font with a leading hyphen).}
|
|
|
|
@defproc[(DFlag [pre-content any/c] ...) element?]{Typesets the given
|
|
content a long flag (e.g., in typewriter font with two leading
|
|
hyphens).}
|
|
|
|
@defproc[(math [pre-content any/c] ...) element?]{The content form of
|
|
@scheme[pre-content] is transformed:
|
|
|
|
@itemize{
|
|
|
|
@item{Any immediate @scheme['rsquo] is converted to @scheme['prime].}
|
|
|
|
@item{Parentheses and sequences of decimal digits in immediate
|
|
strings are left as-is, but any other immediate string is
|
|
italicized.}
|
|
}
|
|
|
|
Extensions to @scheme[math] are likely, such as recognizing @litchar{_}
|
|
and @litchar{^} for subscripts and superscripts.}
|
|
|
|
@; ------------------------------------------------------------------------
|
|
@section[#:tag "scribble:manual:section-links"]{Links}
|
|
|
|
@defproc[(secref [tag string?]) element?]{
|
|
|
|
Inserts the hyperlinked title of the section tagged @scheme[tag], but
|
|
@scheme{aux-element} items in the title content are omitted in the
|
|
hyperlink label.}
|
|
|
|
|
|
@defproc[(seclink [tag string?] [pre-content any/c] ...) element?]{
|
|
|
|
The content from @scheme[pre-content] is hyperlinked to the section
|
|
tagged @scheme[tag].}
|
|
|
|
|
|
@defproc[(schemelink [id symbol?] [pre-content any/c] ...) element?]{
|
|
|
|
The content from @scheme[pre-content] is hyperlinked to the definition
|
|
of @scheme[id].}
|
|
|
|
|
|
@defproc[(link [url string?] [pre-content any/c] ...) element?]{
|
|
|
|
The content from @scheme[pre-content] is hyperlinked to @scheme[url].}
|
|
|
|
|
|
@defproc[(elemtag [t tag?] [pre-content any/c] ...) element?]{
|
|
|
|
The tag @scheme[t] refers to the content form of
|
|
@scheme[pre-content].}
|
|
|
|
|
|
@defproc[(elemref [t tag?] [pre-content any/c] ...) element?]{
|
|
|
|
The content from @scheme[pre-content] is hyperlinked to @scheme[t],
|
|
which is normally defined using @scheme[elemtag].}
|
|
|
|
|
|
@defproc[(deftech [pre-content any/c] ...) element?]{
|
|
|
|
Produces an element for the content form of @scheme[pre-content], and
|
|
also defines a term that can be referenced elsewhere using
|
|
@scheme[tech].
|
|
|
|
The @scheme[content->string] result of the content form of
|
|
@scheme[pre-content] is used as a key for references, but normalized
|
|
as follows:
|
|
|
|
@itemize{
|
|
|
|
@item{A trailing ``ies'' is replaced by ``y''.}
|
|
|
|
@item{A trailing ``s'' is removed.}
|
|
|
|
@item{Consecutive hyphens and whitespaces are all replaced by a
|
|
single space.}
|
|
|
|
}
|
|
|
|
These normalization steps help support natural-language references
|
|
that differ slightly from a defined form. For example, a definition of
|
|
``bananas'' can be referenced with a use of ``banana''.}
|
|
|
|
@defproc[(tech [pre-content any/c] ...) element?]{
|
|
|
|
Produces an element for the content form of @scheme[pre-content], and
|
|
hyperlinks it to the definition of the content as established by
|
|
@scheme[deftech]. The content's string form is normalized in the same
|
|
way as for @scheme[deftech].
|
|
|
|
The hyperlink is relatively quiet, in that underlining in HTML output
|
|
appears only when the mouse is moved over the term.
|
|
|
|
In some cases, combining both natural-language uses of a term and
|
|
proper linking can require some creativity, even with the
|
|
normalization performed on the term. For example, if ``bind'' is
|
|
defined, but a sentence uses the term ``binding,'' the latter can be
|
|
linked to the former using @schemefont["@tech{bind}ing"].}
|
|
|
|
@defproc[(techlink [pre-content any/c] ...) element?]{
|
|
|
|
Like @scheme[tech], but the link is not a quiet. For example, in HTML
|
|
output, a hyperlink underline appears even when the mouse is not over
|
|
the link.}
|
|
|
|
@; ------------------------------------------------------------------------
|
|
@section{Indexing}
|
|
|
|
@defform[(indexed-scheme datum ...)]{
|
|
|
|
A combination of @scheme[scheme] and @scheme[as-index], with the
|
|
following special cases when a single @scheme[datum] is provided:
|
|
|
|
@itemize{
|
|
|
|
@item{If @scheme[datum] is a @scheme[quote] form, then the quote is
|
|
removed from the key (so that it's sorted using its unquoted
|
|
form).}
|
|
|
|
@item{If @scheme[datum] is a string, then quotes are removed from the
|
|
key (so that it's sorted using the string content).}
|
|
|
|
}}
|
|
|
|
@defproc[(idefterm [pre-content any/c] ...) element?]{Combines
|
|
@scheme[as-index] and @scheme[defterm]. The content normally should be
|
|
plural, rather than singular. Consider using @scheme[deftech],
|
|
instead, which always indexes.}
|
|
|
|
@defproc[(pidefterm [pre-content any/c] ...) element?]{Like
|
|
@scheme[idefterm], but plural: adds an ``s'' on the end of the content
|
|
for the index entry. Consider using @scheme[deftech], instead.}
|
|
|
|
@defproc[(indexed-file [pre-content any/c] ...) element?]{A
|
|
combination of @scheme[file] and @scheme[as-index], but where the sort
|
|
key for the index iterm does not include quotes.}
|
|
|
|
@defproc[(indexed-envvar [pre-content any/c] ...) element?]{A
|
|
combination of @scheme[envvar] and @scheme[as-index].}
|
|
|
|
@; ------------------------------------------------------------------------
|
|
@section{Miscellaneous}
|
|
|
|
@defthing[PLaneT string?]{@scheme["PLaneT"] (to help make sure you get
|
|
the letters in the right case).}
|
|
|
|
@defthing[void-const element?]{Returns an element for @|void-const|.}
|
|
|
|
@defthing[undefined-const element?]{Returns an element for @|undefined-const|.}
|
|
|
|
@defproc[(centerline [pre-flow any/c] ...) table?]{Produces a
|
|
centered table with the @scheme[pre-flow] parsed by
|
|
@scheme[decode-flow].}
|
|
|
|
@defproc[(commandline [pre-content any/c] ...) paragraph?]{Produces
|
|
an inset command-line example (e.g., in typewriter font).}
|
|
|
|
@defproc[(margin-note [pre-content any/c] ...) paragraph?]{Produces
|
|
a paragraph to be typeset in the margin instead of inlined.}
|