blob: 451ae9ac4728b5632d425824018d885ac618062d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
;; $Id: ff-ranges-only.xdy,v 1.1 2004/05/24 21:53:27 jschrod Exp $
;;------------------------------------------------------------
;;;
;;; ff ranges only
;;;
;;; Use "f" for two pages, "ff" notation for ranges of three and more pages
;;;
;; FIXME: This will output a warning about a redefinition if latex.xdy
;; is already loaded. Which it is, most of the time. I don't want that
;; message, and we should get rid of it.
(define-location-class "arabic-page-numbers"
("arabic-numbers") :min-range-length 1)
(markup-range :sep "f" :length 1 :ignore-end :class "arabic-page-numbers")
(markup-range :sep "ff" :ignore-end :class "arabic-page-numbers")
;;======================================================================
;;
;; $Log: ff-ranges-only.xdy,v $
;; Revision 1.1 2004/05/24 21:53:27 jschrod
;; Standard modules, introduced in "LaTeX Companion Release".
;;
|