Initial Commit
[packages] / xemacs-packages / auctex / style / article.el
1 ;;; article.el - Special code for article style.
2
3 ;;; Code:
4
5 (defvar LaTeX-article-class-options
6   '("a4paper" "a5paper" "b5paper" "letterpaper" "legalpaper" "executivepaper"
7     "landscape" "10pt" "11pt" "12pt" "oneside" "twoside" "draft" "final"
8     "titlepage" "notitlepage" "onecolumn" "twocolumn" "leqno" "fleqn" "openbib")
9   "Package options for the article class.")
10
11 (TeX-add-style-hook
12  "article"
13  (lambda ()
14    (LaTeX-largest-level-set "section")
15    (LaTeX-add-counters "part" "section" "subsection" "subsubsection" "paragraph"
16                        "subparagraph" "figure" "table")
17    (LaTeX-add-pagestyles "headings" "myheadings"))
18  LaTeX-dialect)
19
20 ;;; article.el ends here