Function: cal-tex-cursor-week2-summary
cal-tex-cursor-week2-summary is an autoloaded, interactive and
byte-compiled function defined in cal-tex.el.gz.
Signature
(cal-tex-cursor-week2-summary &optional N EVENT)
Documentation
Make a two page LaTeX calendar for one week, with optional diary entries.
It does not show hours of the day.
It shows holidays if cal-tex-holidays is non-nil.
It shows diary entries if cal-tex-diary is non-nil.
The optional prefix argument N specifies a number of weeks (default 1).
By default, the calendar is for the week at point; the optional argument EVENT specifies a different buffer position.
Probably introduced at or before Emacs version 24.3.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-tex.el.gz
;;;###cal-autoload
(defun cal-tex-cursor-week2-summary (&optional n event)
"Make a two page LaTeX calendar for one week, with optional diary entries.
It does not show hours of the day.
It shows holidays if `cal-tex-holidays' is non-nil.
It shows diary entries if `cal-tex-diary' is non-nil.
The optional prefix argument N specifies a number of weeks (default 1).
By default, the calendar is for the week at point; the optional
argument EVENT specifies a different buffer position."
(interactive (list (prefix-numeric-value current-prefix-arg)
last-nonmenu-event))
(cal-tex-weekly-common n event))