summaryrefslogtreecommitdiff
path: root/elpa/auctex-13.1.3/style/scrartcl.el
blob: 49509fb06b12781cf6b88baec1b345151eecadbd (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
26
27
28
29
30
;;; scrartcl.el -- AUCTeX style for scrartcl.cls  -*- lexical-binding: t; -*-

;; Copyright (C) 2002, 2005, 2020 Free Software Foundation
;; License: GPL, see the file COPYING in the base directory of AUCTeX

;; Author: Mark Trettin <Mark.Trettin@gmx.de>
;; Created: 2002-09-26
;; Keywords: tex

;;; Commentary:

;; This file adds support for `scrartcl.cls'. This file needs
;; `scrbase.el'.

;; This file is part of  AUCTeX.

(require 'tex)
(require 'latex)

;;; Code:
(TeX-add-style-hook
 "scrartcl"
 (lambda ()
   (LaTeX-largest-level-set "section")
   ;; load basic definitons
   (TeX-run-style-hooks "scrbase")
   (LaTeX-add-environments "abstract"))
 TeX-dialect)

;;; scrartcl.el ends here