;;; mflogo.el --- AUCTeX style for `mflogo.sty' ;; Author: Mads Jensen ;; Created: 2011-02-02 ;; Keywords: tex ;;; Commentary: ;; This file adds support for `mflogo.sty'. ;;; Code: (TeX-add-style-hook "mflogo" (lambda () (TeX-add-symbols '("textlogo" 1) '("logofamily" 1)) ;; Fontification (when (and (featurep 'font-latex) (eq TeX-install-font-lock 'font-latex-setup)) (font-latex-add-keywords '(("logofamily" "{") ("textlogo" "{")) 'function)))) (defvar LaTeX-mflogo-package-options nil "Package options for the mflogo package.") ;;; mflogo.el ends here