scribble/latex-properties: add `command-extras'
This style property is a way to add to the Latex output that is ignored for HTML and other output. original commit: 17865bfa841e7c6fd235717bde6b03f16c77e124
This commit is contained in:
parent
24b3905faa
commit
d96626896d
|
@ -6,4 +6,5 @@
|
|||
[tex-addition ([path (or/c path-string? (cons/c 'collects (listof bytes?)) bytes?)])]
|
||||
[latex-defaults ([prefix (or/c bytes? path-string? (cons/c 'collects (listof bytes?)))]
|
||||
[style (or/c bytes? path-string? (cons/c 'collects (listof bytes?)))]
|
||||
[extra-files (listof (or/c path-string? (cons/c 'collects (listof bytes?))))])])
|
||||
[extra-files (listof (or/c path-string? (cons/c 'collects (listof bytes?))))])]
|
||||
[command-extras ([arguments (listof string?)])])
|
||||
|
|
|
@ -418,6 +418,10 @@
|
|||
(color->string (background-color-property-color v)))
|
||||
(loop (cdr l) tt?)
|
||||
(printf "}")]
|
||||
[(command-extras? (car l))
|
||||
(loop (cdr l) tt?)
|
||||
(for ([l (in-list (command-extras-arguments (car l)))])
|
||||
(printf "{~a}" l))]
|
||||
[else (loop (cdr l) tt?)]))))))
|
||||
(when part-label?
|
||||
(printf "}"))
|
||||
|
|
|
@ -823,6 +823,9 @@ The following @tech{style properties} are currently recognized:
|
|||
name} is a string, render the elements content exactly
|
||||
(without escapes).}
|
||||
|
||||
@item{@racket[command-extras] structure --- For Latex output,
|
||||
adds strings as arguments to the Latex command.}
|
||||
|
||||
]}
|
||||
|
||||
|
||||
|
@ -1502,14 +1505,7 @@ rendering.
|
|||
See also @racketmodname[scribble/latex-prefix].}
|
||||
|
||||
|
||||
@defstruct[latex-auto-extra-files ([paths (listof (or/c path-string?
|
||||
(cons/c 'collects (listof bytes?))))])]{
|
||||
@defstruct[command-extras ([arguments (listof string?)])]{
|
||||
|
||||
Used as a @tech{style property} for the main @racket[part] of a
|
||||
document to supply extra files needed to build the document via the
|
||||
@exec{scribble} command-line tool (for @DFlag{latex} and @DFlag{pdf}
|
||||
mode).
|
||||
|
||||
Languages (used with @hash-lang[]) like
|
||||
@racketmodname[scribble/sigplan] add this property to a document to specify
|
||||
appropriate extra files.}
|
||||
Used as a @tech{style property} on an @racket[element] to add extra
|
||||
arguments to the element's command in Latex output.}
|
||||
|
|
Loading…
Reference in New Issue
Block a user