Merge branch 'master' into comment-cache
[emacs.git] / doc / emacs / calendar.texi
blob679bcb454f19211bda8dab45a4844ca9e93a4ab2
1 @c This is part of the Emacs manual.  -*- coding: utf-8 -*-
2 @c Copyright (C) 1985-1987, 1993-1995, 1997, 2000-2017 Free Software
3 @c Foundation, Inc.
4 @c See file emacs.texi for copying conditions.
5 @node Calendar/Diary
6 @chapter The Calendar and the Diary
7 @cindex calendar
8 @findex calendar
10   Emacs provides the functions of a desk calendar, with a diary of
11 planned or past events.  It also has facilities for managing your
12 appointments, and keeping track of how much time you spend working on
13 certain projects.
15   To enter the calendar, type @kbd{M-x calendar}; this displays a
16 three-month calendar centered on the current month, with point on the
17 current date.  With a numeric argument, as in @kbd{C-u M-x calendar}, it
18 prompts you for the month and year to be the center of the three-month
19 calendar.  The calendar uses its own buffer, whose major mode is
20 Calendar mode.
22   @kbd{mouse-3} in the calendar brings up a menu of operations on a
23 particular date; @kbd{mouse-2} brings up a menu of commonly used
24 calendar features that are independent of any particular date.  To exit
25 the calendar, type @kbd{q}.
27 @iftex
28   This chapter describes the basic calendar features.
29 For more advanced topics,
30 @pxref{Advanced Calendar/Diary Usage,,, emacs-xtra, Specialized Emacs Features}.
31 @end iftex
33 @menu
34 * Calendar Motion::     Moving through the calendar; selecting a date.
35 * Scroll Calendar::     Bringing earlier or later months onto the screen.
36 * Counting Days::       How many days are there between two dates?
37 * General Calendar::    Exiting or recomputing the calendar.
38 * Writing Calendar Files:: Writing calendars to files of various formats.
39 * Holidays::            Displaying dates of holidays.
40 * Sunrise/Sunset::      Displaying local times of sunrise and sunset.
41 * Lunar Phases::        Displaying phases of the moon.
42 * Other Calendars::     Converting dates to other calendar systems.
43 * Diary::               Displaying events from your diary.
44 * Appointments::        Reminders when it's time to do something.
45 * Importing Diary::     Converting diary events to/from other formats.
46 * Daylight Saving::     How to specify when daylight saving time is active.
47 * Time Intervals::      Keeping track of time intervals.
48 @ifnottex
49 * Advanced Calendar/Diary Usage:: Advanced Calendar/Diary customization.
50 @end ifnottex
51 @end menu
53 @node Calendar Motion
54 @section Movement in the Calendar
56 @cindex moving inside the calendar
57   Calendar mode provides commands to move through the calendar in
58 logical units of time such as days, weeks, months, and years.  If you
59 move outside the three months originally displayed, the calendar
60 display scrolls automatically through time to make the selected
61 date visible.  Moving to a date lets you view its holidays or diary
62 entries, or convert it to other calendars; moving by long time periods
63 is also useful simply to scroll the calendar.
65 @menu
66 * Calendar Unit Motion::      Moving by days, weeks, months, and years.
67 * Move to Beginning or End::  Moving to start/end of weeks, months, and years.
68 * Specified Dates::           Moving to the current date or another
69                                 specific date.
70 @end menu
72 @node Calendar Unit Motion
73 @subsection Motion by Standard Lengths of Time
75   The commands for movement in the calendar buffer parallel the
76 commands for movement in text.  You can move forward and backward by
77 days, weeks, months, and years.
79 @table @kbd
80 @item C-f
81 Move point one day forward (@code{calendar-forward-day}).
82 @item C-b
83 Move point one day backward (@code{calendar-backward-day}).
84 @item C-n
85 Move point one week forward (@code{calendar-forward-week}).
86 @item C-p
87 Move point one week backward (@code{calendar-backward-week}).
88 @item M-@}
89 Move point one month forward (@code{calendar-forward-month}).
90 @item M-@{
91 Move point one month backward (@code{calendar-backward-month}).
92 @item C-x ]
93 Move point one year forward (@code{calendar-forward-year}).
94 @item C-x [
95 Move point one year backward (@code{calendar-backward-year}).
96 @end table
98 @kindex C-f @r{(Calendar mode)}
99 @findex calendar-forward-day
100 @kindex C-b @r{(Calendar mode)}
101 @findex calendar-backward-day
102 @kindex C-n @r{(Calendar mode)}
103 @findex calendar-forward-week
104 @kindex C-p @r{(Calendar mode)}
105 @findex calendar-backward-week
106   The day and week commands are natural analogues of the usual Emacs
107 commands for moving by characters and by lines.  Just as @kbd{C-n}
108 usually moves to the same column in the following line, in Calendar
109 mode it moves to the same day in the following week.  And @kbd{C-p}
110 moves to the same day in the previous week.
112   The arrow keys are equivalent to @kbd{C-f}, @kbd{C-b}, @kbd{C-n} and
113 @kbd{C-p}, just as they normally are in other modes.
115 @kindex M-@} @r{(Calendar mode)}
116 @findex calendar-forward-month
117 @kindex M-@{ @r{(Calendar mode)}
118 @findex calendar-backward-month
119 @kindex C-x ] @r{(Calendar mode)}
120 @findex calendar-forward-year
121 @kindex C-x [ @r{(Calendar mode)}
122 @findex calendar-forward-year
123   The commands for motion by months and years work like those for
124 weeks, but move a larger distance.  The month commands @kbd{M-@}} and
125 @kbd{M-@{} move forward or backward by an entire month.  The year
126 commands @kbd{C-x ]} and @w{@kbd{C-x [}} move forward or backward a
127 whole year.
129   The easiest way to remember these commands is to consider months and
130 years analogous to paragraphs and pages of text, respectively.  But
131 the commands themselves are not quite analogous.  The ordinary Emacs
132 paragraph commands move to the beginning or end of a paragraph,
133 whereas these month and year commands move by an entire month or an
134 entire year, keeping the same date within the month or year.
136   All these commands accept a numeric argument as a repeat count.
137 For convenience, the digit keys and the minus sign specify numeric
138 arguments in Calendar mode even without the Meta modifier.  For example,
139 @kbd{100 C-f} moves point 100 days forward from its present location.
141 @node Move to Beginning or End
142 @subsection Beginning or End of Week, Month or Year
144   A week (or month, or year) is not just a quantity of days; we think of
145 weeks (months, years) as starting on particular dates.  So Calendar mode
146 provides commands to move to the start or end of a week, month or year:
148 @table @kbd
149 @kindex C-a @r{(Calendar mode)}
150 @findex calendar-beginning-of-week
151 @item C-a
152 Move point to start of week (@code{calendar-beginning-of-week}).
153 @kindex C-e @r{(Calendar mode)}
154 @findex calendar-end-of-week
155 @item C-e
156 Move point to end of week (@code{calendar-end-of-week}).
157 @kindex M-a @r{(Calendar mode)}
158 @findex calendar-beginning-of-month
159 @item M-a
160 Move point to start of month (@code{calendar-beginning-of-month}).
161 @kindex M-e @r{(Calendar mode)}
162 @findex calendar-end-of-month
163 @item M-e
164 Move point to end of month (@code{calendar-end-of-month}).
165 @kindex M-< @r{(Calendar mode)}
166 @findex calendar-beginning-of-year
167 @item M-<
168 Move point to start of year (@code{calendar-beginning-of-year}).
169 @kindex M-> @r{(Calendar mode)}
170 @findex calendar-end-of-year
171 @item M->
172 Move point to end of year (@code{calendar-end-of-year}).
173 @end table
175   These commands also take numeric arguments as repeat counts, with the
176 repeat count indicating how many weeks, months, or years to move
177 backward or forward.
179 @vindex calendar-week-start-day
180 @vindex calendar-weekend-days
181 @cindex weeks, which day they start on
182 @cindex calendar, first day of week
183   By default, weeks begin on Sunday.  To make them begin on Monday
184 instead, set the variable @code{calendar-week-start-day} to 1.  To
185 change which day headers are highlighted as weekend days, set the
186 variable @code{calendar-weekend-days}.
188 @node Specified Dates
189 @subsection Specified Dates
191   Calendar mode provides commands for moving to a particular date
192 specified in various ways.
194 @table @kbd
195 @item g d
196 Move point to specified date (@code{calendar-goto-date}).
197 @item g D
198 Move point to specified day of year (@code{calendar-goto-day-of-year}).
199 @item g w
200 Move point to specified week of year (@code{calendar-iso-goto-week}).
201 @item o
202 Center calendar around specified month (@code{calendar-other-month}).
203 @item .
204 Move point to today's date (@code{calendar-goto-today}).
205 @end table
207 @kindex g d @r{(Calendar mode)}
208 @findex calendar-goto-date
209   @kbd{g d} (@code{calendar-goto-date}) prompts for a year, a month, and a day
210 of the month, and then moves to that date.  Because the calendar includes all
211 dates from the beginning of the current era, you must type the year in its
212 entirety; that is, type @samp{2010}, not @samp{10}.
214 @kindex g D @r{(Calendar mode)}
215 @findex calendar-goto-day-of-year
216 @kindex g w @r{(Calendar mode)}
217 @findex calendar-iso-goto-week
218   @kbd{g D} (@code{calendar-goto-day-of-year}) prompts for a year and
219 day number, and moves to that date.  Negative day numbers count
220 backward from the end of the year.  @kbd{g w}
221 (@code{calendar-iso-goto-week}) prompts for a year and week number,
222 and moves to that week.
224 @kindex o @r{(Calendar mode)}
225 @findex calendar-other-month
226   @kbd{o} (@code{calendar-other-month}) prompts for a month and year,
227 then centers the three-month calendar around that month.
229 @kindex . @r{(Calendar mode)}
230 @findex calendar-goto-today
231   You can return to today's date with @kbd{.}@:
232 (@code{calendar-goto-today}).
234 @node Scroll Calendar
235 @section Scrolling in the Calendar
237 @cindex scrolling in the calendar
238   The calendar display scrolls automatically through time when you
239 move out of the visible portion.  You can also scroll it manually.
240 Imagine that the calendar window contains a long strip of paper with
241 the months on it.  Scrolling the calendar means moving the strip
242 horizontally, so that new months become visible in the window.
244 @table @kbd
245 @item >
246 Scroll calendar one month forward (@code{calendar-scroll-left}).
247 @item <
248 Scroll calendar one month backward (@code{calendar-scroll-right}).
249 @item C-v
250 @itemx @key{next}
251 Scroll forward by three months (@code{calendar-scroll-left-three-months}).
252 @item M-v
253 @itemx @key{prior}
254 Scroll backward by three months (@code{calendar-scroll-right-three-months}).
255 @end table
257 @kindex > @r{(Calendar mode)}
258 @findex calendar-scroll-left
259 @kindex < @r{(Calendar mode)}
260 @findex calendar-scroll-right
261   The most basic calendar scroll commands scroll by one month at a
262 time.  This means that there are two months of overlap between the
263 display before the command and the display after.  @kbd{>} scrolls the
264 calendar contents one month forward in time.  @kbd{<} scrolls the
265 contents one month backwards in time.
267 @kindex C-v @r{(Calendar mode)}
268 @findex calendar-scroll-left-three-months
269 @kindex M-v @r{(Calendar mode)}
270 @findex calendar-scroll-right-three-months
271   The commands @kbd{C-v} and @kbd{M-v} scroll the calendar by an entire
272 screenful---three months---in analogy with the usual meaning of
273 these commands.  @kbd{C-v} makes later dates visible and @kbd{M-v} makes
274 earlier dates visible.  These commands take a numeric argument as a
275 repeat count; in particular, since @kbd{C-u} multiplies the next command
276 by four, typing @kbd{C-u C-v} scrolls the calendar forward by a year and
277 typing @kbd{C-u M-v} scrolls the calendar backward by a year.
279   The function keys @key{next} and @key{prior} are equivalent to
280 @kbd{C-v} and @kbd{M-v}, just as they are in other modes.
282 @node Counting Days
283 @section Counting Days
285 @table @kbd
286 @item M-=
287 Display the number of days in the current region
288 (@code{calendar-count-days-region}).
289 @end table
291 @kindex M-= @r{(Calendar mode)}
292 @findex calendar-count-days-region
293   To determine the number of days in a range, set the mark on one
294 date using @kbd{C-@key{SPC}}, move point to another date, and type @kbd{M-=}
295 (@code{calendar-count-days-region}).  The numbers of days shown is
296 @emph{inclusive}; that is, it includes the days specified by mark and
297 point.
299 @node General Calendar
300 @section Miscellaneous Calendar Commands
302 @table @kbd
303 @item p d
304 Display day-in-year (@code{calendar-print-day-of-year}).
305 @item C-c C-l
306 Regenerate the calendar window (@code{calendar-redraw}).
307 @item @key{SPC}
308 Scroll the next window up (@code{scroll-other-window}).
309 @item @key{DEL}
310 @itemx S-@key{SPC}
311 Scroll the next window down (@code{scroll-other-window-down}).
312 @item q
313 Exit from calendar (@code{calendar-exit}).
314 @end table
316 @kindex p d @r{(Calendar mode)}
317 @cindex day of year
318 @findex calendar-print-day-of-year
319   To display the number of days elapsed since the start of the year, or
320 the number of days remaining in the year, type the @kbd{p d} command
321 (@code{calendar-print-day-of-year}).  This displays both of those
322 numbers in the echo area.  The count of days elapsed includes the
323 selected date.  The count of days remaining does not include that
324 date.
326 @kindex C-c C-l @r{(Calendar mode)}
327 @findex calendar-redraw
328   If the calendar window text gets corrupted, type @kbd{C-c C-l}
329 (@code{calendar-redraw}) to redraw it.  (This can only happen if you use
330 non-Calendar-mode editing commands.)
332 @kindex SPC @r{(Calendar mode)}
333   In Calendar mode, you can use @key{SPC} (@code{scroll-other-window})
334 and @key{DEL} (@code{scroll-other-window-down}) to scroll the other
335 window (if there is one) up or down, respectively.  This is handy when
336 you display a list of holidays or diary entries in another window.
338 @kindex q @r{(Calendar mode)}
339 @findex exit-calendar
340 @vindex calendar-remove-frame-by-deleting
341   To exit from the calendar, type @kbd{q} (@code{calendar-exit}).  This
342 buries all buffers related to the calendar, selecting other buffers.
343 (If a frame contains a dedicated calendar window, exiting from the
344 calendar deletes or iconifies that frame depending on the value of
345 @code{calendar-remove-frame-by-deleting}.)
347 @c FIXME this mentions holidays and diary entries, albeit briefly, so
348 @c should it be moved after those sections?  Or at least xref them.
349 @node Writing Calendar Files
350 @section Writing Calendar Files
352   You can write calendars and diary entries to HTML and @LaTeX{} files.
354 @cindex calendar and HTML
355   The Calendar HTML commands produce files of HTML code that contain
356 calendar, holiday, and diary entries.  Each file applies to one month,
357 and has a name of the format @file{@var{yyyy}-@var{mm}.html}, where
358 @var{yyyy} and @var{mm} are the four-digit year and two-digit month,
359 respectively.  The variable @code{cal-html-directory} specifies the
360 default output directory for the HTML files.  To prevent holidays
361 from being shown, customize @code{cal-html-holidays}.
363 @vindex cal-html-css-default
364   Diary entries enclosed by @code{<} and @code{>} are interpreted as
365 HTML tags (for example: this is a diary entry with <font
366 color=''red''>some red text</font>).  You can change the overall
367 appearance of the displayed HTML pages (for example, the color of
368 various page elements, header styles) via a stylesheet @file{cal.css} in
369 the directory containing the HTML files (see the value of the variable
370 @code{cal-html-css-default} for relevant style settings).
372 @kindex t @r{(Calendar mode)}
373 @table @kbd
374 @item H m
375 Generate a one-month calendar (@code{cal-html-cursor-month}).
376 @item H y
377 Generate a calendar file for each month of a year, as well as an index
378 page (@code{cal-html-cursor-year}).  By default, this command writes
379 files to a @var{yyyy} subdirectory---if this is altered some hyperlinks
380 between years will not work.
381 @end table
383   If the variable @code{cal-html-print-day-number-flag} is
384 non-@code{nil}, then the monthly calendars show the day-of-the-year
385 number.  The variable @code{cal-html-year-index-cols} specifies the
386 number of columns in the yearly index page.
388 @cindex calendar and @LaTeX{}
389   The Calendar @LaTeX{} commands produce a buffer of @LaTeX{} code that
390 prints as a calendar.  Depending on the command you use, the printed
391 calendar covers the day, week, month or year that point is in.
393 @kindex t @r{(Calendar mode)}
394 @table @kbd
395 @item t m
396 Generate a one-month calendar (@code{cal-tex-cursor-month}).
397 @item t M
398 Generate a sideways-printing one-month calendar
399 (@code{cal-tex-cursor-month-landscape}).
400 @item t d
401 Generate a one-day calendar
402 (@code{cal-tex-cursor-day}).
403 @item t w 1
404 Generate a one-page calendar for one week, with hours
405 (@code{cal-tex-cursor-week}).
406 @item t w 2
407 Generate a two-page calendar for one week, with hours
408 (@code{cal-tex-cursor-week2}).
409 @item t w 3
410 Generate an ISO-style calendar for one week, without hours
411 (@code{cal-tex-cursor-week-iso}).
412 @item t w 4
413 Generate a calendar for one Monday-starting week, with hours
414 (@code{cal-tex-cursor-week-monday}).
415 @item t w W
416 Generate a two-page calendar for one week, without hours
417 (@code{cal-tex-cursor-week2-summary}).
418 @item t f w
419 Generate a Filofax-style two-weeks-at-a-glance calendar
420 (@code{cal-tex-cursor-filofax-2week}).
421 @item t f W
422 Generate a Filofax-style one-week-at-a-glance calendar
423 (@code{cal-tex-cursor-filofax-week}).
424 @item t y
425 Generate a calendar for one year
426 (@code{cal-tex-cursor-year}).
427 @item t Y
428 Generate a sideways-printing calendar for one year
429 (@code{cal-tex-cursor-year-landscape}).
430 @item t f y
431 Generate a Filofax-style calendar for one year
432 (@code{cal-tex-cursor-filofax-year}).
433 @end table
435   Some of these commands print the calendar sideways (in landscape
436 mode), so it can be wider than it is long.  Some of them use Filofax
437 paper size (3.75in x 6.75in).  All of these commands accept a prefix
438 argument, which specifies how many days, weeks, months or years to print
439 (starting always with the selected one).
441   If the variable @code{cal-tex-holidays} is non-@code{nil} (the default),
442 then the printed calendars show the holidays in @code{calendar-holidays}.
443 If the variable @code{cal-tex-diary} is non-@code{nil} (the default is
444 @code{nil}), diary entries are included also (in monthly, filofax, and
445 iso-week calendars only).  If the variable @code{cal-tex-rules} is
446 non-@code{nil} (the default is @code{nil}), the calendar displays ruled
447 pages in styles that have sufficient room.  Consult the documentation of
448 the individual cal-tex functions to see which calendars support which
449 features.
451   You can use the variable @code{cal-tex-preamble-extra} to insert extra
452 @LaTeX{} commands in the preamble of the generated document if you need
455 @node Holidays
456 @section Holidays
457 @cindex holidays
459   The Emacs calendar knows about many major and minor holidays,
460 and can display them.  You can add your own holidays to the default list.
462 @table @kbd
463 @item mouse-3 Holidays
464 @itemx h
465 Display holidays for the selected date
466 (@code{calendar-cursor-holidays}).
467 @item x
468 Mark holidays in the calendar window (@code{calendar-mark-holidays}).
469 @item u
470 Unmark calendar window (@code{calendar-unmark}).
471 @item a
472 List all holidays for the displayed three months in another window
473 (@code{calendar-list-holidays}).
474 @item M-x holidays
475 List all holidays for three months around today's date in another
476 window.
477 @item M-x list-holidays
478 List holidays in another window for a specified range of years.
479 @end table
481 @kindex h @r{(Calendar mode)}
482 @findex calendar-cursor-holidays
483 @vindex calendar-view-holidays-initially-flag
484   To see if any holidays fall on a given date, position point on that
485 date in the calendar window and use the @kbd{h} command.  Alternatively,
486 click on that date with @kbd{mouse-3} and then choose @kbd{Holidays}
487 from the menu that appears.  Either way, this displays the holidays for
488 that date, in the echo area if they fit there, otherwise in a separate
489 window.
491 @kindex x @r{(Calendar mode)}
492 @findex calendar-mark-holidays
493 @kindex u @r{(Calendar mode)}
494 @findex calendar-unmark
495 @vindex calendar-mark-holidays-flag
496   To view the distribution of holidays for all the dates shown in the
497 calendar, use the @kbd{x} command.  This displays the dates that are
498 holidays in a different face.
499 @iftex
500 @xref{Calendar Customizing,,, emacs-xtra, Specialized Emacs Features}.
501 @end iftex
502 @ifnottex
503 @xref{Calendar Customizing, calendar-holiday-marker}.
504 @end ifnottex
505   The command applies both to the currently visible months and to
506 other months that subsequently become visible by scrolling.  To turn
507 marking off and erase the current marks, type @kbd{u}, which also
508 erases any diary marks (@pxref{Diary}).  If the variable
509 @code{calendar-mark-holidays-flag} is non-@code{nil}, creating or
510 updating the calendar marks holidays automatically.
512 @kindex a @r{(Calendar mode)}
513 @findex calendar-list-holidays
514   To get even more detailed information, use the @kbd{a} command, which
515 displays a separate buffer containing a list of all holidays in the
516 current three-month range.  You can use @key{SPC} and @key{DEL} in the
517 calendar window to scroll that list up and down, respectively.
519 @findex holidays
520   The command @kbd{M-x holidays} displays the list of holidays for the
521 current month and the preceding and succeeding months; this works even
522 if you don't have a calendar window.  If the variable
523 @code{calendar-view-holidays-initially-flag} is non-@code{nil}, creating
524 the calendar displays holidays in this way.  If you want the list of
525 holidays centered around a different month, use @kbd{C-u M-x
526 holidays}, which prompts for the month and year.
528   The holidays known to Emacs include United States holidays and the
529 major Bahá'í, Chinese, Christian, Islamic, and Jewish holidays; also the
530 solstices and equinoxes.
532 @findex list-holidays
533    The command @kbd{M-x holiday-list} displays the list of holidays for
534 a range of years.  This function asks you for the starting and stopping
535 years, and allows you to choose all the holidays or one of several
536 categories of holidays.  You can use this command even if you don't have
537 a calendar window.
539   The dates used by Emacs for holidays are based on @emph{current
540 practice}, not historical fact.  For example Veteran's Day began in
541 1919, but is shown in earlier years.
543 @node Sunrise/Sunset
544 @section Times of Sunrise and Sunset
545 @cindex sunrise and sunset
547   Special calendar commands can tell you, to within a minute or two, the
548 times of sunrise and sunset for any date.
550 @table @kbd
551 @item mouse-3 Sunrise/sunset
552 @itemx S
553 Display times of sunrise and sunset for the selected date
554 (@code{calendar-sunrise-sunset}).
555 @item M-x sunrise-sunset
556 Display times of sunrise and sunset for today's date.
557 @item C-u M-x sunrise-sunset
558 Display times of sunrise and sunset for a specified date.
559 @item M-x calendar-sunrise-sunset-month
560 Display times of sunrise and sunset for the selected month.
561 @end table
563 @kindex S @r{(Calendar mode)}
564 @findex calendar-sunrise-sunset
565 @findex sunrise-sunset
566   Within the calendar, to display the @emph{local times} of sunrise and
567 sunset in the echo area, move point to the date you want, and type
568 @kbd{S}.  Alternatively, click @kbd{mouse-3} on the date, then choose
569 @samp{Sunrise/sunset} from the menu that appears.  The command @kbd{M-x
570 sunrise-sunset} is available outside the calendar to display this
571 information for today's date or a specified date.  To specify a date
572 other than today, use @kbd{C-u M-x sunrise-sunset}, which prompts for
573 the year, month, and day.
575   You can display the times of sunrise and sunset for any location and
576 any date with @kbd{C-u C-u M-x sunrise-sunset}.  This asks you for a
577 longitude, latitude, number of minutes difference from Coordinated
578 Universal Time, and date, and then tells you the times of sunrise and
579 sunset for that location on that date.
581   Because the times of sunrise and sunset depend on the location on
582 earth, you need to tell Emacs your latitude, longitude, and location
583 name before using these commands.  Here is an example of what to set:
585 @vindex calendar-location-name
586 @vindex calendar-longitude
587 @vindex calendar-latitude
588 @example
589 (setq calendar-latitude 40.1)
590 (setq calendar-longitude -88.2)
591 (setq calendar-location-name "Urbana, IL")
592 @end example
594 @noindent
595 Use one decimal place in the values of @code{calendar-latitude} and
596 @code{calendar-longitude}.
598   Your time zone also affects the local time of sunrise and sunset.
599 Emacs usually gets time zone information from the operating system, but
600 if these values are not what you want (or if the operating system does
601 not supply them), you must set them yourself.  Here is an example:
603 @vindex calendar-time-zone
604 @vindex calendar-standard-time-zone-name
605 @vindex calendar-daylight-time-zone-name
606 @example
607 (setq calendar-time-zone -360)
608 (setq calendar-standard-time-zone-name "CST")
609 (setq calendar-daylight-time-zone-name "CDT")
610 @end example
612 @noindent
613 The value of @code{calendar-time-zone} is the number of minutes
614 difference between your local standard time and Coordinated Universal
615 Time (Greenwich time).  The values of
616 @code{calendar-standard-time-zone-name} and
617 @code{calendar-daylight-time-zone-name} are the abbreviations used in
618 your time zone.  Emacs displays the times of sunrise and sunset
619 @emph{corrected for daylight saving time}.  @xref{Daylight Saving},
620 for how daylight saving time is determined.
622   As a user, you might find it convenient to set the calendar location
623 variables for your usual physical location in your @file{.emacs} file.
624 If you are a system administrator, you may want to set these variables
625 for all users in a @file{default.el} file.  @xref{Init File}.
627 @node Lunar Phases
628 @section Phases of the Moon
629 @cindex phases of the moon
630 @cindex moon, phases of
632   These calendar commands display the dates and times of the phases of
633 the moon (new moon, first quarter, full moon, last quarter).  This
634 feature is useful for debugging problems that depend on the phase of
635 the moon.
637 @table @kbd
638 @item M
639 Display the dates and times for all the quarters of the moon for the
640 three-month period shown (@code{calendar-lunar-phases}).
641 @item M-x lunar-phases
642 Display dates and times of the quarters of the moon for three months around
643 today's date.
644 @end table
646 @kindex M @r{(Calendar mode)}
647 @findex calendar-lunar-phases
648   Within the calendar, use the @kbd{M} command to display a separate
649 buffer of the phases of the moon for the current three-month range.  The
650 dates and times listed are accurate to within a few minutes.
652 @findex lunar-phases
653   Outside the calendar, use the command @kbd{M-x lunar-phases} to
654 display the list of the phases of the moon for the current month and the
655 preceding and succeeding months.  For information about a different
656 month, use @kbd{C-u M-x lunar-phases}, which prompts for the month and
657 year.
659   The dates and times given for the phases of the moon are given in
660 local time (corrected for daylight saving, when appropriate).
661 See the discussion in the previous section.  @xref{Sunrise/Sunset}.
663 @node Other Calendars
664 @section Conversion To and From Other Calendars
666 @cindex Gregorian calendar
667   The Emacs calendar displayed is @emph{always} the Gregorian calendar,
668 sometimes called the New Style calendar, which is used in most of
669 the world today.  However, this calendar did not exist before the
670 sixteenth century and was not widely used before the eighteenth century;
671 it did not fully displace the Julian calendar and gain universal
672 acceptance until the early twentieth century.  The Emacs calendar can
673 display any month since January, year 1 of the current era, but the
674 calendar displayed is always the Gregorian, even for a date at which
675 the Gregorian calendar did not exist.
677   While Emacs cannot display other calendars, it can convert dates to
678 and from several other calendars.
680 @menu
681 * Calendar Systems::       The calendars Emacs understands
682                              (aside from Gregorian).
683 * To Other Calendar::      Converting the selected date to various calendars.
684 * From Other Calendar::    Moving to a date specified in another calendar.
685 @end menu
687 @c FIXME perhaps most of the details should be moved to cal-xtra.
688 @c Just list the major supported systems here?
689 @node Calendar Systems
690 @subsection Supported Calendar Systems
692 @cindex ISO commercial calendar
693   The ISO commercial calendar is often used in business.
695 @cindex Julian calendar
696   The Julian calendar, named after Julius Caesar, was the one used in Europe
697 throughout medieval times, and in many countries up until the nineteenth
698 century.
700 @cindex Julian day numbers
701 @cindex astronomical day numbers
702   Astronomers use a simple counting of days elapsed since noon, Monday,
703 January 1, 4713 B.C. on the Julian calendar.  The number of days elapsed
704 is called the @dfn{Julian day number} or the @dfn{Astronomical day number}.
706 @cindex Hebrew calendar
707   The Hebrew calendar is used by tradition in the Jewish religion.  The
708 Emacs calendar program uses the Hebrew calendar to determine the dates
709 of Jewish holidays.  Hebrew calendar dates begin and end at sunset.
711 @cindex Islamic calendar
712   The Islamic calendar is used in many predominantly Islamic countries.
713 Emacs uses it to determine the dates of Islamic holidays.  There is no
714 universal agreement in the Islamic world about the calendar; Emacs uses
715 a widely accepted version, but the precise dates of Islamic holidays
716 often depend on proclamation by religious authorities, not on
717 calculations.  As a consequence, the actual dates of observance can vary
718 slightly from the dates computed by Emacs.  Islamic calendar dates begin
719 and end at sunset.
721 @cindex French Revolutionary calendar
722   The French Revolutionary calendar was created by the Jacobins after the 1789
723 revolution, to represent a more secular and nature-based view of the annual
724 cycle, and to install a 10-day week in a rationalization measure similar to
725 the metric system.  The French government officially abandoned this
726 calendar at the end of 1805.
728 @cindex Mayan calendar
729   The Maya of Central America used three separate, overlapping calendar
730 systems, the @emph{long count}, the @emph{tzolkin}, and the @emph{haab}.
731 Emacs knows about all three of these calendars.  Experts dispute the
732 exact correlation between the Mayan calendar and our calendar; Emacs uses the
733 Goodman-Martinez-Thompson correlation in its calculations.
735 @cindex Coptic calendar
736 @cindex Ethiopic calendar
737   The Copts use a calendar based on the ancient Egyptian solar calendar.
738 Their calendar consists of twelve 30-day months followed by an extra
739 five-day period.  Once every fourth year they add a leap day to this
740 extra period to make it six days.  The Ethiopic calendar is identical in
741 structure, but has different year numbers and month names.
743 @cindex Persian calendar
744   The Persians use a solar calendar based on a design of Omar Khayyam.
745 Their calendar consists of twelve months of which the first six have 31
746 days, the next five have 30 days, and the last has 29 in ordinary years
747 and 30 in leap years.  Leap years occur in a complicated pattern every
748 four or five years.
749 The calendar implemented here is the arithmetical Persian calendar
750 championed by Birashk, based on a 2,820-year cycle.  It differs from
751 the astronomical Persian calendar, which is based on astronomical
752 events.  As of this writing the first future discrepancy is projected
753 to occur on March 20, 2025.  It is currently not clear what the
754 official calendar of Iran will be at that time.
755 @c FIXME not so far in the future now.
757 @cindex Chinese calendar
758   The Chinese calendar is a complicated system of lunar months arranged
759 into solar years.  The years go in cycles of sixty, each year containing
760 either twelve months in an ordinary year or thirteen months in a leap
761 year; each month has either 29 or 30 days.  Years, ordinary months, and
762 days are named by combining one of ten @dfn{celestial stems} with one of
763 twelve @dfn{terrestrial branches} for a total of sixty names that are
764 repeated in a cycle of sixty.
766 @cindex Bahá'í calendar
767   The Bahá'í calendar system is based on a solar cycle of 19 months with
768 19 days each.  The four remaining intercalary days are placed
769 between the 18th and 19th months.
771 @node To Other Calendar
772 @subsection Converting To Other Calendars
774   The following commands describe the selected date (the date at point)
775 in various other calendar systems:
777 @table @kbd
778 @kindex p @r{(Calendar mode)}
779 @findex calendar-print-other-dates
780 @item mouse-3  Other calendars
781 @itemx p o
782 Display the selected date in various other calendars.
783 (@code{calendar-print-other-dates}).
784 @findex calendar-iso-print-date
785 @item p c
786 Display ISO commercial calendar equivalent for selected day
787 (@code{calendar-iso-print-date}).
788 @findex calendar-julian-print-date
789 @item p j
790 Display Julian date for selected day (@code{calendar-julian-print-date}).
791 @findex calendar-astro-print-day-number
792 @item p a
793 Display astronomical (Julian) day number for selected day
794 (@code{calendar-astro-print-day-number}).
795 @findex calendar-hebrew-print-date
796 @item p h
797 Display Hebrew date for selected day (@code{calendar-hebrew-print-date}).
798 @findex calendar-islamic-print-date
799 @item p i
800 Display Islamic date for selected day (@code{calendar-islamic-print-date}).
801 @findex calendar-french-print-date
802 @item p f
803 Display French Revolutionary date for selected day
804 (@code{calendar-french-print-date}).
805 @findex calendar-bahai-print-date
806 @item p b
807 Display Bahá'í date for selected day
808 (@code{calendar-bahai-print-date}).
809 @findex calendar-chinese-print-date
810 @item p C
811 Display Chinese date for selected day
812 (@code{calendar-chinese-print-date}).
813 @findex calendar-coptic-print-date
814 @item p k
815 Display Coptic date for selected day
816 (@code{calendar-coptic-print-date}).
817 @findex calendar-ethiopic-print-date
818 @item p e
819 Display Ethiopic date for selected day
820 (@code{calendar-ethiopic-print-date}).
821 @findex calendar-persian-print-date
822 @item p p
823 Display Persian date for selected day
824 (@code{calendar-persian-print-date}).
825 @findex calendar-mayan-print-date
826 @item p m
827 Display Mayan date for selected day (@code{calendar-mayan-print-date}).
828 @end table
830   Otherwise, move point to the date you want to convert, then type the
831 appropriate command starting with @kbd{p} from the table above.  The
832 prefix @kbd{p} is a mnemonic for ``print'', since Emacs ``prints'' the
833 equivalent date in the echo area.  @kbd{p o} displays the
834 date in all forms known to Emacs.  You can also use @kbd{mouse-3} and
835 then choose @kbd{Other calendars} from the menu that appears.  This
836 displays the equivalent forms of the date in all the calendars Emacs
837 understands, in the form of a menu.  (Choosing an alternative from
838 this menu doesn't actually do anything---the menu is used only for
839 display.)
841 @node From Other Calendar
842 @subsection Converting From Other Calendars
844   You can use the other supported calendars to specify a date to move
845 to.  This section describes the commands for doing this using calendars
846 other than Mayan; for the Mayan calendar, see the following section.
848 @kindex g @var{char} @r{(Calendar mode)}
849 @findex calendar-iso-goto-date
850 @findex calendar-iso-goto-week
851 @findex calendar-julian-goto-date
852 @findex calendar-astro-goto-day-number
853 @findex calendar-bahai-goto-date
854 @findex calendar-hebrew-goto-date
855 @findex calendar-islamic-goto-date
856 @findex calendar-french-goto-date
857 @findex calendar-chinese-goto-date
858 @findex calendar-persian-goto-date
859 @findex calendar-coptic-goto-date
860 @findex calendar-ethiopic-goto-date
861 @table @kbd
862 @item g c
863 Move to a date specified in the ISO commercial calendar
864 (@code{calendar-iso-goto-date}).
865 @item g w
866 Move to a week specified in the ISO commercial calendar
867 (@code{calendar-iso-goto-week}).
868 @item g j
869 Move to a date specified in the Julian calendar
870 (@code{calendar-julian-goto-date}).
871 @item g a
872 Move to a date specified with an astronomical (Julian) day number
873 (@code{calendar-astro-goto-day-number}).
874 @item g b
875 Move to a date specified in the Bahá'í calendar
876 (@code{calendar-bahai-goto-date}).
877 @item g h
878 Move to a date specified in the Hebrew calendar
879 (@code{calendar-hebrew-goto-date}).
880 @item g i
881 Move to a date specified in the Islamic calendar
882 (@code{calendar-islamic-goto-date}).
883 @item g f
884 Move to a date specified in the French Revolutionary calendar
885 (@code{calendar-french-goto-date}).
886 @item g C
887 Move to a date specified in the Chinese calendar
888 (@code{calendar-chinese-goto-date}).
889 @item g p
890 Move to a date specified in the Persian calendar
891 (@code{calendar-persian-goto-date}).
892 @item g k
893 Move to a date specified in the Coptic calendar
894 (@code{calendar-coptic-goto-date}).
895 @item g e
896 Move to a date specified in the Ethiopic calendar
897 (@code{calendar-ethiopic-goto-date}).
898 @end table
900   These commands ask you for a date on the other calendar, move point
901 to the Gregorian calendar date equivalent to that date, and display
902 the other calendar's date in the echo area.  Emacs uses strict
903 completion (@pxref{Completion Exit}) whenever it asks you to type a
904 month name, so you don't have to worry about the spelling of Hebrew,
905 Islamic, or French names.
907 @c FIXME move?
908 @findex calendar-hebrew-list-yahrzeits
909 @cindex yahrzeits
910   One common issue concerning the Hebrew calendar is the computation
911 of the anniversary of a date of death, called a @dfn{yahrzeit}.  The Emacs
912 calendar includes a facility for such calculations.  If you are in the
913 calendar, the command @kbd{M-x calendar-hebrew-list-yahrzeits} asks you for
914 a range of years and then displays a list of the yahrzeit dates for those
915 years for the date given by point.  If you are not in the calendar,
916 this command first asks you for the date of death and the range of
917 years, and then displays the list of yahrzeit dates.
919 @node Diary
920 @section The Diary
921 @cindex diary
923   The Emacs diary keeps track of appointments or other events on a daily
924 basis, in conjunction with the calendar.  To use the diary feature, you
925 must first create a diary file containing a list of events and
926 their dates.  Then Emacs can automatically pick out and display the
927 events for today, for the immediate future, or for any specified
928 date.
930   Although you probably will start by creating a diary manually, Emacs
931 provides a number of commands to let you view, add, and change diary
932 entries.
934 @menu
935 * Format of Diary File::   Entering events in your diary.
936 * Displaying the Diary::   Viewing diary entries and associated calendar dates.
937 * Date Formats::           Various ways you can specify dates.
938 * Adding to Diary::        Commands to create diary entries.
939 * Special Diary Entries::  Anniversaries, blocks of dates, cyclic entries, etc.
940 @end menu
942 @node Format of Diary File
943 @subsection The Diary File
944 @cindex diary file
946 @vindex diary-file
947   Your @dfn{diary file} is a file that records events associated with
948 particular dates.  The name of the diary file is specified by the
949 variable @code{diary-file}.  The default is @file{~/.emacs.d/diary},
950 though for compatibility with older versions Emacs will use
951 @file{~/diary} if it exists.
952 @ignore
953 @c I don't think this is relevant any more.  The utility doesn't seem
954 @c to be part of the default install on GNU/Linux machines these days.
955 @c When I tried it with my basic diary file, it just died with an error.
956 The @code{calendar} utility program supports a subset of the format
957 allowed by the Emacs diary facilities, so you can use that utility to
958 view the diary file, with reasonable results aside from the entries it
959 cannot understand.
960 @end ignore
962   Each entry in the diary file describes one event and consists of one
963 or more lines.  An entry always begins with a date specification at the
964 left margin.  The rest of the entry is simply text to describe the
965 event.  If the entry has more than one line, then the lines after the
966 first must begin with whitespace to indicate they continue a previous
967 entry.  Lines that do not begin with valid dates and do not continue a
968 preceding entry are ignored.  Here's an example:
970 @example
971 12/22/2015  Twentieth wedding anniversary!
972 10/22       Ruth's birthday.
973 * 21, *:    Payday
974 Tuesday--weekly meeting with grad students at 10am
975          Supowit, Shen, Bitner, and Kapoor to attend.
976 1/13/89     Friday the thirteenth!!
977 thu 4pm     squash game with Lloyd.
978 mar 16      Dad's birthday
979 April 15, 2016 Income tax due.
980 * 15        time cards due.
981 @end example
983 @noindent
984 This example uses extra spaces to align the event descriptions of most
985 of the entries.  Such formatting is purely a matter of taste.
987   You can also use a format where the first line of a diary entry
988 consists only of the date or day name (with no following blanks or
989 punctuation).  For example:
991 @example
992 02/11/2012
993       Bill B. visits Princeton today
994       2pm Cognitive Studies Committee meeting
995       2:30-5:30 Liz at Lawrenceville
996       4:00pm Dentist appt
997       7:30pm Dinner at George's
998       8:00-10:00pm concert
999 @end example
1001 @noindent
1002 This entry will have a different appearance if you use the simple diary
1003 display
1004 @iftex
1005 (@pxref{Diary Display,,, emacs-xtra, Specialized Emacs Features}).
1006 @end iftex
1007 @ifnottex
1008 (@pxref{Diary Display}).
1009 @end ifnottex
1010 The simple diary display omits the date line at the beginning; only the
1011 continuation lines appear.  This style of entry looks neater when you
1012 display just a single day's entries, but can cause confusion if you ask
1013 for more than one day's entries.
1015 @node Displaying the Diary
1016 @subsection Displaying the Diary
1018   Once you have created a diary file, you can use the calendar to view
1019 it.  You can also view today's events outside of Calendar mode.  In the
1020 following, key bindings refer to the Calendar buffer.
1022 @table @kbd
1023 @item mouse-3 Diary
1024 @itemx d
1025 Display all diary entries for the selected date
1026 (@code{diary-view-entries}).
1027 @item s
1028 Display the entire diary file (@code{diary-show-all-entries}).
1029 @item m
1030 Mark all visible dates that have diary entries
1031 (@code{diary-mark-entries}).
1032 @item u
1033 Unmark the calendar window (@code{calendar-unmark}).
1034 @item M-x diary-print-entries
1035 Print hard copy of the diary display as it appears.
1036 @item M-x diary
1037 Display all diary entries for today's date.
1038 @item M-x diary-mail-entries
1039 Mail yourself email reminders about upcoming diary entries.
1040 @end table
1042 @kindex d @r{(Calendar mode)}
1043 @findex diary-view-entries
1044 @vindex calendar-view-diary-initially-flag
1045   Displaying the diary entries with @kbd{d} shows in a separate buffer
1046 the diary entries for the selected date in the calendar.  The mode line
1047 of the new buffer shows the date of the diary entries.  Holidays are
1048 shown either in the buffer or in the mode line, depending on the display
1049 method you choose
1050 @iftex
1051 (@pxref{Diary Display,,, emacs-xtra, Specialized Emacs Features}).
1052 @end iftex
1053 @ifnottex
1054 (@pxref{Diary Display}).
1055 @end ifnottex
1056 If you specify a numeric argument with @kbd{d}, it shows all the diary
1057 entries for that many successive days.  Thus, @kbd{2 d} displays all the
1058 entries for the selected date and for the following day.
1060   Another way to display the diary entries for a date is to click
1061 @kbd{mouse-3} on the date, and then choose @kbd{Diary entries} from
1062 the menu that appears.  If the variable
1063 @code{calendar-view-diary-initially-flag} is non-@code{nil}, creating the
1064 calendar lists the diary entries for the current date (provided the
1065 current date is visible).
1067 @kindex m @r{(Calendar mode)}
1068 @findex diary-mark-entries
1069 @vindex calendar-mark-diary-entries-flag
1070   To get a broader view of which days are mentioned in the diary, use
1071 the @kbd{m} command.  This marks the dates that have diary entries in
1072 a different face.
1073 @iftex
1074 @xref{Calendar Customizing,,, emacs-xtra, Specialized Emacs Features}.
1075 @end iftex
1076 @ifnottex
1077 @xref{Calendar Customizing, diary-entry-marker}.
1078 @end ifnottex
1080   This command applies both to the months that are currently visible
1081 and to those that subsequently become visible after scrolling.  To turn
1082 marking off and erase the current marks, type @kbd{u}, which also
1083 turns off holiday marks (@pxref{Holidays}).  If the variable
1084 @code{calendar-mark-diary-entries-flag} is non-@code{nil}, creating or
1085 updating the calendar marks diary dates automatically.
1087 @vindex diary-nonmarking-symbol
1088   To prevent an individual diary entry from being marked in the
1089 calendar, insert the string that @code{diary-nonmarking-symbol}
1090 specifies (the default is @samp{&}) at the beginning of the entry,
1091 before the date.  This has no effect on display of the entry in the
1092 diary buffer; it only affects marks on dates in the calendar.
1093 Nonmarking entries can be useful for generic entries that would
1094 otherwise mark many different dates.
1096 @kindex s @r{(Calendar mode)}
1097 @findex diary-show-all-entries
1098   To see the full diary file, rather than just some of the entries, use
1099 the @kbd{s} command.
1101 @findex diary
1102   The command @kbd{M-x diary} displays the diary entries for the current
1103 date, independently of the calendar display, and optionally for the next
1104 few days as well; the variable @code{diary-number-of-entries} specifies
1105 how many days to include.
1106 @iftex
1107 @xref{Diary Customizing,,, emacs-xtra, Specialized Emacs Features}.
1108 @end iftex
1109 @ifnottex
1110 @xref{Diary Customizing, diary-number-of-entries}.
1111 @end ifnottex
1113   If you put @code{(diary)} in your @file{.emacs} file, this
1114 automatically displays a window with the day's diary entries when you
1115 start Emacs.
1117 @findex diary-mail-entries
1118 @vindex diary-mail-days
1119   Some people like to receive email notifications of events in their
1120 diary.  To send such mail to yourself, use the command @kbd{M-x
1121 diary-mail-entries}.  A prefix argument specifies how many days
1122 (starting with today) to check; otherwise, the variable
1123 @code{diary-mail-days} says how many days.
1125 @node Date Formats
1126 @subsection Date Formats
1128   Here are some sample diary entries, illustrating different ways of
1129 formatting a date.  The examples all show dates in American order
1130 (month, day, year), but Calendar mode supports European order (day,
1131 month, year) and ISO order (year, month, day) as options.
1133 @example
1134 4/20/12  Switch-over to new tabulation system
1135 apr. 25  Start tabulating annual results
1136 4/30  Results for April are due
1137 */25  Monthly cycle finishes
1138 Friday  Don't leave without backing up files
1139 @end example
1141   The first entry appears only once, on April 20, 2012.  The second and
1142 third appear every year on the specified dates, and the fourth uses a
1143 wildcard (asterisk) for the month, so it appears on the 25th of every
1144 month.  The final entry appears every week on Friday.
1146   You can use just numbers to express a date, as in
1147 @samp{@var{month}/@var{day}} or @samp{@var{month}/@var{day}/@var{year}}.
1148 This must be followed by a nondigit.  In the date itself, @var{month}
1149 and @var{day} are numbers of one or two digits.  The optional @var{year}
1150 is also a number, and may be abbreviated to the last two digits; that
1151 is, you can use @samp{11/12/2012} or @samp{11/12/12}.
1153   Dates can also have the form @samp{@var{monthname} @var{day}} or
1154 @samp{@var{monthname} @var{day}, @var{year}}, where the month's name can
1155 be spelled in full or abbreviated (with or without a period).  The
1156 preferred abbreviations for month and day names can be set using
1157 the variables @code{calendar-abbrev-length},
1158 @code{calendar-month-abbrev-array}, and
1159 @code{calendar-day-abbrev-array}.  The default is to use the first three
1160 letters of a name as its abbreviation.  Case is not significant.
1162   A date may be @dfn{generic}; that is, partially unspecified.  Then the
1163 entry applies to all dates that match the specification.  If the date
1164 does not contain a year, it is generic and applies to any year.
1165 Alternatively, @var{month}, @var{day}, or @var{year} can be @samp{*};
1166 this matches any month, day, or year, respectively.  Thus, a diary entry
1167 @samp{3/*/*} matches any day in March of any year; so does @samp{march
1170 @vindex calendar-date-style
1171 @findex calendar-set-date-style
1172   If you prefer the European style of writing dates (in which the day
1173 comes before the month), or the ISO style (in which the order is year,
1174 month, day), type @kbd{M-x calendar-set-date-style} while in the
1175 calendar, or customize the variable @code{calendar-date-style}.  This
1176 affects how diary dates are interpreted, date display, and the order in
1177 which some commands expect their arguments to be given.
1179   You can use the name of a day of the week as a generic date which
1180 applies to any date falling on that day of the week.  You can abbreviate
1181 the day of the week as described above, or spell it in full; case is not
1182 significant.
1184 @node Adding to Diary
1185 @subsection Commands to Add to the Diary
1187   While in the calendar, there are several commands to create diary
1188 entries.  The basic commands are listed here; more sophisticated
1189 commands are in the next section (@pxref{Special Diary Entries}).
1190 Entries can also be based on non-Gregorian calendars.
1191 @iftex
1192 @xref{Non-Gregorian Diary,,, emacs-xtra, Specialized Emacs Features}.
1193 @end iftex
1194 @ifnottex
1195 @xref{Non-Gregorian Diary}.
1196 @end ifnottex
1198 @table @kbd
1199 @item i d
1200 Add a diary entry for the selected date (@code{diary-insert-entry}).
1201 @item i w
1202 Add a diary entry for the selected day of the week (@code{diary-insert-weekly-entry}).
1203 @item i m
1204 Add a diary entry for the selected day of the month (@code{diary-insert-monthly-entry}).
1205 @item i y
1206 Add a diary entry for the selected day of the year (@code{diary-insert-yearly-entry}).
1207 @end table
1209 @kindex i d @r{(Calendar mode)}
1210 @findex diary-insert-entry
1211   You can make a diary entry for a specific date by selecting that date
1212 in the calendar window and typing the @kbd{i d} command.  This command
1213 displays the end of your diary file in another window and inserts the
1214 date; you can then type the rest of the diary entry.
1216 @kindex i w @r{(Calendar mode)}
1217 @findex diary-insert-weekly-entry
1218 @kindex i m @r{(Calendar mode)}
1219 @findex diary-insert-monthly-entry
1220 @kindex i y @r{(Calendar mode)}
1221 @findex diary-insert-yearly-entry
1222   If you want to make a diary entry that applies to a specific day of
1223 the week, select that day of the week (any occurrence will do) and type
1224 @kbd{i w}.  This inserts the day-of-week as a generic date; you can then
1225 type the rest of the diary entry.  You can make a monthly diary entry in
1226 the same fashion: select the day of the month, use the @kbd{i m}
1227 command, and type the rest of the entry.  Similarly, you can insert a
1228 yearly diary entry with the @kbd{i y} command.
1230   All of the above commands make marking diary entries by default.  To
1231 make a nonmarking diary entry, give a prefix argument to the command.
1232 For example, @kbd{C-u i w} makes a nonmarking weekly diary entry.
1234   When you modify the diary file, be sure to save the file before
1235 exiting Emacs.  Saving the diary file after using any of the above
1236 insertion commands will automatically update the diary marks in the
1237 calendar window, if appropriate.  You can use the command
1238 @code{calendar-redraw} to force an update at any time.
1240 @node Special Diary Entries
1241 @subsection Special Diary Entries
1243   In addition to entries based on calendar dates, the diary file can
1244 contain @dfn{sexp entries} for regular events such as anniversaries.
1245 These entries are based on Lisp expressions (sexps) that Emacs evaluates
1246 as it scans the diary file.  Instead of a date, a sexp entry contains
1247 @samp{%%} followed by a Lisp expression which must begin and end with
1248 parentheses.  The Lisp expression determines which dates the entry
1249 applies to.
1251   Calendar mode provides commands to insert certain commonly used
1252 sexp entries:
1254 @table @kbd
1255 @item i a
1256 Add an anniversary diary entry for the selected date
1257 (@code{diary-insert-anniversary-entry}).
1258 @item i b
1259 Add a block diary entry for the current region
1260 (@code{diary-insert-block-entry}).
1261 @item i c
1262 Add a cyclic diary entry starting at the date
1263 (@code{diary-insert-cyclic-entry}).
1264 @end table
1266 @kindex i a @r{(Calendar mode)}
1267 @findex diary-insert-anniversary-entry
1268   If you want to make a diary entry that applies to the anniversary of a
1269 specific date, move point to that date and use the @kbd{i a} command.
1270 This displays the end of your diary file in another window and inserts
1271 the anniversary description; you can then type the rest of the diary
1272 entry.  The entry looks like this:
1274 @findex diary-anniversary
1275 @example
1276 %%(diary-anniversary 10 31 1988) Arthur's birthday
1277 @end example
1279 @noindent
1280 This entry applies to October 31 in any year after 1988; @samp{10 31
1281 1988} specifies the date.  (If you are using the European or ISO
1282 calendar style, the input order of month, day and year is different.)
1283 The reason this expression requires a beginning year is that advanced
1284 diary functions can use it to calculate the number of elapsed years.
1286   A @dfn{block} diary entry applies to a specified range of consecutive
1287 dates.  Here is a block diary entry that applies to all dates from June
1288 24, 2012 through July 10, 2012:
1290 @findex diary-block
1291 @example
1292 %%(diary-block 6 24 2012 7 10 2012) Vacation
1293 @end example
1295 @noindent
1296 The @samp{6 24 2012} indicates the starting date and the @samp{7 10 2012}
1297 indicates the stopping date.  (Again, if you are using the European or ISO
1298 calendar style, the input order of month, day and year is different.)
1300 @kindex i b @r{(Calendar mode)}
1301 @findex diary-insert-block-entry
1302   To insert a block entry, place point and the mark on the two
1303 dates that begin and end the range, and type @kbd{i b}.  This command
1304 displays the end of your diary file in another window and inserts the
1305 block description; you can then type the diary entry.
1307 @kindex i c @r{(Calendar mode)}
1308 @findex diary-insert-cyclic-entry
1309    @dfn{Cyclic} diary entries repeat after a fixed interval of days.  To
1310 create one, select the starting date and use the @kbd{i c} command.  The
1311 command prompts for the length of interval, then inserts the entry,
1312 which looks like this:
1314 @findex diary-cyclic
1315 @example
1316 %%(diary-cyclic 50 3 1 2012) Renew medication
1317 @end example
1319 @noindent
1320 This entry applies to March 1, 2012 and every 50th day following;
1321 @samp{3 1 2012} specifies the starting date.  (If you are using the
1322 European or ISO calendar style, the input order of month, day and year
1323 is different.)
1325   All three of these commands make marking diary entries.  To insert a
1326 nonmarking entry, give a prefix argument to the command.  For example,
1327 @kbd{C-u i a} makes a nonmarking anniversary diary entry.
1329   Marking sexp diary entries in the calendar can be time-consuming,
1330 since every date visible in the calendar window must be individually
1331 checked.  So it's a good idea to make sexp diary entries nonmarking
1332 (with @samp{&}) when possible.
1334   Another sophisticated kind of sexp entry, a @dfn{floating} diary entry,
1335 specifies a regularly occurring event by offsets specified in days,
1336 weeks, and months.  It is comparable to a crontab entry interpreted by
1337 the @code{cron} utility.  Here is a nonmarking, floating diary entry
1338 that applies to the fourth Thursday in November:
1340 @findex diary-float
1341 @example
1342 &%%(diary-float 11 4 4) American Thanksgiving
1343 @end example
1345 @noindent
1346 The 11 specifies November (the eleventh month), the 4 specifies Thursday
1347 (the fourth day of the week, where Sunday is numbered zero), and the
1348 second 4 specifies the fourth Thursday (1 would mean ``first'', 2 would
1349 mean ``second'', @minus{}2 would mean ``second-to-last'', and so on).
1350 The month can be a single month or a list of months.  Thus you could change
1351 the 11 above to @samp{'(1 2 3)} and have the entry apply to the last
1352 Thursday of January, February, and March.  If the month is @code{t}, the
1353 entry applies to all months of the year.
1355   Each of the standard sexp diary entries takes an optional parameter
1356 specifying the name of a face or a single-character string to use when
1357 marking the entry in the calendar.  Most generally, sexp diary entries
1358 can perform arbitrary computations to determine when they apply.
1359 @iftex
1360 @xref{Sexp Diary Entries,,, emacs-xtra, Specialized Emacs Features}.
1361 @end iftex
1362 @ifnottex
1363 @xref{Sexp Diary Entries}.
1364 @end ifnottex
1366 @node Appointments
1367 @section Appointments
1368 @cindex appointment notification
1370 @vindex appt-display-format
1371 @vindex appt-audible
1372 @vindex appt-display-mode-line
1373   If you have a diary entry for an appointment, and that diary entry
1374 begins with a recognizable time of day, Emacs can warn you in advance
1375 that an appointment is pending.  Emacs alerts you
1376 to the appointment by displaying a message in your chosen format, as
1377 specified by the variable @code{appt-display-format}.  If the value of
1378 @code{appt-audible} is non-@code{nil}, the warning includes an audible
1379 reminder.  In addition, if @code{appt-display-mode-line} is
1380 non-@code{nil}, Emacs displays the number of minutes to the
1381 appointment on the mode line.
1383 @vindex appt-display-duration
1384 @vindex appt-disp-window-function
1385 @vindex appt-delete-window-function
1386   If @code{appt-display-format} has the value @code{window}, then the
1387 variable @code{appt-display-duration} controls how long the reminder
1388 window is visible for; and the variables
1389 @code{appt-disp-window-function} and @code{appt-delete-window-function}
1390 give the names of functions used to create and destroy the window,
1391 respectively.
1393 @findex appt-activate
1394   To enable appointment notification, type @kbd{M-x appt-activate}.
1395 With a positive argument, it enables notification; with a negative
1396 argument, it disables notification; with no argument, it toggles.
1397 Enabling notification also sets up an appointment list for today from
1398 the diary file, giving all diary entries found with recognizable times
1399 of day, and reminds you just before each of them.
1401   For example, suppose the diary file contains these lines:
1403 @example
1404 Monday
1405   9:30am Coffee break
1406  12:00pm Lunch
1407 @end example
1409 @vindex appt-message-warning-time
1410 @vindex appt-warning-time-regexp
1411 @noindent
1412 Then on Mondays, you will be reminded at around 9:20am about your
1413 coffee break and at around 11:50am about lunch.  The variable
1414 @code{appt-message-warning-time} specifies how many minutes (default 12)
1415 in advance to warn you.  This is a default warning time.  Each
1416 appointment can specify a different warning time by adding a piece
1417 matching @code{appt-warning-time-regexp} (see that variable's
1418 documentation for details).
1420   You can write times in am/pm style (with @samp{12:00am} standing
1421 for midnight and @samp{12:00pm} standing for noon), or 24-hour
1422 European/military style.  You need not be consistent; your diary file
1423 can have a mixture of the two styles.  Times must be at the beginning of
1424 diary entries if they are to be recognized.
1426 @vindex appt-display-diary
1427   Emacs updates the appointments list from the diary file
1428 automatically just after midnight.  You can force an update at any
1429 time by re-enabling appointment notification.  Both these actions also
1430 display the day's diary buffer, unless you set
1431 @code{appt-display-diary} to @code{nil}.  The appointments list is
1432 also updated whenever the diary file (or a file it includes; see
1433 @iftex
1434 @ref{Fancy Diary Display,,, emacs-xtra, Specialized Emacs Features})
1435 @end iftex
1436 @ifnottex
1437 @ref{Fancy Diary Display})
1438 @end ifnottex
1439 is saved.
1441 @findex appt-add
1442 @findex appt-delete
1443 @cindex alarm clock
1444   You can also use the appointment notification facility like an alarm
1445 clock.  The command @kbd{M-x appt-add} adds entries to the appointment
1446 list without affecting your diary file.  You delete entries from the
1447 appointment list with @kbd{M-x appt-delete}.
1449 @node Importing Diary
1450 @section Importing and Exporting Diary Entries
1452   You can transfer diary entries between Emacs diary files and a
1453 variety of other formats.
1455 @vindex diary-outlook-formats
1456   You can import diary entries from Outlook-generated appointment
1457 messages.  While viewing such a message in Rmail or Gnus, do @kbd{M-x
1458 diary-from-outlook} to import the entry.  You can make this command
1459 recognize additional appointment message formats by customizing the
1460 variable @code{diary-outlook-formats}.  Other mail clients can set
1461 @code{diary-from-outlook-function} to an appropriate value.
1463 @c FIXME the name of the RFC is hardly very relevant.
1464 @cindex iCalendar support
1465   The icalendar package allows you to transfer data between your Emacs
1466 diary file and iCalendar files, which are defined in @cite{RFC
1467 2445---Internet Calendaring and Scheduling Core Object Specification
1468 (iCalendar)} (as well as the earlier vCalendar format).
1470 @c  Importing works for ordinary (i.e., non-recurring) events, but
1471 @c (at present) may not work correctly (if at all) for recurring events.
1472 @c Exporting of diary files into iCalendar files should work correctly
1473 @c for most diary entries.  This feature is a work in progress, so the
1474 @c commands may evolve in future.
1476 @findex icalendar-import-buffer
1477   The command @code{icalendar-import-buffer} extracts
1478 iCalendar data from the current buffer and adds it to your
1479 diary file.  This function is also suitable for automatic extraction of
1480 iCalendar data; for example with the Rmail mail client one could use:
1482 @example
1483 (add-hook 'rmail-show-message-hook 'icalendar-import-buffer)
1484 @end example
1486 @findex icalendar-import-file
1487   The command @code{icalendar-import-file} imports an iCalendar file
1488 and adds the results to an Emacs diary file.  For example:
1490 @example
1491 (icalendar-import-file "/here/is/calendar.ics"
1492                        "/there/goes/ical-diary")
1493 @end example
1495 @noindent
1496 You can use an @code{#include} directive to add the import file contents
1497 to the main diary file, if these are different files.
1498 @iftex
1499 @xref{Fancy Diary Display,,, emacs-xtra, Specialized Emacs Features}.
1500 @end iftex
1501 @ifnottex
1502 @xref{Fancy Diary Display}.
1503 @end ifnottex
1506 @findex icalendar-export-file, icalendar-export-region
1507   Use @code{icalendar-export-file} to interactively export an entire
1508 Emacs diary file to iCalendar format.  To export only a part of a diary
1509 file, mark the relevant area, and call @code{icalendar-export-region}.
1510 In both cases, Emacs appends the result to the target file.
1512 @node Daylight Saving
1513 @section Daylight Saving Time
1514 @cindex daylight saving time
1516   Emacs understands the difference between standard time and daylight
1517 saving time---the times given for sunrise, sunset, solstices,
1518 equinoxes, and the phases of the moon take that into account.  The rules
1519 for daylight saving time vary from place to place and have also varied
1520 historically from year to year.  To do the job properly, Emacs needs to
1521 know which rules to use.
1523 @vindex calendar-daylight-savings-starts
1524 @vindex calendar-daylight-savings-ends
1525   Some operating systems keep track of the rules that apply to the place
1526 where you are; on these systems, Emacs gets the information it needs
1527 from the system automatically.  If some or all of this information is
1528 missing, Emacs fills in the gaps with the rules currently used in
1529 Cambridge, Massachusetts.  If the resulting rules are not what you want,
1530 you can tell Emacs the rules to use by setting certain variables:
1531 @code{calendar-daylight-savings-starts} and
1532 @code{calendar-daylight-savings-ends}.
1534   These values should be Lisp expressions that refer to the variable
1535 @code{year}, and evaluate to the Gregorian date on which daylight
1536 saving time starts or (respectively) ends, in the form of a list
1537 @code{(@var{month} @var{day} @var{year})}.  The values should be
1538 @code{nil} if your area does not use daylight saving time.
1540   Emacs uses these expressions to determine the starting date of
1541 daylight saving time for the holiday list and for correcting times of
1542 day in the solar and lunar calculations.
1544   The values for Cambridge, Massachusetts are as follows:
1546 @example
1547 (calendar-nth-named-day 2 0 3 year)
1548 (calendar-nth-named-day 1 0 11 year)
1549 @end example
1551 @noindent
1552 That is, the second 0th day (Sunday) of the third month (March) in
1553 the year specified by @code{year}, and the first Sunday of the eleventh month
1554 (November) of that year.  If daylight saving time were
1555 changed to start on October 1, you would set
1556 @code{calendar-daylight-savings-starts} to this:
1558 @example
1559 (list 10 1 year)
1560 @end example
1562   If there is no daylight saving time at your location, or if you want
1563 all times in standard time, set @code{calendar-daylight-savings-starts}
1564 and @code{calendar-daylight-savings-ends} to @code{nil}.
1566 @vindex calendar-daylight-time-offset
1567   The variable @code{calendar-daylight-time-offset} specifies the
1568 difference between daylight saving time and standard time, measured in
1569 minutes.  The value for Cambridge, Massachusetts is 60.
1571 @c @vindex calendar-daylight-savings-starts-time  too long!
1572 @vindex calendar-daylight-savings-ends-time
1573   Finally, the two variables
1574 @code{calendar-daylight-savings-starts-time} and
1575 @code{calendar-daylight-savings-ends-time} specify the number of
1576 minutes after midnight local time when the transition to and from
1577 daylight saving time should occur.  For Cambridge, Massachusetts both
1578 variables' values are 120.
1580 @node Time Intervals
1581 @section Summing Time Intervals
1582 @cindex time intervals, summing
1583 @cindex summing time intervals
1584 @cindex timeclock
1586   The timeclock package adds up time intervals, so you can (for
1587 instance) keep track of how much time you spend working on particular
1588 projects.
1590 @findex timeclock-in
1591 @findex timeclock-out
1592 @findex timeclock-change
1593 @findex timeclock-workday-remaining
1594 @findex timeclock-when-to-leave
1595   Use the @kbd{M-x timeclock-in} command when you start working on a
1596 project, and @kbd{M-x timeclock-out} command when you're done.  Each
1597 time you do this, it adds one time interval to the record of the
1598 project.  You can change to working on a different project with @kbd{M-x
1599 timeclock-change}.
1601   Once you've collected data from a number of time intervals, you can use
1602 @kbd{M-x timeclock-workday-remaining} to see how much time is left to
1603 work today (assuming a typical average of 8 hours a day), and @kbd{M-x
1604 timeclock-when-to-leave} which will calculate when you're done.
1606 @vindex timeclock-modeline-display
1607 @findex timeclock-modeline-display
1608   If you want Emacs to display the amount of time left of your
1609 workday in the mode line, either customize the
1610 @code{timeclock-modeline-display} variable and set its value to
1611 @code{t}, or invoke the @kbd{M-x timeclock-modeline-display} command.
1613 @vindex timeclock-ask-before-exiting
1614   Terminating the current Emacs session might or might not mean that
1615 you have stopped working on the project and, by default, Emacs asks
1616 you.  You can, however, customize the value of the variable
1617 @code{timeclock-ask-before-exiting} to @code{nil} to avoid the question;
1618 then, only an explicit @kbd{M-x timeclock-out} or @kbd{M-x
1619 timeclock-change} will tell Emacs that the current interval is over.
1621 @cindex @file{timelog} file
1622 @vindex timeclock-file
1623 @findex timeclock-reread-log
1624   The timeclock functions work by accumulating the data in a file
1625 called @file{~/.emacs.d/timelog}.  You can specify a
1626 different name for this file by customizing the variable
1627 @code{timeclock-file}.  If you edit the timeclock file manually, or if
1628 you change the value of any of timeclock's customizable variables, you
1629 should run the command @kbd{M-x timeclock-reread-log} to update the
1630 data in Emacs from the file.
1632 @ifnottex
1633 @include cal-xtra.texi
1634 @end ifnottex