25 lines
761 B
EmacsLisp
25 lines
761 B
EmacsLisp
;;; 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
|