1 ;;; cal-tex.el --- calendar functions for printing calendars with LaTeX
3 ;; Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 ;; 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Steve Fisk <fisk@bowdoin.edu>
7 ;; Edward M. Reingold <reingold@cs.uiuc.edu>
8 ;; Maintainer: Glenn Morris <rgm@gnu.org>
10 ;; Human-Keywords: Calendar, LaTeX
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30 ;; This collection of functions implements the creation of LaTeX calendars
31 ;; based on the user's holiday choices and diary file.
33 ;; The user commands are:
34 ;; cal-tex-cursor-year
35 ;; cal-tex-cursor-year-landscape
36 ;; cal-tex-cursor-filofax-year
37 ;; cal-tex-cursor-month-landscape
38 ;; cal-tex-cursor-month
39 ;; cal-tex-cursor-week
40 ;; cal-tex-cursor-week2
41 ;; cal-tex-cursor-week-iso
42 ;; cal-tex-cursor-week-monday
43 ;; cal-tex-cursor-filofax-2week
44 ;; cal-tex-cursor-filofax-week
45 ;; cal-tex-cursor-filofax-daily
50 ;; (*) Add holidays and diary entries to daily calendar.
52 ;; (*) Add diary entries to weekly calendar functions.
54 ;; (*) Make calendar styles for A4 paper.
56 ;; (*) Make monthly styles Filofax paper.
63 ;;; Customizable variables
66 (defgroup calendar-tex nil
67 "Options for printing calendar with LaTeX."
71 (defcustom cal-tex-which-days
'(0 1 2 3 4 5 6)
72 "The days of the week that are displayed on the portrait monthly calendar.
73 Sunday is 0, Monday is 1, and so on. The default is to print from Sunday to
74 Saturday. For example, use '(1 3 5) to only print Monday, Wednesday, Friday."
75 :type
'(repeat integer
)
78 (defcustom cal-tex-holidays t
79 "Non-nil means holidays are printed in the LaTeX calendars that support it.
80 Setting this to nil may speed up calendar generation."
84 (defcustom cal-tex-diary nil
85 "Non-nil means diary entries are printed in LaTeX calendars that support it.
86 At present, this only affects the monthly, filofax, and iso-week
87 calendars (i.e. not the yearly, plain weekly, or daily calendars).
88 Setting this to nil may speed up calendar generation."
92 (defcustom cal-tex-rules nil
93 "Non-nil means pages will be ruled in some LaTeX calendar styles.
94 At present, this only affects the daily filofax calendar."
98 (defcustom cal-tex-daily-string
99 '(let* ((year (calendar-extract-year date
))
100 (day (calendar-day-number date
))
101 (days-remaining (- (calendar-day-number (list 12 31 year
)) day
)))
102 (format "%d/%d" day days-remaining
))
103 "Lisp expression giving the date format to use in the LaTeX calendars.
104 This should be an expression involving the variable `date'. When
105 this expression is called, `date' is a list of the form '(MONTH DAY YEAR)'.
107 The string resulting from evaluating this expression is placed at
108 the bottom center of each date in monthly calendars, next to the
109 date in the weekly calendars, and in the top center of daily calendars.
111 The default is ordinal day number of the year and the number of
112 days remaining. As an example, setting this to
114 '(calendar-hebrew-date-string date)
116 will put the Hebrew date at the bottom of each day."
118 :group
'calendar-tex
)
120 (defcustom cal-tex-buffer
"calendar.tex"
121 "The name for the output LaTeX calendar buffer."
123 :group
'calendar-tex
)
125 (defcustom cal-tex-24 nil
126 "Non-nil means use a 24 hour clock in the daily calendar."
128 :group
'calendar-tex
)
130 (defcustom cal-tex-daily-start
8
131 "The first hour of the daily LaTeX calendar page.
132 At present, this only affects `cal-tex-cursor-day'."
134 :group
'calendar-tex
)
136 (defcustom cal-tex-daily-end
20
137 "The last hour of the daily LaTeX calendar page.
138 At present, this only affects `cal-tex-cursor-day'."
140 :group
'calendar-tex
)
142 (defcustom cal-tex-preamble-extra nil
143 "A string giving extra LaTeX commands to insert in the calendar preamble.
144 For example, to include extra packages:
145 \"\\\\usepackage{foo}\\n\\\\usepackage{bar}\\n\"."
146 :type
'(choice (const nil
)
147 ;; An example to help people format things in custom.
148 (string :value
"\\usepackage{foo}\n\\usepackage{bar}\n"))
152 (defcustom cal-tex-hook nil
153 "List of functions called after any LaTeX calendar buffer is generated.
154 You can use this to do post-processing on the buffer. For example, to change
155 characters with diacritical marks to their LaTeX equivalents, use
156 (add-hook 'cal-tex-hook
157 (lambda () (iso-iso2tex (point-min) (point-max))))"
159 :group
'calendar-tex
)
161 (defcustom cal-tex-year-hook nil
162 "List of functions called after a LaTeX year calendar buffer is generated."
164 :group
'calendar-tex
)
166 (defcustom cal-tex-month-hook nil
167 "List of functions called after a LaTeX month calendar buffer is generated."
169 :group
'calendar-tex
)
171 (defcustom cal-tex-week-hook nil
172 "List of functions called after a LaTeX week calendar buffer is generated."
174 :group
'calendar-tex
)
176 (defcustom cal-tex-daily-hook nil
177 "List of functions called after a LaTeX daily calendar buffer is generated."
179 :group
'calendar-tex
)
182 ;;; Definitions for LaTeX code
185 (defconst cal-tex-day-prefix
"\\caldate{%s}{%s}"
186 "The initial LaTeX code for a day.
187 The holidays, diary entries, bottom string, and the text follow.")
189 (defconst cal-tex-day-name-format
"\\myday{%s}%%"
190 "The format for LaTeX code for a day name.
191 The names are taken from `calendar-day-name-array'.")
193 (defconst cal-tex-cal-one-month
194 "\\def\\calmonth#1#2%
196 \\Huge\\bf\\uppercase{#1} #2 \\\\[1cm]%
201 "LaTeX code for the month header, for a single month calendar.")
203 (defconst cal-tex-cal-multi-month
204 "\\def\\calmonth#1#2#3#4%
206 \\Huge\\bf #1 #2---#3 #4\\\\[1cm]%
211 "LaTeX code for the month header, for a multi-month calendar.")
213 (defconst cal-tex-myday
214 "\\renewcommand{\\myday}[1]%
215 {\\makebox[\\cellwidth]{\\hfill\\large\\bf#1\\hfill}}
218 "LaTeX code for a day heading.")
220 (defconst cal-tex-caldate
222 \\long\\def\\caldate#1#2#3#4#5#6{%
223 \\fbox{\\hbox to\\cellwidth{%
224 \\vbox to\\cellheight{%
225 \\hbox to\\cellwidth{%
226 {\\hspace*{1mm}\\Large \\bf \\strut #2}\\hspace{.05\\cellwidth}%
227 \\raisebox{\\holidaymult\\cellheight}%
228 {\\parbox[t]{.75\\cellwidth}{\\tiny \\raggedright #4}}}
229 \\hbox to\\cellwidth{%
230 \\hspace*{1mm}\\parbox{.95\\cellwidth}{\\tiny \\raggedright #3}}
232 \\hbox to\\cellwidth{#6}%
234 \\hbox to\\cellwidth{\\hfill \\tiny #5 \\hfill}%
238 "LaTeX code to insert one box with date info in calendar.
239 This definition is the heart of the calendar!")
241 (autoload 'calendar-holiday-list
"holidays")
243 (defun cal-tex-list-holidays (d1 d2
)
244 "Generate a list of all holidays from absolute date D1 to D2."
245 (let* ((start (calendar-gregorian-from-absolute d1
))
246 (displayed-month (calendar-extract-month start
))
247 (displayed-year (calendar-extract-year start
))
248 (end (calendar-gregorian-from-absolute d2
))
249 (end-month (calendar-extract-month end
))
250 (end-year (calendar-extract-year end
))
252 (1+ (/ (calendar-interval displayed-month displayed-year
256 (calendar-increment-month displayed-month displayed-year
1)
257 (dotimes (idummy number-of-intervals
)
258 (setq holidays
(append holidays
(calendar-holiday-list)))
259 (calendar-increment-month displayed-month displayed-year
3))
260 (dolist (hol holidays
)
262 (setq a
(calendar-absolute-from-gregorian (car hol
)))
263 (and (<= d1 a
) (<= a d2
))
264 (setq in-range
(append (list hol
) in-range
))))
267 (autoload 'diary-list-entries
"diary-lib")
269 (defun cal-tex-list-diary-entries (d1 d2
)
270 "Generate a list of all diary-entries from absolute date D1 to D2."
271 (let (diary-list-include-blanks)
272 (diary-list-entries (calendar-gregorian-from-absolute d1
)
275 (defun cal-tex-preamble (&optional args
)
276 "Insert the LaTeX calendar preamble into `cal-tex-buffer'.
277 Preamble includes initial definitions for various LaTeX commands.
278 Optional string ARGS are included as options for the article document class."
279 ;; FIXME use generate-new-buffer, and adjust cal-tex-end-document.
280 (set-buffer (get-buffer-create cal-tex-buffer
))
281 (insert (format "\\documentclass%s{article}\n"
285 (if (stringp cal-tex-preamble-extra
)
286 (insert cal-tex-preamble-extra
"\n"))
287 (insert "\\hbadness 20000
293 \\evensidemargin -2cm
298 \\newlength{\\cellwidth}
299 \\newlength{\\cellheight}
300 \\newlength{\\boxwidth}
301 \\newlength{\\boxheight}
302 \\newlength{\\cellsize}
303 \\newcommand{\\myday}[1]{}
304 \\newcommand{\\caldate}[6]{}
305 \\newcommand{\\nocaldate}[6]{}
306 \\newcommand{\\calsmall}[6]{}
315 (defun cal-tex-cursor-year (&optional n event
)
316 "Make a buffer with LaTeX commands for the year cursor is on.
317 Optional prefix argument N specifies number of years.
318 Optional EVENT indicates a buffer position to use instead of point."
319 (interactive (list (prefix-numeric-value current-prefix-arg
)
321 (cal-tex-year (calendar-extract-year (calendar-cursor-to-date t event
))
325 (defun cal-tex-cursor-year-landscape (&optional n event
)
326 "Make a buffer with LaTeX commands for the year cursor is on.
327 Optional prefix argument N specifies number of years.
328 Optional EVENT indicates a buffer position to use instead of point."
329 (interactive (list (prefix-numeric-value current-prefix-arg
)
331 (cal-tex-year (calendar-extract-year (calendar-cursor-to-date t event
))
334 (defun cal-tex-year (year n
&optional landscape
)
335 "Make a one page yearly calendar of YEAR; do this for N years.
336 There are four rows of three months each, unless optional
337 LANDSCAPE is non-nil, in which case the calendar is printed in
338 landscape mode with three rows of four months each."
339 (cal-tex-insert-preamble 1 landscape
"12pt")
341 (cal-tex-vspace "-.6cm")
342 (cal-tex-vspace "-3.1cm"))
344 (insert "\\vfill%\n")
346 (cal-tex-Huge (number-to-string year
))
348 (cal-tex-vspace "1cm")
350 (cal-tex-b-parbox "l" (if landscape
"5.9in" "4.3in"))
355 (insert (cal-tex-mini-calendar (1+ i
) year
"month" "1.1in" "1in"))
357 (cal-tex-hspace "0.5in")
358 (if (zerop (mod (1+ i
) (if landscape
4 3)))
359 (cal-tex-nl "0.5in")))
362 (insert "\\vfill%\n")
363 (setq year
(1+ year
))
365 (cal-tex-end-document)
367 (run-hooks 'cal-tex-year-hook
))
368 (run-hooks 'cal-tex-hook
))
371 (defun cal-tex-cursor-filofax-year (&optional n event
)
372 "Make a Filofax one page yearly calendar of year indicated by cursor.
373 Optional prefix argument N specifies number of years.
374 Optional EVENT indicates a buffer position to use instead of point."
375 (interactive (list (prefix-numeric-value current-prefix-arg
)
378 (let ((year (calendar-extract-year (calendar-cursor-to-date t event
))))
379 (cal-tex-preamble "twoside")
380 (cal-tex-cmd "\\textwidth 3.25in")
381 (cal-tex-cmd "\\textheight 6.5in")
382 (cal-tex-cmd "\\oddsidemargin 1.675in")
383 (cal-tex-cmd "\\evensidemargin 1.675in")
384 (cal-tex-cmd "\\topmargin 0pt")
385 (cal-tex-cmd "\\headheight -0.875in")
386 (cal-tex-cmd "\\fboxsep 0.5mm")
387 (cal-tex-cmd "\\pagestyle{empty}")
389 (cal-tex-cmd "\\vspace*{0.25in}")
391 (insert (format "\\hfil \\textbf{\\Large %s} \\hfil\\\\\n" year
))
393 (cal-tex-b-parbox "l" "\\textwidth")
397 (let ((month-names; don't use default in case user changed it
398 ;; These are only used to define the command names, not
399 ;; the names of the months they insert.
400 ["January" "February" "March" "April" "May" "June"
401 "July" "August" "September" "October" "November" "December"]))
403 (insert (cal-tex-mini-calendar (1+ i
) year
(aref month-names i
)
404 "1in" ".9in" "tiny" "0.6mm"))))
406 "\\noindent\\fbox{\\January}\\fbox{\\February}\\fbox{\\March}\\\\
407 \\noindent\\fbox{\\April}\\fbox{\\May}\\fbox{\\June}\\\\
408 \\noindent\\fbox{\\July}\\fbox{\\August}\\fbox{\\September}\\\\
409 \\noindent\\fbox{\\October}\\fbox{\\November}\\fbox{\\December}
413 (setq year
(1+ year
))
415 (cal-tex-end-document)
417 (cal-tex-cmd "\\vspace*{0.25in}"))
418 (run-hooks 'cal-tex-year-hook
))
419 (run-hooks 'cal-tex-hook
)))
422 ;;; Monthly calendars
426 (defun cal-tex-cursor-month-landscape (&optional n event
)
427 "Make a LaTeX calendar buffer for the month the cursor is on.
428 Optional prefix argument N specifies number of months to be
429 produced (default 1). The output is in landscape format, one
430 month to a page. It shows holiday and diary entries if
431 `cal-tex-holidays' and `cal-tex-diary', respectively, are non-nil.
432 Optional EVENT indicates a buffer position to use instead of point."
433 (interactive (list (prefix-numeric-value current-prefix-arg
)
436 (let* ((date (calendar-cursor-to-date t event
))
437 (month (calendar-extract-month date
))
438 (year (calendar-extract-year date
))
441 (cal-tex-which-days '(0 1 2 3 4 5 6))
442 (d1 (calendar-absolute-from-gregorian (list month
1 year
)))
444 (calendar-increment-month end-month end-year
(1- n
))
445 (calendar-absolute-from-gregorian
447 (calendar-last-day-of-month end-month end-year
)
449 (diary-list (if cal-tex-diary
(cal-tex-list-diary-entries d1 d2
)))
450 (holidays (if cal-tex-holidays
(cal-tex-list-holidays d1 d2
)))
451 other-month other-year small-months-at-start
)
452 (cal-tex-insert-preamble (cal-tex-number-weeks month year
1) t
"12pt")
453 (cal-tex-cmd cal-tex-cal-one-month
)
455 (setq other-month month
457 (calendar-increment-month other-month other-year -
1)
458 (insert (cal-tex-mini-calendar other-month other-year
"lastmonth"
459 "\\cellwidth" "\\cellheight"))
460 (calendar-increment-month other-month other-year
2)
461 (insert (cal-tex-mini-calendar other-month other-year
"nextmonth"
462 "\\cellwidth" "\\cellheight"))
463 (cal-tex-insert-month-header 1 month year month year
)
464 (cal-tex-insert-day-names)
466 (if (setq small-months-at-start
467 (< 1 (mod (- (calendar-day-of-week (list month
1 year
))
468 calendar-week-start-day
)
470 (insert "\\lastmonth\\nextmonth\\hspace*{-2\\cellwidth}"))
471 (cal-tex-insert-blank-days month year cal-tex-day-prefix
)
472 (cal-tex-insert-days month year diary-list holidays
474 (cal-tex-insert-blank-days-at-end month year cal-tex-day-prefix
)
475 (if (and (not small-months-at-start
)
476 (< 1 (mod (- (1- calendar-week-start-day
)
477 (calendar-day-of-week
479 (calendar-last-day-of-month month year
)
482 (insert "\\vspace*{-\\cellwidth}\\hspace*{-2\\cellwidth}"
483 "\\lastmonth\\nextmonth%
486 (run-hooks 'cal-tex-month-hook
)
488 (calendar-increment-month month year
1)
489 (cal-tex-vspace "-2cm")
490 (cal-tex-insert-preamble
491 (cal-tex-number-weeks month year
1) t
"12pt" t
))))
492 (cal-tex-end-document)
493 (run-hooks 'cal-tex-hook
))
496 (defun cal-tex-cursor-month (&optional n event
)
497 "Make a LaTeX calendar buffer for the month the cursor is on.
498 Optional prefix argument N specifies number of months to be
499 produced (default 1). The calendar is condensed onto one page.
500 It shows holiday and diary entries if `cal-tex-holidays' and
501 `cal-tex-diary', respectively, are non-nil. Optional EVENT
502 indicates a buffer position to use instead of point."
503 (interactive (list (prefix-numeric-value current-prefix-arg
)
506 (let* ((date (calendar-cursor-to-date t event
))
507 (month (calendar-extract-month date
))
508 (year (calendar-extract-year date
))
511 ;; FIXME -landscape sets cal-tex-which-days?
512 (d1 (calendar-absolute-from-gregorian (list month
1 year
)))
514 (calendar-increment-month end-month end-year
(1- n
))
515 (calendar-absolute-from-gregorian
517 (calendar-last-day-of-month end-month end-year
)
519 (diary-list (if cal-tex-diary
(cal-tex-list-diary-entries d1 d2
)))
520 (holidays (if cal-tex-holidays
(cal-tex-list-holidays d1 d2
))))
521 (cal-tex-insert-preamble (cal-tex-number-weeks month year n
) nil
"12pt")
523 (cal-tex-cmd cal-tex-cal-multi-month
)
524 (cal-tex-cmd cal-tex-cal-one-month
))
525 (cal-tex-insert-month-header n month year end-month end-year
)
526 (cal-tex-insert-day-names)
528 (cal-tex-insert-blank-days month year cal-tex-day-prefix
)
530 (cal-tex-insert-days month year diary-list holidays cal-tex-day-prefix
)
531 (when (= (calendar-week-end-day)
532 (calendar-day-of-week
534 (calendar-last-day-of-month month year
)
535 year
))) ; last day of month was last day of week
538 (calendar-increment-month month year
1))
539 (cal-tex-insert-blank-days-at-end end-month end-year cal-tex-day-prefix
))
540 (cal-tex-end-document)
541 (run-hooks 'cal-tex-hook
))
543 (defun cal-tex-insert-days (month year diary-list holidays day-format
)
544 "Insert LaTeX commands for a range of days in monthly calendars.
545 LaTeX commands are inserted for the days of the MONTH in YEAR.
546 Diary entries on DIARY-LIST are included. Holidays on HOLIDAYS
547 are included. Each day is formatted using format DAY-FORMAT."
548 (let ((blank-days ; at start of month
550 (- (calendar-day-of-week (list month
1 year
))
551 calendar-week-start-day
)
553 (last (calendar-last-day-of-month month year
))
556 (setq j
(1+ i
) ; 1-last, incl
557 date
(list month j year
))
558 (when (memq (calendar-day-of-week date
) cal-tex-which-days
)
559 (insert (format day-format
(cal-tex-month-name month
) j
))
560 (cal-tex-arg (cal-tex-latexify-list diary-list date
))
561 (cal-tex-arg (cal-tex-latexify-list holidays date
))
562 (cal-tex-arg (eval cal-tex-daily-string
))
565 (when (and (zerop (mod (+ j blank-days
) 7))
570 (defun cal-tex-insert-day-names ()
571 "Insert the names of the days at top of a monthly calendar."
574 (if (memq (setq j
(mod (+ calendar-week-start-day i
) 7))
576 (insert (format cal-tex-day-name-format
577 (cal-tex-LaTeXify-string
578 (aref calendar-day-name-array j
)))))
581 (defun cal-tex-insert-month-header (n month year end-month end-year
)
582 "Create a title for a calendar.
583 A title is inserted for a calendar with N months starting with
584 MONTH YEAR and ending with END-MONTH END-YEAR."
585 (let ((month-name (cal-tex-month-name month
))
586 (end-month-name (cal-tex-month-name end-month
)))
588 (insert (format "\\calmonth{%s}{%s}\n\\vspace*{-0.5cm}"
590 (insert (format "\\calmonth{%s}{%s}{%s}{%s}\n\\vspace*{-0.5cm}"
591 month-name year end-month-name end-year
))))
594 (defun cal-tex-insert-blank-days (month year day-format
)
595 "Insert code for initial days not in calendar.
596 Insert LaTeX code for the blank days at the beginning of the MONTH in
597 YEAR. The entry is formatted using DAY-FORMAT. If the entire week is
598 blank, no days are inserted."
599 (if (cal-tex-first-blank-p month year
)
600 (let ((blank-days ; at start of month
602 (- (calendar-day-of-week (list month
1 year
))
603 calendar-week-start-day
)
605 (dotimes (i blank-days
)
606 (if (memq (mod (+ calendar-week-start-day i
) 7) cal-tex-which-days
)
607 (insert (format day-format
" " " ") "{}{}{}{}%\n"))))))
609 (defun cal-tex-insert-blank-days-at-end (month year day-format
)
610 "Insert code for final days not in calendar.
611 Insert LaTeX code for the blank days at the end of the MONTH in YEAR.
612 The entry is formatted using DAY-FORMAT."
613 (if (cal-tex-last-blank-p month year
)
614 (let* ((last-day (calendar-last-day-of-month month year
))
615 (blank-days ; at end of month
617 (- (calendar-day-of-week (list month last-day year
))
618 calendar-week-start-day
)
621 (while (<= (setq i
(1+ i
)) 6)
622 (if (memq (mod (+ calendar-week-start-day i
) 7) cal-tex-which-days
)
623 (insert (format day-format
"" "") "{}{}{}{}%\n"))))))
625 (defun cal-tex-first-blank-p (month year
)
626 "Determine if any days of the first week will be printed.
627 Return t if there will there be any days of the first week printed
628 in the calendar starting in MONTH YEAR."
629 ;; Check days 1-7 of the month, until we find the last day of the week.
633 (if (memq (setq dow
(calendar-day-of-week (list month
(1+ i
) year
)))
636 (if (= dow
(calendar-week-end-day)) (throw 'found nil
)))))))
638 (defun cal-tex-last-blank-p (month year
)
639 "Determine if any days of the last week will be printed.
640 Return t if there will there be any days of the last week printed
641 in the calendar starting in MONTH YEAR."
642 ;; Check backwards from the last day of the month, until we find the
643 ;; start of the last week in the month.
645 (let ((last-day (calendar-last-day-of-month month year
))
648 (if (memq (setq dow
(calendar-day-of-week
649 (list month
(- last-day i
) year
)))
652 (if (= dow calendar-week-start-day
) (throw 'found nil
)))))))
654 (defun cal-tex-number-weeks (month year n
)
655 "Determine the number of weeks in a range of dates.
656 Compute the number of weeks in the calendar starting with MONTH and YEAR,
657 and lasting N months, including only the days in WHICH-DAYS. As it stands,
658 this is only an upper bound."
659 (let ((d (list month
1 year
)))
660 (calendar-increment-month month year
(1- n
))
661 (/ (- (calendar-dayname-on-or-before
662 calendar-week-start-day
663 (+ 7 (calendar-absolute-from-gregorian
664 (list month
(calendar-last-day-of-month month year
) year
))))
665 (calendar-dayname-on-or-before
666 calendar-week-start-day
667 (calendar-absolute-from-gregorian d
)))
674 (defconst cal-tex-LaTeX-hourbox
675 "\\newcommand{\\hourbox}[2]%
676 {\\makebox[2em]{\\rule{0cm}{#2ex}#1}\\rule{3in}{.15mm}}\n"
677 "One hour and a line on the right.")
679 ;; TODO cal-tex-diary-support.
680 ;; TODO respect cal-tex-daily-start,end (see cal-tex-week-hours).
682 (defun cal-tex-cursor-week (&optional n event
)
683 "Make a LaTeX calendar buffer for a two-page one-week calendar.
684 It applies to the week that point is in. The optional prefix
685 argument N specifies number of weeks (default 1). The calendar
686 shows holidays if `cal-tex-holidays' is non-nil (note that diary
687 entries are not shown). The calendar shows the hours 8-12am, 1-5pm."
688 (interactive (list (prefix-numeric-value current-prefix-arg
)
691 (let* ((date (calendar-gregorian-from-absolute
692 (calendar-dayname-on-or-before
693 calendar-week-start-day
694 (calendar-absolute-from-gregorian
695 (calendar-cursor-to-date t event
)))))
696 (month (calendar-extract-month date
))
697 (year (calendar-extract-year date
))
698 (d1 (calendar-absolute-from-gregorian date
))
700 (holidays (if cal-tex-holidays
701 (cal-tex-list-holidays d1 d2
))))
702 (cal-tex-preamble "11pt")
703 (cal-tex-cmd "\\textwidth 6.5in")
704 (cal-tex-cmd "\\textheight 10.5in")
705 (cal-tex-cmd "\\oddsidemargin 0in")
706 (cal-tex-cmd "\\evensidemargin 0in")
707 (insert cal-tex-LaTeX-hourbox
)
709 (cal-tex-cmd "\\pagestyle{empty}")
711 (cal-tex-vspace "-1.5in")
713 (cal-tex-Huge-bf (format "\\uppercase{%s}"
714 (cal-tex-month-name month
)))
715 (cal-tex-hspace "2em")
716 (cal-tex-Huge-bf (number-to-string year
))
719 (cal-tex-hspace "-.2in")
720 (cal-tex-b-parbox "l" "7in")
722 (cal-tex-week-hours date holidays
"3.1")
723 (setq date
(cal-tex-incr-date date
)))
725 (setq month
(calendar-extract-month date
)
726 year
(calendar-extract-year date
))
728 (run-hooks 'cal-tex-week-hook
)
730 (cal-tex-end-document)
731 (run-hooks 'cal-tex-hook
)))
733 ;; TODO cal-tex-diary support.
734 ;; TODO respect cal-tex-daily-start,end (see cal-tex-week-hours).
736 (defun cal-tex-cursor-week2 (&optional n event
)
737 "Make a LaTeX calendar buffer for a two-page one-week calendar.
738 It applies to the week that point is in. Optional prefix
739 argument N specifies number of weeks (default 1). The calendar
740 shows holidays if `cal-tex-holidays' is non-nil (note that diary
741 entries are not shown). The calendar shows the hours 8-12am, 1-5pm.
742 Optional EVENT indicates a buffer position to use instead of point."
743 (interactive (list (prefix-numeric-value current-prefix-arg
)
746 (let* ((date (calendar-gregorian-from-absolute
747 (calendar-dayname-on-or-before
748 calendar-week-start-day
749 (calendar-absolute-from-gregorian
750 (calendar-cursor-to-date t event
)))))
751 (month (calendar-extract-month date
))
752 (year (calendar-extract-year date
))
754 (d1 (calendar-absolute-from-gregorian date
))
756 (holidays (if cal-tex-holidays
757 (cal-tex-list-holidays d1 d2
))))
758 (cal-tex-preamble "12pt")
759 (cal-tex-cmd "\\textwidth 6.5in")
760 (cal-tex-cmd "\\textheight 10.5in")
761 (cal-tex-cmd "\\oddsidemargin 0in")
762 (cal-tex-cmd "\\evensidemargin 0in")
763 (insert cal-tex-LaTeX-hourbox
)
765 (cal-tex-cmd "\\pagestyle{empty}")
767 (cal-tex-vspace "-1.5in")
769 (cal-tex-Huge-bf (format "\\uppercase{%s}"
770 (cal-tex-month-name month
)))
771 (cal-tex-hspace "2em")
772 (cal-tex-Huge-bf (number-to-string year
))
775 (cal-tex-hspace "-.2in")
776 (cal-tex-b-parbox "l" "\\textwidth")
778 (cal-tex-week-hours date holidays
"5")
779 (setq date
(cal-tex-incr-date date
)))
782 (insert (cal-tex-mini-calendar
783 (calendar-extract-month (cal-tex-previous-month date
))
784 (calendar-extract-year (cal-tex-previous-month date
))
785 "lastmonth" "1.1in" "1in"))
786 (insert (cal-tex-mini-calendar
787 (calendar-extract-month date
)
788 (calendar-extract-year date
)
789 "thismonth" "1.1in" "1in"))
790 (insert (cal-tex-mini-calendar
791 (calendar-extract-month (cal-tex-next-month date
))
792 (calendar-extract-year (cal-tex-next-month date
))
793 "nextmonth" "1.1in" "1in"))
794 (insert "\\hbox to \\textwidth{")
796 (insert "\\lastmonth")
798 (insert "\\thismonth")
800 (insert "\\nextmonth")
804 (cal-tex-b-parbox "l" "\\textwidth")
806 (cal-tex-week-hours date holidays
"5")
807 (setq date
(cal-tex-incr-date date
)))
809 (setq month
(calendar-extract-month date
)
810 year
(calendar-extract-year date
))
812 (run-hooks 'cal-tex-week-hook
)
814 (cal-tex-end-document)
815 (run-hooks 'cal-tex-hook
)))
817 (autoload 'calendar-iso-from-absolute
"cal-iso")
820 (defun cal-tex-cursor-week-iso (&optional n event
)
821 "Make a LaTeX calendar buffer for a one page ISO-style weekly calendar.
822 Optional prefix argument N specifies number of weeks (default 1).
823 The calendar shows holiday and diary entries if
824 `cal-tex-holidays' and `cal-tex-diary', respectively, are non-nil.
825 It does not show hours of the day. Optional EVENT indicates a buffer
826 position to use instead of point."
827 (interactive (list (prefix-numeric-value current-prefix-arg
)
830 (let* ((date (calendar-gregorian-from-absolute
831 (calendar-dayname-on-or-before
833 (calendar-absolute-from-gregorian
834 (calendar-cursor-to-date t event
)))))
835 (month (calendar-extract-month date
))
836 (year (calendar-extract-year date
))
837 (day (calendar-extract-day date
))
838 (d1 (calendar-absolute-from-gregorian date
))
840 (holidays (if cal-tex-holidays
841 (cal-tex-list-holidays d1 d2
)))
842 (diary-list (if cal-tex-diary
843 (cal-tex-list-diary-entries
845 (calendar-absolute-from-gregorian (list month
1 year
))
848 (cal-tex-preamble "11pt")
849 (cal-tex-cmd "\\textwidth 6.5in")
850 (cal-tex-cmd "\\textheight 10.5in")
851 (cal-tex-cmd "\\oddsidemargin 0in")
852 (cal-tex-cmd "\\evensidemargin 0in")
854 (cal-tex-cmd "\\pagestyle{empty}")
856 (cal-tex-vspace "-1.5in")
859 (let ((d (calendar-iso-from-absolute
860 (calendar-absolute-from-gregorian date
))))
861 (format "Week %d of %d"
862 (calendar-extract-month d
)
863 (calendar-extract-year d
))))
866 (cal-tex-b-parbox "l" "\\textwidth")
868 (cal-tex-b-parbox "t" "\\textwidth")
869 (cal-tex-b-parbox "t" "\\textwidth")
870 (cal-tex-rule "0pt" "\\textwidth" ".2mm")
872 (cal-tex-b-parbox "t" "\\textwidth")
873 (cal-tex-large-bf (cal-tex-LaTeXify-string (calendar-day-name date
)))
875 (cal-tex-large-bf (cal-tex-month-name month
))
877 (cal-tex-large-bf (number-to-string day
))
878 (unless (string-equal "" (setq s
(cal-tex-latexify-list
879 holidays date
"; ")))
881 (cal-tex-large-bf s
))
883 (insert " " (eval cal-tex-daily-string
))
887 (cal-tex-b-parbox "t" "\\textwidth")
888 (unless (string-equal "" (setq s
(cal-tex-latexify-list
890 (insert "\\vbox to 0pt{")
895 (setq date
(cal-tex-incr-date date
)
896 month
(calendar-extract-month date
)
897 day
(calendar-extract-day date
))
899 (cal-tex-e-parbox "2cm")
901 (setq month
(calendar-extract-month date
)
902 year
(calendar-extract-year date
)))
905 (run-hooks 'cal-tex-week-hook
)
907 (cal-tex-end-document)
908 (run-hooks 'cal-tex-hook
)))
910 ;; TODO respect cal-tex-daily-start,end?
911 ;; Using different numbers of hours will probably break some layouts.
912 (defun cal-tex-week-hours (date holidays height
)
913 "Insert hourly entries for DATE with HOLIDAYS, with line height HEIGHT.
914 Uses the 24-hour clock if `cal-tex-24' is non-nil. Note that the hours
915 shown are hard-coded to 8-12, 13-17."
916 (let ((month (calendar-extract-month date
))
917 (day (calendar-extract-day date
))
918 (year (calendar-extract-year date
))
920 (cal-tex-comment "begin cal-tex-week-hours")
921 (cal-tex-cmd "\\ \\\\[-.2cm]")
922 (cal-tex-cmd "\\noindent")
923 (cal-tex-b-parbox "l" "6.8in")
924 (cal-tex-large-bf (cal-tex-LaTeXify-string (calendar-day-name date
)))
926 (cal-tex-large-bf (cal-tex-month-name month
))
928 (cal-tex-large-bf (number-to-string day
))
929 (unless (string-equal "" (setq s
(cal-tex-latexify-list
930 holidays date
"; ")))
932 (cal-tex-large-bf s
))
934 (insert " " (eval cal-tex-daily-string
))
937 (cal-tex-rule "0pt" "6.8in" ".2mm")
940 (setq morning
(+ i
8) ; 8-12 incl
941 afternoon
(if cal-tex-24
942 (+ i
13) ; 13-17 incl
944 (cal-tex-cmd "\\hourbox" (number-to-string morning
))
946 (cal-tex-hspace ".4cm")
947 (cal-tex-cmd "\\hourbox" (number-to-string afternoon
))
951 ;; TODO cal-tex-diary support.
952 ;; TODO respect cal-tex-daily-start,end (see cal-tex-weekly4-box).
954 (defun cal-tex-cursor-week-monday (&optional n event
)
955 "Make a LaTeX calendar buffer for a two-page one-week calendar.
956 It applies to the week that point is in, and starts on Monday.
957 Optional prefix argument N specifies number of weeks (default 1).
958 The calendar shows holidays if `cal-tex-holidays' is
959 non-nil (note that diary entries are not shown). The calendar shows
960 the hours 8-12am, 1-5pm. Optional EVENT indicates a buffer position
961 to use instead of point."
962 (interactive (list (prefix-numeric-value current-prefix-arg
)
965 (let ((date (calendar-gregorian-from-absolute
966 (calendar-dayname-on-or-before
968 (calendar-absolute-from-gregorian
969 (calendar-cursor-to-date t event
))))))
970 (cal-tex-preamble "11pt")
971 (cal-tex-cmd "\\textwidth 6.5in")
972 (cal-tex-cmd "\\textheight 10.5in")
973 (cal-tex-cmd "\\oddsidemargin 0in")
974 (cal-tex-cmd "\\evensidemargin 0in")
977 (cal-tex-vspace "-1cm")
978 (insert "\\noindent ")
979 (cal-tex-weekly4-box (cal-tex-incr-date date
) nil
)
980 (cal-tex-weekly4-box (cal-tex-incr-date date
4) nil
)
982 (cal-tex-weekly4-box (cal-tex-incr-date date
2) nil
)
983 (cal-tex-weekly4-box (cal-tex-incr-date date
5) nil
)
985 (cal-tex-weekly4-box (cal-tex-incr-date date
3) nil
)
986 (cal-tex-weekly4-box (cal-tex-incr-date date
6) t
)
988 (run-hooks 'cal-tex-week-hook
)
989 (setq date
(cal-tex-incr-date date
7))
991 (cal-tex-end-document)
992 (run-hooks 'cal-tex-hook
)))
994 ;; TODO respect cal-tex-daily-start,end?
995 ;; Using different numbers of hours will probably break some layouts.
996 (defun cal-tex-weekly4-box (date weekend
)
997 "Make one box for DATE, different if WEEKEND.
998 Uses the 24-hour clock if `cal-tex-24' is non-nil. Note that the hours
999 shown are hard-coded to 8-12, 13-17."
1000 (let* ((day (calendar-extract-day date
))
1001 (month (calendar-extract-month date
))
1002 (year (calendar-extract-year date
))
1003 (dayname (cal-tex-LaTeXify-string (calendar-day-name date
)))
1004 (date1 (cal-tex-incr-date date
))
1005 (day1 (calendar-extract-day date1
))
1006 (month1 (calendar-extract-month date1
))
1007 (year1 (calendar-extract-year date1
))
1008 (dayname1 (cal-tex-LaTeXify-string (calendar-day-name date1
))))
1009 (cal-tex-b-framebox "8cm" "l")
1010 (cal-tex-b-parbox "b" "7.5cm")
1011 (insert (format "\\textbf{\\Large %s,} %s/%s/%s\\\\\n"
1012 dayname month day year
))
1013 (cal-tex-rule "0pt" "7.5cm" ".5mm")
1017 (insert (format "\\textsf{\\large %d}\\\\\n" (+ i
8))))
1019 (insert (format "\\textsf{\\large %d}\\\\\n"
1021 (+ i
13) ; 13-17 incl
1022 (1+ i
)))))) ; 1-5 incl
1025 (cal-tex-vspace "1cm")
1026 (insert "\\ \\vfill")
1027 (insert (format "\\textbf{\\Large %s,} %s/%s/%s\\\\\n"
1028 dayname1 month1 day1 year1
))
1029 (cal-tex-rule "0pt" "7.5cm" ".5mm")
1030 (cal-tex-nl "1.5cm")
1031 (cal-tex-vspace "1cm"))
1033 (cal-tex-e-framebox)
1034 (cal-tex-hspace "1cm")))
1037 (defun cal-tex-cursor-filofax-2week (&optional n event
)
1038 "Two-weeks-at-a-glance Filofax style calendar for week cursor is in.
1039 Optional prefix argument N specifies number of weeks (default 1).
1040 The calendar shows holiday and diary entries if
1041 `cal-tex-holidays' and `cal-tex-diary', respectively, are non-nil.
1042 Optional EVENT indicates a buffer position to use instead of point."
1043 (interactive (list (prefix-numeric-value current-prefix-arg
)
1044 last-nonmenu-event
))
1046 (let* ((date (calendar-gregorian-from-absolute
1047 (calendar-dayname-on-or-before
1048 calendar-week-start-day
1049 (calendar-absolute-from-gregorian
1050 (calendar-cursor-to-date t event
)))))
1051 (month (calendar-extract-month date
))
1052 (year (calendar-extract-year date
))
1053 (day (calendar-extract-day date
))
1054 (d1 (calendar-absolute-from-gregorian date
))
1056 (holidays (if cal-tex-holidays
1057 (cal-tex-list-holidays d1 d2
)))
1058 (diary-list (if cal-tex-diary
1059 (cal-tex-list-diary-entries
1061 (calendar-absolute-from-gregorian (list month
1 year
))
1063 (cal-tex-preamble "twoside")
1064 (cal-tex-cmd "\\textwidth 3.25in")
1065 (cal-tex-cmd "\\textheight 6.5in")
1066 (cal-tex-cmd "\\oddsidemargin 1.75in")
1067 (cal-tex-cmd "\\evensidemargin 1.5in")
1068 (cal-tex-cmd "\\topmargin 0pt")
1069 (cal-tex-cmd "\\headheight -0.875in")
1070 (cal-tex-cmd "\\headsep 0.125in")
1071 (cal-tex-cmd "\\footskip .125in")
1072 (insert "\\def\\righthead#1{\\hfill {\\normalsize \\bf #1}\\\\[-6pt]}
1073 \\long\\def\\rightday#1#2#3#4#5{%
1074 \\rule{\\textwidth}{0.3pt}\\\\%
1075 \\hbox to \\textwidth{%
1078 \\hbox to \\textwidth{\\small #5 \\hfill #1 {\\normalsize \\bf #2}}%
1079 \\hbox to \\textwidth{\\vbox {\\raggedleft \\footnotesize \\em #4}}%
1080 \\hbox to \\textwidth{\\vbox to 0pt {\\noindent \\footnotesize #3}}}}\\\\}
1081 \\def\\lefthead#1{\\noindent {\\normalsize \\bf #1}\\hfill\\\\[-6pt]}
1082 \\long\\def\\leftday#1#2#3#4#5{%
1083 \\rule{\\textwidth}{0.3pt}\\\\%
1084 \\hbox to \\textwidth{%
1087 \\hbox to \\textwidth{\\noindent {\\normalsize \\bf #2} \\small #1 \\hfill #5}%
1088 \\hbox to \\textwidth{\\vbox {\\noindent \\footnotesize \\em #4}}%
1089 \\hbox to \\textwidth{\\vbox to 0pt {\\noindent \\footnotesize #3}}}}\\\\}
1091 (cal-tex-b-document)
1092 (cal-tex-cmd "\\pagestyle{empty}")
1094 (if (zerop (mod i
2))
1095 (insert "\\righthead")
1096 (insert "\\lefthead"))
1098 (let ((d (cal-tex-incr-date date
6)))
1099 (if (= (calendar-extract-month date
)
1100 (calendar-extract-month d
))
1102 (cal-tex-month-name (calendar-extract-month date
))
1103 (calendar-extract-year date
))
1104 (if (= (calendar-extract-year date
)
1105 (calendar-extract-year d
))
1106 (format "%s---%s %s"
1107 (cal-tex-month-name (calendar-extract-month date
))
1108 (cal-tex-month-name (calendar-extract-month d
))
1109 (calendar-extract-year date
))
1110 (format "%s %s---%s %s"
1111 (cal-tex-month-name (calendar-extract-month date
))
1112 (calendar-extract-year date
)
1113 (cal-tex-month-name (calendar-extract-month d
))
1114 (calendar-extract-year d
))))))
1117 (if (zerop (mod i
2))
1118 (insert "\\rightday")
1119 (insert "\\leftday"))
1120 (cal-tex-arg (cal-tex-LaTeXify-string (calendar-day-name date
)))
1121 (cal-tex-arg (number-to-string (calendar-extract-day date
)))
1122 (cal-tex-arg (cal-tex-latexify-list diary-list date
))
1123 (cal-tex-arg (cal-tex-latexify-list holidays date
))
1124 (cal-tex-arg (eval cal-tex-daily-string
))
1126 (setq date
(cal-tex-incr-date date
)))
1127 (unless (= i
(1- n
))
1128 (run-hooks 'cal-tex-week-hook
)
1130 (cal-tex-end-document)
1131 (run-hooks 'cal-tex-hook
)))
1134 (defun cal-tex-cursor-filofax-week (&optional n event
)
1135 "One-week-at-a-glance Filofax style calendar for week indicated by cursor.
1136 Optional prefix argument N specifies number of weeks (default 1),
1137 starting on Mondays. The calendar shows holiday and diary entries
1138 if `cal-tex-holidays' and `cal-tex-diary', respectively, are non-nil.
1139 Optional EVENT indicates a buffer position to use instead of point."
1140 (interactive (list (prefix-numeric-value current-prefix-arg
)
1141 last-nonmenu-event
))
1143 (let* ((date (calendar-gregorian-from-absolute
1144 (calendar-dayname-on-or-before
1146 (calendar-absolute-from-gregorian
1147 (calendar-cursor-to-date t event
)))))
1148 (month (calendar-extract-month date
))
1149 (year (calendar-extract-year date
))
1150 (day (calendar-extract-day date
))
1151 (d1 (calendar-absolute-from-gregorian date
))
1153 (holidays (if cal-tex-holidays
1154 (cal-tex-list-holidays d1 d2
)))
1155 (diary-list (if cal-tex-diary
1156 (cal-tex-list-diary-entries
1158 (calendar-absolute-from-gregorian (list month
1 year
))
1160 (cal-tex-preamble "twoside")
1161 (cal-tex-cmd "\\textwidth 3.25in")
1162 (cal-tex-cmd "\\textheight 6.5in")
1163 (cal-tex-cmd "\\oddsidemargin 1.75in")
1164 (cal-tex-cmd "\\evensidemargin 1.5in")
1165 (cal-tex-cmd "\\topmargin 0pt")
1166 (cal-tex-cmd "\\headheight -0.875in")
1167 (cal-tex-cmd "\\headsep 0.125in")
1168 (cal-tex-cmd "\\footskip .125in")
1169 (insert "\\def\\righthead#1{\\hfill {\\normalsize \\bf #1}\\\\[-6pt]}
1170 \\long\\def\\rightday#1#2#3#4#5{%
1171 \\rule{\\textwidth}{0.3pt}\\\\%
1172 \\hbox to \\textwidth{%
1175 \\hbox to \\textwidth{\\small #5 \\hfill #1 {\\normalsize \\bf #2}}%
1176 \\hbox to \\textwidth{\\vbox {\\raggedleft \\footnotesize \\em #4}}%
1177 \\hbox to \\textwidth{\\vbox to 0pt {\\noindent \\footnotesize #3}}}}\\\\}
1178 \\long\\def\\weekend#1#2#3#4#5{%
1179 \\rule{\\textwidth}{0.3pt}\\\\%
1180 \\hbox to \\textwidth{%
1183 \\hbox to \\textwidth{\\small #5 \\hfill #1 {\\normalsize \\bf #2}}%
1184 \\hbox to \\textwidth{\\vbox {\\raggedleft \\footnotesize \\em #4}}%
1185 \\hbox to \\textwidth{\\vbox to 0pt {\\noindent \\footnotesize #3}}}}\\\\}
1186 \\def\\lefthead#1{\\noindent {\\normalsize \\bf #1}\\hfill\\\\[-6pt]}
1187 \\long\\def\\leftday#1#2#3#4#5{%
1188 \\rule{\\textwidth}{0.3pt}\\\\%
1189 \\hbox to \\textwidth{%
1192 \\hbox to \\textwidth{\\noindent {\\normalsize \\bf #2} \\small #1 \\hfill #5}%
1193 \\hbox to \\textwidth{\\vbox {\\noindent \\footnotesize \\em #4}}%
1194 \\hbox to \\textwidth{\\vbox to 0pt {\\noindent \\footnotesize #3}}}}\\\\}
1196 (cal-tex-b-document)
1197 (cal-tex-cmd "\\pagestyle{empty}\\ ")
1200 (insert "\\lefthead")
1202 (let ((d (cal-tex-incr-date date
2)))
1203 (if (= (calendar-extract-month date
)
1204 (calendar-extract-month d
))
1206 (cal-tex-month-name (calendar-extract-month date
))
1207 (calendar-extract-year date
))
1208 (if (= (calendar-extract-year date
)
1209 (calendar-extract-year d
))
1210 (format "%s---%s %s"
1211 (cal-tex-month-name (calendar-extract-month date
))
1212 (cal-tex-month-name (calendar-extract-month d
))
1213 (calendar-extract-year date
))
1214 (format "%s %s---%s %s"
1215 (cal-tex-month-name (calendar-extract-month date
))
1216 (calendar-extract-year date
)
1217 (cal-tex-month-name (calendar-extract-month d
))
1218 (calendar-extract-year d
))))))
1221 (insert "\\leftday")
1222 (cal-tex-arg (cal-tex-LaTeXify-string (calendar-day-name date
)))
1223 (cal-tex-arg (number-to-string (calendar-extract-day date
)))
1224 (cal-tex-arg (cal-tex-latexify-list diary-list date
))
1225 (cal-tex-arg (cal-tex-latexify-list holidays date
))
1226 (cal-tex-arg (eval cal-tex-daily-string
))
1228 (setq date
(cal-tex-incr-date date
)))
1229 (insert "\\noindent\\rule{\\textwidth}{0.3pt}\\\\%\n")
1231 (insert "\\righthead")
1233 (let ((d (cal-tex-incr-date date
3)))
1234 (if (= (calendar-extract-month date
)
1235 (calendar-extract-month d
))
1237 (cal-tex-month-name (calendar-extract-month date
))
1238 (calendar-extract-year date
))
1239 (if (= (calendar-extract-year date
)
1240 (calendar-extract-year d
))
1241 (format "%s---%s %s"
1242 (cal-tex-month-name (calendar-extract-month date
))
1243 (cal-tex-month-name (calendar-extract-month d
))
1244 (calendar-extract-year date
))
1245 (format "%s %s---%s %s"
1246 (cal-tex-month-name (calendar-extract-month date
))
1247 (calendar-extract-year date
)
1248 (cal-tex-month-name (calendar-extract-month d
))
1249 (calendar-extract-year d
))))))
1252 (insert "\\rightday")
1253 (cal-tex-arg (cal-tex-LaTeXify-string (calendar-day-name date
)))
1254 (cal-tex-arg (number-to-string (calendar-extract-day date
)))
1255 (cal-tex-arg (cal-tex-latexify-list diary-list date
))
1256 (cal-tex-arg (cal-tex-latexify-list holidays date
))
1257 (cal-tex-arg (eval cal-tex-daily-string
))
1259 (setq date
(cal-tex-incr-date date
)))
1261 (insert "\\weekend")
1262 (cal-tex-arg (cal-tex-LaTeXify-string (calendar-day-name date
)))
1263 (cal-tex-arg (number-to-string (calendar-extract-day date
)))
1264 (cal-tex-arg (cal-tex-latexify-list diary-list date
))
1265 (cal-tex-arg (cal-tex-latexify-list holidays date
))
1266 (cal-tex-arg (eval cal-tex-daily-string
))
1268 (setq date
(cal-tex-incr-date date
)))
1269 (unless (= i
(1- n
))
1270 (run-hooks 'cal-tex-week-hook
)
1272 (cal-tex-end-document)
1273 (run-hooks 'cal-tex-hook
)))
1276 (defun cal-tex-cursor-filofax-daily (&optional n event
)
1277 "Day-per-page Filofax style calendar for week indicated by cursor.
1278 Optional prefix argument N specifies number of weeks (default 1),
1279 starting on Mondays. The calendar shows holiday and diary
1280 entries if `cal-tex-holidays' and `cal-tex-diary', respectively,
1281 are non-nil. Pages are ruled if `cal-tex-rules' is non-nil.
1282 Optional EVENT indicates a buffer position to use instead of point."
1283 (interactive (list (prefix-numeric-value current-prefix-arg
)
1284 last-nonmenu-event
))
1286 (let* ((date (calendar-gregorian-from-absolute
1287 (calendar-dayname-on-or-before
1289 (calendar-absolute-from-gregorian
1290 (calendar-cursor-to-date t event
)))))
1291 (month (calendar-extract-month date
))
1292 (year (calendar-extract-year date
))
1293 (day (calendar-extract-day date
))
1294 (d1 (calendar-absolute-from-gregorian date
))
1296 (holidays (if cal-tex-holidays
1297 (cal-tex-list-holidays d1 d2
)))
1298 (diary-list (if cal-tex-diary
1299 (cal-tex-list-diary-entries
1301 (calendar-absolute-from-gregorian (list month
1 year
))
1303 (cal-tex-preamble "twoside")
1304 (cal-tex-cmd "\\textwidth 3.25in")
1305 (cal-tex-cmd "\\textheight 6.5in")
1306 (cal-tex-cmd "\\oddsidemargin 1.75in")
1307 (cal-tex-cmd "\\evensidemargin 1.5in")
1308 (cal-tex-cmd "\\topmargin 0pt")
1309 (cal-tex-cmd "\\headheight -0.875in")
1310 (cal-tex-cmd "\\headsep 0.125in")
1311 (cal-tex-cmd "\\footskip .125in")
1312 (insert "\\def\\righthead#1{\\hfill {\\normalsize \\bf #1}\\\\[-6pt]}
1313 \\long\\def\\rightday#1#2#3{%
1314 \\rule{\\textwidth}{0.3pt}\\\\%
1315 \\hbox to \\textwidth{%
1318 \\hbox to \\textwidth{\\hfill \\small #3 \\hfill}%
1319 \\hbox to \\textwidth{\\vbox {\\raggedleft \\em #2}}%
1320 \\hbox to \\textwidth{\\vbox {\\noindent \\footnotesize #1}}}}}
1321 \\long\\def\\weekend#1#2#3{%
1322 \\rule{\\textwidth}{0.3pt}\\\\%
1323 \\hbox to \\textwidth{%
1326 \\hbox to \\textwidth{\\hfill \\small #3 \\hfill}%
1327 \\hbox to \\textwidth{\\vbox {\\noindent \\em #2}}%
1328 \\hbox to \\textwidth{\\vbox {\\noindent \\footnotesize #1}}}}}
1329 \\def\\lefthead#1{\\noindent {\\normalsize \\bf #1}\\hfill\\\\[-6pt]}
1330 \\long\\def\\leftday#1#2#3{%
1331 \\rule{\\textwidth}{0.3pt}\\\\%
1332 \\hbox to \\textwidth{%
1335 \\hbox to \\textwidth{\\hfill \\small #3 \\hfill}%
1336 \\hbox to \\textwidth{\\vbox {\\noindent \\em #2}}%
1337 \\hbox to \\textwidth{\\vbox {\\noindent \\footnotesize #1}}}}}
1339 \\setbox\\LineBox=\\hbox to\\textwidth{%
1340 \\vrule height.2in width0pt\\leaders\\hrule\\hfill}
1341 \\def\\linesfill{\\par\\leaders\\copy\\LineBox\\vfill}
1343 (cal-tex-b-document)
1344 (cal-tex-cmd "\\pagestyle{empty}")
1347 (let ((even (zerop (% j
2))))
1351 (cal-tex-arg (calendar-date-string date
))
1356 (cal-tex-arg (cal-tex-latexify-list diary-list date
))
1357 (cal-tex-arg (cal-tex-latexify-list holidays date
"\\\\" t
))
1358 (cal-tex-arg (eval cal-tex-daily-string
))
1361 (insert "\\linesfill\n")
1362 (insert "\\vfill\\noindent\\rule{\\textwidth}{0.3pt}\\\\%\n"))
1364 (setq date
(cal-tex-incr-date date
)))
1367 (insert "\\lefthead")
1368 (cal-tex-arg (calendar-date-string date
))
1369 (insert "\\weekend")
1370 (cal-tex-arg (cal-tex-latexify-list diary-list date
))
1371 (cal-tex-arg (cal-tex-latexify-list holidays date
"\\\\" t
))
1372 (cal-tex-arg (eval cal-tex-daily-string
))
1375 (insert "\\linesfill\n")
1377 (setq date
(cal-tex-incr-date date
)))
1379 (insert "\\noindent\\rule{\\textwidth}{0.3pt}\\\\%\n"))
1380 (unless (= i
(1- n
))
1381 (run-hooks 'cal-tex-week-hook
)
1383 (cal-tex-end-document)
1384 (run-hooks 'cal-tex-hook
)))
1392 (defun cal-tex-cursor-day (&optional n event
)
1393 "Make a buffer with LaTeX commands for the day cursor is on.
1394 Optional prefix argument N specifies number of days. The calendar shows
1395 the hours between `cal-tex-daily-start' and `cal-tex-daily-end', using
1396 the 24-hour clock if `cal-tex-24' is non-nil. Optional EVENT indicates
1397 a buffer position to use instead of point."
1398 (interactive (list (prefix-numeric-value current-prefix-arg
)
1399 last-nonmenu-event
))
1401 (let ((date (calendar-absolute-from-gregorian
1402 (calendar-cursor-to-date t event
))))
1403 (cal-tex-preamble "12pt")
1404 (cal-tex-cmd "\\textwidth 6.5in")
1405 (cal-tex-cmd "\\textheight 10.5in")
1406 (cal-tex-b-document)
1407 (cal-tex-cmd "\\pagestyle{empty}")
1409 (cal-tex-vspace "-1.7in")
1410 (cal-tex-daily-page (calendar-gregorian-from-absolute date
))
1411 (setq date
(1+ date
))
1412 (unless (= i
(1- n
))
1414 (run-hooks 'cal-tex-daily-hook
)))
1415 (cal-tex-end-document)
1416 (run-hooks 'cal-tex-hook
)))
1418 (defun cal-tex-daily-page (date)
1419 "Make a calendar page for Gregorian DATE on 8.5 by 11 paper.
1420 Uses the 24-hour clock if `cal-tex-24' is non-nil. Produces
1421 hourly sections for the period specified by `cal-tex-daily-start'
1422 and `cal-tex-daily-end'."
1423 (let ((month-name (cal-tex-month-name (calendar-extract-month date
)))
1424 (i (1- cal-tex-daily-start
))
1426 (cal-tex-banner "cal-tex-daily-page")
1427 (cal-tex-b-makebox "4cm" "l")
1428 (cal-tex-b-parbox "b" "3.8cm")
1429 (cal-tex-rule "0mm" "0mm" "2cm")
1430 (cal-tex-Huge (number-to-string (calendar-extract-day date
)))
1432 (cal-tex-bf month-name
)
1434 (cal-tex-hspace "1cm")
1435 (cal-tex-scriptsize (eval cal-tex-daily-string
))
1436 (cal-tex-hspace "3.5cm")
1439 (cal-tex-b-makebox "4cm" "r")
1440 (cal-tex-bf (cal-tex-LaTeXify-string (calendar-day-name date
)))
1443 (cal-tex-hspace ".4cm")
1444 (cal-tex-rule "0mm" "16.1cm" "1mm")
1446 (while (<= (setq i
(1+ i
)) cal-tex-daily-end
)
1447 (cal-tex-cmd "\\noindent")
1448 (setq hour
(if cal-tex-24
1451 (if (zerop hour
) (setq hour
12))
1452 (cal-tex-b-makebox "1cm" "c")
1453 (cal-tex-arg (number-to-string hour
))
1455 (cal-tex-rule "0mm" "15.5cm" ".2mm")
1457 (cal-tex-b-makebox "1cm" "c")
1458 (cal-tex-arg "$\\diamond$" )
1460 (cal-tex-rule "0mm" "15.5cm" ".2mm")
1461 (cal-tex-nl ".2cm"))
1463 (insert (cal-tex-mini-calendar
1464 (calendar-extract-month (cal-tex-previous-month date
))
1465 (calendar-extract-year (cal-tex-previous-month date
))
1466 "lastmonth" "1.1in" "1in"))
1467 (insert (cal-tex-mini-calendar
1468 (calendar-extract-month date
)
1469 (calendar-extract-year date
)
1470 "thismonth" "1.1in" "1in"))
1471 (insert (cal-tex-mini-calendar
1472 (calendar-extract-month (cal-tex-next-month date
))
1473 (calendar-extract-year (cal-tex-next-month date
))
1474 "nextmonth" "1.1in" "1in"))
1475 (insert "\\hbox to \\textwidth{")
1477 (insert "\\lastmonth")
1479 (insert "\\thismonth")
1481 (insert "\\nextmonth")
1484 (cal-tex-banner "end of cal-tex-daily-page")))
1490 (defun cal-tex-mini-calendar (month year name width height
&optional ptsize colsep
)
1491 "Produce mini-calendar for MONTH, YEAR in macro NAME with WIDTH and HEIGHT.
1492 Optional string PTSIZE gives the point size (default \"scriptsize\").
1493 Optional string COLSEP gives the column separation (default \"1mm\")."
1494 (or colsep
(setq colsep
"1mm"))
1495 (or ptsize
(setq ptsize
"scriptsize"))
1496 (let ((blank-days ; at start of month
1498 (- (calendar-day-of-week (list month
1 year
))
1499 calendar-week-start-day
)
1501 (last( calendar-last-day-of-month month year
))
1502 (str (concat "\\def\\" name
"{\\hbox to" width
"{%\n"
1503 "\\vbox to" height
"{%\n"
1504 "\\vfil \\hbox to" width
"{%\n"
1507 "{@{\\hspace{0mm}}r@{\\hspace{" colsep
1508 "}}r@{\\hspace{" colsep
"}}r@{\\hspace{" colsep
1509 "}}r@{\\hspace{" colsep
"}}r@{\\hspace{" colsep
1510 "}}r@{\\hspace{" colsep
"}}r@{\\hspace{0mm}}}%\n"
1511 "\\multicolumn{7}{c}{"
1512 (cal-tex-month-name month
)
1514 (number-to-string year
)
1519 (cal-tex-LaTeXify-string
1520 (substring (aref calendar-day-name-array
1521 (mod (+ calendar-week-start-day i
) 7))
1527 (dotimes (idummy blank-days
)
1528 (setq str
(concat str
" & ")))
1530 (setq str
(concat str
(number-to-string (1+ i
)))
1531 str
(concat str
(if (zerop (mod (+ i
1 blank-days
) 7))
1536 (setq str
(concat str
"\n\\end{tabular}\\hfil}\\vfil}}}%\n"))
1540 ;;; Various calendar functions
1543 (defun cal-tex-incr-date (date &optional n
)
1544 "The date of the day following DATE.
1545 If optional N is given, the date of N days after DATE."
1546 (calendar-gregorian-from-absolute
1547 (+ (or n
1) (calendar-absolute-from-gregorian date
))))
1549 (defun cal-tex-latexify-list (date-list date
&optional separator final-separator
)
1550 "Return string with concatenated, LaTeX-ified entries in DATE-LIST for DATE.
1551 Use double backslash as a separator unless optional SEPARATOR is given.
1552 If resulting string is not empty, put separator at end if optional
1553 FINAL-SEPARATOR is non-nil."
1554 (or separator
(setq separator
"\\\\"))
1557 (mapconcat (lambda (x) (cal-tex-LaTeXify-string x
))
1558 (dolist (d date-list
(reverse result
))
1560 (calendar-date-equal date
(car d
))
1561 (setq result
(cons (cadr d
) result
))))
1563 (if (and final-separator
1564 (not (string-equal result
"")))
1565 (concat result separator
)
1568 (defun cal-tex-previous-month (date)
1569 "Return the date of the first day in the month previous to DATE."
1570 (let ((month (calendar-extract-month date
))
1571 (year (calendar-extract-year date
)))
1572 (calendar-increment-month month year -
1)
1573 (list month
1 year
)))
1575 (defun cal-tex-next-month (date)
1576 "Return the date of the first day in the month following DATE."
1577 (let ((month (calendar-extract-month date
))
1578 (year (calendar-extract-year date
)))
1579 (calendar-increment-month month year
1)
1580 (list month
1 year
)))
1586 (defun cal-tex-end-document ()
1587 "Finish the LaTeX document.
1588 Insert the trailer to LaTeX document, pop to LaTeX buffer, add
1589 informative header, and run HOOK."
1590 (cal-tex-e-document)
1592 (pop-to-buffer cal-tex-buffer
)
1593 (goto-char (point-min))
1594 ;; FIXME auctex equivalents?
1596 (format "\tThis buffer was produced by cal-tex.el.
1597 \tTo print a calendar, type
1598 \t\tM-x tex-buffer RET
1599 \t\tM-x tex-print RET")))
1601 (defun cal-tex-insert-preamble (weeks landscape size
&optional append
)
1602 "Initialize the output LaTeX calendar buffer, `cal-tex-buffer'.
1603 Select the output buffer, and insert the preamble for a calendar
1604 of WEEKS weeks. Insert code for landscape mode if LANDSCAPE is
1605 non-nil. Use point-size SIZE. Optional argument APPEND, if
1606 non-nil, means add to end of buffer without erasing current contents."
1607 (let ((width "18cm")
1613 (cal-tex-preamble size
)
1616 (cal-tex-cmd "\\oddsidemargin -1.75cm")
1617 (cal-tex-cmd "\\def\\holidaymult{.06}"))
1618 (cal-tex-cmd "\\special{landscape}")
1619 (cal-tex-cmd "\\textwidth 9.5in")
1620 (cal-tex-cmd "\\textheight 7in")
1622 (cal-tex-cmd "\\def\\holidaymult{.08}"))
1623 (cal-tex-cmd cal-tex-caldate
)
1624 (cal-tex-cmd cal-tex-myday
)
1625 (cal-tex-b-document)
1626 (cal-tex-cmd "\\pagestyle{empty}"))
1627 (cal-tex-cmd "\\setlength{\\cellwidth}" width
)
1628 (insert (format "\\setlength{\\cellwidth}{%f\\cellwidth}\n"
1629 (/ 1.1 (length cal-tex-which-days
))))
1630 (cal-tex-cmd "\\setlength{\\cellheight}" height
)
1631 (insert (format "\\setlength{\\cellheight}{%f\\cellheight}\n"
1633 (cal-tex-cmd "\\ \\par")
1634 (cal-tex-vspace "-3cm")))
1636 (defconst cal-tex-LaTeX-subst-list
1638 ("\"".
"''") ; quote changes meaning when list is reversed
1639 ;; Don't think this is necessary, and in any case, does not work:
1640 ;; "LaTeX Error: \verb illegal in command argument".
1641 ;;; ("@" . "\\verb|@|")
1651 ("\n" .
"\\ \\\\")) ; \\ needed for e.g \begin{center}\n AA\end{center}
1652 "Alist of symbols and their LaTeX replacements.")
1654 (defun cal-tex-LaTeXify-string (string)
1655 "Protect special characters in STRING from LaTeX."
1660 (list cal-tex-LaTeX-subst-list
)
1662 (while (not (string-equal tail
""))
1663 (setq ch
(substring-no-properties tail
0 1)
1664 pair
(assoc ch list
))
1665 (if (and pair
(string-equal ch
"\""))
1666 (setq list
(reverse list
))) ; quote changes meaning each time
1667 (setq tail
(substring-no-properties tail
1)
1668 head
(concat head
(if pair
(cdr pair
) ch
))))
1671 (defun cal-tex-month-name (month)
1672 "The name of MONTH, LaTeX-ified."
1673 (cal-tex-LaTeXify-string (calendar-month-name month
)))
1675 (defun cal-tex-hfill ()
1679 (defun cal-tex-newpage ()
1681 (insert "\\newpage%\n"))
1683 (defun cal-tex-noindent ()
1685 (insert "\\noindent"))
1687 (defun cal-tex-vspace (space)
1688 "Insert vspace command to move SPACE vertically."
1689 (insert "\\vspace*{" space
"}")
1692 (defun cal-tex-hspace (space)
1693 "Insert hspace command to move SPACE horizontally."
1694 (insert "\\hspace*{" space
"}")
1697 (defun cal-tex-comment (&optional comment
)
1698 "Insert `% ', followed by optional string COMMENT, followed by newline.
1699 COMMENT may contain newlines, which are prefixed by `% ' in the output."
1700 (insert (format "%% %s\n"
1702 (replace-regexp-in-string "\n" "\n% " comment
)
1705 (defun cal-tex-banner (comment)
1706 "Insert string COMMENT, separated by blank lines."
1707 (cal-tex-comment (format "\n\n\n\t\t\t%s\n" comment
)))
1709 (defun cal-tex-nl (&optional skip comment
)
1710 "End a line with \\. If SKIP, then add that much spacing.
1711 Add trailing COMMENT if present."
1712 (insert (format "\\\\%s"
1714 (format "[%s]" skip
)
1716 (cal-tex-comment comment
))
1718 (defun cal-tex-arg (&optional text
)
1719 "Insert a brace {} pair containing the optional string TEXT."
1720 (insert (format "{%s}" (or text
""))))
1722 (defun cal-tex-cmd (cmd &optional arg
)
1723 "Insert LaTeX CMD, with optional argument ARG, and end with %."
1732 (defun cal-tex-b-document ()
1733 "Insert beginning of document."
1734 (cal-tex-cmd "\\begin{document}"))
1736 (defun cal-tex-e-document ()
1737 "Insert end of document."
1738 (cal-tex-cmd "\\end{document}"))
1740 (defun cal-tex-b-center ()
1741 "Insert beginning of centered block."
1742 (cal-tex-cmd "\\begin{center}"))
1744 (defun cal-tex-e-center ()
1745 "Insert end of centered block."
1747 (cal-tex-cmd "\\end{center}"))
1755 (defun cal-tex-b-parbox (position width
)
1756 "Insert parbox with parameters POSITION and WIDTH."
1757 (insert "\\parbox[" position
"]{" width
"}{")
1760 (defun cal-tex-e-parbox (&optional height
)
1761 "Insert end of parbox. Optionally, force it to be a given HEIGHT."
1764 (cal-tex-rule "0mm" "0mm" height
))
1766 (cal-tex-comment "end parbox"))
1768 (defun cal-tex-b-framebox (width position
)
1769 "Insert framebox with parameters WIDTH and POSITION (clr)."
1770 (insert "\\framebox[" width
"][" position
"]{" )
1773 (defun cal-tex-e-framebox ()
1774 "Insert end of framebox."
1777 (cal-tex-comment "end framebox"))
1780 (defun cal-tex-b-makebox (width position
)
1781 "Insert makebox with parameters WIDTH and POSITION (clr)."
1782 (insert "\\makebox[" width
"][" position
"]{" )
1785 (defun cal-tex-e-makebox ()
1786 "Insert end of makebox."
1789 (cal-tex-comment "end makebox"))
1792 (defun cal-tex-rule (lower width height
)
1793 "Insert a rule with parameters LOWER WIDTH HEIGHT."
1794 (insert "\\rule[" lower
"]{" width
"}{" height
"}"))
1800 (defun cal-tex-em (string)
1801 "Insert STRING in italic font."
1802 (insert "\\textit{" string
"}"))
1804 (defun cal-tex-bf (string)
1805 "Insert STRING in bf font."
1806 (insert "\\textbf{ " string
"}"))
1808 (defun cal-tex-scriptsize (string)
1809 "Insert STRING in scriptsize font."
1810 (insert "{\\scriptsize " string
"}"))
1812 (defun cal-tex-huge (string)
1813 "Insert STRING in huge font."
1814 (insert "{\\huge " string
"}"))
1816 (defun cal-tex-Huge (string)
1817 "Insert STRING in Huge font."
1818 (insert "{\\Huge " string
"}"))
1820 (defun cal-tex-Huge-bf (string)
1821 "Insert STRING in Huge bf font."
1822 (insert "\\textbf{\\Huge " string
"}"))
1824 (defun cal-tex-large (string)
1825 "Insert STRING in large font."
1826 (insert "{\\large " string
"}"))
1828 (defun cal-tex-large-bf (string)
1829 "Insert STRING in large bf font."
1830 (insert "\\textbf{\\large " string
"}"))
1835 ;; arch-tag: ca8168a4-5a00-4508-a565-17e3bccce6d0
1836 ;;; cal-tex.el ends here