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