emacs/code/elpa/auctex-13.1.5/style/book.el

25 lines
761 B
EmacsLisp
Raw Normal View History

2022-08-25 17:42:37 +00:00
;;; book.el - Special code for book style. -*- lexical-binding: t; -*-
;;; Code:
(require 'tex)
(require 'latex)
(defvar LaTeX-book-class-options
'("a4paper" "a5paper" "b5paper" "letterpaper" "legalpaper" "executivepaper"
"landscape" "10pt" "11pt" "12pt" "oneside" "twoside" "draft" "final"
"titlepage" "notitlepage" "openright" "openany" "onecolumn" "twocolumn"
"leqno" "fleqn" "openbib")
"Package options for the book class.")
(TeX-add-style-hook
"book"
(lambda ()
(LaTeX-largest-level-set "part")
(LaTeX-add-counters "part" "chapter" "section" "subsection" "subsubsection"
"paragraph" "subparagraph" "figure" "table")
(LaTeX-add-pagestyles "headings" "myheadings"))
TeX-dialect)
;;; book.el ends here