;;; -*- emacs-lisp -*- ;;; scrreprt.el -- AUC TeX style for scrreprt.cls ;; Copyright (C) 2002 Mark Trettin ;; License: GPL, see the file COPYING in the base directory of AUC TeX ;; Author: Mark Trettin ;; Created: 2002-09-26 ;; Version: $Id: scrreprt.el,v 1.2 2002/10/08 13:24:32 dakas Exp $ ;; Keywords: tex ;;; Commentary: ;; This file adds support for `scrreprt.cls'. This file needs ;; `scrbase.el'. ;; This file is intended to be used with the AUC TeX-Package by Per ;; Abrahamsen. Put this File into your TeX-style-path. You may also ;; byte-compile this file. ;;; Code: (TeX-add-style-hook "scrreprt" (lambda () (setq LaTeX-largest-level (LaTeX-section-level "chapter")) ;; load basic definitons (TeX-run-style-hooks "scrbase") (TeX-add-symbols '("setpartpreamble" [ TeX-arg-KOMA-setpreamble ] [ "Width" ] t) '("setchapterpreamble" [ TeX-arg-KOMA-setpreamble ] [ "Width" ] t) '("dictum" [ "Author" ] t)) (make-local-variable 'LaTeX-section-list) (setq LaTeX-section-list (append LaTeX-section-list '(("addchap" 1)))) (make-local-variable 'LaTeX-section-label) (setq LaTeX-section-label (append LaTeX-section-label '(("addchap" . nil)))) )) ;;; scrreprt.el ends here