Variable: cal-tex-hook
cal-tex-hook is a customizable variable defined in cal-tex.el.gz.
Value
nil
Documentation
List of functions called after any LaTeX calendar buffer is generated.
You can use this to do post-processing on the buffer. For example, to change
characters with diacritical marks to their LaTeX equivalents, use
(add-hook 'cal-tex-hook
(lambda () (iso-iso2tex (point-min) (point-max))))
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-tex.el.gz
(defcustom cal-tex-hook nil
"List of functions called after any LaTeX calendar buffer is generated.
You can use this to do post-processing on the buffer. For example, to change
characters with diacritical marks to their LaTeX equivalents, use
(add-hook \\='cal-tex-hook
(lambda () (iso-iso2tex (point-min) (point-max))))"
:type 'hook
:group 'calendar-tex)