scribble/sigplan: add to-appear
This commit is contained in:
parent
efae6bd375
commit
6b8490b78b
|
@ -110,6 +110,13 @@ e-mail address with the author name.}
|
|||
Declares information that is collected into the copyright region of the paper.}
|
||||
|
||||
|
||||
@defproc[(to-appear [content pre-content?] ...) block?]{
|
||||
|
||||
Declares alternate content for the copyright region of the paper.
|
||||
|
||||
@history[#:added "1.13"]}
|
||||
|
||||
|
||||
@deftogether[(
|
||||
@defproc[(category [CR-number pre-content?]
|
||||
[subcategory pre-content?]
|
||||
|
|
|
@ -23,4 +23,4 @@
|
|||
|
||||
(define pkg-authors '(mflatt eli))
|
||||
|
||||
(define version "1.12")
|
||||
(define version "1.13")
|
||||
|
|
|
@ -33,6 +33,9 @@
|
|||
[doi
|
||||
(->* () () #:rest (listof pre-content?)
|
||||
block?)]
|
||||
[to-appear
|
||||
(->* () () #:rest pre-content?
|
||||
block?)]
|
||||
[category
|
||||
(->* (pre-content? pre-content? pre-content?)
|
||||
((or/c false/c pre-content?))
|
||||
|
@ -146,6 +149,13 @@
|
|||
(make-style "SPexclusivelicense" sigplan-extras)
|
||||
(decode-content what))))
|
||||
|
||||
(define (to-appear . what)
|
||||
(make-paragraph
|
||||
(make-style 'pretitle null)
|
||||
(make-element
|
||||
(make-style "toappear" sigplan-extras)
|
||||
(decode-content what))))
|
||||
|
||||
;; ----------------------------------------
|
||||
;; Categories, terms, and keywords:
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user