Mercurial > emacs
annotate man/calendar.texi @ 60339:3cd3e3cf3529
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-145
(make-text-button): Default button type if not specified
2005-03-02 Miles Bader <miles@gnu.org>
* lisp/button.el (make-text-button): If the user doesn't specify a
type, use the default. Rewrite to use `add-text-properties' and
plist functions.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Wed, 02 Mar 2005 09:12:54 +0000 |
parents | eb947dcafb80 |
children | b41b19cd9812 e4694597cbf4 |
rev | line source |
---|---|
25829 | 1 @c This is part of the Emacs manual. |
39287 | 2 @c Copyright (C) 1985,86,87,93,94,95,1997,2000,2001 Free Software Foundation, Inc. |
25829 | 3 @c See file emacs.texi for copying conditions. |
4 @node Calendar/Diary, Gnus, Dired, Top | |
5 @chapter The Calendar and the Diary | |
6 @cindex calendar | |
7 @findex calendar | |
8 | |
9 Emacs provides the functions of a desk calendar, with a diary of | |
36145
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
10 planned or past events. It also has facilities for managing your |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
11 appointments, and keeping track of how much time you spend working on |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
12 certain projects. |
30794 | 13 |
14 To enter the calendar, type @kbd{M-x calendar}; this displays a | |
15 three-month calendar centered on the current month, with point on the | |
16 current date. With a numeric argument, as in @kbd{C-u M-x calendar}, it | |
17 prompts you for the month and year to be the center of the three-month | |
18 calendar. The calendar uses its own buffer, whose major mode is | |
19 Calendar mode. | |
25829 | 20 |
21 @kbd{Mouse-2} in the calendar brings up a menu of operations on a | |
22 particular date; @kbd{C-Mouse-3} brings up a menu of commonly used | |
23 calendar features that are independent of any particular date. To exit | |
24 the calendar, type @kbd{q}. @xref{Calendar, Customizing the Calendar | |
25 and Diary,, elisp, The Emacs Lisp Reference Manual}, for customization | |
26 information about the calendar and diary. | |
27 | |
28 @menu | |
29 * Calendar Motion:: Moving through the calendar; selecting a date. | |
30 * Scroll Calendar:: Bringing earlier or later months onto the screen. | |
31 * Counting Days:: How many days are there between two dates? | |
32 * General Calendar:: Exiting or recomputing the calendar. | |
33 * LaTeX Calendar:: Print a calendar using LaTeX. | |
34 * Holidays:: Displaying dates of holidays. | |
35 * Sunrise/Sunset:: Displaying local times of sunrise and sunset. | |
36 * Lunar Phases:: Displaying phases of the moon. | |
37 * Other Calendars:: Converting dates to other calendar systems. | |
38 * Diary:: Displaying events from your diary. | |
39 * Appointments:: Reminders when it's time to do something. | |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
40 * iCalendar:: Converting diary events to/from iCalendar format. |
25829 | 41 * Daylight Savings:: How to specify when daylight savings time is active. |
30794 | 42 * Time Intervals:: Keeping track of time intervals. |
25829 | 43 @end menu |
44 | |
45 @node Calendar Motion | |
46 @section Movement in the Calendar | |
47 | |
48 @cindex moving inside the calendar | |
49 Calendar mode lets you move through the calendar in logical units of | |
50 time such as days, weeks, months, and years. If you move outside the | |
51 three months originally displayed, the calendar display ``scrolls'' | |
52 automatically through time to make the selected date visible. Moving to | |
53 a date lets you view its holidays or diary entries, or convert it to other | |
54 calendars; moving longer time periods is also useful simply to scroll the | |
55 calendar. | |
56 | |
57 @menu | |
58 * Calendar Unit Motion:: Moving by days, weeks, months, and years. | |
59 * Move to Beginning or End:: Moving to start/end of weeks, months, and years. | |
60 * Specified Dates:: Moving to the current date or another | |
61 specific date. | |
62 @end menu | |
63 | |
64 @node Calendar Unit Motion | |
65 @subsection Motion by Standard Lengths of Time | |
66 | |
67 The commands for movement in the calendar buffer parallel the | |
68 commands for movement in text. You can move forward and backward by | |
69 days, weeks, months, and years. | |
70 | |
71 @table @kbd | |
72 @item C-f | |
73 Move point one day forward (@code{calendar-forward-day}). | |
74 @item C-b | |
75 Move point one day backward (@code{calendar-backward-day}). | |
76 @item C-n | |
77 Move point one week forward (@code{calendar-forward-week}). | |
78 @item C-p | |
79 Move point one week backward (@code{calendar-backward-week}). | |
80 @item M-@} | |
81 Move point one month forward (@code{calendar-forward-month}). | |
82 @item M-@{ | |
83 Move point one month backward (@code{calendar-backward-month}). | |
84 @item C-x ] | |
85 Move point one year forward (@code{calendar-forward-year}). | |
86 @item C-x [ | |
87 Move point one year backward (@code{calendar-backward-year}). | |
88 @end table | |
89 | |
90 @kindex C-f @r{(Calendar mode)} | |
91 @findex calendar-forward-day | |
92 @kindex C-b @r{(Calendar mode)} | |
93 @findex calendar-backward-day | |
94 @kindex C-n @r{(Calendar mode)} | |
95 @findex calendar-forward-week | |
96 @kindex C-p @r{(Calendar mode)} | |
97 @findex calendar-backward-week | |
98 The day and week commands are natural analogues of the usual Emacs | |
99 commands for moving by characters and by lines. Just as @kbd{C-n} | |
100 usually moves to the same column in the following line, in Calendar | |
101 mode it moves to the same day in the following week. And @kbd{C-p} | |
102 moves to the same day in the previous week. | |
103 | |
104 The arrow keys are equivalent to @kbd{C-f}, @kbd{C-b}, @kbd{C-n} and | |
105 @kbd{C-p}, just as they normally are in other modes. | |
106 | |
107 @kindex M-@} @r{(Calendar mode)} | |
108 @findex calendar-forward-month | |
109 @kindex M-@{ @r{(Calendar mode)} | |
110 @findex calendar-backward-month | |
111 @kindex C-x ] @r{(Calendar mode)} | |
112 @findex calendar-forward-year | |
113 @kindex C-x [ @r{(Calendar mode)} | |
114 @findex calendar-forward-year | |
115 The commands for motion by months and years work like those for | |
116 weeks, but move a larger distance. The month commands @kbd{M-@}} and | |
117 @kbd{M-@{} move forward or backward by an entire month's time. The | |
118 year commands @kbd{C-x ]} and @w{@kbd{C-x [}} move forward or backward a | |
119 whole year. | |
120 | |
121 The easiest way to remember these commands is to consider months and | |
122 years analogous to paragraphs and pages of text, respectively. But the | |
123 commands themselves are not quite analogous. The ordinary Emacs paragraph | |
124 commands move to the beginning or end of a paragraph, whereas these month | |
125 and year commands move by an entire month or an entire year, which usually | |
126 involves skipping across the end of a month or year. | |
127 | |
128 All these commands accept a numeric argument as a repeat count. | |
129 For convenience, the digit keys and the minus sign specify numeric | |
130 arguments in Calendar mode even without the Meta modifier. For example, | |
131 @kbd{100 C-f} moves point 100 days forward from its present location. | |
132 | |
133 @node Move to Beginning or End | |
134 @subsection Beginning or End of Week, Month or Year | |
135 | |
136 A week (or month, or year) is not just a quantity of days; we think of | |
137 weeks (months, years) as starting on particular dates. So Calendar mode | |
138 provides commands to move to the beginning or end of a week, month or | |
139 year: | |
140 | |
141 @table @kbd | |
142 @kindex C-a @r{(Calendar mode)} | |
143 @findex calendar-beginning-of-week | |
144 @item C-a | |
145 Move point to start of week (@code{calendar-beginning-of-week}). | |
146 @kindex C-e @r{(Calendar mode)} | |
147 @findex calendar-end-of-week | |
148 @item C-e | |
149 Move point to end of week (@code{calendar-end-of-week}). | |
150 @kindex M-a @r{(Calendar mode)} | |
151 @findex calendar-beginning-of-month | |
152 @item M-a | |
153 Move point to start of month (@code{calendar-beginning-of-month}). | |
154 @kindex M-e @r{(Calendar mode)} | |
155 @findex calendar-end-of-month | |
156 @item M-e | |
157 Move point to end of month (@code{calendar-end-of-month}). | |
158 @kindex M-< @r{(Calendar mode)} | |
159 @findex calendar-beginning-of-year | |
160 @item M-< | |
161 Move point to start of year (@code{calendar-beginning-of-year}). | |
162 @kindex M-> @r{(Calendar mode)} | |
163 @findex calendar-end-of-year | |
164 @item M-> | |
165 Move point to end of year (@code{calendar-end-of-year}). | |
166 @end table | |
167 | |
168 These commands also take numeric arguments as repeat counts, with the | |
169 repeat count indicating how many weeks, months, or years to move | |
170 backward or forward. | |
171 | |
172 @vindex calendar-week-start-day | |
173 @cindex weeks, which day they start on | |
174 @cindex calendar, first day of week | |
175 By default, weeks begin on Sunday. To make them begin on Monday | |
176 instead, set the variable @code{calendar-week-start-day} to 1. | |
177 | |
178 @node Specified Dates | |
179 @subsection Specified Dates | |
180 | |
181 Calendar mode provides commands for moving to a particular date | |
182 specified in various ways. | |
183 | |
184 @table @kbd | |
185 @item g d | |
186 Move point to specified date (@code{calendar-goto-date}). | |
52229
fec3d4a11b70
Edward M. Reingold <reingold@emr.cs.iit.edu>
Glenn Morris <rgm@gnu.org>
parents:
52120
diff
changeset
|
187 @item g D |
fec3d4a11b70
Edward M. Reingold <reingold@emr.cs.iit.edu>
Glenn Morris <rgm@gnu.org>
parents:
52120
diff
changeset
|
188 Move point to specified day of year (@code{calendar-goto-day-of-year}). |
25829 | 189 @item o |
190 Center calendar around specified month (@code{calendar-other-month}). | |
191 @item . | |
192 Move point to today's date (@code{calendar-goto-today}). | |
193 @end table | |
194 | |
195 @kindex g d @r{(Calendar mode)} | |
196 @findex calendar-goto-date | |
197 @kbd{g d} (@code{calendar-goto-date}) prompts for a year, a month, and a day | |
198 of the month, and then moves to that date. Because the calendar includes all | |
199 dates from the beginning of the current era, you must type the year in its | |
200 entirety; that is, type @samp{1990}, not @samp{90}. | |
201 | |
52229
fec3d4a11b70
Edward M. Reingold <reingold@emr.cs.iit.edu>
Glenn Morris <rgm@gnu.org>
parents:
52120
diff
changeset
|
202 @kindex g D @r{(Calendar mode)} |
fec3d4a11b70
Edward M. Reingold <reingold@emr.cs.iit.edu>
Glenn Morris <rgm@gnu.org>
parents:
52120
diff
changeset
|
203 @findex calendar-goto-day-of-year |
fec3d4a11b70
Edward M. Reingold <reingold@emr.cs.iit.edu>
Glenn Morris <rgm@gnu.org>
parents:
52120
diff
changeset
|
204 @kbd{g D} (@code{calendar-goto-day-of-year}) prompts for a year and |
fec3d4a11b70
Edward M. Reingold <reingold@emr.cs.iit.edu>
Glenn Morris <rgm@gnu.org>
parents:
52120
diff
changeset
|
205 day number, and moves to that date. Negative day numbers count backward |
fec3d4a11b70
Edward M. Reingold <reingold@emr.cs.iit.edu>
Glenn Morris <rgm@gnu.org>
parents:
52120
diff
changeset
|
206 from the end of the year. |
fec3d4a11b70
Edward M. Reingold <reingold@emr.cs.iit.edu>
Glenn Morris <rgm@gnu.org>
parents:
52120
diff
changeset
|
207 |
25829 | 208 @kindex o @r{(Calendar mode)} |
209 @findex calendar-other-month | |
210 @kbd{o} (@code{calendar-other-month}) prompts for a month and year, | |
211 then centers the three-month calendar around that month. | |
212 | |
213 @kindex . @r{(Calendar mode)} | |
214 @findex calendar-goto-today | |
215 You can return to today's date with @kbd{.}@: | |
216 (@code{calendar-goto-today}). | |
217 | |
218 @node Scroll Calendar | |
219 @section Scrolling in the Calendar | |
220 | |
221 @cindex scrolling in the calendar | |
38745 | 222 The calendar display scrolls automatically through time when you |
223 move out of the visible portion. You can also scroll it manually. | |
224 Imagine that the calendar window contains a long strip of paper with | |
225 the months on it. Scrolling the calendar means moving the strip | |
226 horizontally, so that new months become visible in the window. | |
25829 | 227 |
228 @table @kbd | |
229 @item C-x < | |
230 Scroll calendar one month forward (@code{scroll-calendar-left}). | |
231 @item C-x > | |
232 Scroll calendar one month backward (@code{scroll-calendar-right}). | |
233 @item C-v | |
234 @itemx @key{NEXT} | |
235 Scroll calendar three months forward | |
236 (@code{scroll-calendar-left-three-months}). | |
237 @item M-v | |
238 @itemx @key{PRIOR} | |
239 Scroll calendar three months backward | |
240 (@code{scroll-calendar-right-three-months}). | |
241 @end table | |
242 | |
243 @kindex C-x < @r{(Calendar mode)} | |
244 @findex scroll-calendar-left | |
245 @kindex C-x > @r{(Calendar mode)} | |
246 @findex scroll-calendar-right | |
247 The most basic calendar scroll commands scroll by one month at a | |
248 time. This means that there are two months of overlap between the | |
249 display before the command and the display after. @kbd{C-x <} scrolls | |
250 the calendar contents one month to the left; that is, it moves the | |
251 display forward in time. @kbd{C-x >} scrolls the contents to the | |
252 right, which moves backwards in time. | |
253 | |
254 @kindex C-v @r{(Calendar mode)} | |
255 @findex scroll-calendar-left-three-months | |
256 @kindex M-v @r{(Calendar mode)} | |
257 @findex scroll-calendar-right-three-months | |
258 The commands @kbd{C-v} and @kbd{M-v} scroll the calendar by an entire | |
259 ``screenful''---three months---in analogy with the usual meaning of | |
260 these commands. @kbd{C-v} makes later dates visible and @kbd{M-v} makes | |
261 earlier dates visible. These commands take a numeric argument as a | |
262 repeat count; in particular, since @kbd{C-u} multiplies the next command | |
263 by four, typing @kbd{C-u C-v} scrolls the calendar forward by a year and | |
264 typing @kbd{C-u M-v} scrolls the calendar backward by a year. | |
265 | |
266 The function keys @key{NEXT} and @key{PRIOR} are equivalent to | |
267 @kbd{C-v} and @kbd{M-v}, just as they are in other modes. | |
268 | |
269 @node Counting Days | |
270 @section Counting Days | |
271 | |
272 @table @kbd | |
273 @item M-= | |
274 Display the number of days in the current region | |
275 (@code{calendar-count-days-region}). | |
276 @end table | |
277 | |
278 @kindex M-= @r{(Calendar mode)} | |
279 @findex calendar-count-days-region | |
280 To determine the number of days in the region, type @kbd{M-=} | |
38870
d44abb4e68b2
Don't use "print" for displaying a message.
Richard M. Stallman <rms@gnu.org>
parents:
38745
diff
changeset
|
281 (@code{calendar-count-days-region}). The numbers of days shown is |
25829 | 282 @emph{inclusive}; that is, it includes the days specified by mark and |
283 point. | |
284 | |
285 @node General Calendar | |
286 @section Miscellaneous Calendar Commands | |
287 | |
288 @table @kbd | |
289 @item p d | |
290 Display day-in-year (@code{calendar-print-day-of-year}). | |
291 @item C-c C-l | |
292 Regenerate the calendar window (@code{redraw-calendar}). | |
293 @item SPC | |
60294
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
294 Scroll the next window up (@code{scroll-other-window}). |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
295 @item DEL |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
296 Scroll the next window down (@code{scroll-other-window-down}). |
25829 | 297 @item q |
298 Exit from calendar (@code{exit-calendar}). | |
299 @end table | |
300 | |
301 @kindex p d @r{(Calendar mode)} | |
302 @cindex day of year | |
303 @findex calendar-print-day-of-year | |
38870
d44abb4e68b2
Don't use "print" for displaying a message.
Richard M. Stallman <rms@gnu.org>
parents:
38745
diff
changeset
|
304 To display the number of days elapsed since the start of the year, or |
25829 | 305 the number of days remaining in the year, type the @kbd{p d} command |
306 (@code{calendar-print-day-of-year}). This displays both of those | |
307 numbers in the echo area. The number of days elapsed includes the | |
308 selected date. The number of days remaining does not include that | |
309 date. | |
310 | |
311 @kindex C-c C-l @r{(Calendar mode)} | |
312 @findex redraw-calendar | |
313 If the calendar window text gets corrupted, type @kbd{C-c C-l} | |
314 (@code{redraw-calendar}) to redraw it. (This can only happen if you use | |
315 non-Calendar-mode editing commands.) | |
316 | |
317 @kindex SPC @r{(Calendar mode)} | |
318 In Calendar mode, you can use @kbd{SPC} (@code{scroll-other-window}) | |
60294
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
319 and @kbd{DEL} (@code{scroll-other-window-down}) to scroll the other |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
320 window up or down, respectively. This is handy when you display a list |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
321 of holidays or diary entries in another window. |
25829 | 322 |
323 @kindex q @r{(Calendar mode)} | |
324 @findex exit-calendar | |
325 To exit from the calendar, type @kbd{q} (@code{exit-calendar}). This | |
326 buries all buffers related to the calendar, selecting other buffers. | |
327 (If a frame contains a dedicated calendar window, exiting from the | |
328 calendar iconifies that frame.) | |
329 | |
330 @node LaTeX Calendar | |
331 @section LaTeX Calendar | |
332 @cindex calendar and La@TeX{} | |
333 | |
334 The Calendar La@TeX{} commands produce a buffer of La@TeX{} code that | |
335 prints as a calendar. Depending on the command you use, the printed | |
336 calendar covers the day, week, month or year that point is in. | |
337 | |
338 @kindex t @r{(Calendar mode)} | |
339 @table @kbd | |
340 @item t m | |
341 Generate a one-month calendar (@code{cal-tex-cursor-month}). | |
342 @item t M | |
343 Generate a sideways-printing one-month calendar | |
344 (@code{cal-tex-cursor-month-landscape}). | |
345 @item t d | |
346 Generate a one-day calendar | |
347 (@code{cal-tex-cursor-day}). | |
348 @item t w 1 | |
349 Generate a one-page calendar for one week | |
350 (@code{cal-tex-cursor-week}). | |
351 @item t w 2 | |
352 Generate a two-page calendar for one week | |
353 (@code{cal-tex-cursor-week2}). | |
354 @item t w 3 | |
355 Generate an ISO-style calendar for one week | |
356 (@code{cal-tex-cursor-week-iso}). | |
357 @item t w 4 | |
358 Generate a calendar for one Monday-starting week | |
359 (@code{cal-tex-cursor-week-monday}). | |
360 @item t f w | |
361 Generate a Filofax-style two-weeks-at-a-glance calendar | |
362 (@code{cal-tex-cursor-filofax-2week}). | |
363 @item t f W | |
364 Generate a Filofax-style one-week-at-a-glance calendar | |
365 (@code{cal-tex-cursor-filofax-week}). | |
366 @item t y | |
367 Generate a calendar for one year | |
368 (@code{cal-tex-cursor-year}). | |
369 @item t Y | |
370 Generate a sideways-printing calendar for one year | |
371 (@code{cal-tex-cursor-year-landscape}). | |
372 @item t f y | |
373 Generate a Filofax-style calendar for one year | |
374 (@code{cal-tex-cursor-filofax-year}). | |
375 @end table | |
376 | |
377 Some of these commands print the calendar sideways (in ``landscape | |
378 mode''), so it can be wider than it is long. Some of them use Filofax | |
379 paper size (3.75in x 6.75in). All of these commands accept a prefix | |
380 argument which specifies how many days, weeks, months or years to print | |
381 (starting always with the selected one). | |
382 | |
383 If the variable @code{cal-tex-holidays} is non-@code{nil} (the default), | |
384 then the printed calendars show the holidays in @code{calendar-holidays}. | |
385 If the variable @code{cal-tex-diary} is non-@code{nil} (the default is | |
386 @code{nil}), diary entries are included also (in weekly and monthly | |
387 calendars only). If the variable @code{cal-tex-rules} is non-@code{nil} | |
36145
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
388 (the default is @code{nil}), the calendar displays ruled pages |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
389 in styles that have sufficient room. |
25829 | 390 |
391 @node Holidays | |
392 @section Holidays | |
393 @cindex holidays | |
394 | |
395 The Emacs calendar knows about all major and many minor holidays, | |
396 and can display them. | |
397 | |
398 @table @kbd | |
399 @item h | |
400 Display holidays for the selected date | |
401 (@code{calendar-cursor-holidays}). | |
402 @item Mouse-2 Holidays | |
403 Display any holidays for the date you click on. | |
404 @item x | |
405 Mark holidays in the calendar window (@code{mark-calendar-holidays}). | |
406 @item u | |
407 Unmark calendar window (@code{calendar-unmark}). | |
408 @item a | |
409 List all holidays for the displayed three months in another window | |
410 (@code{list-calendar-holidays}). | |
411 @item M-x holidays | |
412 List all holidays for three months around today's date in another | |
413 window. | |
414 @item M-x list-holidays | |
415 List holidays in another window for a specified range of years. | |
416 @end table | |
417 | |
418 @kindex h @r{(Calendar mode)} | |
419 @findex calendar-cursor-holidays | |
420 To see if any holidays fall on a given date, position point on that | |
421 date in the calendar window and use the @kbd{h} command. Alternatively, | |
422 click on that date with @kbd{Mouse-2} and then choose @kbd{Holidays} | |
423 from the menu that appears. Either way, this displays the holidays for | |
424 that date, in the echo area if they fit there, otherwise in a separate | |
425 window. | |
426 | |
427 @kindex x @r{(Calendar mode)} | |
428 @findex mark-calendar-holidays | |
429 @kindex u @r{(Calendar mode)} | |
430 @findex calendar-unmark | |
431 To view the distribution of holidays for all the dates shown in the | |
432 calendar, use the @kbd{x} command. This displays the dates that are | |
433 holidays in a different face (or places a @samp{*} after these dates, if | |
434 display with multiple faces is not available). The command applies both | |
435 to the currently visible months and to other months that subsequently | |
436 become visible by scrolling. To turn marking off and erase the current | |
437 marks, type @kbd{u}, which also erases any diary marks (@pxref{Diary}). | |
438 | |
439 @kindex a @r{(Calendar mode)} | |
440 @findex list-calendar-holidays | |
441 To get even more detailed information, use the @kbd{a} command, which | |
442 displays a separate buffer containing a list of all holidays in the | |
60294
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
443 current three-month range. You can use @key{SPC} and @key{DEL} in the |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
444 calendar window to scroll that list up and down, respectively. |
25829 | 445 |
446 @findex holidays | |
447 The command @kbd{M-x holidays} displays the list of holidays for the | |
448 current month and the preceding and succeeding months; this works even | |
449 if you don't have a calendar window. If you want the list of holidays | |
450 centered around a different month, use @kbd{C-u M-x holidays}, which | |
451 prompts for the month and year. | |
452 | |
453 The holidays known to Emacs include United States holidays and the | |
37142
e107572ba2dd
Undo last commit by John Wiegley.
Gerd Moellmann <gerd@gnu.org>
parents:
36909
diff
changeset
|
454 major Christian, Jewish, and Islamic holidays; also the solstices and |
e107572ba2dd
Undo last commit by John Wiegley.
Gerd Moellmann <gerd@gnu.org>
parents:
36909
diff
changeset
|
455 equinoxes. |
25829 | 456 |
457 @findex list-holidays | |
458 The command @kbd{M-x list-holidays} displays the list of holidays for | |
459 a range of years. This function asks you for the starting and stopping | |
460 years, and allows you to choose all the holidays or one of several | |
461 categories of holidays. You can use this command even if you don't have | |
462 a calendar window. | |
463 | |
464 The dates used by Emacs for holidays are based on @emph{current | |
465 practice}, not historical fact. Historically, for instance, the start | |
466 of daylight savings time and even its existence have varied from year to | |
467 year, but present United States law mandates that daylight savings time | |
468 begins on the first Sunday in April. When the daylight savings rules | |
469 are set up for the United States, Emacs always uses the present | |
470 definition, even though it is wrong for some prior years. | |
471 | |
472 @node Sunrise/Sunset | |
473 @section Times of Sunrise and Sunset | |
474 @cindex sunrise and sunset | |
475 | |
476 Special calendar commands can tell you, to within a minute or two, the | |
477 times of sunrise and sunset for any date. | |
478 | |
479 @table @kbd | |
480 @item S | |
481 Display times of sunrise and sunset for the selected date | |
482 (@code{calendar-sunrise-sunset}). | |
37709
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
483 @item Mouse-2 Sunrise/sunset |
25829 | 484 Display times of sunrise and sunset for the date you click on. |
485 @item M-x sunrise-sunset | |
486 Display times of sunrise and sunset for today's date. | |
487 @item C-u M-x sunrise-sunset | |
488 Display times of sunrise and sunset for a specified date. | |
489 @end table | |
490 | |
491 @kindex S @r{(Calendar mode)} | |
492 @findex calendar-sunrise-sunset | |
493 @findex sunrise-sunset | |
494 Within the calendar, to display the @emph{local times} of sunrise and | |
495 sunset in the echo area, move point to the date you want, and type | |
496 @kbd{S}. Alternatively, click @kbd{Mouse-2} on the date, then choose | |
37709
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
497 @samp{Sunrise/sunset} from the menu that appears. The command @kbd{M-x |
25829 | 498 sunrise-sunset} is available outside the calendar to display this |
499 information for today's date or a specified date. To specify a date | |
500 other than today, use @kbd{C-u M-x sunrise-sunset}, which prompts for | |
501 the year, month, and day. | |
502 | |
503 You can display the times of sunrise and sunset for any location and | |
504 any date with @kbd{C-u C-u M-x sunrise-sunset}. This asks you for a | |
505 longitude, latitude, number of minutes difference from Coordinated | |
506 Universal Time, and date, and then tells you the times of sunrise and | |
507 sunset for that location on that date. | |
508 | |
509 Because the times of sunrise and sunset depend on the location on | |
510 earth, you need to tell Emacs your latitude, longitude, and location | |
511 name before using these commands. Here is an example of what to set: | |
512 | |
513 @vindex calendar-location-name | |
514 @vindex calendar-longitude | |
515 @vindex calendar-latitude | |
516 @example | |
517 (setq calendar-latitude 40.1) | |
518 (setq calendar-longitude -88.2) | |
519 (setq calendar-location-name "Urbana, IL") | |
520 @end example | |
521 | |
522 @noindent | |
523 Use one decimal place in the values of @code{calendar-latitude} and | |
524 @code{calendar-longitude}. | |
525 | |
526 Your time zone also affects the local time of sunrise and sunset. | |
527 Emacs usually gets time zone information from the operating system, but | |
528 if these values are not what you want (or if the operating system does | |
529 not supply them), you must set them yourself. Here is an example: | |
530 | |
531 @vindex calendar-time-zone | |
532 @vindex calendar-standard-time-zone-name | |
533 @vindex calendar-daylight-time-zone-name | |
534 @example | |
535 (setq calendar-time-zone -360) | |
536 (setq calendar-standard-time-zone-name "CST") | |
537 (setq calendar-daylight-time-zone-name "CDT") | |
538 @end example | |
539 | |
540 @noindent | |
541 The value of @code{calendar-time-zone} is the number of minutes | |
542 difference between your local standard time and Coordinated Universal | |
543 Time (Greenwich time). The values of | |
544 @code{calendar-standard-time-zone-name} and | |
545 @code{calendar-daylight-time-zone-name} are the abbreviations used in | |
546 your time zone. Emacs displays the times of sunrise and sunset | |
547 @emph{corrected for daylight savings time}. @xref{Daylight Savings}, | |
548 for how daylight savings time is determined. | |
549 | |
550 As a user, you might find it convenient to set the calendar location | |
551 variables for your usual physical location in your @file{.emacs} file. | |
552 And when you install Emacs on a machine, you can create a | |
553 @file{default.el} file which sets them properly for the typical location | |
554 of most users of that machine. @xref{Init File}. | |
555 | |
556 @node Lunar Phases | |
557 @section Phases of the Moon | |
558 @cindex phases of the moon | |
559 @cindex moon, phases of | |
560 | |
561 These calendar commands display the dates and times of the phases of | |
562 the moon (new moon, first quarter, full moon, last quarter). This | |
563 feature is useful for debugging problems that ``depend on the phase of | |
564 the moon.'' | |
565 | |
566 @table @kbd | |
567 @item M | |
568 Display the dates and times for all the quarters of the moon for the | |
569 three-month period shown (@code{calendar-phases-of-moon}). | |
570 @item M-x phases-of-moon | |
571 Display dates and times of the quarters of the moon for three months around | |
572 today's date. | |
573 @end table | |
574 | |
575 @kindex M @r{(Calendar mode)} | |
576 @findex calendar-phases-of-moon | |
577 Within the calendar, use the @kbd{M} command to display a separate | |
578 buffer of the phases of the moon for the current three-month range. The | |
579 dates and times listed are accurate to within a few minutes. | |
580 | |
581 @findex phases-of-moon | |
582 Outside the calendar, use the command @kbd{M-x phases-of-moon} to | |
583 display the list of the phases of the moon for the current month and the | |
584 preceding and succeeding months. For information about a different | |
585 month, use @kbd{C-u M-x phases-of-moon}, which prompts for the month and | |
586 year. | |
587 | |
588 The dates and times given for the phases of the moon are given in | |
589 local time (corrected for daylight savings, when appropriate); but if | |
590 the variable @code{calendar-time-zone} is void, Coordinated Universal | |
591 Time (the Greenwich time zone) is used. @xref{Daylight Savings}. | |
592 | |
593 @node Other Calendars | |
594 @section Conversion To and From Other Calendars | |
595 | |
596 @cindex Gregorian calendar | |
597 The Emacs calendar displayed is @emph{always} the Gregorian calendar, | |
598 sometimes called the ``new style'' calendar, which is used in most of | |
599 the world today. However, this calendar did not exist before the | |
600 sixteenth century and was not widely used before the eighteenth century; | |
601 it did not fully displace the Julian calendar and gain universal | |
602 acceptance until the early twentieth century. The Emacs calendar can | |
603 display any month since January, year 1 of the current era, but the | |
604 calendar displayed is the Gregorian, even for a date at which the | |
605 Gregorian calendar did not exist. | |
606 | |
607 While Emacs cannot display other calendars, it can convert dates to | |
608 and from several other calendars. | |
609 | |
610 @menu | |
611 * Calendar Systems:: The calendars Emacs understands | |
612 (aside from Gregorian). | |
613 * To Other Calendar:: Converting the selected date to various calendars. | |
614 * From Other Calendar:: Moving to a date specified in another calendar. | |
615 * Mayan Calendar:: Moving to a date specified in a Mayan calendar. | |
616 @end menu | |
617 | |
618 @node Calendar Systems | |
619 @subsection Supported Calendar Systems | |
620 | |
621 @cindex ISO commercial calendar | |
622 The ISO commercial calendar is used largely in Europe. | |
623 | |
624 @cindex Julian calendar | |
625 The Julian calendar, named after Julius Caesar, was the one used in Europe | |
626 throughout medieval times, and in many countries up until the nineteenth | |
627 century. | |
628 | |
629 @cindex Julian day numbers | |
630 @cindex astronomical day numbers | |
631 Astronomers use a simple counting of days elapsed since noon, Monday, | |
632 January 1, 4713 B.C. on the Julian calendar. The number of days elapsed | |
36263
11db0318031d
Remove redundant index entries.
Eli Zaretskii <eliz@gnu.org>
parents:
36145
diff
changeset
|
633 is called the @dfn{Julian day number} or the @dfn{Astronomical day number}. |
25829 | 634 |
635 @cindex Hebrew calendar | |
636 The Hebrew calendar is used by tradition in the Jewish religion. The | |
637 Emacs calendar program uses the Hebrew calendar to determine the dates | |
638 of Jewish holidays. Hebrew calendar dates begin and end at sunset. | |
639 | |
640 @cindex Islamic calendar | |
641 The Islamic calendar is used in many predominantly Islamic countries. | |
642 Emacs uses it to determine the dates of Islamic holidays. There is no | |
643 universal agreement in the Islamic world about the calendar; Emacs uses | |
644 a widely accepted version, but the precise dates of Islamic holidays | |
645 often depend on proclamation by religious authorities, not on | |
646 calculations. As a consequence, the actual dates of observance can vary | |
647 slightly from the dates computed by Emacs. Islamic calendar dates begin | |
648 and end at sunset. | |
649 | |
650 @cindex French Revolutionary calendar | |
651 The French Revolutionary calendar was created by the Jacobins after the 1789 | |
652 revolution, to represent a more secular and nature-based view of the annual | |
653 cycle, and to install a 10-day week in a rationalization measure similar to | |
654 the metric system. The French government officially abandoned this | |
655 calendar at the end of 1805. | |
656 | |
657 @cindex Mayan calendar | |
658 The Maya of Central America used three separate, overlapping calendar | |
659 systems, the @emph{long count}, the @emph{tzolkin}, and the @emph{haab}. | |
660 Emacs knows about all three of these calendars. Experts dispute the | |
661 exact correlation between the Mayan calendar and our calendar; Emacs uses the | |
662 Goodman-Martinez-Thompson correlation in its calculations. | |
663 | |
664 @cindex Coptic calendar | |
665 @cindex Ethiopic calendar | |
666 The Copts use a calendar based on the ancient Egyptian solar calendar. | |
667 Their calendar consists of twelve 30-day months followed by an extra | |
668 five-day period. Once every fourth year they add a leap day to this | |
669 extra period to make it six days. The Ethiopic calendar is identical in | |
670 structure, but has different year numbers and month names. | |
671 | |
672 @cindex Persian calendar | |
673 The Persians use a solar calendar based on a design of Omar Khayyam. | |
674 Their calendar consists of twelve months of which the first six have 31 | |
675 days, the next five have 30 days, and the last has 29 in ordinary years | |
676 and 30 in leap years. Leap years occur in a complicated pattern every | |
677 four or five years. | |
678 | |
679 @cindex Chinese calendar | |
680 The Chinese calendar is a complicated system of lunar months arranged | |
681 into solar years. The years go in cycles of sixty, each year containing | |
682 either twelve months in an ordinary year or thirteen months in a leap | |
683 year; each month has either 29 or 30 days. Years, ordinary months, and | |
684 days are named by combining one of ten ``celestial stems'' with one of | |
685 twelve ``terrestrial branches'' for a total of sixty names that are | |
686 repeated in a cycle of sixty. | |
687 | |
688 @node To Other Calendar | |
689 @subsection Converting To Other Calendars | |
690 | |
691 The following commands describe the selected date (the date at point) | |
692 in various other calendar systems: | |
693 | |
694 @table @kbd | |
37709
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
695 @item Mouse-2 Other calendars |
25829 | 696 Display the date that you click on, expressed in various other calendars. |
697 @kindex p @r{(Calendar mode)} | |
698 @findex calendar-print-iso-date | |
699 @item p c | |
700 Display ISO commercial calendar equivalent for selected day | |
701 (@code{calendar-print-iso-date}). | |
702 @findex calendar-print-julian-date | |
703 @item p j | |
704 Display Julian date for selected day (@code{calendar-print-julian-date}). | |
705 @findex calendar-print-astro-day-number | |
706 @item p a | |
707 Display astronomical (Julian) day number for selected day | |
708 (@code{calendar-print-astro-day-number}). | |
709 @findex calendar-print-hebrew-date | |
710 @item p h | |
711 Display Hebrew date for selected day (@code{calendar-print-hebrew-date}). | |
712 @findex calendar-print-islamic-date | |
713 @item p i | |
714 Display Islamic date for selected day (@code{calendar-print-islamic-date}). | |
715 @findex calendar-print-french-date | |
716 @item p f | |
717 Display French Revolutionary date for selected day | |
718 (@code{calendar-print-french-date}). | |
719 @findex calendar-print-chinese-date | |
720 @item p C | |
721 Display Chinese date for selected day | |
722 (@code{calendar-print-chinese-date}). | |
723 @findex calendar-print-coptic-date | |
724 @item p k | |
725 Display Coptic date for selected day | |
726 (@code{calendar-print-coptic-date}). | |
727 @findex calendar-print-ethiopic-date | |
728 @item p e | |
729 Display Ethiopic date for selected day | |
730 (@code{calendar-print-ethiopic-date}). | |
731 @findex calendar-print-persian-date | |
732 @item p p | |
733 Display Persian date for selected day | |
734 (@code{calendar-print-persian-date}). | |
735 @findex calendar-print-mayan-date | |
736 @item p m | |
737 Display Mayan date for selected day (@code{calendar-print-mayan-date}). | |
738 @end table | |
739 | |
740 If you are using X, the easiest way to translate a date into other | |
741 calendars is to click on it with @kbd{Mouse-2}, then choose @kbd{Other | |
37709
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
742 calendars} from the menu that appears. This displays the equivalent |
25829 | 743 forms of the date in all the calendars Emacs understands, in the form of |
744 a menu. (Choosing an alternative from this menu doesn't actually do | |
745 anything---the menu is used only for display.) | |
746 | |
37709
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
747 Otherwise, move point to the date you want to convert, then type the |
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
748 appropriate command starting with @kbd{p} from the table above. The |
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
749 prefix @kbd{p} is a mnemonic for ``print,'' since Emacs ``prints'' the |
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
750 equivalent date in the echo area. |
25829 | 751 |
752 @node From Other Calendar | |
753 @subsection Converting From Other Calendars | |
754 | |
755 You can use the other supported calendars to specify a date to move | |
756 to. This section describes the commands for doing this using calendars | |
757 other than Mayan; for the Mayan calendar, see the following section. | |
758 | |
759 @kindex g @var{char} @r{(Calendar mode)} | |
760 @findex calendar-goto-iso-date | |
57322
669cfc393253
From Emilio C. Lopes <eclig@gmx.net>:
Glenn Morris <rgm@gnu.org>
parents:
56279
diff
changeset
|
761 @findex calendar-goto-iso-week |
25829 | 762 @findex calendar-goto-julian-date |
763 @findex calendar-goto-astro-day-number | |
764 @findex calendar-goto-hebrew-date | |
765 @findex calendar-goto-islamic-date | |
766 @findex calendar-goto-french-date | |
767 @findex calendar-goto-chinese-date | |
768 @findex calendar-goto-persian-date | |
769 @findex calendar-goto-coptic-date | |
770 @findex calendar-goto-ethiopic-date | |
771 @table @kbd | |
772 @item g c | |
773 Move to a date specified in the ISO commercial calendar | |
774 (@code{calendar-goto-iso-date}). | |
57322
669cfc393253
From Emilio C. Lopes <eclig@gmx.net>:
Glenn Morris <rgm@gnu.org>
parents:
56279
diff
changeset
|
775 @item g w |
669cfc393253
From Emilio C. Lopes <eclig@gmx.net>:
Glenn Morris <rgm@gnu.org>
parents:
56279
diff
changeset
|
776 Move to a week specified in the ISO commercial calendar |
669cfc393253
From Emilio C. Lopes <eclig@gmx.net>:
Glenn Morris <rgm@gnu.org>
parents:
56279
diff
changeset
|
777 (@code{calendar-goto-iso-week}). |
25829 | 778 @item g j |
779 Move to a date specified in the Julian calendar | |
780 (@code{calendar-goto-julian-date}). | |
781 @item g a | |
38156 | 782 Move to a date specified with an astronomical (Julian) day number |
25829 | 783 (@code{calendar-goto-astro-day-number}). |
784 @item g h | |
785 Move to a date specified in the Hebrew calendar | |
786 (@code{calendar-goto-hebrew-date}). | |
787 @item g i | |
788 Move to a date specified in the Islamic calendar | |
789 (@code{calendar-goto-islamic-date}). | |
790 @item g f | |
791 Move to a date specified in the French Revolutionary calendar | |
792 (@code{calendar-goto-french-date}). | |
793 @item g C | |
794 Move to a date specified in the Chinese calendar | |
795 (@code{calendar-goto-chinese-date}). | |
796 @item g p | |
797 Move to a date specified in the Persian calendar | |
798 (@code{calendar-goto-persian-date}). | |
799 @item g k | |
800 Move to a date specified in the Coptic calendar | |
801 (@code{calendar-goto-coptic-date}). | |
802 @item g e | |
803 Move to a date specified in the Ethiopic calendar | |
804 (@code{calendar-goto-ethiopic-date}). | |
805 @end table | |
806 | |
807 These commands ask you for a date on the other calendar, move point to | |
808 the Gregorian calendar date equivalent to that date, and display the | |
809 other calendar's date in the echo area. Emacs uses strict completion | |
810 (@pxref{Completion}) whenever it asks you to type a month name, so you | |
37142
e107572ba2dd
Undo last commit by John Wiegley.
Gerd Moellmann <gerd@gnu.org>
parents:
36909
diff
changeset
|
811 don't have to worry about the spelling of Hebrew, Islamic, or French names. |
25829 | 812 |
813 @findex list-yahrzeit-dates | |
814 @cindex yahrzeits | |
815 One common question concerning the Hebrew calendar is the computation | |
816 of the anniversary of a date of death, called a ``yahrzeit.'' The Emacs | |
817 calendar includes a facility for such calculations. If you are in the | |
818 calendar, the command @kbd{M-x list-yahrzeit-dates} asks you for a | |
819 range of years and then displays a list of the yahrzeit dates for those | |
820 years for the date given by point. If you are not in the calendar, | |
821 this command first asks you for the date of death and the range of | |
822 years, and then displays the list of yahrzeit dates. | |
823 | |
824 @node Mayan Calendar | |
825 @subsection Converting from the Mayan Calendar | |
826 | |
827 Here are the commands to select dates based on the Mayan calendar: | |
828 | |
829 @table @kbd | |
830 @item g m l | |
831 Move to a date specified by the long count calendar | |
832 (@code{calendar-goto-mayan-long-count-date}). | |
833 @item g m n t | |
834 Move to the next occurrence of a place in the | |
835 tzolkin calendar (@code{calendar-next-tzolkin-date}). | |
836 @item g m p t | |
837 Move to the previous occurrence of a place in the | |
838 tzolkin calendar (@code{calendar-previous-tzolkin-date}). | |
839 @item g m n h | |
840 Move to the next occurrence of a place in the | |
841 haab calendar (@code{calendar-next-haab-date}). | |
842 @item g m p h | |
843 Move to the previous occurrence of a place in the | |
844 haab calendar (@code{calendar-previous-haab-date}). | |
845 @item g m n c | |
846 Move to the next occurrence of a place in the | |
847 calendar round (@code{calendar-next-calendar-round-date}). | |
848 @item g m p c | |
849 Move to the previous occurrence of a place in the | |
850 calendar round (@code{calendar-previous-calendar-round-date}). | |
851 @end table | |
852 | |
853 @cindex Mayan long count | |
854 To understand these commands, you need to understand the Mayan calendars. | |
855 The @dfn{long count} is a counting of days with these units: | |
856 | |
857 @display | |
858 1 kin = 1 day@ @ @ 1 uinal = 20 kin@ @ @ 1 tun = 18 uinal | |
859 1 katun = 20 tun@ @ @ 1 baktun = 20 katun | |
860 @end display | |
861 | |
862 @kindex g m @r{(Calendar mode)} | |
863 @findex calendar-goto-mayan-long-count-date | |
864 @noindent | |
865 Thus, the long count date 12.16.11.16.6 means 12 baktun, 16 katun, 11 | |
866 tun, 16 uinal, and 6 kin. The Emacs calendar can handle Mayan long | |
60294
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
867 count dates as early as 7.17.18.13.3, but no earlier. When you use the |
25829 | 868 @kbd{g m l} command, type the Mayan long count date with the baktun, |
869 katun, tun, uinal, and kin separated by periods. | |
870 | |
871 @findex calendar-previous-tzolkin-date | |
872 @findex calendar-next-tzolkin-date | |
873 @cindex Mayan tzolkin calendar | |
874 The Mayan tzolkin calendar is a cycle of 260 days formed by a pair of | |
875 independent cycles of 13 and 20 days. Since this cycle repeats | |
876 endlessly, Emacs provides commands to move backward and forward to the | |
877 previous or next point in the cycle. Type @kbd{g m p t} to go to the | |
878 previous tzolkin date; Emacs asks you for a tzolkin date and moves point | |
879 to the previous occurrence of that date. Similarly, type @kbd{g m n t} | |
880 to go to the next occurrence of a tzolkin date. | |
881 | |
882 @findex calendar-previous-haab-date | |
883 @findex calendar-next-haab-date | |
884 @cindex Mayan haab calendar | |
885 The Mayan haab calendar is a cycle of 365 days arranged as 18 months | |
886 of 20 days each, followed a 5-day monthless period. Like the tzolkin | |
887 cycle, this cycle repeats endlessly, and there are commands to move | |
888 backward and forward to the previous or next point in the cycle. Type | |
889 @kbd{g m p h} to go to the previous haab date; Emacs asks you for a haab | |
890 date and moves point to the previous occurrence of that date. | |
891 Similarly, type @kbd{g m n h} to go to the next occurrence of a haab | |
892 date. | |
893 | |
894 @c This is omitted because it is too long for smallbook format. | |
895 @c @findex calendar-previous-calendar-round-date | |
896 @findex calendar-next-calendar-round-date | |
897 @cindex Mayan calendar round | |
898 The Maya also used the combination of the tzolkin date and the haab | |
899 date. This combination is a cycle of about 52 years called a | |
900 @emph{calendar round}. If you type @kbd{g m p c}, Emacs asks you for | |
901 both a haab and a tzolkin date and then moves point to the previous | |
902 occurrence of that combination. Use @kbd{g m n c} to move point to the | |
903 next occurrence of a combination. These commands signal an error if the | |
904 haab/tzolkin date combination you have typed is impossible. | |
905 | |
906 Emacs uses strict completion (@pxref{Strict Completion}) whenever it | |
907 asks you to type a Mayan name, so you don't have to worry about | |
908 spelling. | |
909 | |
910 @node Diary | |
911 @section The Diary | |
912 @cindex diary | |
913 | |
914 The Emacs diary keeps track of appointments or other events on a daily | |
915 basis, in conjunction with the calendar. To use the diary feature, you | |
916 must first create a @dfn{diary file} containing a list of events and | |
917 their dates. Then Emacs can automatically pick out and display the | |
918 events for today, for the immediate future, or for any specified | |
919 date. | |
920 | |
921 By default, Emacs uses @file{~/diary} as the diary file. This is the | |
922 same file that the @code{calendar} utility uses. A sample | |
923 @file{~/diary} file is: | |
924 | |
925 @example | |
926 12/22/1988 Twentieth wedding anniversary!! | |
927 &1/1. Happy New Year! | |
928 10/22 Ruth's birthday. | |
929 * 21, *: Payday | |
930 Tuesday--weekly meeting with grad students at 10am | |
931 Supowit, Shen, Bitner, and Kapoor to attend. | |
932 1/13/89 Friday the thirteenth!! | |
933 &thu 4pm squash game with Lloyd. | |
934 mar 16 Dad's birthday | |
935 April 15, 1989 Income tax due. | |
936 &* 15 time cards due. | |
937 @end example | |
938 | |
939 @noindent | |
940 This example uses extra spaces to align the event descriptions of most | |
941 of the entries. Such formatting is purely a matter of taste. | |
942 | |
943 Although you probably will start by creating a diary manually, Emacs | |
944 provides a number of commands to let you view, add, and change diary | |
945 entries. | |
946 | |
947 @menu | |
948 * Diary Commands:: Viewing diary entries and associated calendar dates. | |
949 * Format of Diary File:: Entering events in your diary. | |
950 * Date Formats:: Various ways you can specify dates. | |
951 * Adding to Diary:: Commands to create diary entries. | |
952 * Special Diary Entries:: Anniversaries, blocks of dates, cyclic entries, etc. | |
953 @end menu | |
954 | |
955 @node Diary Commands | |
956 @subsection Commands Displaying Diary Entries | |
957 | |
958 Once you have created a @file{~/diary} file, you can use the calendar | |
959 to view it. You can also view today's events outside of Calendar mode. | |
960 | |
961 @table @kbd | |
962 @item d | |
963 Display all diary entries for the selected date | |
964 (@code{view-diary-entries}). | |
965 @item Mouse-2 Diary | |
966 Display all diary entries for the date you click on. | |
967 @item s | |
968 Display the entire diary file (@code{show-all-diary-entries}). | |
969 @item m | |
970 Mark all visible dates that have diary entries | |
971 (@code{mark-diary-entries}). | |
972 @item u | |
973 Unmark the calendar window (@code{calendar-unmark}). | |
974 @item M-x print-diary-entries | |
975 Print hard copy of the diary display as it appears. | |
976 @item M-x diary | |
977 Display all diary entries for today's date. | |
978 @item M-x diary-mail-entries | |
979 Mail yourself email reminders about upcoming diary entries. | |
980 @end table | |
981 | |
982 @kindex d @r{(Calendar mode)} | |
983 @findex view-diary-entries | |
984 Displaying the diary entries with @kbd{d} shows in a separate window | |
985 the diary entries for the selected date in the calendar. The mode line | |
986 of the new window shows the date of the diary entries and any holidays | |
987 that fall on that date. If you specify a numeric argument with @kbd{d}, | |
988 it shows all the diary entries for that many successive days. Thus, | |
989 @kbd{2 d} displays all the entries for the selected date and for the | |
990 following day. | |
991 | |
992 Another way to display the diary entries for a date is to click | |
37709
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
993 @kbd{Mouse-2} on the date, and then choose @kbd{Diary entries} from |
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
994 the menu that appears. |
25829 | 995 |
996 @kindex m @r{(Calendar mode)} | |
997 @findex mark-diary-entries | |
998 To get a broader view of which days are mentioned in the diary, use | |
999 the @kbd{m} command. This displays the dates that have diary entries | |
1000 in a different face (or places a @samp{+} after these dates, if | |
1001 display with multiple faces is not available). The command applies both | |
1002 to the currently visible months and to other months that subsequently | |
1003 become visible by scrolling. To turn marking off and erase the current | |
1004 marks, type @kbd{u}, which also turns off holiday marks | |
1005 (@pxref{Holidays}). | |
1006 | |
1007 @kindex s @r{(Calendar mode)} | |
1008 @findex show-all-diary-entries | |
1009 To see the full diary file, rather than just some of the entries, use | |
1010 the @kbd{s} command. | |
1011 | |
1012 Display of selected diary entries uses the selective display feature | |
1013 to hide entries that don't apply. | |
1014 | |
1015 The diary buffer as you see it is an illusion, so simply printing the | |
1016 buffer does not print what you see on your screen. There is a special | |
1017 command to print hard copy of the diary buffer @emph{as it appears}; | |
1018 this command is @kbd{M-x print-diary-entries}. It sends the data | |
1019 directly to the printer. You can customize it like @code{lpr-region} | |
1020 (@pxref{Hardcopy}). | |
1021 | |
1022 @findex diary | |
1023 The command @kbd{M-x diary} displays the diary entries for the current | |
1024 date, independently of the calendar display, and optionally for the next | |
1025 few days as well; the variable @code{number-of-diary-entries} specifies | |
1026 how many days to include. @xref{Calendar, Customizing the Calendar | |
1027 and Diary,, elisp, The Emacs Lisp Reference Manual}. | |
1028 | |
1029 If you put @code{(diary)} in your @file{.emacs} file, this | |
1030 automatically displays a window with the day's diary entries, when you | |
1031 enter Emacs. The mode line of the displayed window shows the date and | |
1032 any holidays that fall on that date. | |
1033 | |
1034 @findex diary-mail-entries | |
1035 @vindex diary-mail-days | |
1036 Many users like to receive notice of events in their diary as email. | |
1037 To send such mail to yourself, use the command @kbd{M-x | |
1038 diary-mail-entries}. A prefix argument specifies how many days | |
1039 (starting with today) to check; otherwise, the variable | |
1040 @code{diary-mail-days} says how many days. | |
1041 | |
1042 @node Format of Diary File | |
1043 @subsection The Diary File | |
1044 @cindex diary file | |
1045 | |
1046 @vindex diary-file | |
1047 Your @dfn{diary file} is a file that records events associated with | |
1048 particular dates. The name of the diary file is specified by the | |
1049 variable @code{diary-file}; @file{~/diary} is the default. The | |
1050 @code{calendar} utility program supports a subset of the format allowed | |
1051 by the Emacs diary facilities, so you can use that utility to view the | |
1052 diary file, with reasonable results aside from the entries it cannot | |
1053 understand. | |
1054 | |
1055 Each entry in the diary file describes one event and consists of one | |
1056 or more lines. An entry always begins with a date specification at the | |
1057 left margin. The rest of the entry is simply text to describe the | |
1058 event. If the entry has more than one line, then the lines after the | |
1059 first must begin with whitespace to indicate they continue a previous | |
1060 entry. Lines that do not begin with valid dates and do not continue a | |
1061 preceding entry are ignored. | |
1062 | |
1063 You can inhibit the marking of certain diary entries in the calendar | |
1064 window; to do this, insert an ampersand (@samp{&}) at the beginning of | |
1065 the entry, before the date. This has no effect on display of the entry | |
1066 in the diary window; it affects only marks on dates in the calendar | |
1067 window. Nonmarking entries are especially useful for generic entries | |
1068 that would otherwise mark many different dates. | |
1069 | |
1070 If the first line of a diary entry consists only of the date or day | |
1071 name with no following blanks or punctuation, then the diary window | |
1072 display doesn't include that line; only the continuation lines appear. | |
1073 For example, this entry: | |
1074 | |
1075 @example | |
1076 02/11/1989 | |
1077 Bill B. visits Princeton today | |
1078 2pm Cognitive Studies Committee meeting | |
1079 2:30-5:30 Liz at Lawrenceville | |
1080 4:00pm Dentist appt | |
1081 7:30pm Dinner at George's | |
1082 8:00-10:00pm concert | |
1083 @end example | |
1084 | |
1085 @noindent | |
1086 appears in the diary window without the date line at the beginning. | |
1087 This style of entry looks neater when you display just a single day's | |
1088 entries, but can cause confusion if you ask for more than one day's | |
1089 entries. | |
1090 | |
1091 You can edit the diary entries as they appear in the window, but it is | |
1092 important to remember that the buffer displayed contains the @emph{entire} | |
1093 diary file, with portions of it concealed from view. This means, for | |
1094 instance, that the @kbd{C-f} (@code{forward-char}) command can put point | |
1095 at what appears to be the end of the line, but what is in reality the | |
1096 middle of some concealed line. | |
1097 | |
1098 @emph{Be careful when editing the diary entries!} Inserting | |
1099 additional lines or adding/deleting characters in the middle of a | |
1100 visible line cannot cause problems, but editing at the end of a line may | |
1101 not do what you expect. Deleting a line may delete other invisible | |
1102 entries that follow it. Before editing the diary, it is best to display | |
1103 the entire file with @kbd{s} (@code{show-all-diary-entries}). | |
1104 | |
1105 @node Date Formats | |
1106 @subsection Date Formats | |
1107 | |
1108 Here are some sample diary entries, illustrating different ways of | |
1109 formatting a date. The examples all show dates in American order | |
1110 (month, day, year), but Calendar mode supports European order (day, | |
1111 month, year) as an option. | |
1112 | |
1113 @example | |
1114 4/20/93 Switch-over to new tabulation system | |
1115 apr. 25 Start tabulating annual results | |
1116 4/30 Results for April are due | |
1117 */25 Monthly cycle finishes | |
1118 Friday Don't leave without backing up files | |
1119 @end example | |
1120 | |
1121 The first entry appears only once, on April 20, 1993. The second and | |
1122 third appear every year on the specified dates, and the fourth uses a | |
1123 wildcard (asterisk) for the month, so it appears on the 25th of every | |
1124 month. The final entry appears every week on Friday. | |
1125 | |
1126 You can use just numbers to express a date, as in | |
1127 @samp{@var{month}/@var{day}} or @samp{@var{month}/@var{day}/@var{year}}. | |
1128 This must be followed by a nondigit. In the date itself, @var{month} | |
1129 and @var{day} are numbers of one or two digits. The optional @var{year} | |
1130 is also a number, and may be abbreviated to the last two digits; that | |
1131 is, you can use @samp{11/12/1989} or @samp{11/12/89}. | |
1132 | |
1133 Dates can also have the form @samp{@var{monthname} @var{day}} or | |
1134 @samp{@var{monthname} @var{day}, @var{year}}, where the month's name can | |
52120
d03db605b057
(Date Formats): Document changed behaviour of abbreviations.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
1135 be spelled in full or abbreviated (with or without a period). The |
d03db605b057
(Date Formats): Document changed behaviour of abbreviations.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
1136 preferred abbreviations can be controlled using the variables |
d03db605b057
(Date Formats): Document changed behaviour of abbreviations.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
1137 @code{calendar-abbrev-length}, @code{calendar-month-abbrev-array}, and |
d03db605b057
(Date Formats): Document changed behaviour of abbreviations.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
1138 @code{calendar-day-abbrev-array}. The default is to use the first three |
d03db605b057
(Date Formats): Document changed behaviour of abbreviations.
Glenn Morris <rgm@gnu.org>
parents:
49600
diff
changeset
|
1139 letters of a name as its abbreviation. Case is not significant. |
25829 | 1140 |
1141 A date may be @dfn{generic}; that is, partially unspecified. Then the | |
1142 entry applies to all dates that match the specification. If the date | |
1143 does not contain a year, it is generic and applies to any year. | |
1144 Alternatively, @var{month}, @var{day}, or @var{year} can be a @samp{*}; | |
1145 this matches any month, day, or year, respectively. Thus, a diary entry | |
1146 @samp{3/*/*} matches any day in March of any year; so does @samp{march | |
1147 *}. | |
1148 | |
1149 @vindex european-calendar-style | |
1150 @findex european-calendar | |
1151 @findex american-calendar | |
1152 If you prefer the European style of writing dates---in which the day | |
1153 comes before the month---type @kbd{M-x european-calendar} while in the | |
1154 calendar, or set the variable @code{european-calendar-style} to @code{t} | |
1155 @emph{before} using any calendar or diary command. This mode interprets | |
1156 all dates in the diary in the European manner, and also uses European | |
1157 style for displaying diary dates. (Note that there is no comma after | |
1158 the @var{monthname} in the European style.) To go back to the (default) | |
1159 American style of writing dates, type @kbd{M-x american-calendar}. | |
1160 | |
1161 You can use the name of a day of the week as a generic date which | |
1162 applies to any date falling on that day of the week. You can abbreviate | |
1163 the day of the week to three letters (with or without a period) or spell | |
1164 it in full; case is not significant. | |
1165 | |
1166 @node Adding to Diary | |
1167 @subsection Commands to Add to the Diary | |
1168 | |
1169 While in the calendar, there are several commands to create diary | |
1170 entries: | |
1171 | |
1172 @table @kbd | |
1173 @item i d | |
1174 Add a diary entry for the selected date (@code{insert-diary-entry}). | |
1175 @item i w | |
1176 Add a diary entry for the selected day of the week (@code{insert-weekly-diary-entry}). | |
1177 @item i m | |
1178 Add a diary entry for the selected day of the month (@code{insert-monthly-diary-entry}). | |
1179 @item i y | |
1180 Add a diary entry for the selected day of the year (@code{insert-yearly-diary-entry}). | |
1181 @end table | |
1182 | |
1183 @kindex i d @r{(Calendar mode)} | |
1184 @findex insert-diary-entry | |
1185 You can make a diary entry for a specific date by selecting that date | |
1186 in the calendar window and typing the @kbd{i d} command. This command | |
1187 displays the end of your diary file in another window and inserts the | |
1188 date; you can then type the rest of the diary entry. | |
1189 | |
1190 @kindex i w @r{(Calendar mode)} | |
1191 @findex insert-weekly-diary-entry | |
1192 @kindex i m @r{(Calendar mode)} | |
1193 @findex insert-monthly-diary-entry | |
1194 @kindex i y @r{(Calendar mode)} | |
1195 @findex insert-yearly-diary-entry | |
1196 If you want to make a diary entry that applies to a specific day of | |
1197 the week, select that day of the week (any occurrence will do) and type | |
1198 @kbd{i w}. This inserts the day-of-week as a generic date; you can then | |
1199 type the rest of the diary entry. You can make a monthly diary entry in | |
38125
8bca08a060e8
Proofreading changes from Tim Goodwin <tjg@star.le.ac.uk>.
Eli Zaretskii <eliz@gnu.org>
parents:
37709
diff
changeset
|
1200 the same fashion: select the day of the month, use the @kbd{i m} |
8bca08a060e8
Proofreading changes from Tim Goodwin <tjg@star.le.ac.uk>.
Eli Zaretskii <eliz@gnu.org>
parents:
37709
diff
changeset
|
1201 command, and type the rest of the entry. Similarly, you can insert a |
8bca08a060e8
Proofreading changes from Tim Goodwin <tjg@star.le.ac.uk>.
Eli Zaretskii <eliz@gnu.org>
parents:
37709
diff
changeset
|
1202 yearly diary entry with the @kbd{i y} command. |
25829 | 1203 |
1204 All of the above commands make marking diary entries by default. To | |
1205 make a nonmarking diary entry, give a numeric argument to the command. | |
1206 For example, @kbd{C-u i w} makes a nonmarking weekly diary entry. | |
1207 | |
1208 When you modify the diary file, be sure to save the file before | |
60324
eb947dcafb80
(Adding to Diary): Mention redrawing of calendar window.
Glenn Morris <rgm@gnu.org>
parents:
60294
diff
changeset
|
1209 exiting Emacs. Saving the diary file after using any of the above |
eb947dcafb80
(Adding to Diary): Mention redrawing of calendar window.
Glenn Morris <rgm@gnu.org>
parents:
60294
diff
changeset
|
1210 insertion commands will automatically update the diary marks in the |
eb947dcafb80
(Adding to Diary): Mention redrawing of calendar window.
Glenn Morris <rgm@gnu.org>
parents:
60294
diff
changeset
|
1211 calendar window, if appropriate. You can use the command |
eb947dcafb80
(Adding to Diary): Mention redrawing of calendar window.
Glenn Morris <rgm@gnu.org>
parents:
60294
diff
changeset
|
1212 @code{redraw-calendar} to force an update at any time. |
25829 | 1213 |
1214 @node Special Diary Entries | |
1215 @subsection Special Diary Entries | |
1216 | |
1217 In addition to entries based on calendar dates, the diary file can | |
1218 contain @dfn{sexp entries} for regular events such as anniversaries. | |
1219 These entries are based on Lisp expressions (sexps) that Emacs evaluates | |
1220 as it scans the diary file. Instead of a date, a sexp entry contains | |
1221 @samp{%%} followed by a Lisp expression which must begin and end with | |
1222 parentheses. The Lisp expression determines which dates the entry | |
1223 applies to. | |
1224 | |
1225 Calendar mode provides commands to insert certain commonly used | |
1226 sexp entries: | |
1227 | |
1228 @table @kbd | |
1229 @item i a | |
1230 Add an anniversary diary entry for the selected date | |
1231 (@code{insert-anniversary-diary-entry}). | |
1232 @item i b | |
1233 Add a block diary entry for the current region | |
1234 (@code{insert-block-diary-entry}). | |
1235 @item i c | |
1236 Add a cyclic diary entry starting at the date | |
1237 (@code{insert-cyclic-diary-entry}). | |
1238 @end table | |
1239 | |
1240 @kindex i a @r{(Calendar mode)} | |
1241 @findex insert-anniversary-diary-entry | |
1242 If you want to make a diary entry that applies to the anniversary of a | |
1243 specific date, move point to that date and use the @kbd{i a} command. | |
1244 This displays the end of your diary file in another window and inserts | |
1245 the anniversary description; you can then type the rest of the diary | |
1246 entry. The entry looks like this: | |
1247 | |
1248 @findex diary-anniversary | |
1249 @example | |
1250 %%(diary-anniversary 10 31 1948) Arthur's birthday | |
1251 @end example | |
1252 | |
1253 @noindent | |
1254 This entry applies to October 31 in any year after 1948; @samp{10 31 | |
1255 1948} specifies the date. (If you are using the European calendar | |
1256 style, the month and day are interchanged.) The reason this expression | |
1257 requires a beginning year is that advanced diary functions can use it to | |
1258 calculate the number of elapsed years. | |
1259 | |
1260 A @dfn{block} diary entry applies to a specified range of consecutive | |
1261 dates. Here is a block diary entry that applies to all dates from June | |
1262 24, 1990 through July 10, 1990: | |
1263 | |
1264 @findex diary-block | |
1265 @example | |
1266 %%(diary-block 6 24 1990 7 10 1990) Vacation | |
1267 @end example | |
1268 | |
1269 @noindent | |
1270 The @samp{6 24 1990} indicates the starting date and the @samp{7 10 1990} | |
1271 indicates the stopping date. (Again, if you are using the European calendar | |
1272 style, the month and day are interchanged.) | |
1273 | |
1274 @kindex i b @r{(Calendar mode)} | |
1275 @findex insert-block-diary-entry | |
1276 To insert a block entry, place point and the mark on the two | |
1277 dates that begin and end the range, and type @kbd{i b}. This command | |
1278 displays the end of your diary file in another window and inserts the | |
1279 block description; you can then type the diary entry. | |
1280 | |
1281 @kindex i c @r{(Calendar mode)} | |
1282 @findex insert-cyclic-diary-entry | |
1283 @dfn{Cyclic} diary entries repeat after a fixed interval of days. To | |
1284 create one, select the starting date and use the @kbd{i c} command. The | |
1285 command prompts for the length of interval, then inserts the entry, | |
1286 which looks like this: | |
1287 | |
1288 @findex diary-cyclic | |
1289 @example | |
1290 %%(diary-cyclic 50 3 1 1990) Renew medication | |
1291 @end example | |
1292 | |
1293 @noindent | |
1294 This entry applies to March 1, 1990 and every 50th day following; | |
1295 @samp{3 1 1990} specifies the starting date. (If you are using the | |
1296 European calendar style, the month and day are interchanged.) | |
1297 | |
1298 All three of these commands make marking diary entries. To insert a | |
1299 nonmarking entry, give a numeric argument to the command. For example, | |
1300 @kbd{C-u i a} makes a nonmarking anniversary diary entry. | |
1301 | |
1302 Marking sexp diary entries in the calendar is @emph{extremely} | |
1303 time-consuming, since every date visible in the calendar window must be | |
1304 individually checked. So it's a good idea to make sexp diary entries | |
1305 nonmarking (with @samp{&}) when possible. | |
1306 | |
1307 Another sophisticated kind of sexp entry, a @dfn{floating} diary entry, | |
1308 specifies a regularly occurring event by offsets specified in days, | |
1309 weeks, and months. It is comparable to a crontab entry interpreted by | |
1310 the @code{cron} utility. Here is a nonmarking, floating diary entry | |
1311 that applies to the last Thursday in November: | |
1312 | |
1313 @findex diary-float | |
1314 @example | |
1315 &%%(diary-float 11 4 -1) American Thanksgiving | |
1316 @end example | |
1317 | |
1318 @noindent | |
1319 The 11 specifies November (the eleventh month), the 4 specifies Thursday | |
1320 (the fourth day of the week, where Sunday is numbered zero), and the | |
1321 @minus{}1 specifies ``last'' (1 would mean ``first,'' 2 would mean | |
1322 ``second,'' @minus{}2 would mean ``second-to-last,'' and so on). The | |
1323 month can be a single month or a list of months. Thus you could change | |
1324 the 11 above to @samp{'(1 2 3)} and have the entry apply to the last | |
1325 Thursday of January, February, and March. If the month is @code{t}, the | |
1326 entry applies to all months of the year.@refill | |
1327 | |
46689
90b567ad02ed
Sexp diary entries can specify how to highlight the date.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
1328 Each of the standard sexp diary entries takes an optional parameter |
90b567ad02ed
Sexp diary entries can specify how to highlight the date.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
1329 specifying the name of a face or a single-character string to use when |
90b567ad02ed
Sexp diary entries can specify how to highlight the date.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
1330 marking the entry in the calendar. Most generally, sexp diary entries |
90b567ad02ed
Sexp diary entries can specify how to highlight the date.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
1331 can perform arbitrary computations to determine when they apply. |
90b567ad02ed
Sexp diary entries can specify how to highlight the date.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
1332 @xref{Sexp Diary Entries,, Sexp Diary Entries, elisp, The Emacs Lisp |
90b567ad02ed
Sexp diary entries can specify how to highlight the date.
Richard M. Stallman <rms@gnu.org>
parents:
39287
diff
changeset
|
1333 Reference Manual}. |
25829 | 1334 |
1335 @node Appointments | |
1336 @section Appointments | |
1337 @cindex appointment notification | |
1338 | |
53560 | 1339 @vindex appt-display-format |
1340 @vindex appt-audible | |
25829 | 1341 If you have a diary entry for an appointment, and that diary entry |
38745 | 1342 begins with a recognizable time of day, Emacs can warn you several |
1343 minutes beforehand that that appointment is pending. Emacs alerts you | |
53560 | 1344 to the appointment by displaying a message in your chosen format, as |
1345 specified by the variable @code{appt-display-format}. If the value | |
56279
b1ae5333057a
* ses.texi, viper.texi, search.texi, flymake.texi, faq.texi:
Jesper Harder <harder@ifa.au.dk>
parents:
53560
diff
changeset
|
1346 of @code{appt-audible} is non-@code{nil}, an audible reminder is also given. |
25829 | 1347 |
53560 | 1348 @findex appt-activate |
1349 To enable appointment notification, call the function | |
1350 @code{appt-activate} with a positive argument. This sets up an | |
1351 appointment list for today from the diary file, giving all diary entries | |
1352 found with recognizable times of day, and reminds you just before each | |
1353 of them. Calling @code{appt-activate} with a negative argument disables | |
1354 the appointment package. | |
25829 | 1355 |
1356 For example, suppose the diary file contains these lines: | |
1357 | |
1358 @example | |
1359 Monday | |
1360 9:30am Coffee break | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
46689
diff
changeset
|
1361 12:00pm Lunch |
25829 | 1362 @end example |
1363 | |
53560 | 1364 @vindex appt-message-warning-time |
25829 | 1365 @noindent |
53560 | 1366 Then on Mondays, you will be reminded at around 9:20am about your coffee |
1367 break and at around 11:50am about lunch. How many minutes in advance you | |
1368 are first warned is determined by the value of | |
1369 @code{appt-message-warning-time}. | |
25829 | 1370 |
1371 You can write times in am/pm style (with @samp{12:00am} standing | |
1372 for midnight and @samp{12:00pm} standing for noon), or 24-hour | |
1373 European/military style. You need not be consistent; your diary file | |
53560 | 1374 can have a mixture of the two styles. Times must be at the beginning |
1375 of lines if they are to be recognized. | |
25829 | 1376 |
1377 @vindex appt-display-diary | |
53560 | 1378 Emacs updates the appointments list from the diary file automatically |
1379 just after midnight. An update can be forced at any time by | |
1380 re-activating the appointment package. Both these actions also display | |
1381 the day's diary buffer, unless you set @code{appt-display-diary} to | |
1382 @code{nil}. The appointments list is also updated whenever the | |
1383 diary file is saved. | |
25829 | 1384 |
1385 @findex appt-add | |
1386 @findex appt-delete | |
1387 @cindex alarm clock | |
1388 You can also use the appointment notification facility like an alarm | |
1389 clock. The command @kbd{M-x appt-add} adds entries to the appointment | |
1390 list without affecting your diary file. You delete entries from the | |
1391 appointment list with @kbd{M-x appt-delete}. | |
1392 | |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1393 @node iCalendar |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1394 @section iCalendar |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1395 @cindex iCalendar support |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1396 |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1397 The icalendar package aims at providing an implementation of the |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1398 iCalendar standard, as defined in ``RFC 2445 -- Internet Calendaring and |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1399 Scheduling Core Object Specification (iCalendar)''. It provides a means |
57377 | 1400 for importing iCalendar (and the earlier vCalendar format) data into |
1401 Emacs diary files and vice versa. | |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1402 |
57377 | 1403 Importing works for ``ordinary'' (i.e. non-recurring) events, but (at |
1404 present) may not work correctly (if at all) for recurring events. | |
1405 Exporting of diary files into iCalendar files should work correctly for | |
1406 most diary entries. Please note that @file{icalendar.el} is work in | |
1407 progress, so usage may evolve in future. | |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1408 |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1409 To activate the package, use @code{(require 'icalendar)}. |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1410 |
57587
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1411 @findex icalendar-import-buffer |
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1412 The command @code{icalendar-import-buffer} extracts |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1413 iCalendar data from the current buffer and adds it to your (default) |
57377 | 1414 diary file. This function is also suitable for automatic extraction of |
1415 iCalendar data; for example with the Rmail mail client one could use: | |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1416 |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1417 @example |
57587
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1418 (add-hook 'rmail-show-message-hook 'icalendar-import-buffer) |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1419 @end example |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1420 |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1421 @findex icalendar-import-file |
57587
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1422 The command @code{icalendar-import-file} imports an iCalendar file |
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1423 and adds the results to an Emacs diary file. For example: |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1424 |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1425 @example |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1426 (icalendar-import-file "/here/is/calendar.ics" "/there/goes/ical-diary") |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1427 @end example |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1428 |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1429 @noindent |
57377 | 1430 You can use an @code{#include} directive to add the import file contents |
57587
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1431 to the main diary file, if these are distinct. @xref{Fancy Diary |
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1432 Display,,, elisp, The Emacs Lisp Reference Manual}. |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1433 |
57587
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1434 @findex icalendar-export-file, icalendar-export-region |
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1435 Use @code{icalendar-export-file} to interactively export an entire |
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1436 Emacs diary file to iCalendar format. To export only a part of a diary |
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1437 file, mark the relevant area, and call @code{icalendar-export-region}. |
24a2d7c27b57
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57377
diff
changeset
|
1438 In both cases the result is appended to the target file. |
57338
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1439 |
741bf75c3004
From Ulf Jasper <ulf.jasper@web.de>:
Glenn Morris <rgm@gnu.org>
parents:
57322
diff
changeset
|
1440 |
25829 | 1441 @node Daylight Savings |
1442 @section Daylight Savings Time | |
1443 @cindex daylight savings time | |
1444 | |
1445 Emacs understands the difference between standard time and daylight | |
1446 savings time---the times given for sunrise, sunset, solstices, | |
1447 equinoxes, and the phases of the moon take that into account. The rules | |
1448 for daylight savings time vary from place to place and have also varied | |
1449 historically from year to year. To do the job properly, Emacs needs to | |
1450 know which rules to use. | |
1451 | |
1452 @vindex calendar-daylight-savings-starts | |
1453 @vindex calendar-daylight-savings-ends | |
1454 Some operating systems keep track of the rules that apply to the place | |
1455 where you are; on these systems, Emacs gets the information it needs | |
1456 from the system automatically. If some or all of this information is | |
1457 missing, Emacs fills in the gaps with the rules currently used in | |
1458 Cambridge, Massachusetts. If the resulting rules are not what you want, | |
1459 you can tell Emacs the rules to use by setting certain variables: | |
1460 @code{calendar-daylight-savings-starts} and | |
1461 @code{calendar-daylight-savings-ends}. | |
1462 | |
1463 These values should be Lisp expressions that refer to the variable | |
1464 @code{year}, and evaluate to the Gregorian date on which daylight | |
1465 savings time starts or (respectively) ends, in the form of a list | |
1466 @code{(@var{month} @var{day} @var{year})}. The values should be | |
1467 @code{nil} if your area does not use daylight savings time. | |
1468 | |
1469 Emacs uses these expressions to determine the starting date of | |
1470 daylight savings time for the holiday list and for correcting times of | |
1471 day in the solar and lunar calculations. | |
1472 | |
1473 The values for Cambridge, Massachusetts are as follows: | |
1474 | |
1475 @example | |
1476 (calendar-nth-named-day 1 0 4 year) | |
1477 (calendar-nth-named-day -1 0 10 year) | |
1478 @end example | |
1479 | |
1480 @noindent | |
1481 That is, the first 0th day (Sunday) of the fourth month (April) in | |
1482 the year specified by @code{year}, and the last Sunday of the tenth month | |
1483 (October) of that year. If daylight savings time were | |
1484 changed to start on October 1, you would set | |
1485 @code{calendar-daylight-savings-starts} to this: | |
1486 | |
1487 @example | |
1488 (list 10 1 year) | |
1489 @end example | |
1490 | |
1491 If there is no daylight savings time at your location, or if you want | |
1492 all times in standard time, set @code{calendar-daylight-savings-starts} | |
1493 and @code{calendar-daylight-savings-ends} to @code{nil}. | |
1494 | |
1495 @vindex calendar-daylight-time-offset | |
1496 The variable @code{calendar-daylight-time-offset} specifies the | |
1497 difference between daylight savings time and standard time, measured in | |
1498 minutes. The value for Cambridge, Massachusetts is 60. | |
1499 | |
1500 @c @vindex calendar-daylight-savings-starts-time too long! | |
1501 @vindex calendar-daylight-savings-ends-time | |
1502 The two variables @code{calendar-daylight-savings-starts-time} and | |
1503 @code{calendar-daylight-savings-ends-time} specify the number of minutes | |
1504 after midnight local time when the transition to and from daylight | |
1505 savings time should occur. For Cambridge, Massachusetts both variables' | |
1506 values are 120. | |
30794 | 1507 |
1508 @node Time Intervals | |
36145
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1509 @section Summing Time Intervals |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1510 @cindex time intervals, summing |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1511 @cindex summing time intervals |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1512 @cindex timeclock |
30794 | 1513 |
36145
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1514 The timeclock feature adds up time intervals, so you can (for |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1515 instance) keep track of how much time you spend working. |
30794 | 1516 |
1517 @findex timeclock-in | |
1518 @findex timeclock-out | |
60294
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1519 @findex timeclock-change |
30794 | 1520 @findex timeclock-workday-remaining |
1521 @findex timeclock-when-to-leave | |
1522 Use the @kbd{M-x timeclock-in} command when you start working on a | |
36145
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1523 project, and @kbd{M-x timeclock-out} command when you're done. Each |
60294
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1524 time you do this, it adds one time interval to the record of the |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1525 project. You can change to working on a different project with @kbd{M-x |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1526 timeclock-change}. |
36145
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1527 |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1528 Once you've collected data from a number of time intervals, you can use |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1529 @kbd{M-x timeclock-workday-remaining} to see how much time is left to |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1530 work today (assuming a typical average of 8 hours a day), and @kbd{M-x |
c70d510bdb54
Various clarifications.
Richard M. Stallman <rms@gnu.org>
parents:
30794
diff
changeset
|
1531 timeclock-when-to-leave} which will calculate when you're ``done.'' |
30794 | 1532 |
1533 @vindex timeclock-modeline-display | |
1534 @findex timeclock-modeline-display | |
1535 If you want Emacs to display the amount of time ``left'' of your | |
1536 workday in the mode line, either customize the | |
1537 @code{timeclock-modeline-display} variable and set its value to | |
1538 @code{t}, or invoke the @kbd{M-x timeclock-modeline-display} command. | |
1539 | |
1540 @vindex timeclock-ask-before-exiting | |
60294
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1541 Terminating the current Emacs session might or might not mean that you |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1542 have stopped working on the project and, by default, Emacs queries this. |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1543 You can, however, set the value of the variable |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1544 @code{timeclock-ask-before-exiting} to @code{nil} (via @kbd{M-x |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1545 customize}) to avoid this behaviour; then, only an explicit @kbd{M-x |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1546 timeclock-out} or @kbd{M-x timeclock-change} will tell Emacs that the |
8c6bb7dbf4fb
From Matt Hodges <MPHodges@member.fsf.org>:
Glenn Morris <rgm@gnu.org>
parents:
59669
diff
changeset
|
1547 current interval is over. |
30794 | 1548 |
1549 @cindex @file{.timelog} file | |
1550 @vindex timeclock-file | |
1551 @findex timeclock-reread-log | |
37709
e58e22c73805
Clarify `p' commands again.
Richard M. Stallman <rms@gnu.org>
parents:
37142
diff
changeset
|
1552 The timeclock functions work by accumulating the data in a file |
59669
080df55d2c06
(Time Intervals): Delete special stuff for MS-DOS.
Richard M. Stallman <rms@gnu.org>
parents:
57587
diff
changeset
|
1553 called @file{.timelog} in your home directory. You can specify a |
080df55d2c06
(Time Intervals): Delete special stuff for MS-DOS.
Richard M. Stallman <rms@gnu.org>
parents:
57587
diff
changeset
|
1554 different name for this file by customizing the variable |
080df55d2c06
(Time Intervals): Delete special stuff for MS-DOS.
Richard M. Stallman <rms@gnu.org>
parents:
57587
diff
changeset
|
1555 @code{timeclock-file}. If you edit the timeclock file manually, or if |
080df55d2c06
(Time Intervals): Delete special stuff for MS-DOS.
Richard M. Stallman <rms@gnu.org>
parents:
57587
diff
changeset
|
1556 you change the value of any of timeclock's customizable variables, you |
080df55d2c06
(Time Intervals): Delete special stuff for MS-DOS.
Richard M. Stallman <rms@gnu.org>
parents:
57587
diff
changeset
|
1557 should run the command @kbd{M-x timeclock-reread-log} to update the |
080df55d2c06
(Time Intervals): Delete special stuff for MS-DOS.
Richard M. Stallman <rms@gnu.org>
parents:
57587
diff
changeset
|
1558 data in Emacs from the file. |
52401 | 1559 |
1560 @ignore | |
1561 arch-tag: 4531ef09-9df3-449d-9c52-2b5a4a337f92 | |
1562 @end ignore |