lang-parameters.rkt (639B)
1 #lang racket/base 2 3 (provide (all-defined-out)) 4 5 ;; Some latex formats have different requirements on how 6 ;; figures, citations, etc. are displayed. This allows different 7 ;; scribble langs to handle them. 8 9 ;; `Figure` string that appears in front of a figure caption 10 (define default-figure-label-text (make-parameter "Figure")) 11 12 ;; Seperator string between figure counter and caption 13 (define default-figure-label-sep (make-parameter ": ")) 14 15 ;; Style for the figure caption 16 (define default-figure-caption-style (make-parameter #f)) 17 18 ;; Style for the number in the figure counter 19 (define default-figure-counter-style (make-parameter #f))