AUCTeX Sync -- New Style Files
[packages] / xemacs-packages / auctex / style / tarticle.el
1 ;;; tarticle.el - Special code for tarticle class.
2
3 ;; Copyright (C) 2017 Free Software Foundation, Inc.
4
5 ;; Author: Ikumi Keita <ikumi@ikumi.que.jp>
6 ;; Maintainer: auctex-devel@gnu.org
7 ;; Created: 2017-03-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 ;; Please write me.
30
31 ;;; Code:
32
33 (TeX-load-style "jarticle")
34 (defvar LaTeX-tarticle-class-options LaTeX-jarticle-class-options
35   "Class options for the tarticle class.")
36
37 (TeX-add-style-hook
38  "tarticle"
39  (lambda ()
40    (TeX-run-style-hooks "jarticle" "plext"))
41  LaTeX-dialect)
42
43 ;;; tarticle.el ends here