
* Acmart font requirements * Parameterize for different languages. * Update acmart to v1.53 * Added three new document types to match acmart 1.53
20 lines
639 B
Racket
20 lines
639 B
Racket
#lang racket/base
|
|
|
|
(provide (all-defined-out))
|
|
|
|
;; Some latex formats have different requirements on how
|
|
;; figures, citations, etc. are displayed. This allows different
|
|
;; scribble langs to handle them.
|
|
|
|
;; `Figure` string that appears in front of a figure caption
|
|
(define default-figure-label-text (make-parameter "Figure"))
|
|
|
|
;; Seperator string between figure counter and caption
|
|
(define default-figure-label-sep (make-parameter ": "))
|
|
|
|
;; Style for the figure caption
|
|
(define default-figure-caption-style (make-parameter #f))
|
|
|
|
;; Style for the number in the figure counter
|
|
(define default-figure-counter-style (make-parameter #f))
|