add font size options to scribble/acmart
Just like the 10pt option in `scribble/sigplan`, putting @9pt @10pt @11pt or @12pt on the #lang line of a `scribble/acmart` document passes to corresponding string to `\documentclass[....]` And just like TeX, it's ok to give multiple font sizes. All but the last are ignored.
This commit is contained in:
parent
c88c62cb56
commit
82860694a2
|
@ -44,6 +44,10 @@ all mutually exclusive.}
|
|||
@defidform[natbib]
|
||||
@defidform[anonymous]
|
||||
@defidform[authorversion]
|
||||
@defidform[9pt]
|
||||
@defidform[10pt]
|
||||
@defidform[11pt]
|
||||
@defidform[12pt]
|
||||
)]{
|
||||
|
||||
Enables the given document format option. Use the option only on the
|
||||
|
@ -55,6 +59,7 @@ number of options may be used:
|
|||
#lang scribble/acmart @acmsmall @review @anonymous @natbib
|
||||
}|
|
||||
|
||||
If multiple font size options are used, all but the last are ignored.
|
||||
}
|
||||
|
||||
@defproc[(maketitle) block?]{
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
; format options
|
||||
(defopts manuscript acmsmall acmlarge acmtog sigconf siggraph sigplan sigchi sigchi-a)
|
||||
; boolean options
|
||||
(defopts review screen natbib anonymous authorversion)
|
||||
(defopts review screen natbib anonymous authorversion 9pt 10pt 11pt 12pt)
|
||||
|
||||
(define acmart-extras
|
||||
(let ([abs (lambda (s)
|
||||
|
|
|
@ -20,10 +20,11 @@
|
|||
[screen? #f]
|
||||
[natbib? #f]
|
||||
[anonymous? #f]
|
||||
[authorversion? #f])
|
||||
[authorversion? #f]
|
||||
[font-size #f])
|
||||
(let loop ([stuff #'body])
|
||||
(syntax-case* stuff (manuscript acmsmall acmlarge acmtog sigconf siggraph sigplan sigchi sigchi-a
|
||||
review screen natbib anonymous authorversion)
|
||||
review screen natbib anonymous authorversion 9pt 10pt 11pt 12pt)
|
||||
(lambda (a b) (eq? (syntax-e a) (syntax-e b)))
|
||||
[(ws . body)
|
||||
;; Skip intraline whitespace to find options:
|
||||
|
@ -78,6 +79,18 @@
|
|||
[(authorversion . body)
|
||||
(set! authorversion? "authorversion=true")
|
||||
(loop #'body)]
|
||||
[(9pt . body)
|
||||
(set! font-size "9pt")
|
||||
(loop #'body)]
|
||||
[(10pt . body)
|
||||
(set! font-size "10pt")
|
||||
(loop #'body)]
|
||||
[(11pt . body)
|
||||
(set! font-size "11pt")
|
||||
(loop #'body)]
|
||||
[(12pt . body)
|
||||
(set! font-size "12pt")
|
||||
(loop #'body)]
|
||||
|
||||
|
||||
; format options
|
||||
|
@ -110,7 +123,7 @@
|
|||
(loop #'body)]
|
||||
|
||||
[body
|
||||
#`(#%module-begin id (post-process #,review? #,screen? #,natbib? #,anonymous? #,authorversion? #,format?) () . body)])))]))
|
||||
#`(#%module-begin id (post-process #,review? #,screen? #,natbib? #,anonymous? #,authorversion? #,font-size #,format?) () . body)])))]))
|
||||
|
||||
(define ((post-process . opts) doc)
|
||||
(let ([options
|
||||
|
|
Loading…
Reference in New Issue
Block a user