scribble-enhanced/collects/scribble/latex-properties.rkt
Matthew Flatt d96626896d 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
2013-01-24 06:43:10 -05:00

11 lines
518 B
Racket

#lang scheme/base
(require "private/provide-structs.rkt"
racket/contract/base)
(provide-structs
[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?))))])]
[command-extras ([arguments (listof string?)])])