Initial Commit
[packages] / xemacs-packages / auctex / style / flashcards.el
1 ;;; flashcards.el --- AUCTeX style for the flashcards class.
2
3 ;; Copyright (C) 2007 Free Software Foundation, Inc.
4
5 ;; Author: Ralf Angeli <angeli@caeruleus.net>
6 ;; Maintainer: auctex-devel@gnu.org
7 ;; Created: 2007-04-23
8 ;; Keywords: tex
9
10 ;; This file is part of AUCTeX.
11
12 ;; AUCTeX is free software; you can redistribute it and/or modify it
13 ;; under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
16
17 ;; AUCTeX is distributed in the hope that it will be useful, but
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 ;; General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with AUCTeX; see the file COPYING.  If not, write to the Free
24 ;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
25 ;; 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;; This file adds support for the flashcards class.
30
31 ;;; Code:
32
33 (TeX-add-style-hook
34  "flashcards"
35  (lambda ()
36    (TeX-add-symbols
37     '("cardfrontstyle" ["Format"] "Style")
38     '("cardfrontfoot" "Footer text")
39     '("cardbackstyle" ["Format"] "Style")
40     '("cardfrontheadstyle" ["Format"] "Style")
41     '("cardfrontfootstyle" ["Format"] "Style")
42     "cardmargin"
43     "cardpaper"
44     "cardpapermode"
45     "cardrows"
46     "cardcolumns"
47     "cardheight"
48     "cardwidth")
49    (LaTeX-add-environments '("flashcard" ["Header"] "Front side"))
50    ;; Fontification
51    (when (and (fboundp 'font-latex-add-keywords)
52               (eq TeX-install-font-lock 'font-latex-setup))
53      (font-latex-add-keywords '(("cardfrontstyle" "[{")
54                                 ("cardfrontfoot" "{")
55                                 ("cardbackstyle" "[{")
56                                 ("cardfrontheadstyle" "[{")
57                                 ("cardfrontfootstyle" "[{"))
58                               'variable)))
59  LaTeX-dialect)
60
61 ;;; flashcards.el ends here