]> code.delx.au - gnu-emacs-elpa/blob - packages/auctex/style/setspace.el
* auctex: Shorten copyright year ranges.
[gnu-emacs-elpa] / packages / auctex / style / setspace.el
1 ;;; setspace.el --- AUCTeX style for `setspace.sty'
2
3 ;; Copyright (C) 2011 Free Software Foundation, Inc.
4
5 ;; Author: Mads Jensen <mje@inducks.org>
6 ;; Created: 2011-04-16
7 ;; Keywords: tex
8
9 ;; This file is part of AUCTeX.
10
11 ;; AUCTeX is free software; you can redistribute it and/or modify it
12 ;; under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; any later version.
15
16 ;; AUCTeX is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ;; General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with AUCTeX; see the file COPYING. If not, write to the Free
23 ;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24 ;; 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;; This file adds support for `setspace.sty'.
29
30 ;;; Code:
31
32 (TeX-add-style-hook
33 "setspace"
34 (lambda ()
35 (TeX-add-symbols
36 '("setstretch" "Stretch")
37 '("setdisplayskipstretch" "Stretch")
38 '("SetSinglespace" "Stretch")
39 '("onehalfspacing" 0)
40 '("doublespacing" 0)
41 '("singlespacing" 0))
42
43 (LaTeX-add-environments
44 '("spacing" "Stretch")
45 "singlespace"
46 "singlespace*"
47 "onehalfspace"
48 "doublespace")
49
50 (when (and (featurep 'font-latex)
51 (eq TeX-install-font-lock 'font-latex-setup))
52 (font-latex-add-keywords '(("singlespacing" "")
53 ("doublespacing" "")
54 ("onehalfspacing" ""))
55 'function))))
56
57 (defvar LaTeX-setspace-package-options
58 '("doublespacing" "onehalfspacing" "singlespacing" "nodisplayskipstretch")
59 "Package options for the setspace package.")
60
61 ;;; setspace.el ends here