manual: Tiny fix
[org-mode/org-tableheadings.git] / contrib / manual.org
blobe105e46ff79679889c6e6ea80f77355cefa9d971
1 #+title: The Org Manual
3 #+texinfo: @insertcopying
5 * Introduction
6 :PROPERTIES:
7 :DESCRIPTION: Getting started.
8 :END:
9 #+cindex: introduction
11 ** Summary
12 :PROPERTIES:
13 :DESCRIPTION: Brief summary of what Org does.
14 :END:
15 #+cindex: summary
17 Org is a mode for keeping notes, maintaining TODO lists, and project
18 planning with a fast and effective plain-text system.  It also is an
19 authoring system with unique support for literate programming and
20 reproducible research.
22 Org is implemented on top of Outline mode, which makes it possible to
23 keep the content of large files well structured.  Visibility cycling
24 and structure editing help to work with the tree.  Tables are easily
25 created with a built-in table editor.  Plain text URL-like links
26 connect to websites, emails, Usenet messages, BBDB entries, and any
27 files related to the projects.
29 Org develops organizational tasks around notes files that contain
30 lists or information about projects as plain text.  Project planning
31 and task management makes use of metadata which is part of an outline
32 node.  Based on this data, specific entries can be extracted in
33 queries and create dynamic /agenda views/ that also integrate the
34 Emacs calendar and diary.  Org can be used to implement many different
35 project planning schemes, such as David Allen's GTD system.
37 Org files can serve as a single source authoring system with export to
38 many different formats such as HTML, LaTeX, Open Document, and
39 Markdown.  New export backends can be derived from existing ones, or
40 defined from scratch.
42 Org files can include source code blocks, which makes Org uniquely
43 suited for authoring technical documents with code examples. Org
44 source code blocks are fully functional; they can be evaluated in
45 place and their results can be captured in the file.  This makes it
46 possible to create a single file reproducible research compendium.
48 Org keeps simple things simple.  When first fired up, it should feel
49 like a straightforward, easy to use outliner.  Complexity is not
50 imposed, but a large amount of functionality is available when needed.
51 Org is a toolbox.  Many users actually run only a---very
52 personal---fraction of Org's capabilities, and know that there is more
53 whenever they need it.
55 All of this is achieved with strictly plain text files, the most
56 portable and future-proof file format.  Org runs in Emacs.  Emacs is
57 one of the most widely ported programs, so that Org mode is available
58 on every major platform.
60 #+cindex: FAQ
61 There is a website for Org which provides links to the newest version
62 of Org, as well as additional information, frequently asked questions
63 (FAQ), links to tutorials, etc.  This page is located at
64 [[https://orgmode.org]].
66 #+cindex: print edition
67 An earlier version (7.3) of this manual is available as a [[http://www.network-theory.co.uk/org/manual/][paperback
68 book from Network Theory Ltd.]].
70 ** Installation
71 :PROPERTIES:
72 :DESCRIPTION: Installing Org.
73 :END:
74 #+cindex: installation
76 Org is part of recent distributions of GNU Emacs, so you normally do
77 not need to install it.  If, for one reason or another, you want to
78 install Org on top of this pre-packaged version, there are three ways
79 to do it:
81 - By using Emacs package system.
82 - By downloading Org as an archive.
83 - By using Org's git repository.
85 We *strongly recommend* to stick to a single installation method.
87 *** Using Emacs packaging system
88 :PROPERTIES:
89 :UNNUMBERED: notoc
90 :END:
92 Recent Emacs distributions include a packaging system which lets you
93 install Elisp libraries.  You can install Org with {{{kbd(M-x
94 package-install RET org)}}}.
96 #+texinfo: @noindent
97 *Important*: you need to do this in a session where no =.org= file has
98 been visited, i.e., where no Org built-in function have been loaded.
99 Otherwise autoload Org functions will mess up the installation.
101 Then, to make sure your Org configuration is taken into account,
102 initialize the package system with ~(package-initialize)~ in your
103 Emacs init file before setting any Org option.  If you want to use
104 Org's package repository, check out the [[https://orgmode.org/elpa.html][Org ELPA page]].
106 *** Downloading Org as an archive
107 :PROPERTIES:
108 :UNNUMBERED: notoc
109 :END:
111 You can download Org latest release from [[https://orgmode.org/][Org's website]].  In this case,
112 make sure you set the load-path correctly in your Emacs init file:
114 #+begin_src emacs-lisp
115   (add-to-list 'load-path "~/path/to/orgdir/lisp")
116 #+end_src
118 The downloaded archive contains contributed libraries that are not
119 included in Emacs.  If you want to use them, add the =contrib/=
120 directory to your load-path:
122 #+begin_src emacs-lisp
123   (add-to-list 'load-path "~/path/to/orgdir/contrib/lisp" t)
124 #+end_src
126 Optionally, you can compile the files and/or install them in your
127 system.  Run =make help= to list compilation and installation options.
129 *** Using Org's git repository
130 :PROPERTIES:
131 :UNNUMBERED: notoc
132 :END:
134 You can clone Org's repository and install Org like this:
136 #+begin_example
137   $ cd ~/src/
138   $ git clone git@code.orgmode.org:bzg/org-mode.git
139   $ make autoloads
140 #+end_example
142 Note that in this case, ~make autoloads~ is mandatory: it defines
143 Org's version in =org-version.el= and Org's autoloads in
144 =org-loaddefs.el=.
146 Remember to add the correct load-path as described in the method
147 above.
149 You can also compile with =make=, generate the documentation with
150 =make doc=, create a local configuration with =make config= and
151 install Org with =make install=.  Please run =make help= to get the
152 list of compilation/installation options.
154 For more detailed explanations on Org's build system, please check the
155 Org Build System page on [[https://orgmode.org/worg/dev/org-build-system.html][Worg]].
157 ** Activation
158 :PROPERTIES:
159 :DESCRIPTION: How to activate Org for certain buffers.
160 :END:
161 #+cindex: activation
162 #+cindex: autoload
163 #+cindex: ELPA
164 #+cindex: global key bindings
165 #+cindex: key bindings, global
167 Org mode buffers need Font Lock to be turned on: this is the default
168 in Emacs[fn:1].
170 There are compatibility issues between Org mode and some other Elisp
171 packages (see [[*Packages that conflict with Org mode]]).  Please take the
172 time to check the list.
174 #+findex: org-agenda
175 #+findex: org-capture
176 #+findex: org-store-link
177 #+findex: org-iswitchb
178 The four Org commands ~org-store-link~, ~org-capture~, ~org-agenda~,
179 and ~org-iswitchb~ be accessible through global keys---i.e., anywhere
180 in Emacs, not just in Org buffers.  Here are suggested bindings for
181 these keys, please modify the keys to your own liking.
183 #+begin_src emacs-lisp
184   (global-set-key "\C-cl" 'org-store-link)
185   (global-set-key "\C-ca" 'org-agenda)
186   (global-set-key "\C-cc" 'org-capture)
187   (global-set-key "\C-cb" 'org-iswitchb)
188 #+end_src
190 #+cindex: Org mode, turning on
191 Files with the =.org= extension use Org mode by default.  To turn on
192 Org mode in a file that does not have the extension =.org=, make the
193 first line of a file look like this:
195 : MY PROJECTS    -*- mode: org; -*-
197 #+vindex: org-insert-mode-line-in-empty-file
198 #+texinfo: @noindent
199 which selects Org mode for this buffer no matter what the file's name
200 is.  See also the variable ~org-insert-mode-line-in-empty-file~.
202 Many commands in Org work on the region if the region is /active/.  To
203 make use of this, you need to have ~transient-mark-mode~ turned on,
204 which is the default.  If you do not like ~transient-mark-mode~, you
205 can create an active region by using the mouse to select a region, or
206 pressing {{{kbd(C-SPC)}}} twice before moving the cursor.
208 ** Feedback
209 :PROPERTIES:
210 :DESCRIPTION: Bug reports, ideas, patches, etc.
211 :END:
212 #+cindex: feedback
213 #+cindex: bug reports
214 #+cindex: reporting a bug
215 #+cindex: maintainer
216 #+cindex: author
218 If you find problems with Org, or if you have questions, remarks, or
219 ideas about it, please mail to the Org mailing list
220 [[mailto:emacs-orgmode@gnu.org]].  You can subscribe to the list [[https://lists.gnu.org/mailman/listinfo/emacs-orgmode][on this
221 web page]].  If you are not a member of the mailing list, your mail will
222 be passed to the list after a moderator has approved it[fn:2].
224 #+findex: org-version
225 #+findex: org-submit-bug-report
226 For bug reports, please first try to reproduce the bug with the latest
227 version of Org available---if you are running an outdated version, it
228 is quite possible that the bug has been fixed already.  If the bug
229 persists, prepare a report and provide as much information as
230 possible, including the version information of Emacs ({{{kbd(M-x
231 emacs-version)}}}) and Org ({{{kbd(M-x org-version)}}}), as well as
232 the Org related setup in the Emacs init file.  The easiest way to do
233 this is to use the command
235 : M-x org-submit-bug-report <RET>
237 #+texinfo: @noindent
238 which puts all this information into an Emacs mail buffer so that you
239 only need to add your description.  If you are not sending the Email
240 from within Emacs, please copy and paste the content into your Email
241 program.
243 Sometimes you might face a problem due to an error in your Emacs or
244 Org mode setup.  Before reporting a bug, it is very helpful to start
245 Emacs with minimal customizations and reproduce the problem.  Doing so
246 often helps you determine if the problem is with your customization or
247 with Org mode itself.  You can start a typical minimal session with
248 a command like the example below.
250 : $ emacs -Q -l /path/to/minimal-org.el
252 However if you are using Org mode as distributed with Emacs, a minimal
253 setup is not necessary.  In that case it is sufficient to start Emacs
254 as =emacs -Q=.  The =minimal-org.el= setup file can have contents as
255 shown below.
257 #+begin_src emacs-lisp
258   ;;; Minimal setup to load latest `org-mode'.
260   ;; Activate debugging.
261   (setq debug-on-error t
262         debug-on-signal nil
263         debug-on-quit nil)
265   ;; Add latest Org mode to load path.
266   (add-to-list 'load-path (expand-file-name "/path/to/org-mode/lisp"))
267   (add-to-list 'load-path (expand-file-name "/path/to/org-mode/contrib/lisp" t))
268 #+end_src
270 If an error occurs, a "backtrace" can be very useful---see below on
271 how to create one.  Often a small example file helps, along with clear
272 information about:
274 1. What exactly did you do?
275 2. What did you expect to happen?
276 3. What happened instead?
278 #+texinfo: @noindent
279 Thank you for helping to improve this program.
281 *** How to create a useful backtrace
282 :PROPERTIES:
283 :UNNUMBERED: notoc
284 :END:
286 #+cindex: backtrace of an error
287 If working with Org produces an error with a message you do not
288 understand, you may have hit a bug.  The best way to report this is by
289 providing, in addition to what was mentioned above, a backtrace.  This
290 is information from the built-in debugger about where and how the
291 error occurred.  Here is how to produce a useful backtrace:
293 1. Reload uncompiled versions of all Org mode Lisp files.  The
294    backtrace contains much more information if it is produced with
295    uncompiled code.  To do this, use
297    : C-u M-x org-reload <RET>
299    #+texinfo: @noindent
300    or, from the menu: Org \rarr Refresh/Reload \rarr Reload Org uncompiled.
302 2. Then, activate the debugger:
304    : M-x toggle-debug-or-errror <RET>
306    #+texinfo: @noindent
307    or, from the menu: Options \rarr Enter Debugger on Error.
309 3. Do whatever you have to do to hit the error.  Do not forget to
310    document the steps you take.
312 4. When you hit the error, a =*Backtrace*= buffer appears on the
313    screen.  Save this buffer to a file---for example using {{{kbd(C-x
314    C-w)}}}---and attach it to your bug report.
316 ** Typesetting conventions used in this manual
317 :PROPERTIES:
318 :DESCRIPTION: Typesetting conventions used in this manual.
319 :ALT_TITLE: Conventions
320 :END:
322 *** TODO keywords, tags, properties, etc.
323 :PROPERTIES:
324 :UNNUMBERED: notoc
325 :END:
327 Org uses various syntactical elements: TODO keywords, tags, property
328 names, keywords, blocks, etc.  In this manual we use the following
329 conventions:
331 #+attr_texinfo: :sep ,
332 - =TODO=, =WAITING= :: TODO keywords are written with all capitals,
333      even if they are user-defined.
335 - =boss=, =ARCHIVE= :: User-defined tags are written in lowercase;
336      built-in tags with special meaning are written with all capitals.
338 - =Release=, =PRIORITY= :: User-defined properties are capitalized;
339      built-in properties with special meaning are written with all
340      capitals.
342 - =TITLE=, =BEGIN= ... =END= :: Keywords and blocks are written in
343      uppercase to enhance their readability, but you can use lowercase
344      in your Org files.
346 *** Key bindings and commands
347 :PROPERTIES:
348 :UNNUMBERED: notoc
349 :END:
351 #+kindex: C-c a
352 #+kindex: C-c c
353 The manual suggests a few global key bindings, in particular
354 {{{kbd(C-c a)}}} for ~org-agenda~ and {{{kbd(C-c c)}}} for
355 ~org-capture~.  These are only suggestions, but the rest of the manual
356 assumes that these key bindings are in place in order to list commands
357 by key access.
359 Also, the manual lists both the keys and the corresponding commands
360 for accessing a functionality.  Org mode often uses the same key for
361 different functions, depending on context.  The command that is bound
362 to such keys has a generic name, like ~org-metaright~.  In the manual
363 we will, wherever possible, give the function that is internally
364 called by the generic command.  For example, in the chapter on
365 document structure, {{{kbd(M-right)}}} will be listed to call
366 ~org-do-demote~, while in the chapter on tables, it will be listed to
367 call ~org-table-move-column-right~.
369 * Document structure
370 :PROPERTIES:
371 :DESCRIPTION: A tree works like your brain.
372 :END:
373 #+cindex: document structure
374 #+cindex: structure of document
376 Org is based on Outline mode and provides flexible commands to
377 edit the structure of the document.
379 ** Outlines
380 :PROPERTIES:
381 :DESCRIPTION: Org is based on Outline mode.
382 :END:
383 #+cindex: outlines
384 #+cindex: Outline mode
386 Org is implemented on top of Outline mode.  Outlines allow a document
387 to be organized in a hierarchical structure, which, least for me, is
388 the best representation of notes and thoughts.  An overview of this
389 structure is achieved by folding, i.e., hiding large parts of the
390 document to show only the general document structure and the parts
391 currently being worked on.  Org greatly simplifies the use of outlines
392 by compressing the entire show and hide functionalities into a single
393 command, ~org-cycle~, which is bound to the {{{kbd(TAB)}}} key.
395 ** Headlines
396 :PROPERTIES:
397 :DESCRIPTION: How to typeset Org tree headlines.
398 :END:
399 #+cindex: headlines
400 #+cindex: outline tree
401 #+vindex: org-special-ctrl-a/e
402 #+vindex: org-special-ctrl-k
403 #+vindex: org-ctrl-k-protect-subtree
405 Headlines define the structure of an outline tree.  The headlines in
406 Org start with one or more stars, on the left margin[fn:3].  For
407 example:
409 #+begin_example
410   ,* Top level headline
411   ,** Second level
412   ,*** Third level
413       some text
414   ,*** Third level
415       more text
416   ,* Another top level headline
417 #+end_example
419 #+vindex: org-footnote-section
420 #+texinfo: @noindent
421 Note that the name defined in ~org-footnote-section~ is reserved.  Do
422 not use it as a title for your own headings.
424 Some people find the many stars too noisy and would prefer an outline
425 that has whitespace followed by a single star as headline starters.
426 See [[*A cleaner outline view]].
428 #+vindex: org-cycle-separator-lines
429 An empty line after the end of a subtree is considered part of it and
430 is hidden when the subtree is folded.  However, if you leave at least
431 two empty lines, one empty line remains visible after folding the
432 subtree, in order to structure the collapsed view.  See the variable
433 ~org-cycle-separator-lines~ to modify this behavior.
435 ** Visibility cycling
436 :PROPERTIES:
437 :DESCRIPTION: Show and hide, much simplified.
438 :END:
439 #+cindex: cycling, visibility
440 #+cindex: visibility cycling
441 #+cindex: trees, visibility
442 #+cindex: show hidden text
443 #+cindex: hide text
445 *** Global and local cycling
446 :PROPERTIES:
447 :DESCRIPTION: Cycling through various visibility states.
448 :END:
449 #+cindex: subtree visibility states
450 #+cindex: subtree cycling
451 #+cindex: folded, subtree visibility state
452 #+cindex: children, subtree visibility state
453 #+cindex: subtree, subtree visibility state
455 Outlines make it possible to hide parts of the text in the buffer.
456 Org uses just two commands, bound to {{{kbd(TAB)}}} and
457 {{{kbd(S-TAB)}}} to change the visibility in the buffer.
459 #+attr_texinfo: :sep ,
460 - {{{kbd(TAB)}}} (~org-cycle~) ::
462      #+kindex: TAB
463      #+findex: org-cycle
464      /Subtree cycling/: Rotate current subtree among the states
466      #+begin_example
467        ,-> FOLDED -> CHILDREN -> SUBTREE --.
468        '-----------------------------------'
469      #+end_example
471      #+vindex: org-cycle-emulate-tab
472      The cursor must be on a headline for this to work[fn:4].
474 - {{{kbd(S-TAB)}}} (~org-global-cycle~), {{{kbd(C-u TAB)}}} ::
476      #+cindex: global visibility states
477      #+cindex: global cycling
478      #+cindex: overview, global visibility state
479      #+cindex: contents, global visibility state
480      #+cindex: show all, global visibility state
481      #+kindex: C-u TAB
482      #+kindex: S-TAB
483      #+findex: org-global-cycle
484      /Global cycling/: Rotate the entire buffer among the states
486      #+begin_example
487        ,-> OVERVIEW -> CONTENTS -> SHOW ALL --.
488        '--------------------------------------'
489      #+end_example
491      When {{{kbd(S-TAB)}}} is called with a numeric prefix argument N,
492      the CONTENTS view up to headlines of level N are shown.  Note
493      that inside tables (see [[*Tables]]), {{{kbd(S-TAB)}}} jumps to the
494      previous field instead.
496      #+vindex: org-cycle-global-at-bob
497      You can run global cycling using {{{kbd(TAB)}}} only if point is
498      at the very beginning of the buffer, but not on a headline, and
499      ~org-cycle-global-at-bob~ is set to a non-~nil~ value.
501 - {{{kbd(C-u C-u TAB)}}} (~org-set-startup-visibility~) ::
503      #+cindex: startup visibility
504      #+kindex: C-u C-u TAB
505      #+findex: org-set-startup-visibility
506      Switch back to the startup visibility of the buffer (see [[*Initial
507      visibility]]).
509 - {{{kbd(C-u C-u C-u TAB)}}} (~outline-show-all~) ::
511      #+cindex: show all, command
512      #+kindex: C-u C-u C-u TAB
513      #+findex: outline-show-all
514      Show all, including drawers.
516 - {{{kbd(C-c C-r)}}} (~org-reveal~) ::
518      #+cindex: revealing context
519      #+kindex: C-c C-r
520      #+findex: org-reveal
521      Reveal context around point, showing the current entry, the
522      following heading and the hierarchy above.  Useful for working
523      near a location that has been exposed by a sparse tree command
524      (see [[*Sparse trees]]) or an agenda command (see [[*Commands in the
525      agenda buffer]]).  With a prefix argument show, on each level, all
526      sibling headings.  With a double prefix argument, also show the
527      entire subtree of the parent.
529 - {{{kbd(C-c C-k)}}} (~outline-show-branches~) ::
531      #+cindex: show branches, command
532      #+kindex: C-c C-k
533      #+findex: outline-show-branches
534      Expose all the headings of the subtree, CONTENTS view for just
535      one subtree.
537 - {{{kbd(C-c TAB)}}} (~outline-show-children~) ::
539      #+cindex: show children, command
540      #+kindex: C-c TAB
541      #+findex: outline-show-children
542      Expose all direct children of the subtree.  With a numeric prefix
543      argument N, expose all children down to level N.
545 - {{{kbd(C-c C-x b)}}} (~org-tree-to-indirect-buffer~) ::
547      #+kindex: C-c C-x b
548      #+findex: org-tree-to-indirect-buffer
549      Show the current subtree in an indirect buffer[fn:5].  With
550      a numeric prefix argument, N, go up to level N and then take that
551      tree.  If N is negative then go up that many levels.  With
552      a {{{kbd(C-u)}}} prefix, do not remove the previously used
553      indirect buffer.
555 - {{{kbd(C-c C-x v)}}} (~org-copy-visible~) ::
557      #+kindex: C-c C-x v
558      #+findex: org-copy-visible
559      Copy the /visible/ text in the region into the kill ring.
561 *** Initial visibility
562 :PROPERTIES:
563 :DESCRIPTION: Setting the initial visibility state.
564 :END:
566 #+vindex: org-startup-folded
567 When Emacs first visits an Org file, the global state is set to
568 OVERVIEW, i.e., only the top level headlines are visible[fn:6].  This
569 can be configured through the variable ~org-startup-folded~, or on
570 a per-file basis by adding one of the following lines anywhere in the
571 buffer:
573 #+cindex: STARTUP, keyword
574 #+begin_example
575   ,#+STARTUP: overview
576   ,#+STARTUP: content
577   ,#+STARTUP: showall
578   ,#+STARTUP: showeverything
579 #+end_example
581 #+cindex: VISIBILITY, property
582 #+texinfo: @noindent
583 Furthermore, any entries with a =VISIBILITY= property (see [[*Properties
584 and columns]]) get their visibility adapted accordingly.  Allowed values
585 for this property are =folded=, =children=, =content=, and ~all~.
587 - {{{kbd(C-u C-u TAB)}}} (~org-set-startup-visibility~) ::
589      #+kindex: C-u C-u TAB
590      #+findex: org-set-startup-visibility
591      Switch back to the startup visibility of the buffer, i.e.,
592      whatever is requested by startup options and =VISIBILITY=
593      properties in individual entries.
595 *** Catching invisible edits
596 :PROPERTIES:
597 :DESCRIPTION: Preventing mistakes when editing invisible parts.
598 :END:
599 #+cindex: edits, catching invisible
601 #+vindex: org-catch-invisible-edits
602 Sometimes you may inadvertently edit an invisible part of the buffer
603 and be confused on what has been edited and how to undo the mistake.
604 Setting ~org-catch-invisible-edits~ to non-~nil~ helps preventing
605 this.  See the docstring of this option on how Org should catch
606 invisible edits and process them.
608 ** Motion
609 :PROPERTIES:
610 :DESCRIPTION: Jumping to other headlines.
611 :END:
612 #+cindex: motion, between headlines
613 #+cindex: jumping, to headlines
614 #+cindex: headline navigation
616 The following commands jump to other headlines in the buffer.
618 - {{{kbd(C-c C-n)}}} (~outline-next-visible-heading~) ::
620      #+kindex: C-c C-n
621      #+findex: outline-next-visible-heading
622      Next heading.
624 - {{{kbd(C-c C-p)}}} (~outline-previous-visible-heading~) ::
626      #+kindex: C-c C-p
627      #+findex: outline-previous-visible-heading
628      Previous heading.
630 - {{{kbd(C-c C-f)}}} (~org-forward-same-level~) ::
632      #+kindex: C-c C-f
633      #+findex: org-forward-same-level
634      Next heading same level.
636 - {{{kbd(C-c C-b)}}} (~org-backward-same-level~) ::
638      #+kindex: C-c C-b
639      #+findex: org-backward-same-level
640      Previous heading same level.
642 - {{{kbd(C-c C-u)}}} (~outline-up-heading~) ::
644      #+kindex: C-c C-u
645      #+findex: outline-up-heading
646      Backward to higher level heading.
648 - {{{kbd(C-c C-j)}}} (~org-goto~) ::
650      #+kindex: C-c C-j
651      #+findex: org-goto
652      #+vindex: org-goto-auto-isearch
653      Jump to a different place without changing the current outline
654      visibility.  Shows the document structure in a temporary buffer,
655      where you can use the following keys to find your destination:
657      #+attr_texinfo: :columns 0.3 0.7
658      | {{{kbd(TAB)}}}                  | Cycle visibility.               |
659      | {{{kbd(down)}}} / {{{kbd(up)}}} | Next/previous visible headline. |
660      | {{{kbd(RET)}}}                  | Select this location.           |
661      | {{{kbd(/)}}}                    | Do a Sparse-tree search         |
663      #+texinfo: @noindent
664      The following keys work if you turn off ~org-goto-auto-isearch~
666      #+attr_texinfo: :columns 0.3 0.7
667      | {{{kbd(n)}}} / {{{kbd(p)}}}   | Next/previous visible headline.    |
668      | {{{kbd(f)}}} / {{{kbd(b)}}}   | Next/previous headline same level. |
669      | {{{kbd(u)}}}                  | One level up.                      |
670      | {{{kbd(0)}}} ... {{{kbd(9)}}} | Digit argument.                    |
671      | {{{kbd(q)}}}                  | Quit.                              |
673      #+vindex: org-goto-interface
674      #+texinfo: @noindent
675      See also the variable ~org-goto-interface~.
677 ** Structure editing
678 :PROPERTIES:
679 :DESCRIPTION: Changing sequence and level of headlines.
680 :END:
681 #+cindex: structure editing
682 #+cindex: headline, promotion and demotion
683 #+cindex: promotion, of subtrees
684 #+cindex: demotion, of subtrees
685 #+cindex: subtree, cut and paste
686 #+cindex: pasting, of subtrees
687 #+cindex: cutting, of subtrees
688 #+cindex: copying, of subtrees
689 #+cindex: sorting, of subtrees
690 #+cindex: subtrees, cut and paste
692 - {{{kbd(M-RET)}}} (~org-meta-return~) ::
694      #+kindex: M-RET
695      #+findex: org-meta-return
696      #+vindex: org-M-RET-may-split-line
697      Insert a new heading, item or row.
699      If the command is used at the /beginning/ of a line, and if there
700      is a heading or a plain list item (see [[*Plain lists]]) at point,
701      the new heading/item is created /before/ the current line.  When
702      used at the beginning of a regular line of text, turn that line
703      into a heading.
705      When this command is used in the middle of a line, the line is
706      split and the rest of the line becomes the new item or headline.
707      If you do not want the line to be split, customize
708      ~org-M-RET-may-split-line~.
710      Calling the command with a {{{kbd(C-u)}}} prefix unconditionally
711      inserts a new heading at the end of the current subtree, thus
712      preserving its contents.  With a double {{{kbd(C-u C-u)}}}
713      prefix, the new heading is created at the end of the parent
714      subtree instead.
716 - {{{kbd(C-RET)}}} (~org-insert-heading-respect-content~) ::
718      #+kindex: C-RET
719      #+findex: org-insert-heading-respect-content
720      Insert a new heading at the end of the current subtree.
722 - {{{kbd(M-S-RET)}}} (~org-insert-todo-heading~) ::
724      #+kindex: M-S-RET
725      #+findex: org-insert-todo-heading
726      #+vindex: org-treat-insert-todo-heading-as-state-change
727      Insert new TODO entry with same level as current heading.  See
728      also the variable
729      ~org-treat-insert-todo-heading-as-state-change~.
731 - {{{kbd(C-S-RET)}}} (~org-insert-todo-heading-respect-content~) ::
733      #+kindex: C-S-RET
734      #+findex: org-insert-todo-heading-respect-content
735      Insert new TODO entry with same level as current heading.  Like
736      {{{kbd(C-RET)}}}, the new headline is inserted after the current
737      subtree.
739 - {{{kbd(TAB)}}} (~org-cycle~) ::
741      #+kindex: TAB
742      #+findex: org-cycle
743      In a new entry with no text yet, the first {{{kbd(TAB)}}} demotes
744      the entry to become a child of the previous one.  The next
745      {{{kbd(TAB)}}} makes it a parent, and so on, all the way to top
746      level.  Yet another {{{kbd(TAB)}}}, and you are back to the
747      initial level.
749 - {{{kbd(M-left)}}} (~org-do-promote~) ::
751      #+kindex: M-left
752      #+findex: org-do-promote
753      Promote current heading by one level.
755 - {{{kbd(M-right)}}} (~org-do-demote~) ::
757      #+kindex: M-right
758      #+findex: org-do-demote
759      Demote current heading by one level.
761 - {{{kbd(M-S-left)}}} (~org-promote-subtree~) ::
763      #+kindex: M-S-left
764      #+findex: org-promote-subtree
765      Promote the current subtree by one level.
767 - {{{kbd(M-S-right)}}} (~org-demote-subtree~) ::
769      #+kindex: M-S-right
770      #+findex: org-demote-subtree
771      Demote the current subtree by one level.
773 - {{{kbd(M-up)}}} (~org-move-subtree-up~) ::
775      #+kindex: M-up
776      #+findex: org-move-subtree-up
777      Move subtree up, i.e., swap with previous subtree of same level.
779 - {{{kbd(M-down)}}} (~org-move-subtree-down~) ::
781      #+kindex: M-down
782      #+findex: org-move-subtree-down
783      Move subtree down, i.e., swap with next subtree of same level.
785 - {{{kbd(C-c @)}}} (~org-mark-subtree~) ::
787      #+kindex: C-c @@
788      #+findex: org-mark-subtree
789      Mark the subtree at point.  Hitting repeatedly marks subsequent
790      subtrees of the same level as the marked subtree.
792 - {{{kbd(C-c C-x C-w)}}} (~org-cut-subtree~) ::
794      #+kindex: C-c C-x C-w
795      #+findex: org-cut-subtree
796      Kill subtree, i.e., remove it from buffer but save in kill ring.
797      With a numeric prefix argument N, kill N sequential subtrees.
799 - {{{kbd(C-c C-x M-w)}}} (~org-copy-subtree~) ::
801      #+kindex: C-c C-x M-w
802      #+findex: org-copy-subtree
803      Copy subtree to kill ring.  With a numeric prefix argument N,
804      copy the N sequential subtrees.
806 - {{{kbd(C-c C-x C-y)}}} (~org-paste-subtree~) ::
808      #+kindex: C-c C-x C-y
809      #+findex: org-paste-subtree
810      Yank subtree from kill ring.  This does modify the level of the
811      subtree to make sure the tree fits in nicely at the yank
812      position.  The yank level can also be specified with a numeric
813      prefix argument, or by yanking after a headline marker like
814      =****=.
816 - {{{kbd(C-y)}}} (~org-yank~) ::
818      #+kindex: C-y
819      #+findex: org-yank
820      #+vindex: org-yank-adjusted-subtrees
821      #+vindex: org-yank-folded-subtrees
822      Depending on the variables ~org-yank-adjusted-subtrees~ and
823      ~org-yank-folded-subtrees~, Org's internal ~yank~ command pastes
824      subtrees folded and in a clever way, using the same command as
825      {{{kbd(C-c C-x C-y)}}}.  With the default settings, no level
826      adjustment takes place, but the yanked tree is folded unless
827      doing so would swallow text previously visible.  Any prefix
828      argument to this command forces a normal ~yank~ to be executed,
829      with the prefix passed along.  A good way to force a normal yank
830      is {{{kbd(C-u C-y)}}}.  If you use ~yank-pop~ after a yank, it
831      yanks previous kill items plainly, without adjustment and
832      folding.
834 - {{{kbd(C-c C-x c)}}} (~org-clone-subtree-with-time-shift~) ::
836      #+kindex: C-c C-x c
837      #+findex: org-clone-subtree-with-time-shift
838      Clone a subtree by making a number of sibling copies of it.  You
839      are prompted for the number of copies to make, and you can also
840      specify if any timestamps in the entry should be shifted.  This
841      can be useful, for example, to create a number of tasks related
842      to a series of lectures to prepare.  For more details, see the
843      docstring of the command ~org-clone-subtree-with-time-shift~.
845 - {{{kbd(C-c C-w)}}} (~org-refile~) ::
847      #+kindex: C-c C-w
848      #+findex: org-refile
849      Refile entry or region to a different location.  See [[Refile and
850      copy]].
852 - {{{kbd(C-c ^)}}} (~org-sort~) ::
854      #+kindex: C-c ^
855      #+findex: org-sort
856      Sort same-level entries.  When there is an active region, all
857      entries in the region are sorted.  Otherwise the children of the
858      current headline are sorted.  The command prompts for the sorting
859      method, which can be alphabetically, numerically, by time---first
860      timestamp with active preferred, creation time, scheduled time,
861      deadline time---by priority, by TODO keyword---in the sequence
862      the keywords have been defined in the setup---or by the value of
863      a property.  Reverse sorting is possible as well.  You can also
864      supply your own function to extract the sorting key.  With
865      a {{{kbd(C-u)}}} prefix, sorting is case-sensitive.
867 - {{{kbd(C-x n s)}}} (~org-narrow-to-subtree~) ::
869      #+kindex: C-x n s
870      #+findex: org-narrow-to-subtree
871      Narrow buffer to current subtree.
873 - {{{kbd(C-x n b)}}} (~org-narrow-to-block~) ::
875      #+kindex: C-x n b
876      #+findex: org-narrow-to-block
877      Narrow buffer to current block.
879 - {{{kbd(C-x n w)}}} (~widen~) ::
881      #+kindex: C-x n w
882      #+findex: widen
883      Widen buffer to remove narrowing.
885 - {{{kbd(C-c *)}}} (~org-toggle-heading~) ::
887      #+kindex: C-c *
888      #+findex: org-toggle-heading
889      Turn a normal line or plain list item into a headline---so that
890      it becomes a subheading at its location.  Also turn a headline
891      into a normal line by removing the stars.  If there is an active
892      region, turn all lines in the region into headlines.  If the
893      first line in the region was an item, turn only the item lines
894      into headlines.  Finally, if the first line is a headline, remove
895      the stars from all headlines in the region.
897 #+cindex: region, active
898 #+cindex: active region
899 #+cindex: transient mark mode
900 When there is an active region---i.e., when Transient Mark mode is
901 active---promotion and demotion work on all headlines in the region.
902 To select a region of headlines, it is best to place both point and
903 mark at the beginning of a line, mark at the beginning of the first
904 headline, and point at the line just after the last headline to
905 change.  Note that when the cursor is inside a table (see [[*Tables]]),
906 the Meta-Cursor keys have different functionality.
908 ** Sparse trees
909 :PROPERTIES:
910 :DESCRIPTION: Matches embedded in context.
911 :ALT_TITLE: Sparse trees
912 :END:
913 #+cindex: sparse trees
914 #+cindex: trees, sparse
915 #+cindex: folding, sparse trees
916 #+cindex: occur, command
918 #+vindex: org-show-context-detail
919 An important feature of Org mode is the ability to construct /sparse
920 trees/ for selected information in an outline tree, so that the entire
921 document is folded as much as possible, but the selected information
922 is made visible along with the headline structure above it[fn:7].
923 Just try it out and you will see immediately how it works.
925 Org mode contains several commands creating such trees, all these
926 commands can be accessed through a dispatcher:
928 - {{{kbd(C-c /)}}} (~org-sparse-tree~) ::
930      #+kindex: C-c /
931      #+findex: org-sparse-tree
932      This prompts for an extra key to select a sparse-tree creating
933      command.
935 - {{{kbd(C-c / r)}}} or {{{kbd(C-c / /)}}} (~org-occur~) ::
937      #+kindex: C-c / r
938      #+kindex: C-c / /
939      #+findex: org-occur
940      #+vindex: org-remove-highlights-with-change
941      Prompts for a regexp and shows a sparse tree with all matches.
942      If the match is in a headline, the headline is made visible.  If
943      the match is in the body of an entry, headline and body are made
944      visible.  In order to provide minimal context, also the full
945      hierarchy of headlines above the match is shown, as well as the
946      headline following the match.  Each match is also highlighted;
947      the highlights disappear when the buffer is changed by an editing
948      command, or by pressing {{{kbd(C-c C-c)}}}[fn:8].  When called
949      with a {{{kbd(C-u)}}} prefix argument, previous highlights are
950      kept, so several calls to this command can be stacked.
952 - {{{kbd(M-g n)}}} or {{{kbd(M-g M-n)}}} (~next-error~) ::
954      #+kindex: M-g n
955      #+kindex: M-g M-n
956      #+findex: next-error
957      Jump to the next sparse tree match in this buffer.
959 - {{{kbd(M-g p)}}} or {{{kbd(M-g M-p)}}} (~previous-error~) ::
961      #+kindex: M-g p
962      #+kindex: M-g M-p
963      #+findex: previous-error
964      Jump to the previous sparse tree match in this buffer.
966 #+vindex: org-agenda-custom-commands
967 #+texinfo: @noindent
968 For frequently used sparse trees of specific search strings, you can
969 use the variable ~org-agenda-custom-commands~ to define fast keyboard
970 access to specific sparse trees.  These commands will then be
971 accessible through the agenda dispatcher (see [[*The agenda dispatcher]]).
972 For example:
974 #+begin_src emacs-lisp
975   (setq org-agenda-custom-commands
976         '(("f" occur-tree "FIXME")))
977 #+end_src
979 #+texinfo: @noindent
980 defines the key {{{kbd(C-c a f)}}} as a shortcut for creating a sparse
981 tree matching the string =FIXME=.
983 The other sparse tree commands select headings based on TODO keywords,
984 tags, or properties and are discussed later in this manual.
986 #+kindex: C-c C-e v
987 #+cindex: printing sparse trees
988 #+cindex: visible text, printing
989 To print a sparse tree, you can use the Emacs command
990 ~ps-print-buffer-with-faces~ which does not print invisible parts of
991 the document.  Or you can use the command {{{kbd(C-c C-e v)}}} to
992 export only the visible part of the document and print the resulting
993 file.
995 ** Plain lists
996 :PROPERTIES:
997 :DESCRIPTION: Additional structure within an entry.
998 :ALT_TITLE: Plain lists
999 :END:
1000 #+cindex: plain lists
1001 #+cindex: lists, plain
1002 #+cindex: lists, ordered
1003 #+cindex: ordered lists
1005 Within an entry of the outline tree, hand-formatted lists can provide
1006 additional structure.  They also provide a way to create lists of
1007 checkboxes (see [[*Checkboxes]]).  Org supports editing such lists, and
1008 every exporter (see [[*Exporting]]) can parse and format them.
1010 Org knows ordered lists, unordered lists, and description lists.
1012 #+attr_texinfo: :indic @bullet
1013 - /Unordered/ list items start with =-=, =+=, or =*=[fn:9] as bullets.
1016   #+vindex: org-plain-list-ordered-item-terminator
1017   #+vindex: org-alphabetical-lists
1018   /Ordered/ list items start with a numeral followed by either
1019   a period or a right parenthesis[fn:10], such as =1.= or =1)=[fn:11]
1020   If you want a list to start with a different value---e.g.,
1021   20---start the text of the item with =[@20]=[fn:12].  Those
1022   constructs can be used in any item of the list in order to enforce
1023   a particular numbering.
1025 - /Description/ list items are unordered list items, and contain the
1026   separator =::= to distinguish the description /term/ from the
1027   description.
1029 Items belonging to the same list must have the same indentation on the
1030 first line.  In particular, if an ordered list reaches number =10.=,
1031 then the 2-digit numbers must be written left-aligned with the other
1032 numbers in the list.  An item ends before the next line that is less
1033 or equally indented than its bullet/number.
1035 A list ends whenever every item has ended, which means before any line
1036 less or equally indented than items at top level.  It also ends before
1037 two blank lines.  In that case, all items are closed.  Here is an
1038 example:
1040 #+begin_example
1041   ,* Lord of the Rings
1042   My favorite scenes are (in this order)
1043   1. The attack of the Rohirrim
1044   2. Eowyn's fight with the witch king
1045      + this was already my favorite scene in the book
1046      + I really like Miranda Otto.
1047   3. Peter Jackson being shot by Legolas
1048      - on DVD only
1049      He makes a really funny face when it happens.
1050   But in the end, no individual scenes matter but the film as a whole.
1051   Important actors in this film are:
1052   - Elijah Wood :: He plays Frodo
1053   - Sean Astin :: He plays Sam, Frodo's friend. I still remember him
1054        very well from his role as Mikey Walsh in /The Goonies/.
1055 #+end_example
1057 Org supports these lists by tuning filling and wrapping commands to
1058 deal with them correctly, and by exporting them properly (see
1059 [[Exporting]]).  Since indentation is what governs the structure of these
1060 lists, many structural constructs like =#+BEGIN_= blocks can be
1061 indented to signal that they belong to a particular item.
1063 #+vindex: org-list-demote-modify-bullet
1064 #+vindex: org-list-indent-offset
1065 If you find that using a different bullet for a sub-list---than that
1066 used for the current list-level---improves readability, customize the
1067 variable ~org-list-demote-modify-bullet~.  To get a greater difference
1068 of indentation between items and theirs sub-items, customize
1069 ~org-list-indent-offset~.
1071 #+vindex: org-list-automatic-rules
1072 The following commands act on items when the cursor is in the first
1073 line of an item---the line with the bullet or number.  Some of them
1074 imply the application of automatic rules to keep list structure
1075 intact.  If some of these actions get in your way, configure
1076 ~org-list-automatic-rules~ to disable them individually.
1078 #+attr_texinfo: :sep ,
1079   - {{{kbd(TAB)}}} (~org-cycle~) ::
1081        #+cindex: cycling, in plain lists
1082        #+kindex: TAB
1083        #+findex: org-cycle
1084        #+vindex: org-cycle-include-plain-lists
1085        Items can be folded just like headline levels.  Normally this
1086        works only if the cursor is on a plain list item.  For more
1087        details, see the variable ~org-cycle-include-plain-lists~.  If
1088        this variable is set to ~integrate~, plain list items are
1089        treated like low-level headlines.  The level of an item is then
1090        given by the indentation of the bullet/number.  Items are
1091        always subordinate to real headlines, however; the hierarchies
1092        remain completely separated.  In a new item with no text yet,
1093        the first {{{kbd(TAB)}}} demotes the item to become a child of
1094        the previous one.  Subsequent {{{kbd(TAB)}}}s move the item to
1095        meaningful levels in the list and eventually get it back to its
1096        initial position.
1098   - {{{kbd(M-RET)}}} (~org-insert-heading~) ::
1100        #+kindex: M-RET
1101        #+findex: org-insert-heading
1102        #+vindex: org-M-RET-may-split-line
1103        Insert new item at current level.  With a prefix argument,
1104        force a new heading (see [[Structure editing]]).  If this command
1105        is used in the middle of an item, that item is /split/ in two,
1106        and the second part becomes the new item[fn:13].  If this
1107        command is executed /before item's body/, the new item is
1108        created /before/ the current one.
1110   - {{{kbd(M-S-RET)}}} ::
1112        #+kindex: M-S-RET
1113        Insert a new item with a checkbox (see [[Checkboxes]]).
1115   - {{{kbd(S-up)}}}, {{{kbd(S-down)}}} ::
1117        #+kindex: S-up
1118        #+kindex: S-down
1119        #+cindex: shift-selection-mode
1120        #+vindex: org-support-shift-select
1121        #+vindex: org-list-use-circular-motion
1122        Jump to the previous/next item in the current list, but only if
1123        ~org-support-shift-select~ is off[fn:14].  If not, you can
1124        still use paragraph jumping commands like {{{kbd(C-up)}}}
1125        and {{{kbd(C-down)}}} to quite similar effect.
1127   - {{{kbd(M-up)}}}, {{{kbd(M-down)}}} ::
1129        #+kindex: M-up
1130        #+kindex: M-down
1131        Move the item including subitems up/down[fn:15], i.e., swap
1132        with previous/next item of same indentation.  If the list is
1133        ordered, renumbering is automatic.
1135   - {{{kbd(M-left)}}}, {{{kbd(M-right)}}} ::
1137        #+kindex: M-left
1138        #+kindex: M-right
1139        Decrease/increase the indentation of an item, leaving children
1140        alone.
1142   - {{{kbd(M-S-left)}}}, {{{kbd(M-S-right)}}} ::
1144        #+kindex: M-S-left
1145        #+kindex: M-S-right
1146        Decrease/increase the indentation of the item, including
1147        subitems.  Initially, the item tree is selected based on
1148        current indentation.  When these commands are executed several
1149        times in direct succession, the initially selected region is
1150        used, even if the new indentation would imply a different
1151        hierarchy.  To use the new hierarchy, break the command chain
1152        with a cursor motion or so.
1154        As a special case, using this command on the very first item of
1155        a list moves the whole list.  This behavior can be disabled by
1156        configuring ~org-list-automatic-rules~.  The global indentation
1157        of a list has no influence on the text /after/ the list.
1159   - {{{kbd(C-c C-c)}}} ::
1161        #+kindex: C-c C-c
1162        If there is a checkbox (see [[Checkboxes]]) in the item line,
1163        toggle the state of the checkbox.  In any case, verify bullets
1164        and indentation consistency in the whole list.
1166   - {{{kbd(C-c -)}}} ::
1168        #+kindex: C-c -
1169        #+vindex: org-plain-list-ordered-item-terminator
1170        Cycle the entire list level through the different
1171        itemize/enumerate bullets (=-=, =+=, =*=, =1.=, =1)=) or
1172        a subset of them, depending on
1173        ~org-plain-list-ordered-item-terminator~, the type of list, and
1174        its indentation.  With a numeric prefix argument N, select the
1175        Nth bullet from this list.  If there is an active region when
1176        calling this, selected text is changed into an item.  With
1177        a prefix argument, all lines are converted to list items.  If
1178        the first line already was a list item, any item marker is
1179        removed from the list.  Finally, even without an active region,
1180        a normal line is converted into a list item.
1182   - {{{kbd(C-c *)}}} ::
1184        #+kindex: C-c *
1185        Turn a plain list item into a headline---so that it becomes
1186        a subheading at its location.  See [[*Structure editing]], for
1187        a detailed explanation.
1189   - {{{kbd(C-c C-*)}}} ::
1191        #+kindex: C-c C-*
1192        Turn the whole plain list into a subtree of the current
1193        heading.  Checkboxes (see [[*Checkboxes]]) become TODO,
1194        respectively DONE, keywords when unchecked, respectively
1195        checked.
1197   - {{{kbd(S-left)}}}, {{{kbd(S-right)}}} ::
1199        #+vindex: org-support-shift-select
1200        #+kindex: S-left
1201        #+kindex: S-right
1202        This command also cycles bullet styles when the cursor in on
1203        the bullet or anywhere in an item line, details depending on
1204        ~org-support-shift-select~.
1206   - {{{kbd(C-c ^)}}} ::
1208        #+kindex: C-c ^
1209        #+cindex: sorting, of plain list
1210        Sort the plain list.  Prompt for the sorting method:
1211        numerically, alphabetically, by time, or by custom function.
1213 ** Drawers
1214 :PROPERTIES:
1215 :DESCRIPTION: Tucking stuff away.
1216 :END:
1217 #+cindex: drawers
1218 #+cindex: visibility cycling, drawers
1220 Sometimes you want to keep information associated with an entry, but
1221 you normally do not want to see it.  For this, Org mode has /drawers/.
1222 They can contain anything but a headline and another drawer.  Drawers
1223 look like this:
1225 #+begin_example
1226   ,** This is a headline
1227   Still outside the drawer
1228   :DRAWERNAME:
1229   This is inside the drawer.
1230   :END:
1231   After the drawer.
1232 #+end_example
1234 #+kindex: C-c C-x d
1235 #+findex: org-insert-drawer
1236 You can interactively insert a drawer at point by calling
1237 ~org-insert-drawer~, which is bound to {{{kbd(C-c C-x d)}}}.  With an
1238 active region, this command puts the region inside the drawer.  With
1239 a prefix argument, this command calls ~org-insert-property-drawer~,
1240 which creates a =PROPERTIES= drawer right below the current headline.
1241 Org mode uses this special drawer for storing properties (see
1242 [[*Properties and columns]]).  You cannot use it for anything else.
1244 Completion over drawer keywords is also possible using
1245 {{{kbd(M-TAB)}}}[fn:16].
1247 Visibility cycling (see [[*Visibility cycling]]) on the headline hides and
1248 shows the entry, but keep the drawer collapsed to a single line.  In
1249 order to look inside the drawer, you need to move the cursor to the
1250 drawer line and press {{{kbd(TAB)}}} there.
1252 You can also arrange for state change notes (see [[Tracking TODO state
1253 changes]]) and clock times (see [[*Clocking work time]]) to be stored in
1254 a =LOGBOOK= drawer.  If you want to store a quick note there, in
1255 a similar way to state changes, use
1257 - {{{kbd(C-c C-z)}}} ::
1259      #+kindex: C-c C-z
1260      Add a time-stamped note to the =LOGBOOK= drawer.
1262 ** Blocks
1263 :PROPERTIES:
1264 :DESCRIPTION: Folding blocks.
1265 :END:
1266 #+vindex: org-hide-block-startup
1267 #+cindex: blocks, folding
1269 Org mode uses =#+BEGIN= ... =#+END= blocks for various purposes from
1270 including source code examples (see [[*Literal examples]]) to capturing
1271 time logging information (see [[*Clocking work time]]).  These blocks can
1272 be folded and unfolded by pressing {{{kbd(TAB)}}} in the =#+BEGIN=
1273 line.  You can also get all blocks folded at startup by configuring
1274 the variable ~org-hide-block-startup~ or on a per-file basis by using
1276 #+cindex: STARTUP, keyword
1277 #+begin_example
1278   ,#+STARTUP: hideblocks
1279   ,#+STARTUP: nohideblocks
1280 #+end_example
1282 ** Creating footnotes
1283 :PROPERTIES:
1284 :DESCRIPTION: How footnotes are defined in Org's syntax.
1285 :END:
1286 #+cindex: footnotes
1288 Org mode supports the creation of footnotes.
1290 A footnote is started by a footnote marker in square brackets in
1291 column 0, no indentation allowed.  It ends at the next footnote
1292 definition, headline, or after two consecutive empty lines.  The
1293 footnote reference is simply the marker in square brackets, inside
1294 text.  Markers always start with =fn:=.  For example:
1296 #+begin_example
1297   The Org homepage[fn:1] now looks a lot better than it used to.
1298   ...
1299   [fn:1] The link is: https://orgmode.org
1300 #+end_example
1302 Org mode extends the number-based syntax to /named/ footnotes and
1303 optional inline definition.  Here are the valid references:
1305 - =[fn:NAME]= ::
1307      A named footnote reference, where {{{var(NAME)}}} is a unique
1308      label word, or, for simplicity of automatic creation, a number.
1310 - =[fn:: This is the inline definition of this footnote]= ::
1312      A LaTeX-like anonymous footnote where the definition is given
1313      directly at the reference point.
1315 - =[fn:NAME: a definition]= ::
1317      An inline definition of a footnote, which also specifies a name
1318      for the note.  Since Org allows multiple references to the same
1319      note, you can then use =[fn:NAME]= to create additional
1320      references.
1322 #+vindex: org-footnote-auto-label
1323 Footnote labels can be created automatically, or you can create names
1324 yourself.  This is handled by the variable ~org-footnote-auto-label~
1325 and its corresponding =STARTUP= keywords.  See the docstring of that
1326 variable for details.
1328 #+texinfo: @noindent
1329 The following command handles footnotes:
1331 - {{{kbd(C-c C-x f)}}} :: The footnote action command.
1333      #+kindex: C-c C-x f
1334      When the cursor is on a footnote reference, jump to the
1335      definition.  When it is at a definition, jump to
1336      the---first---reference.
1338      #+vindex: org-footnote-define-inline
1339      #+vindex: org-footnote-section
1340      Otherwise, create a new footnote.  Depending on the variable
1341      ~org-footnote-define-inline~[fn:17], the definition is placed
1342      right into the text as part of the reference, or separately into
1343      the location determined by the variable ~org-footnote-section~.
1345      When this command is called with a prefix argument, a menu of
1346      additional options is offered:
1348      #+attr_texinfo: :columns 0.1 0.9
1349      | {{{kbd(s)}}} | Sort the footnote definitions by reference sequence.               |
1350      | {{{kbd(r)}}} | Renumber the simple =fn:N= footnotes.                              |
1351      | {{{kbd(S)}}} | Short for first {{{kbd(r)}}}, then {{{kbd(s)}}} action.            |
1352      | {{{kbd(n)}}} | Rename all footnotes into a =fn:1= ... =fn:n= sequence.            |
1353      | {{{kbd(d)}}} | Delete the footnote at point, including definition and references. |
1355      #+vindex: org-footnote-auto-adjust
1356      Depending on the variable ~org-footnote-auto-adjust~[fn:18],
1357      renumbering and sorting footnotes can be automatic after each
1358      insertion or deletion.
1360 - {{{kbd(C-c C-c)}}} ::
1362      #+kindex: C-c C-c
1363      If the cursor is on a footnote reference, jump to the definition.
1364      If it is at the definition, jump back to the reference.  When
1365      called at a footnote location with a prefix argument, offer the
1366      same menu as {{{kbd(C-c C-x f)}}}.
1368 - {{{kbd(C-c C-o)}}} or {{{kbd(mouse-1/2)}}} ::
1370      #+kindex: C-c C-o
1371      #+kindex: mouse-1
1372      #+kindex: mouse-2
1373      Footnote labels are also links to the corresponding definition or
1374      reference, and you can use the usual commands to follow these
1375      links.
1377 ** Org syntax
1378 :PROPERTIES:
1379 :DESCRIPTION: Formal description of Org's syntax.
1380 :END:
1382 A reference document providing a formal description of Org's syntax is
1383 available as [[https://orgmode.org/worg/dev/org-syntax.html][a draft on Worg]], written and maintained by Nicolas
1384 Goaziou.  It defines Org's core internal concepts such as =headlines=,
1385 =sections=, =affiliated keywords=, =(greater) elements= and =objects=.
1386 Each part of an Org file falls into one of the categories above.
1388 To explore the abstract structure of an Org buffer, run this in
1389 a buffer:
1391 : M-: (org-element-parse-buffer) <RET>
1393 #+texinfo: @noindent
1394 It outputs a list containing the buffer's content represented as an
1395 abstract structure.  The export engine relies on the information
1396 stored in this list.  Most interactive commands---e.g., for structure
1397 editing---also rely on the syntactic meaning of the surrounding
1398 context.
1400 #+cindex: syntax checker
1401 #+cindex: linter
1402 #+findex: org-lint
1403 You can check syntax in your documents using ~org-lint~ command.
1405 * Tables
1406 :PROPERTIES:
1407 :DESCRIPTION: Pure magic for quick formatting.
1408 :END:
1409 #+cindex: tables
1410 #+cindex: editing tables
1412 Org comes with a fast and intuitive table editor.  Spreadsheet-like
1413 calculations are supported using the Emacs Calc package (see
1414 [[info:calc]]).
1416 ** Built-in table editor
1417 :PROPERTIES:
1418 :DESCRIPTION: Simple tables.
1419 :END:
1420 #+cindex: table editor, built-in
1422 Org makes it easy to format tables in plain ASCII.  Any line with =|=
1423 as the first non-whitespace character is considered part of a table.
1424 =|= is also the column separator[fn:19].  A table might look like
1425 this:
1427 #+begin_example
1428   | Name  | Phone | Age |
1429   |-------+-------+-----|
1430   | Peter |  1234 |  17 |
1431   | Anna  |  4321 |  25 |
1432 #+end_example
1434 A table is re-aligned automatically each time you press
1435 {{{kbd(TAB)}}}, {{{kbd(RET)}}} or {{{kbd(C-c C-c)}}} inside the table.
1436 {{{kbd(TAB)}}} also moves to the next field---{{{kbd(RET)}}} to the
1437 next row---and creates new table rows at the end of the table or
1438 before horizontal lines.  The indentation of the table is set by the
1439 first line.  Any line starting with =|-= is considered as a horizontal
1440 separator line and will be expanded on the next re-align to span the
1441 whole table width.  So, to create the above table, you would only type
1443 #+begin_example
1444   |Name|Phone|Age|
1445   |-
1446 #+end_example
1448 #+texinfo: @noindent
1449 and then press {{{kbd(TAB)}}} to align the table and start filling in
1450 fields.  Even faster would be to type =|Name|Phone|Age= followed by
1451 {{{kbd(C-c RET)}}}.
1453 When typing text into a field, Org treats {{{kbd(DEL)}}},
1454 {{{kbd(Backspace)}}}, and all character keys in a special way, so that
1455 inserting and deleting avoids shifting other fields.  Also, when
1456 typing /immediately/ after the cursor was moved into a new field with
1457 {{{kbd(TAB)}}}, {{{kbd(S-TAB)}}} or {{{kbd(RET)}}}, the field is
1458 automatically made blank.  If this behavior is too unpredictable for
1459 you, configure the option ~org-table-auto-blank-field~.
1461 *** Creation and conversion
1462 :PROPERTIES:
1463 :UNNUMBERED: notoc
1464 :END:
1466 - {{{kbd(C-c |)}}} (~org-table-create-or-convert-from-region~) ::
1468      #+kindex: C-c |
1469      #+findex: org-table-create-or-convert-from-region
1470      Convert the active region to table.  If every line contains at
1471      least one {{{kbd(TAB)}}} character, the function assumes that the
1472      material is tab separated.  If every line contains a comma,
1473      comma-separated values (CSV) are assumed.  If not, lines are
1474      split at whitespace into fields.  You can use a prefix argument
1475      to force a specific separator: {{{kbd(C-u)}}} forces CSV,
1476      {{{kbd(C-u C-u)}}} forces {{{kbd(TAB)}}}, {{{kbd(C-u C-u C-u)}}}
1477      prompts for a regular expression to match the separator, and
1478      a numeric argument N indicates that at least N consecutive
1479      spaces, or alternatively a {{{kbd(TAB)}}} will be the separator.
1481      If there is no active region, this command creates an empty Org
1482      table.  But it is easier just to start typing, like {{{kbd(|
1483      N a m e | P h o n e | A g e RET | - TAB)}}}.
1485 *** Re-aligning and field motion
1486 :PROPERTIES:
1487 :UNNUMBERED: notoc
1488 :END:
1490 - {{{kbd(C-c C-c)}}} (~org-table-align~) ::
1492      #+kindex: C-c C-c
1493      #+findex: org-table-align
1494      Re-align the table without moving the cursor.
1496 - {{{kbd(TAB)}}} (~org-table-next-field~) ::
1498      #+kindex: TAB
1499      #+findex: org-table-next-field
1500      Re-align the table, move to the next field.  Creates a new row if
1501      necessary.
1503 - {{{kbd(C-c SPC)}}} (~org-table-blank-field~) ::
1505      #+kindex: C-c SPC
1506      #+findex: org-table-blank-field
1507      Blank the field at point.
1509 - {{{kbd(S-TAB)}}} (~org-table-previous-field~) ::
1511      #+kindex: S-TAB
1512      #+findex: org-table-previous-field
1513      Re-align, move to previous field.
1515 - {{{kbd(RET)}}} (~org-table-next-row~) ::
1517      #+kindex: RET
1518      #+findex: org-table-next-row
1519      Re-align the table and move down to next row.  Creates a new row
1520      if necessary.  At the beginning or end of a line, {{{kbd(RET)}}}
1521      still inserts a new line, so it can be used to split a table.
1523 - {{{kbd(M-a)}}} (~org-table-beginning-of-field~) ::
1525      #+kindex: M-a
1526      #+findex: org-table-beginning-of-field
1527      Move to beginning of the current table field, or on to the
1528      previous field.
1530 - {{{kbd(M-e)}}} (~org-table-end-of-field~) ::
1532      #+kindex: M-e
1533      #+findex: org-table-end-of-field
1534      Move to end of the current table field, or on to the next field.
1536 *** Column and row editing
1537 :PROPERTIES:
1538 :UNNUMBERED: notoc
1539 :END:
1541 - {{{kbd(M-left)}}} (~org-table-move-column-left~) ::
1543      #+kindex: M-left
1544      #+findex: org-table-move-column-left
1545      Move the current column left.
1547 - {{{kbd(M-right)}}} (~org-table-move-column-right~) ::
1549      #+kindex: M-right
1550      #+findex: org-table-move-column-right
1551      Move the current column right.
1553 - {{{kbd(M-S-left)}}} (~org-table-delete-column~) ::
1555      #+kindex: M-S-left
1556      #+findex: org-table-delete-column
1557      Kill the current column.
1559 - {{{kbd(M-S-right)}}} (~org-table-insert-column~) ::
1561      #+kindex: M-S-right
1562      #+findex: org-table-insert-column
1563      Insert a new column to the left of the cursor position.
1565 - {{{kbd(M-up)}}} (~org-table-move-row-up~) ::
1567      #+kindex: M-up
1568      #+findex: org-table-move-row-up
1569      Move the current row up.
1571 - {{{kbd(M-down)}}} (~org-table-move-row-down~) ::
1573      #+kindex: M-down
1574      #+findex: org-table-move-row-down
1575      Move the current row down.
1577 - {{{kbd(M-S-up)}}} (~org-table-kill-row~) ::
1579      #+kindex: M-S-up
1580      #+findex: org-table-kill-row
1581      Kill the current row or horizontal line.
1583 - {{{kbd(M-S-down)}}} (~org-table-insert-row~) ::
1585      #+kindex: M-S-down
1586      #+findex: org-table-insert-row
1587      Insert a new row above the current row.  With a prefix argument,
1588      the line is created below the current one.
1590 - {{{kbd(C-c -)}}} (~org-table-insert-hline~) ::
1592      #+kindex: C-c -
1593      #+findex: org-table-insert-hline
1594      Insert a horizontal line below current row.  With a prefix
1595      argument, the line is created above the current line.
1597 - {{{kbd(C-c RET)}}} (~org-table-hline-and-move~) ::
1599      #+kindex: C-c RET
1600      #+findex: org-table-hline-and-move
1601      Insert a horizontal line below current row, and move the cursor
1602      into the row below that line.
1604 - {{{kbd(C-c ^)}}} (~org-table-sort-lines~) ::
1606      #+kindex: C-c ^
1607      #+findex: org-table-sort-lines
1608      Sort the table lines in the region.  The position of point
1609      indicates the column to be used for sorting, and the range of
1610      lines is the range between the nearest horizontal separator
1611      lines, or the entire table.  If point is before the first column,
1612      you are prompted for the sorting column.  If there is an active
1613      region, the mark specifies the first line and the sorting column,
1614      while point should be in the last line to be included into the
1615      sorting.  The command prompts for the sorting type,
1616      alphabetically, numerically, or by time.  You can sort in normal
1617      or reverse order.  You can also supply your own key extraction
1618      and comparison functions.  When called with a prefix argument,
1619      alphabetic sorting is case-sensitive.
1621 *** Regions
1622 :PROPERTIES:
1623 :UNNUMBERED: notoc
1624 :END:
1626 - {{{kbd(C-c C-x M-w)}}} (~org-table-copy-region~) ::
1628      #+kindex: C-c C-x M-w
1629      #+findex: org-table-copy-region
1630      Copy a rectangular region from a table to a special clipboard.
1631      Point and mark determine edge fields of the rectangle.  If there
1632      is no active region, copy just the current field.  The process
1633      ignores horizontal separator lines.
1635 - {{{kbd(C-c C-x C-w)}}} (~org-table-cut-region~) ::
1637      #+kindex: C-c C-x C-w
1638      #+findex: org-table-cut-region
1639      Copy a rectangular region from a table to a special clipboard,
1640      and blank all fields in the rectangle.  So this is the "cut"
1641      operation.
1643 - {{{kbd(C-c C-x C-y)}}} (~org-table-paste-rectangle~) ::
1645      #+kindex: C-c C-x C-y
1646      #+findex: org-table-paste-rectangle
1647      Paste a rectangular region into a table.  The upper left corner
1648      ends up in the current field.  All involved fields are
1649      overwritten.  If the rectangle does not fit into the present
1650      table, the table is enlarged as needed.  The process ignores
1651      horizontal separator lines.
1653 - {{{kbd(M-RET)}}} (~org-table-wrap-region~) ::
1655      #+kindex: M-RET
1656      #+findex: org-table-wrap-region
1657      Split the current field at the cursor position and move the rest
1658      to the line below.  If there is an active region, and both point
1659      and mark are in the same column, the text in the column is
1660      wrapped to minimum width for the given number of lines.
1661      A numeric prefix argument may be used to change the number of
1662      desired lines.  If there is no region, but you specify a prefix
1663      argument, the current field is made blank, and the content is
1664      appended to the field above.
1666 *** Calculations
1667 :PROPERTIES:
1668 :UNNUMBERED: notoc
1669 :END:
1671 #+cindex: formula, in tables
1672 #+cindex: calculations, in tables
1674 - {{{kbd(C-c +)}}} (~org-table-sum~) ::
1676      #+kindex: C-c +
1677      #+findex: org-table-sum
1678      Sum the numbers in the current column, or in the rectangle
1679      defined by the active region.  The result is shown in the echo
1680      area and can be inserted with {{{kbd(C-y)}}}.
1682 - {{{kbd(S-RET)}}} (~org-table-copy-down~) ::
1684      #+kindex: S-RET
1685      #+findex: org-table-copy-down
1686      #+vindex: org-table-copy-increment
1687      When current field is empty, copy from first non-empty field
1688      above.  When not empty, copy current field down to next row and
1689      move cursor along with it.  Depending on the variable
1690      ~org-table-copy-increment~, integer field values can be
1691      incremented during copy.  Integers that are too large are not
1692      incremented, however.  Also, a ~0~ prefix argument temporarily
1693      disables the increment.  This key is also used by shift-selection
1694      and related modes (see [[*Packages that conflict with Org mode]]).
1696 *** Miscellaneous
1697 :PROPERTIES:
1698 :UNNUMBERED: notoc
1699 :END:
1701 - {{{kbd(C-c `)}}} (~org-table-edit-field~) ::
1703      #+kindex: C-c `
1704      #+findex: org-table-edit-field
1705      Edit the current field in a separate window.  This is useful for
1706      fields that are not fully visible (see [[*Column width and
1707      alignment]]).  When called with a {{{kbd(C-u)}}} prefix, just make
1708      the full field visible, so that it can be edited in place.  When
1709      called with two {{{kbd(C-u)}}} prefixes, make the editor window
1710      follow the cursor through the table and always show the current
1711      field.  The follow mode exits automatically when the cursor
1712      leaves the table, or when you repeat this command with {{{kbd(C-u
1713      C-u C-c `)}}}.
1715 - {{{kbd(M-x org-table-import)}}} ::
1717      #+findex: org-table-import
1718      Import a file as a table.  The table should be TAB or whitespace
1719      separated.  Use, for example, to import a spreadsheet table or
1720      data from a database, because these programs generally can write
1721      TAB-separated text files.  This command works by inserting the
1722      file into the buffer and then converting the region to a table.
1723      Any prefix argument is passed on to the converter, which uses it
1724      to determine the separator.
1726 - {{{kbd(C-c |)}}} (~org-table-create-or-convert-from-region~) ::
1728      #+kindex: C-c |
1729      #+findex: org-table-create-or-convert-from-region
1730      Tables can also be imported by pasting tabular text into the Org
1731      buffer, selecting the pasted text with {{{kbd(C-x C-x)}}} and
1732      then using the {{{kbd(C-c |)}}} command (see [[*Creation and
1733      conversion]]).
1735 - {{{kbd(M-x org-table-export)}}} ::
1737      #+findex: org-table-export
1738      #+vindex: org-table-export-default-format
1739      Export the table, by default as a TAB-separated file.  Use for
1740      data exchange with, for example, spreadsheet or database
1741      programs.  The format used to export the file can be configured
1742      in the variable ~org-table-export-default-format~.  You may also
1743      use properties =TABLE_EXPORT_FILE= and =TABLE_EXPORT_FORMAT= to
1744      specify the file name and the format for table export in
1745      a subtree.  Org supports quite general formats for exported
1746      tables.  The exporter format is the same as the format used by
1747      Orgtbl radio tables, see [[*Translator functions]], for a detailed
1748      description.
1750 ** Column width and alignment
1751 :PROPERTIES:
1752 :DESCRIPTION: Overrule the automatic settings.
1753 :END:
1754 #+cindex: narrow columns in tables
1755 #+cindex: alignment in tables
1757 The width of columns is automatically determined by the table editor.
1758 The alignment of a column is determined automatically from the
1759 fraction of number-like versus non-number fields in the column.
1761 #+vindex: org-table-automatic-realign
1762 Editing a field may modify alignment of the table.  Moving
1763 a contiguous row or column---i.e., using {{{kbd(TAB)}}} or
1764 {{{kbd(RET)}}}---automatically re-aligns it.  If you want to disable
1765 this behavior, set ~org-table-automatic-realign~ to ~nil~.  In any
1766 case, you can always align manually a table:
1768 - {{{kbd(C-c C-c)}}} (~org-table-align~) ::
1770      #+kindex: C-c C-c
1771      #+findex: org-table-align
1772      Align the current table.
1774 #+texinfo: @noindent
1775 #+vindex: org-startup-align-all-tables
1776 Setting the option ~org-startup-align-all-tables~ re-aligns all tables
1777 in a file upon visiting it.  You can also set this option on
1778 a per-file basis with:
1780 #+begin_example
1781   ,#+STARTUP: align
1782   ,#+STARTUP: noalign
1783 #+end_example
1785 Sometimes a single field or a few fields need to carry more text,
1786 leading to inconveniently wide columns.  Maybe you want to hide away
1787 several columns or display them with a fixed width, regardless of
1788 content, as shown in the following example.
1790 #+begin_example
1791   |---+---------------------+--------|           |---+-------…|…|
1792   |   | <6>                 |        |           |   | <6>   â€¦|…|
1793   | 1 | one                 | some   |   ----\   | 1 | one   â€¦|…|
1794   | 2 | two                 | boring |   ----/   | 2 | two   â€¦|…|
1795   | 3 | This is a long text | column |           | 3 | This i…|…|
1796   |---+---------------------+--------|           |---+-------…|…|
1797 #+end_example
1799 To set the width of a column, one field anywhere in the column may
1800 contain just the string =<N>= where {{{var(N)}}} specifies the width
1801 as a number of characters.  You control displayed width of columns
1802 with the following tools:
1804 - {{{kbd(C-c TAB)}}} (~org-table-toggle-column-width~) ::
1806      #+kindex: C-c TAB
1807      #+findex: org-table-toggle-column-width
1808      Shrink or expand current column.
1810      If a width cookie specifies a width W for the column, shrinking
1811      it displays the first W visible characters only.  Otherwise, the
1812      column is shrunk to a single character.
1814      When called before the first column or after the last one, ask
1815      for a list of column ranges to operate on.
1817 - {{{kbd(C-u C-c TAB)}}} (~org-table-shrink~) ::
1819      #+kindex: C-u C-c TAB
1820      #+findex: org-table-shrink
1821      Shrink all columns with a column width.  Expand the others.
1823 - {{{kbd(C-u C-u C-c TAB)}}} (~org-table-expand~) ::
1825      #+kindex: C-u C-u C-c TAB
1826      #+findex: org-table-expand
1827      Expand all columns.
1829 To see the full text of a shrunk field, hold the mouse over it---a
1830 tool-tip window then shows the full content.  Alternatively {{{kbd(C-h
1831 .)}}}  (~display-local-help~) reveals the full content.  For
1832 convenience, any change to a shrunk column expands it.
1834 #+vindex: org-startup-shrink-all-tables
1835 Setting the option ~org-startup-shrink-all-tables~ shrinks all columns
1836 containing a width cookie in a file the moment it is visited.  You can
1837 also set this option on a per-file basis with:
1839 : #+STARTUP: shrink
1841 If you would like to overrule the automatic alignment of number-rich
1842 columns to the right and of string-rich columns to the left, you can
1843 use =<r>=, =<c>= or =<l>= in a similar fashion.  You may also combine
1844 alignment and field width like this: =<r10>=.
1846 Lines which only contain these formatting cookies are removed
1847 automatically upon exporting the document.
1849 ** Column groups
1850 :PROPERTIES:
1851 :DESCRIPTION: Grouping to trigger vertical lines.
1852 :END:
1853 #+cindex: grouping columns in tables
1855 When Org exports tables, it does so by default without vertical lines
1856 because that is visually more satisfying in general.  Occasionally
1857 however, vertical lines can be useful to structure a table into groups
1858 of columns, much like horizontal lines can do for groups of rows.  In
1859 order to specify column groups, you can use a special row where the
1860 first field contains only =/=.  The further fields can either contain
1861 =<= to indicate that this column should start a group, =>= to indicate
1862 the end of a column, or =<>= (no space between =<= and =>=) to make
1863 a column a group of its own.  Upon export, boundaries between column
1864 groups are marked with vertical lines.  Here is an example:
1866 #+begin_example
1867   | N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N) |
1868   |---+-----+-----+-----+---------+------------|
1869   | / |  <  |     |  >  |       < |          > |
1870   | 1 |  1  |  1  |  1  |       1 |          1 |
1871   | 2 |  4  |  8  | 16  |  1.4142 |     1.1892 |
1872   | 3 |  9  | 27  | 81  |  1.7321 |     1.3161 |
1873   |---+-----+-----+-----+---------+------------|
1874   ,#+TBLFM: $2=$1^2::$3=$1^3::$4=$1^4::$5=sqrt($1)::$6=sqrt(sqrt(($1)))
1875 #+end_example
1877 It is also sufficient to just insert the column group starters after
1878 every vertical line you would like to have:
1880 #+begin_example
1881   | N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N) |
1882   |---+-----+-----+-----+---------+------------|
1883   | / | <   |     |     | <       |            |
1884 #+end_example
1886 ** The Orgtbl minor mode
1887 :PROPERTIES:
1888 :DESCRIPTION: The table editor as minor mode.
1889 :ALT_TITLE: Orgtbl mode
1890 :END:
1891 #+cindex: Orgtbl mode
1892 #+cindex: minor mode for tables
1894 #+findex: orgtbl-mode
1895 If you like the intuitive way the Org table editor works, you might
1896 also want to use it in other modes like Text mode or Mail mode.  The
1897 minor mode Orgtbl mode makes this possible.  You can always toggle the
1898 mode with {{{kbd(M-x orgtbl-mode)}}}.  To turn it on by default, for
1899 example in Message mode, use
1901 #+begin_src emacs-lisp
1902   (add-hook 'message-mode-hook 'turn-on-orgtbl)
1903 #+end_src
1905 Furthermore, with some special setup, it is possible to maintain
1906 tables in arbitrary syntax with Orgtbl mode.  For example, it is
1907 possible to construct LaTeX tables with the underlying ease and power
1908 of Orgtbl mode, including spreadsheet capabilities.  For details, see
1909 [[*Tables in arbitrary syntax]].
1911 ** The spreadsheet
1912 :PROPERTIES:
1913 :DESCRIPTION: The table editor has spreadsheet capabilities.
1914 :END:
1915 #+cindex: calculations, in tables
1916 #+cindex: spreadsheet capabilities
1917 #+cindex: Calc package
1919 The table editor makes use of the Emacs Calc package to implement
1920 spreadsheet-like capabilities.  It can also evaluate Emacs Lisp forms
1921 to derive fields from other fields.  While fully featured, Org's
1922 implementation is not identical to other spreadsheets.  For example,
1923 Org knows the concept of a /column formula/ that will be applied to
1924 all non-header fields in a column without having to copy the formula
1925 to each relevant field.  There is also a formula debugger, and
1926 a formula editor with features for highlighting fields in the table
1927 corresponding to the references at the point in the formula, moving
1928 these references by arrow keys.
1930 *** References
1931 :PROPERTIES:
1932 :DESCRIPTION: How to refer to another field or range.
1933 :END:
1934 #+cindex: references
1936 To compute fields in the table from other fields, formulas must
1937 reference other fields or ranges.  In Org, fields can be referenced by
1938 name, by absolute coordinates, and by relative coordinates.  To find
1939 out what the coordinates of a field are, press {{{kbd(C-c ?)}}} in
1940 that field, or press {{{kbd(C-c })}}} to toggle the display of a grid.
1942 **** Field references
1943 :PROPERTIES:
1944 :UNNUMBERED: notoc
1945 :END:
1947 #+cindex: field references
1948 #+cindex: references, to fields
1949 Formulas can reference the value of another field in two ways.  Like
1950 in any other spreadsheet, you may reference fields with
1951 a letter/number combination like =B3=, meaning the second field in the
1952 third row.  However, Org prefers to use another, more general
1953 representation that looks like this:[fn:20]
1955 : @ROW$COLUMN
1957 Column specifications can be absolute like =$1=, =$2=, ..., =$N=, or
1958 relative to the current column, i.e., the column of the field which is
1959 being computed, like =$+1= or =$-2=.  =$<= and =$>= are immutable
1960 references to the first and last column, respectively, and you can use
1961 =$>>>= to indicate the third column from the right.
1963 The row specification only counts data lines and ignores horizontal
1964 separator lines, or "hlines".  Like with columns, you can use absolute
1965 row numbers =@1=, =@2=, ..., =@N=, and row numbers relative to the
1966 current row like =@+3= or =@-1=.  =@<= and =@>= are immutable
1967 references the first and last row in the table, respectively.  You may
1968 also specify the row relative to one of the hlines: =@I= refers to the
1969 first hline, =@II= to the second, etc.  =@-I= refers to the first such
1970 line above the current line, =@+I= to the first such line below the
1971 current line.  You can also write =@III+2= which is the second data
1972 line after the third hline in the table.
1974 =@0= and =$0= refer to the current row and column, respectively, i.e.,
1975 to the row/column for the field being computed.  Also, if you omit
1976 either the column or the row part of the reference, the current
1977 row/column is implied.
1979 Org's references with /unsigned/ numbers are fixed references in the
1980 sense that if you use the same reference in the formula for two
1981 different fields, the same field is referenced each time.  Org's
1982 references with /signed/ numbers are floating references because the
1983 same reference operator can reference different fields depending on
1984 the field being calculated by the formula.
1986 Here are a few examples:
1988 #+attr_texinfo: :columns 0.2 0.8
1989 | =@2$3=   | 2nd row, 3rd column (same as =C2=)                 |
1990 | =$5=     | column 5 in the current row (same as =E&=)         |
1991 | =@2=     | current column, row 2                              |
1992 | =@-1$-3= | field one row up, three columns to the left        |
1993 | =@-I$2=  | field just under hline above current row, column 2 |
1994 | =@>$5=   | field in the last row, in column 5                 |
1996 **** Range references
1997 :PROPERTIES:
1998 :UNNUMBERED: notoc
1999 :END:
2001 #+cindex: range references
2002 #+cindex: references, to ranges
2003 You may reference a rectangular range of fields by specifying two
2004 field references connected by two dots =..=.  If both fields are in
2005 the current row, you may simply use =$2..$7=, but if at least one
2006 field is in a different row, you need to use the general =@ROW$COLUMN=
2007 format at least for the first field, i.e., the reference must start
2008 with =@= in order to be interpreted correctly.  Examples:
2010 #+attr_texinfo: :columns 0.2 0.8
2011 | =$1..$3=      | first three fields in the current row                          |
2012 | =$P..$Q=      | range, using column names (see [[*Advanced features]])             |
2013 | =$<<<..$>>=   | start in third column, continue to the last but one            |
2014 | =@2$1..@4$3=  | six fields between these two fields (same as =A2..C4=)         |
2015 | =@-1$-2..@-1= | 3 fields in the row above, starting from 2 columns on the left |
2016 | =@I..II=      | between first and second hline, short for =@I..@II=            |
2018 #+texinfo: @noindent
2019 Range references return a vector of values that can be fed into Calc
2020 vector functions.  Empty fields in ranges are normally suppressed, so
2021 that the vector contains only the non-empty fields.  For other options
2022 with the mode switches =E=, =N= and examples, see [[*Formula syntax for
2023 Calc]].
2025 **** Field coordinates in formulas
2026 :PROPERTIES:
2027 :UNNUMBERED: notoc
2028 :END:
2030 #+cindex: field coordinates
2031 #+cindex: coordinates, of field
2032 #+cindex: row, of field coordinates
2033 #+cindex: column, of field coordinates
2034 #+vindex: org-table-current-column
2035 #+vindex: org-table-current-dline
2036 One of the very first actions during evaluation of Calc formulas and
2037 Lisp formulas is to substitute =@#= and =$#= in the formula with the
2038 row or column number of the field where the current result will go to.
2039 The traditional Lisp formula equivalents are ~org-table-current-dline~
2040 and ~org-table-current-column~.  Examples:
2042 - =if(@# % 2, $#, string(""))= ::
2044      Insert column number on odd rows, set field to empty on even
2045      rows.
2047 - =$2 = '(identity remote(FOO, @@#$1))= ::
2049      Copy text or values of each row of column 1 of the table named
2050      {{{var(FOO)}}} into column 2 of the current table.
2052 - =@3 = 2 * remote(FOO, @@1$$#)= ::
2054      Insert the doubled value of each column of row 1 of the table
2055      named {{{var(FOO)}}} into row 3 of the current table.
2057 #+texinfo: @noindent
2058 For the second and third examples, table {{{var(FOO)}}} must have at
2059 least as many rows or columns as the current table.  Note that this is
2060 inefficient[fn:21] for large number of rows.
2062 **** Named references
2063 :PROPERTIES:
2064 :UNNUMBERED: notoc
2065 :END:
2066 #+cindex: named references
2067 #+cindex: references, named
2068 #+cindex: name, of column or field
2069 #+cindex: constants, in calculations
2070 #+cindex: CONSTANTS, keyword
2071 #+vindex: org-table-formula-constants
2073 =$name= is interpreted as the name of a column, parameter or constant.
2074 Constants are defined globally through the variable
2075 ~org-table-formula-constants~, and locally---for the file---through
2076 a line like this example:
2078 : #+CONSTANTS: c=299792458. pi=3.14 eps=2.4e-6
2080 #+texinfo: @noindent
2081 #+vindex: constants-unit-system
2082 #+pindex: constants.el
2083 Also, properties (see [[*Properties and columns]]) can be used as
2084 constants in table formulas: for a property =Xyz= use the name
2085 =$PROP_Xyz=, and the property will be searched in the current outline
2086 entry and in the hierarchy above it.  If you have the =constants.el=
2087 package, it will also be used to resolve constants, including natural
2088 constants like =$h= for Planck's constant, and units like =$km= for
2089 kilometers[fn:22].  Column names and parameters can be specified in
2090 special table lines.  These are described below, see [[*Advanced
2091 features]].  All names must start with a letter, and further consist of
2092 letters and numbers.
2094 **** Remote references
2095 :PROPERTIES:
2096 :UNNUMBERED: notoc
2097 :END:
2099 #+cindex: remote references
2100 #+cindex: references, remote
2101 #+cindex: references, to a different table
2102 #+cindex: name, of column or field
2103 #+cindex: constants, in calculations
2104 #+cindex: NAME, keyword
2105 You may also reference constants, fields and ranges from a different
2106 table, either in the current file or even in a different file.  The
2107 syntax is
2109 : remote(NAME,REF)
2111 #+texinfo: @noindent
2112 where {{{var(NAME)}}} can be the name of a table in the current file
2113 as set by a =#+NAME:= line before the table.  It can also be the ID of
2114 an entry, even in a different file, and the reference then refers to
2115 the first table in that entry.  {{{var(REF)}}} is an absolute field or
2116 range reference as described above for example =@3$3= or =$somename=,
2117 valid in the referenced table.
2119 #+cindex: table indirection
2120 When {{{var(NAME)}}} has the format =@ROW$COLUMN=, it is substituted
2121 with the name or ID found in this field of the current table.  For
2122 example =remote($1, @@>$2)= \Rightarrow =remote(year_2013, @@>$1)=.  The format
2123 =B3= is not supported because it can not be distinguished from a plain
2124 table name or ID.
2126 *** Formula syntax for Calc
2127 :PROPERTIES:
2128 :DESCRIPTION: Using Calc to compute stuff.
2129 :END:
2130 #+cindex: formula syntax, Calc
2131 #+cindex: syntax, of formulas
2133 A formula can be any algebraic expression understood by the Emacs
2134 =Calc= package. Note that =calc= has the non-standard convention that
2135 =/= has lower precedence than =*=, so that =a/b*c= is interpreted as
2136 =(a/(b*c))=.  Before evaluation by ~calc-eval~ (see [[info:calc#Calling Calc from Your Programs][Calling Calc from
2137 Your Lisp Programs]]), variable substitution takes place according to
2138 the rules described above.
2140 #+cindex: vectors, in table calculations
2141 The range vectors can be directly fed into the Calc vector functions
2142 like ~vmean~ and ~vsum~.
2144 #+cindex: format specifier, in spreadsheet
2145 #+cindex: mode, for Calc
2146 #+vindex: org-calc-default-modes
2147 A formula can contain an optional mode string after a semicolon.  This
2148 string consists of flags to influence Calc and other modes during
2149 execution.  By default, Org uses the standard Calc modes (precision
2150 12, angular units degrees, fraction and symbolic modes off).  The
2151 display format, however, has been changed to ~(float 8)~ to keep
2152 tables compact.  The default settings can be configured using the
2153 variable ~org-calc-default-modes~.
2155 - =p20= :: Set the internal Calc calculation precision to 20 digits.
2156 - =n3=, =s3=, =e2=, =f4= :: Normal, scientific, engineering or fixed
2157      format of the result of Calc passed back to Org.  Calc formatting
2158      is unlimited in precision as long as the Calc calculation
2159      precision is greater.
2160 - =D=, =R= :: Degree and radian angle modes of Calc.
2161 - =F=, =S= :: Fraction and symbolic modes of Calc.
2162 - =T=, =t=, =U= :: Duration computations in Calc or Lisp, [[*Durations
2163      and time values]].
2164 - =E= :: If and how to consider empty fields.  Without =E= empty
2165      fields in range references are suppressed so that the Calc vector
2166      or Lisp list contains only the non-empty fields.  With =E= the
2167      empty fields are kept.  For empty fields in ranges or empty field
2168      references the value =nan= (not a number) is used in Calc
2169      formulas and the empty string is used for Lisp formulas.  Add =N=
2170      to use 0 instead for both formula types.  For the value of
2171      a field the mode =N= has higher precedence than =E=.
2172 - =N= :: Interpret all fields as numbers, use 0 for non-numbers.  See
2173      the next section to see how this is essential for computations
2174      with Lisp formulas.  In Calc formulas it is used only
2175      occasionally because there number strings are already interpreted
2176      as numbers without =N=.
2177 - =L= :: Literal, for Lisp formulas only.  See the next section.
2179 #+texinfo: @noindent
2180 Unless you use large integer numbers or high-precision calculation and
2181 display for floating point numbers you may alternatively provide
2182 a ~printf~ format specifier to reformat the Calc result after it has
2183 been passed back to Org instead of letting Calc already do the
2184 formatting[fn:23].  A few examples:
2186 | =$1+$2=            | Sum of first and second field                    |
2187 | =$1+$2;%.2f=       | Same, format result to two decimals              |
2188 | =exp($2)+exp($1)=  | Math functions can be used                       |
2189 | =$0;%.1f=          | Reformat current cell to 1 decimal               |
2190 | =($3-32)*5/9=      | Degrees F \to C conversion                         |
2191 | =$c/$1/$cm=        | Hz \to cm conversion, using =constants.el=         |
2192 | =tan($1);Dp3s1=    | Compute in degrees, precision 3, display SCI 1   |
2193 | =sin($1);Dp3%.1e=  | Same, but use ~printf~ specifier for display     |
2194 | =vmean($2..$7)=    | Compute column range mean, using vector function |
2195 | =vmean($2..$7);EN= | Same, but treat empty fields as 0                |
2196 | =taylor($3,x=7,2)= | Taylor series of $3, at x=7, second degree       |
2198 Calc also contains a complete set of logical operations (see [[info:calc#Logical%20Operations][Logical
2199 Operations]]).  For example
2201 - =if($1 < 20, teen, string(""))= ::
2203      ="teen"= if age =$1= is less than 20, else the Org table result
2204      field is set to empty with the empty string.
2206 - =if("$1" == "nan" || "$2" == "nan", string(""), $1 + $2); E f-1= ::
2208      Sum of the first two columns.  When at least one of the input
2209      fields is empty the Org table result field is set to empty.  =E=
2210      is required to not convert empty fields to 0.  =f-1= is an
2211      optional Calc format string similar to =%.1f= but leaves empty
2212      results empty.
2214 - =if(typeof(vmean($1..$7)) == 12, string(""), vmean($1..$7); E= ::
2216      Mean value of a range unless there is any empty field.  Every
2217      field in the range that is empty is replaced by =nan= which lets
2218      =vmean= result in =nan=.  Then =typeof == 12= detects the =nan=
2219      from ~vmean~ and the Org table result field is set to empty.  Use
2220      this when the sample set is expected to never have missing
2221      values.
2223 - =if("$1..$7" == "[]", string(""), vmean($1..$7))= ::
2225      Mean value of a range with empty fields skipped.  Every field in
2226      the range that is empty is skipped.  When all fields in the range
2227      are empty the mean value is not defined and the Org table result
2228      field is set to empty.  Use this when the sample set can have
2229      a variable size.
2231 - =vmean($1..$7); EN= ::
2233      To complete the example before: Mean value of a range with empty
2234      fields counting as samples with value 0.  Use this only when
2235      incomplete sample sets should be padded with 0 to the full size.
2237 You can add your own Calc functions defined in Emacs Lisp with
2238 ~defmath~ and use them in formula syntax for Calc.
2240 *** Emacs Lisp forms as formulas
2241 :PROPERTIES:
2242 :DESCRIPTION: Writing formulas in Emacs Lisp.
2243 :ALT_TITLE: Formula syntax for Lisp
2244 :END:
2245 #+cindex: Lisp forms, as table formulas
2247 It is also possible to write a formula in Emacs Lisp.  This can be
2248 useful for string manipulation and control structures, if Calc's
2249 functionality is not enough.
2251 If a formula starts with a single-quote followed by an opening
2252 parenthesis, then it is evaluated as a Lisp form.  The evaluation
2253 should return either a string or a number.  Just as with Calc
2254 formulas, you can specify modes and a ~printf~ format after
2255 a semicolon.
2257 With Emacs Lisp forms, you need to be conscious about the way field
2258 references are interpolated into the form.  By default, a reference is
2259 interpolated as a Lisp string (in double-quotes) containing the field.
2260 If you provide the =N= mode switch, all referenced elements are
2261 numbers---non-number fields will be zero---and interpolated as Lisp
2262 numbers, without quotes.  If you provide the =L= flag, all fields are
2263 interpolated literally, without quotes.  I.e., if you want a reference
2264 to be interpreted as a string by the Lisp form, enclose the reference
2265 operator itself in double-quotes, like ="$3"=.  Ranges are inserted as
2266 space-separated fields, so you can embed them in list or vector
2267 syntax.
2269 Here are a few examples---note how the =N= mode is used when we do
2270 computations in Lisp:
2272 - ='(concat (substring $1 1 2) (substring $1 0 1) (substring $1 2))= ::
2274      Swap the first two characters of the content of column 1.
2276 - ='(+ $1 $2);N= ::
2278      Add columns 1 and 2, equivalent to Calc's =$1+$2=.
2280 - ='(apply '+ '($1..$4));N= ::
2282      Compute the sum of columns 1 to 4, like Calc's =vsum($1..$4)=.
2284 *** Durations and time values
2285 :PROPERTIES:
2286 :DESCRIPTION: How to compute durations and time values.
2287 :END:
2288 #+cindex: Duration, computing
2289 #+cindex: Time, computing
2290 #+vindex: org-table-duration-custom-format
2292 If you want to compute time values use the =T=, =t=, or =U= flag,
2293 either in Calc formulas or Elisp formulas:
2295 #+begin_example
2296   |  Task 1 |   Task 2 |    Total |
2297   |---------+----------+----------|
2298   |    2:12 |     1:47 | 03:59:00 |
2299   |    2:12 |     1:47 |    03:59 |
2300   | 3:02:20 | -2:07:00 |     0.92 |
2301   ,#+TBLFM: @2$3=$1+$2;T::@3$3=$1+$2;U::@4$3=$1+$2;t
2302 #+end_example
2304 Input duration values must be of the form =HH:MM[:SS]=, where seconds
2305 are optional.  With the =T= flag, computed durations are displayed as
2306 =HH:MM:SS= (see the first formula above).  With the =U= flag, seconds
2307 are omitted so that the result is only =HH:MM= (see second formula
2308 above).  Zero-padding of the hours field depends upon the value of the
2309 variable ~org-table-duration-hour-zero-padding~.
2311 With the =t= flag, computed durations are displayed according to the
2312 value of the option ~org-table-duration-custom-format~, which defaults
2313 to ~hours~ and displays the result as a fraction of hours (see the
2314 third formula in the example above).
2316 Negative duration values can be manipulated as well, and integers are
2317 considered as seconds in addition and subtraction.
2319 *** Field and range formulas
2320 :PROPERTIES:
2321 :DESCRIPTION: Formula for specific (ranges of) fields.
2322 :END:
2323 #+cindex: field formula
2324 #+cindex: range formula
2325 #+cindex: formula, for individual table field
2326 #+cindex: formula, for range of fields
2328 To assign a formula to a particular field, type it directly into the
2329 field, preceded by =:==, for example =vsum(@II..III)=.  When you press
2330 {{{kbd(TAB)}}} or {{{kbd(RET)}}} or {{{kbd(C-c C-c)}}} with the cursor
2331 still in the field, the formula is stored as the formula for this
2332 field, evaluated, and the current field is replaced with the result.
2334 #+cindex: TBLFM, keyword
2335 Formulas are stored in a special =TBLFM= keyword located directly
2336 below the table.  If you type the equation in the fourth field of the
2337 third data line in the table, the formula looks like =@3$4=$1+$2=.
2338 When inserting/deleting/swapping column and rows with the appropriate
2339 commands, /absolute references/ (but not relative ones) in stored
2340 formulas are modified in order to still reference the same field.  To
2341 avoid this from happening, in particular in range references, anchor
2342 ranges at the table borders (using =@<=, =@>=, =$<=, =$>=), or at
2343 hlines using the =@I= notation.  Automatic adaptation of field
2344 references does of course not happen if you edit the table structure
2345 with normal editing commands---then you must fix the equations
2346 yourself.
2348 Instead of typing an equation into the field, you may also use the
2349 following command
2351 - {{{kbd(C-u C-c =)}}} (~org-table-eval-formula~) ::
2353      #+kindex: C-u C-c =
2354      #+findex: org-table-eval-formula
2355      Install a new formula for the current field.  The command prompts
2356      for a formula with default taken from the =TBLFM= keyword,
2357      applies it to the current field, and stores it.
2359 The left-hand side of a formula can also be a special expression in
2360 order to assign the formula to a number of different fields.  There is
2361 no keyboard shortcut to enter such range formulas.  To add them, use
2362 the formula editor (see [[*Editing and debugging formulas]]) or edit the
2363 =TBLFM= keyword directly.
2365 - =$2== :: Column formula, valid for the entire column.  This is so
2366      common that Org treats these formulas in a special way, see
2367      [[*Column formulas]].
2368 - ~@3=~ :: Row formula, applies to all fields in the specified row.
2369      =@>== means the last row.
2370 - =@1$2..@4$3== :: Range formula, applies to all fields in the given
2371      rectangular range.  This can also be used to assign a formula to
2372      some but not all fields in a row.
2373 - =$NAME== :: Named field, see [[*Advanced features]].
2375 *** Column formulas
2376 :PROPERTIES:
2377 :DESCRIPTION: Formulas valid for an entire column.
2378 :END:
2379 #+cindex: column formula
2380 #+cindex: formula, for table column
2382 When you assign a formula to a simple column reference like =$3==, the
2383 same formula is used in all fields of that column, with the following
2384 very convenient exceptions: (i) If the table contains horizontal
2385 separator hlines with rows above and below, everything before the
2386 first such hline is considered part of the table /header/ and is not
2387 modified by column formulas.  Therefore a header is mandatory when you
2388 use column formulas and want to add hlines to group rows, like for
2389 example to separate a total row at the bottom from the summand rows
2390 above.  (ii) Fields that already get a value from a field/range
2391 formula are left alone by column formulas.  These conditions make
2392 column formulas very easy to use.
2394 To assign a formula to a column, type it directly into any field in
2395 the column, preceded by an equal sign, like ==$1+$2=.  When you press
2396 {{{kbd(TAB)}}} or {{{kbd(RET)}}} or {{{kbd(C-c C-c)}}} with the cursor
2397 still in the field, the formula is stored as the formula for the
2398 current column, evaluated and the current field replaced with the
2399 result.  If the field contains only ===, the previously stored formula
2400 for this column is used.  For each column, Org only remembers the most
2401 recently used formula.  In the =TBLFM= keyword, column formulas look
2402 like =$4=$1+$2=.  The left-hand side of a column formula can not be
2403 the name of column, it must be the numeric column reference or =$>=.
2405 Instead of typing an equation into the field, you may also use the
2406 following command:
2408 - {{{kbd(C-c =)}}} (~org-table-eval-formula~) ::
2410      #+kindex: C-c =
2411      #+findex: org-table-eval-formula
2412      Install a new formula for the current column and replace current
2413      field with the result of the formula.  The command prompts for
2414      a formula, with default taken from the =TBLFM= keyword, applies
2415      it to the current field and stores it.  With a numeric prefix
2416      argument, e.g., {{{kbd(C-5 C-c =)}}}, the command applies it to
2417      that many consecutive fields in the current column.
2419 *** Lookup functions
2420 :PROPERTIES:
2421 :DESCRIPTION: Lookup functions for searching tables.
2422 :END:
2423 #+cindex: lookup functions in tables
2424 #+cindex: table lookup functions
2426 Org has three predefined Emacs Lisp functions for lookups in tables.
2428 - ~(org-lookup-first VAL S-LIST R-LIST &optional PREDICATE)~ ::
2430      #+findex: org-lookup-first
2431      Searches for the first element {{{var(S)}}} in list
2432      {{{var(S-LIST)}}} for which
2433      #+begin_src emacs-lisp
2434        (PREDICATE VAL S)
2435      #+end_src
2436      is non-~nil~; returns the value from the corresponding position
2437      in list {{{var(R-LIST)}}}.  The default {{{var(PREDICATE)}}} is
2438      ~equal~.  Note that the parameters {{{var(VAL)}}} and
2439      {{{var(S)}}} are passed to {{{var(PREDICATE)}}} in the same order
2440      as the corresponding parameters are in the call to
2441      ~org-lookup-first~, where {{{var(VAL)}}} precedes
2442      {{{var(S-LIST)}}}.  If {{{var(R-LIST)}}} is ~nil~, the matching
2443      element {{{var(S)}}} of {{{var(S-LIST)}}} is returned.
2445 - ~(org-lookup-last VAL S-LIST R-LIST &optional PREDICATE)~ ::
2447      #+findex: org-lookup-last
2448      Similar to ~org-lookup-first~ above, but searches for the /last/
2449      element for which {{{var(PREDICATE)}}} is non-~nil~.
2451 - ~(org-lookup-all VAL S-LIST R-LIST &optional PREDICATE)~ ::
2453      #+findex: org-lookup-all
2454      Similar to ~org-lookup-first~, but searches for /all/ elements
2455      for which {{{var(PREDICATE)}}} is non-~nil~, and returns /all/
2456      corresponding values.  This function can not be used by itself in
2457      a formula, because it returns a list of values.  However,
2458      powerful lookups can be built when this function is combined with
2459      other Emacs Lisp functions.
2461 If the ranges used in these functions contain empty fields, the =E=
2462 mode for the formula should usually be specified: otherwise empty
2463 fields are not included in {{{var(S-LIST)}}} and/or {{{var(R-LIST)}}}
2464 which can, for example, result in an incorrect mapping from an element
2465 of {{{var(S-LIST)}}} to the corresponding element of
2466 {{{var(R-LIST)}}}.
2468 These three functions can be used to implement associative arrays,
2469 count matching cells, rank results, group data, etc.  For practical
2470 examples see [[https://orgmode.org/worg/org-tutorials/org-lookups.html][this tutorial on Worg]].
2472 *** Editing and debugging formulas
2473 :PROPERTIES:
2474 :DESCRIPTION: Fixing formulas.
2475 :END:
2476 #+cindex: formula editing
2477 #+cindex: editing, of table formulas
2479 #+vindex: org-table-use-standard-references
2480 You can edit individual formulas in the minibuffer or directly in the
2481 field.  Org can also prepare a special buffer with all active formulas
2482 of a table.  When offering a formula for editing, Org converts
2483 references to the standard format (like =B3= or =D&=) if possible.  If
2484 you prefer to only work with the internal format (like =@3$2= or
2485 =$4=), configure the variable ~org-table-use-standard-references~.
2487 - {{{kbd(C-c =)}}} or {{{kbd(C-u C-c =)}}} (~org-table-eval-formula~) ::
2489      #+kindex: C-c =
2490      #+kindex: C-u C-c =
2491      #+findex: org-table-eval-formula
2492      Edit the formula associated with the current column/field in the
2493      minibuffer.  See [[*Column formulas]], and [[*Field and range formulas]].
2495 - {{{kbd(C-u C-u C-c =)}}} (~org-table-eval-formula~) ::
2497      #+kindex: C-u C-u C-c =
2498      #+findex: org-table-eval-formula
2499      Re-insert the active formula (either a field formula, or a column
2500      formula) into the current field, so that you can edit it directly
2501      in the field.  The advantage over editing in the minibuffer is
2502      that you can use the command {{{kbd(C-c ?)}}}.
2504 - {{{kbd(C-c ?)}}} (~org-table-field-info~) ::
2506      #+kindex: C-c ?
2507      #+findex: org-table-field-info
2508      While editing a formula in a table field, highlight the field(s)
2509      referenced by the reference at the cursor position in the
2510      formula.
2512 - {{{kbd(C-c })}}} (~org-table-toggle-coordinate-overlays~) ::
2514      #+kindex: C-c @}
2515      #+findex: org-table-toggle-coordinate-overlays
2516      Toggle the display of row and column numbers for a table, using
2517      overlays.  These are updated each time the table is aligned; you
2518      can force it with {{{kbd(C-c C-c)}}}.
2520 - {{{kbd(C-c {)}}} (~org-table-toggle-formula-debugger~) ::
2522      #+kindex: C-c @{
2523      #+findex: org-table-toggle-formula-debugger
2524      Toggle the formula debugger on and off.  See below.
2526 - {{{kbd(C-c ')}}} (~org-table-edit-formulas~) ::
2528      #+kindex: C-c '
2529      #+findex: org-table-edit-formulas
2530      Edit all formulas for the current table in a special buffer,
2531      where the formulas are displayed one per line.  If the current
2532      field has an active formula, the cursor in the formula editor
2533      marks it.  While inside the special buffer, Org automatically
2534      highlights any field or range reference at the cursor position.
2535      You may edit, remove and add formulas, and use the following
2536      commands:
2538      - {{{kbd(C-c C-c)}}} or {{{kbd(C-x C-s)}}} (~org-table-fedit-finish~) ::
2540           #+kindex: C-x C-s
2541           #+kindex: C-c C-c
2542           #+findex: org-table-fedit-finish
2543           Exit the formula editor and store the modified formulas.  With
2544           {{{kbd(C-u)}}} prefix, also apply the new formulas to the
2545           entire table.
2547      - {{{kbd(C-c C-q)}}} (~org-table-fedit-abort~) ::
2549           #+kindex: C-c C-q
2550           #+findex: org-table-fedit-abort
2551           Exit the formula editor without installing changes.
2553      - {{{kbd(C-c C-r)}}} (~org-table-fedit-toggle-ref-type~) ::
2555           #+kindex: C-c C-r
2556           #+findex: org-table-fedit-toggle-ref-type
2557           Toggle all references in the formula editor between standard
2558           (like =B3=) and internal (like =@3$2=).
2560      - {{{kbd(TAB)}}} (~org-table-fedit-lisp-indent~) ::
2562           #+kindex: TAB
2563           #+findex: org-table-fedit-lisp-indent
2564           Pretty-print or indent Lisp formula at point.  When in a line
2565           containing a Lisp formula, format the formula according to
2566           Emacs Lisp rules.  Another {{{kbd(TAB)}}} collapses the formula
2567           back again.  In the open formula, {{{kbd(TAB)}}} re-indents
2568           just like in Emacs Lisp mode.
2570      - {{{kbd(M-TAB)}}} (~lisp-complete-symbol~) ::
2572           #+kindex: M-TAB
2573           #+findex: lisp-complete-symbol
2574           Complete Lisp symbols, just like in Emacs Lisp mode.
2576      - {{{kbd(S-up)}}}, {{{kbd(S-down)}}}, {{{kbd(S-left)}}}, {{{kbd(S-right)}}} ::
2578           #+kindex: S-up
2579           #+kindex: S-down
2580           #+kindex: S-left
2581           #+kindex: S-right
2582           #+findex: org-table-fedit-ref-up
2583           #+findex: org-table-fedit-ref-down
2584           #+findex: org-table-fedit-ref-left
2585           #+findex: org-table-fedit-ref-right
2586           Shift the reference at point.  For example, if the reference
2587           is =B3= and you press {{{kbd(S-right)}}}, it becomes =C3=.
2588           This also works for relative references and for hline
2589           references.
2591      - {{{kbd(M-S-up)}}} (~org-table-fedit-line-up~) ::
2593           #+kindex: M-S-up
2594           #+findex: org-table-fedit-line-up
2595           Move the test line for column formulas up in the Org buffer.
2597      - {{{kbd(M-S-down)}}} (~org-table-fedit-line-down~) ::
2599           #+kindex: M-S-down
2600           #+findex: org-table-fedit-line-down
2601           Move the test line for column formulas down in the Org buffer.
2603      - {{{kbd(M-up)}}} (~org-table-fedit-scroll-up~) ::
2605           #+kindex: M-up
2606           #+findex: org-table-fedit-scroll-up
2607           Scroll up the window displaying the table.
2609      - {{{kbd(M-down)}}} (~org-table-fedit-scroll-down~) ::
2611           #+kindex: M-down
2612           #+findex: org-table-fedit-scroll-down
2613           Scroll down the window displaying the table.
2615      - {{{kbd(C-c })}}} ::
2617           #+kindex: C-c @}
2618           #+findex: org-table-toggle-coordinate-overlays
2619           Turn the coordinate grid in the table on and off.
2621 Making a table field blank does not remove the formula associated with
2622 the field, because that is stored in a different line---the =TBLFM=
2623 keyword line.  During the next recalculation, the field will be filled
2624 again.  To remove a formula from a field, you have to give an empty
2625 reply when prompted for the formula, or to edit the =TBLFM= keyword.
2627 #+kindex: C-c C-c
2628 You may edit the =TBLFM= keyword directly and re-apply the changed
2629 equations with {{{kbd(C-c C-c)}}} in that line or with the normal
2630 recalculation commands in the table.
2632 **** Using multiple =TBLFM= lines
2633 :PROPERTIES:
2634 :UNNUMBERED: notoc
2635 :END:
2636 #+cindex: multiple formula lines
2637 #+cindex: TBLFM keywords, multiple
2638 #+cindex: TBLFM, switching
2640 #+kindex: C-c C-c
2641 You may apply the formula temporarily.  This is useful when you switch
2642 the formula.  Place multiple =TBLFM= keywords right after the table,
2643 and then press {{{kbd(C-c C-c)}}} on the formula to apply.  Here is an
2644 example:
2646 #+begin_example
2647   | x | y |
2648   |---+---|
2649   | 1 |   |
2650   | 2 |   |
2651   ,#+TBLFM: $2=$1*1
2652   ,#+TBLFM: $2=$1*2
2653 #+end_example
2655 #+texinfo: @noindent
2656 Pressing {{{kbd(C-c C-c)}}} in the line of =#+TBLFM: $2=$1*2= yields:
2658 #+begin_example
2659   | x | y |
2660   |---+---|
2661   | 1 | 2 |
2662   | 2 | 4 |
2663   ,#+TBLFM: $2=$1*1
2664   ,#+TBLFM: $2=$1*2
2665 #+end_example
2667 #+texinfo: @noindent
2668 Note: If you recalculate this table, with {{{kbd(C-u C-c *)}}}, for
2669 example, you get the following result of applying only the first
2670 =TBLFM= keyword.
2672 #+begin_example
2673   | x | y |
2674   |---+---|
2675   | 1 | 1 |
2676   | 2 | 2 |
2677   ,#+TBLFM: $2=$1*1
2678   ,#+TBLFM: $2=$1*2
2679 #+end_example
2681 **** Debugging formulas
2682 :PROPERTIES:
2683 :UNNUMBERED: notoc
2684 :END:
2685 #+cindex: formula debugging
2686 #+cindex: debugging, of table formulas
2688 When the evaluation of a formula leads to an error, the field content
2689 becomes the string =#ERROR=.  If you would like to see what is going
2690 on during variable substitution and calculation in order to find
2691 a bug, turn on formula debugging in the Tbl menu and repeat the
2692 calculation, for example by pressing {{{kbd(C-u C-u C-c = RET)}}} in
2693 a field.  Detailed information are displayed.
2695 *** Updating the table
2696 :PROPERTIES:
2697 :DESCRIPTION: Recomputing all dependent fields.
2698 :END:
2699 #+cindex: recomputing table fields
2700 #+cindex: updating, table
2702 Recalculation of a table is normally not automatic, but needs to be
2703 triggered by a command.  To make recalculation at least
2704 semi-automatic, see [[*Advanced features]].
2706 In order to recalculate a line of a table or the entire table, use the
2707 following commands:
2709 - {{{kbd(C-c *)}}} (~org-table-recalculate~) ::
2711      #+kindex: C-c *
2712      #+findex: org-table-recalculate
2713      Recalculate the current row by first applying the stored column
2714      formulas from left to right, and all field/range formulas in the
2715      current row.
2717 - {{{kbd(C-u C-c *)}}} or {{{kbd(C-u C-c C-c)}}} ::
2719      #+kindex: C-u C-c *
2720      #+kindex: C-u C-c C-c
2721      Recompute the entire table, line by line.  Any lines before the
2722      first hline are left alone, assuming that these are part of the
2723      table header.
2725 - {{{kbd(C-u C-u C-c *)}}} or {{{kbd(C-u C-u C-c C-c)}}} (~org-table-iterate~) ::
2727      #+kindex: C-u C-u C-c *
2728      #+kindex: C-u C-u C-c C-c
2729      #+findex: org-table-iterate
2730      Iterate the table by recomputing it until no further changes
2731      occur.  This may be necessary if some computed fields use the
2732      value of other fields that are computed /later/ in the
2733      calculation sequence.
2735 - {{{kbd(M-x org-table-recalculate-buffer-tables)}}} ::
2737      #+findex: org-table-recalculate-buffer-tables
2738      Recompute all tables in the current buffer.
2740 - {{{kbd(M-x org-table-iterate-buffer-tables)}}} ::
2742      #+findex: org-table-iterate-buffer-tables
2743      Iterate all tables in the current buffer, in order to converge
2744      table-to-table dependencies.
2746 *** Advanced features
2747 :PROPERTIES:
2748 :DESCRIPTION: Field and column names, automatic recalculation...
2749 :END:
2751 If you want the recalculation of fields to happen automatically, or if
2752 you want to be able to assign /names/[fn:24] to fields and columns,
2753 you need to reserve the first column of the table for special marking
2754 characters.
2756 - {{{kbd(C-#)}}} (~org-table-rotate-recalc-marks~) ::
2758      #+kindex: C-#
2759      #+findex: org-table-rotate-recalc-marks
2760      Rotate the calculation mark in first column through the states
2761      =#=, =*=, =!=, =$=.  When there is an active region, change all
2762      marks in the region.
2764 Here is an example of a table that collects exam results of students
2765 and makes use of these features:
2767 #+begin_example
2768   |---+---------+--------+--------+--------+-------+------|
2769   |   | Student | Prob 1 | Prob 2 | Prob 3 | Total | Note |
2770   |---+---------+--------+--------+--------+-------+------|
2771   | ! |         |     P1 |     P2 |     P3 |   Tot |      |
2772   | # | Maximum |     10 |     15 |     25 |    50 | 10.0 |
2773   | ^ |         |     m1 |     m2 |     m3 |    mt |      |
2774   |---+---------+--------+--------+--------+-------+------|
2775   | # | Peter   |     10 |      8 |     23 |    41 |  8.2 |
2776   | # | Sam     |      2 |      4 |      3 |     9 |  1.8 |
2777   |---+---------+--------+--------+--------+-------+------|
2778   |   | Average |        |        |        |  25.0 |      |
2779   | ^ |         |        |        |        |    at |      |
2780   | $ | max=50  |        |        |        |       |      |
2781   |---+---------+--------+--------+--------+-------+------|
2782   ,#+TBLFM: $6=vsum($P1..$P3)::$7=10*$Tot/$max;%.1f::$at=vmean(@-II..@-I);%.1f
2783 #+end_example
2785 #+texinfo: @noindent
2786 *Important*: please note that for these special tables, recalculating
2787 the table with {{{kbd(C-u C-c *)}}} only affects rows that are marked
2788 =#= or =*=, and fields that have a formula assigned to the field
2789 itself.  The column formulas are not applied in rows with empty first
2790 field.
2792 #+cindex: marking characters, tables
2793 The marking characters have the following meaning:
2795 - =!= :: The fields in this line define names for the columns, so that
2796      you may refer to a column as =$Tot= instead of =$6=.
2798 - =^= :: This row defines names for the fields /above/ the row.  With
2799      such a definition, any formula in the table may use =$m1= to
2800      refer to the value =10=.  Also, if you assign a formula to
2801      a names field, it is stored as =$name = ...=.
2803 - =_= :: Similar to =^=, but defines names for the fields in the row
2804      /below/.
2806 - =$= :: Fields in this row can define /parameters/ for formulas.  For
2807      example, if a field in a =$= row contains =max=50=, then formulas
2808      in this table can refer to the value 50 using =$max=.  Parameters
2809      work exactly like constants, only that they can be defined on
2810      a per-table basis.
2812 - =#= :: Fields in this row are automatically recalculated when
2813      pressing {{{kbd(TAB)}}} or {{{kbd(RET)}}} or {{{kbd(S-TAB)}}} in
2814      this row.  Also, this row is selected for a global recalculation
2815      with {{{kbd(C-u C-c *)}}}.  Unmarked lines are left alone by this
2816      command.
2818 - =*= :: Selects this line for global recalculation with {{{kbd(C-u
2819      C-c *)}}}, but not for automatic recalculation.  Use this when
2820      automatic recalculation slows down editing too much.
2822 - =/= :: Do not export this line.  Useful for lines that contain the
2823      narrowing =<N>= markers or column group markers.
2825 Finally, just to whet your appetite for what can be done with the
2826 fantastic Calc package, here is a table that computes the Taylor
2827 series of degree n at location x for a couple of functions.
2829 #+begin_example
2830   |---+-------------+---+-----+--------------------------------------|
2831   |   | Func        | n | x   | Result                               |
2832   |---+-------------+---+-----+--------------------------------------|
2833   | # | exp(x)      | 1 | x   | 1 + x                                |
2834   | # | exp(x)      | 2 | x   | 1 + x + x^2 / 2                      |
2835   | # | exp(x)      | 3 | x   | 1 + x + x^2 / 2 + x^3 / 6            |
2836   | # | x^2+sqrt(x) | 2 | x=0 | x*(0.5 / 0) + x^2 (2 - 0.25 / 0) / 2 |
2837   | # | x^2+sqrt(x) | 2 | x=1 | 2 + 2.5 x - 2.5 + 0.875 (x - 1)^2    |
2838   | * | tan(x)      | 3 | x   | 0.0175 x + 1.77e-6 x^3               |
2839   |---+-------------+---+-----+--------------------------------------|
2840   ,#+TBLFM: $5=taylor($2,$4,$3);n3
2841 #+end_example
2843 ** Org Plot
2844 :PROPERTIES:
2845 :DESCRIPTION: Plotting from Org tables.
2846 :END:
2847 #+cindex: graph, in tables
2848 #+cindex: plot tables using Gnuplot
2850 Org Plot can produce graphs of information stored in Org tables,
2851 either graphically or in ASCII art.
2853 *** Graphical plots using Gnuplot
2854 :PROPERTIES:
2855 :UNNUMBERED: notoc
2856 :END:
2858 #+cindex: PLOT, keyword
2859 Org Plot can produce 2D and 3D graphs of information stored in Org
2860 tables using [[http://www.gnuplot.info/][Gnuplot]] and [[http://cars9.uchicago.edu/~ravel/software/gnuplot-mode.html][Gnuplot mode]].  To see this in action, ensure
2861 that you have both Gnuplot and Gnuplot mode installed on your system,
2862 then call {{{kbd(C-c \quot g)}}} or {{{kbd(M-x org-plot/gnuplot)}}} on the
2863 following table.
2865 #+begin_example
2866   ,#+PLOT: title:"Citas" ind:1 deps:(3) type:2d with:histograms set:"yrange [0:]"
2867   | Sede      | Max cites | H-index |
2868   |-----------+-----------+---------|
2869   | Chile     |    257.72 |   21.39 |
2870   | Leeds     |    165.77 |   19.68 |
2871   | Sao Paolo |     71.00 |   11.50 |
2872   | Stockholm |    134.19 |   14.33 |
2873   | Morels    |    257.56 |   17.67 |
2874 #+end_example
2876 Notice that Org Plot is smart enough to apply the table's headers as
2877 labels.  Further control over the labels, type, content, and
2878 appearance of plots can be exercised through the =PLOT= keyword
2879 preceding a table.  See below for a complete list of Org Plot options.
2880 For more information and examples see the [[https://orgmode.org/worg/org-tutorials/org-plot.html][Org Plot tutorial]].
2882 **** Plot options
2883 :PROPERTIES:
2884 :UNNUMBERED: notoc
2885 :END:
2887 - =set= :: Specify any Gnuplot option to be set when graphing.
2889 - =title= :: Specify the title of the plot.
2891 - =ind= :: Specify which column of the table to use as the =x= axis.
2893 - =deps= :: Specify the columns to graph as a Lisp style list,
2894      surrounded by parentheses and separated by spaces for example
2895      =dep:(3 4)= to graph the third and fourth columns (defaults to
2896      graphing all other columns aside from the =ind= column).
2898 - =type= :: Specify whether the plot is =2d=, =3d=, or =grid=.
2900 - =with= :: Specify a =with= option to be inserted for every col being
2901      plotted (e.g., =lines=, =points=, =boxes=, =impulses=, etc.).
2902      Defaults to =lines=.
2904 - =file= :: If you want to plot to a file, specify
2905      ="path/to/desired/output-file"=.
2907 - =labels= :: List of labels to be used for the =deps=.  Defaults to
2908      the column headers if they exist.
2910 - =line= :: Specify an entire line to be inserted in the Gnuplot
2911      script.
2913 - =map= :: When plotting =3d= or =grid= types, set this to =t= to
2914      graph a flat mapping rather than a =3d= slope.
2916 - =timefmt= ::  Specify format of Org mode timestamps as they will be
2917      parsed by Gnuplot.  Defaults to =%Y-%m-%d-%H:%M:%S=.
2919 - =script= :: If you want total control, you can specify a script
2920      file---place the file name between double-quotes---which will be
2921      used to plot.  Before plotting, every instance of =$datafile= in
2922      the specified script will be replaced with the path to the
2923      generated data file.  Note: even if you set this option, you may
2924      still want to specify the plot type, as that can impact the
2925      content of the data file.
2927 *** ASCII bar plots
2928 :PROPERTIES:
2929 :UNNUMBERED: notoc
2930 :END:
2932 While the cursor is on a column, typing {{{kbd(C-c " a)}}} or
2933 {{{kbd(M-x orgtbl-ascii-plot)}}} create a new column containing an
2934 ASCII-art bars plot.  The plot is implemented through a regular column
2935 formula.  When the source column changes, the bar plot may be updated
2936 by refreshing the table, for example typing {{{kbd(C-u C-c *)}}}.
2938 #+begin_example
2939   | Sede          | Max cites |              |
2940   |---------------+-----------+--------------|
2941   | Chile         |    257.72 | WWWWWWWWWWWW |
2942   | Leeds         |    165.77 | WWWWWWWh     |
2943   | Sao Paolo     |     71.00 | WWW;         |
2944   | Stockholm     |    134.19 | WWWWWW:      |
2945   | Morelia       |    257.56 | WWWWWWWWWWWH |
2946   | Rochefourchat |      0.00 |              |
2947   ,#+TBLFM: $3='(orgtbl-ascii-draw $2 0.0 257.72 12)
2948 #+end_example
2950 The formula is an Elisp call.
2952 #+attr_texinfo: :options orgtbl-ascii-draw value min max &optional width
2953 #+begin_defun
2954 Draw an ASCII bar in a table.
2956 {{{var(VALUE)}}} is the value to plot.
2958 {{{var(MIN)}}} is the value displayed as an empty bar.  {{{var(MAX)}}}
2959 is the value filling all the {{{var(WIDTH)}}}.  Sources values outside
2960 this range are displayed as =too small= or =too large=.
2962 {{{var(WIDTH)}}} is the number of characters of the bar plot.  It
2963 defaults to =12=.
2964 #+end_defun
2966 * Hyperlinks
2967 :PROPERTIES:
2968 :DESCRIPTION: Notes in context.
2969 :END:
2970 #+cindex: hyperlinks
2972 Like HTML, Org provides links inside a file, external links to
2973 other files, Usenet articles, emails, and much more.
2975 ** Link format
2976 :PROPERTIES:
2977 :DESCRIPTION: How links in Org are formatted.
2978 :END:
2979 #+cindex: link format
2980 #+cindex: format, of links
2982 Org recognizes plain URL-like links and activate them as clickable
2983 links.  The general link format, however, looks like this:
2985 : [[LINK][DESCRIPTION]]
2987 #+texinfo: @noindent
2988 or alternatively
2990 : [[LINK]]
2992 #+texinfo: @noindent
2993 Once a link in the buffer is complete (all brackets present), Org
2994 changes the display so that =DESCRIPTION= is displayed instead of
2995 =[[LINK][DESCRIPTION]]= and =LINK= is displayed instead of =[[LINK]]=.  Links are be
2996 highlighted in the face ~org-link~, which by default is an underlined
2997 face.  You can directly edit the visible part of a link.  Note that
2998 this can be either the LINK part, if there is no description, or the
2999 {{{var(DESCRIPTION)}}} part.  To edit also the invisible
3000 {{{var(LINK)}}} part, use {{{kbd(C-c C-l)}}} with the cursor on the
3001 link.
3003 If you place the cursor at the beginning or just behind the end of the
3004 displayed text and press {{{kbd(BS)}}}, you remove
3005 the---invisible---bracket at that location.  This makes the link
3006 incomplete and the internals are again displayed as plain text.
3007 Inserting the missing bracket hides the link internals again.  To show
3008 the internal structure of all links, use the menu: Org \rarr Hyperlinks \rarr
3009 Literal links.
3011 ** Internal links
3012 :PROPERTIES:
3013 :DESCRIPTION: Links to other places in the current file.
3014 :END:
3015 #+cindex: internal links
3016 #+cindex: links, internal
3017 #+cindex: targets, for links
3019 #+cindex: CUSTOM_ID, property
3020 If the link does not look like a URL, it is considered to be internal
3021 in the current file.  The most important case is a link like
3022 =[[#my-custom-id]]= which links to the entry with the =CUSTOM_ID= property
3023 =my-custom-id=.  You are responsible yourself to make sure these
3024 custom IDs are unique in a file.
3026 Links such as =[[My Target]]= or =[[My Target][Find my target]]= lead to a text search in
3027 the current file.
3029 The link can be followed with {{{kbd(C-c C-o)}}} when the cursor is on
3030 the link, or with a mouse click (see [[*Handling links]]).  Links to
3031 custom IDs point to the corresponding headline.  The preferred match
3032 for a text link is a /dedicated target/: the same string in double
3033 angular brackets, like =<<My Target>>=.
3035 #+cindex: NAME, keyword
3036 If no dedicated target exists, the link tries to match the exact name
3037 of an element within the buffer.  Naming is done with the =NAME=
3038 keyword, which has to be put in the line before the element it refers
3039 to, as in the following example
3041 #+begin_example
3042   ,#+NAME: My Target
3043   | a  | table      |
3044   |----+------------|
3045   | of | four cells |
3046 #+end_example
3048 If none of the above succeeds, Org searches for a headline that is
3049 exactly the link text but may also include a TODO keyword and
3050 tags[fn:25].
3052 During export, internal links are used to mark objects and assign them
3053 a number.  Marked objects are then referenced by links pointing to
3054 them.  In particular, links without a description appear as the number
3055 assigned to the marked object[fn:26].  In the following excerpt from
3056 an Org buffer
3058 #+begin_example
3059   1. one item
3060   2. <<target>>another item
3061   Here we refer to item [[target]].
3062 #+end_example
3064 #+texinfo: @noindent
3065 The last sentence will appear as =Here we refer to item 2= when
3066 exported.
3068 In non-Org files, the search looks for the words in the link text.  In
3069 the above example the search would be for =target=.
3071 Following a link pushes a mark onto Org's own mark ring.  You can
3072 return to the previous position with {{{kbd(C-c &)}}}.  Using this
3073 command several times in direct succession goes back to positions
3074 recorded earlier.
3076 ** Radio targets
3077 :PROPERTIES:
3078 :DESCRIPTION: Make targets trigger links in plain text.
3079 :END:
3080 #+cindex: radio targets
3081 #+cindex: targets, radio
3082 #+cindex: links, radio targets
3084 Org can automatically turn any occurrences of certain target names in
3085 normal text into a link.  So without explicitly creating a link, the
3086 text connects to the target radioing its position.  Radio targets are
3087 enclosed by triple angular brackets.  For example, a target =<<<My
3088 Target>>>= causes each occurrence of =my target= in normal text to
3089 become activated as a link.  The Org file is scanned automatically for
3090 radio targets only when the file is first loaded into Emacs.  To
3091 update the target list during editing, press {{{kbd(C-c C-c)}}} with
3092 the cursor on or at a target.
3094 ** External links
3095 :PROPERTIES:
3096 :DESCRIPTION: URL-like links to the world.
3097 :END:
3098 #+cindex: links, external
3099 #+cindex: external links
3100 #+cindex: Gnus links
3101 #+cindex: BBDB links
3102 #+cindex: irc links
3103 #+cindex: URL links
3104 #+cindex: file links
3105 #+cindex: Rmail links
3106 #+cindex: MH-E links
3107 #+cindex: Usenet links
3108 #+cindex: shell links
3109 #+cindex: Info links
3110 #+cindex: Elisp links
3112 Org supports links to files, websites, Usenet and email messages, BBDB
3113 database entries and links to both IRC conversations and their logs.
3114 External links are URL-like locators.  They start with a short
3115 identifying string followed by a colon.  There can be no space after
3116 the colon.  The following list shows examples for each link type.
3118 | =http://www.astro.uva.nl/=dominik=          | on the web                     |
3119 | =doi:10.1000/182=                           | DOI for an electronic resource |
3120 | =file:/home/dominik/images/jupiter.jpg=     | file, absolute path            |
3121 | =/home/dominik/images/jupiter.jpg=          | same as above                  |
3122 | =file:papers/last.pdf=                      | file, relative path            |
3123 | =./papers/last.pdf=                         | same as above                  |
3124 | =file:/ssh:me@some.where:papers/last.pdf=   | file, path on remote machine   |
3125 | =/ssh:me@some.where:papers/last.pdf=        | same as above                  |
3126 | =file:sometextfile::NNN=                    | file, jump to line number      |
3127 | =file:projects.org=                         | another Org file               |
3128 | =file:projects.org::some words=             | text search in Org file[fn:27] |
3129 | =file:projects.org::*task title=            | heading search in Org file     |
3130 | =file+sys:/path/to/file=                    | open via OS, like double-click |
3131 | =file+emacs:/path/to/file=                  | force opening by Emacs         |
3132 | =docview:papers/last.pdf::NNN=              | open in doc-view mode at page  |
3133 | =id:B7423F4D-2E8A-471B-8810-C40F074717E9=   | Link to heading by ID          |
3134 | =news:comp.emacs=                           | Usenet link                    |
3135 | =mailto:adent@galaxy.net=                   | Mail link                      |
3136 | =mhe:folder=                                | MH-E folder link               |
3137 | =mhe:folder#id=                             | MH-E message link              |
3138 | =rmail:folder=                              | Rmail folder link              |
3139 | =rmail:folder#id=                           | Rmail message link             |
3140 | =gnus:group=                                | Gnus group link                |
3141 | =gnus:group#id=                             | Gnus article link              |
3142 | =bbdb:R.*Stallman=                          | BBDB link (with regexp)        |
3143 | =irc:/irc.com/#emacs/bob=                   | IRC link                       |
3144 | =info:org#External links=                   | Info node link                 |
3145 | =shell:ls *.org=                            | A shell command                |
3146 | =elisp:org-agenda=                          | Interactive Elisp command      |
3147 | =elisp:(find-file-other-frame "Elisp.org")= | Elisp form to evaluate         |
3149 #+cindex: VM links
3150 #+cindex: Wanderlust links
3151 On top of these built-in link types, some are available through the
3152 =contrib/= directory (see [[*Installation]]).  For example, these links to
3153 VM or Wanderlust messages are available when you load the
3154 corresponding libraries from the =contrib/= directory:
3156 | =vm:folder=                            | VM folder link          |
3157 | =vm:folder#id=                         | VM message link         |
3158 | =vm://myself@some.where.org/folder#id= | VM on remote machine    |
3159 | =vm-imap:account:folder=               | VM IMAP folder link     |
3160 | =vm-imap:account:folder#id=            | VM IMAP message link    |
3161 | =wl:folder=                            | Wanderlust folder link  |
3162 | =wl:folder#id=                         | Wanderlust message link |
3164 For customizing Org to add new link types, see [[*Adding hyperlink
3165 types]].
3167 A link should be enclosed in double brackets and may contain
3168 a descriptive text to be displayed instead of the URL (see [[*Link
3169 format]]), for example:
3171 : [[http://www.gnu.org/software/emacs/][GNU Emacs]]
3173 #+texinfo: @noindent
3174 If the description is a file name or URL that points to an image, HTML
3175 export (see [[*HTML export]]) inlines the image as a clickable button.  If
3176 there is no description at all and the link points to an image, that
3177 image is inlined into the exported HTML file.
3179 #+cindex: square brackets, around links
3180 #+cindex: angular brackets, around links
3181 #+cindex: plain text external links
3182 Org also finds external links in the normal text and activates them as
3183 links.  If spaces must be part of the link (for example in
3184 =bbdb:Richard Stallman=), or if you need to remove ambiguities about
3185 the end of the link, enclose them in square or angular brackets.
3187 ** Handling links
3188 :PROPERTIES:
3189 :DESCRIPTION: Creating, inserting and following.
3190 :END:
3191 #+cindex: links, handling
3193 Org provides methods to create a link in the correct syntax, to insert
3194 it into an Org file, and to follow the link.
3196 #+attr_texinfo: :sep ,
3197 - {{{kbd(C-c l)}}} (~org-store-link~) ::
3199      #+kindex: C-c l
3200      #+findex: org-store-link
3201      #+cindex: storing links
3202      Store a link to the current location.  This is a /global/
3203      command---you must create the key binding yourself---which can
3204      be used in any buffer to create a link.  The link is stored for
3205      later insertion into an Org buffer---see below.  What kind of
3206      link is created depends on the current buffer:
3208      - /Org mode buffers/ ::
3210           For Org files, if there is a =<<target>>= at the cursor, the
3211           link points to the target.  Otherwise it points to the
3212           current headline, which is also the description[fn:28].
3214           #+vindex: org-link-to-org-use-id
3215           #+cindex: CUSTOM_ID, property
3216           #+cindex: ID, property
3217           If the headline has a =CUSTOM_ID= property, store a link to
3218           this custom ID.  In addition or alternatively, depending on
3219           the value of ~org-link-to-org-use-id~, create and/or use
3220           a globally unique ID property for the link[fn:29].  So using
3221           this command in Org buffers potentially creates two links:
3222           a human-readable link from the custom ID, and one that is
3223           globally unique and works even if the entry is moved from
3224           file to file.  Later, when inserting the link, you need to
3225           decide which one to use.
3227      - /Email/News clients: VM, Rmail, Wanderlust, MH-E, Gnus/ ::
3229           Pretty much all Emacs mail clients are supported.  The link
3230           points to the current article, or, in some Gnus buffers, to
3231           the group.  The description is constructed from the author
3232           and the subject.
3234      - /Web browsers: W3 and W3M/ ::
3236           Here the link is the current URL, with the page title as
3237           description.
3239      - /Contacts: BBDB/ ::
3241           Links created in a BBDB buffer point to the current entry.
3243      - /Chat: IRC/ ::
3245           #+vindex: org-irc-links-to-logs
3246           For IRC links, if the variable ~org-irc-link-to-logs~ is
3247           non-~nil~, create a =file= style link to the relevant point
3248           in the logs for the current conversation.  Otherwise store
3249           an =irc= style link to the user/channel/server under the
3250           point.
3252      - /Other files/ ::
3254           For any other files, the link points to the file, with
3255           a search string (see [[*Search options in file links][*Search options]]) pointing to the
3256           contents of the current line.  If there is an active region,
3257           the selected words form the basis of the search string.  If
3258           the automatically created link is not working correctly or
3259           accurately enough, you can write custom functions to select
3260           the search string and to do the search for particular file
3261           types (see [[*Custom searches]]).  The key binding {{{kbd(C-c
3262           l)}}} is only a suggestion (see [[*Installation]]).
3264      - /Agenda view/ ::
3266           When the cursor is in an agenda view, the created link
3267           points to the entry referenced by the current line.
3269 - {{{kbd(C-c C-l)}}} (~org-insert-link~) ::
3271      #+kindex: C-c C-l
3272      #+findex: org-insert-link
3273      #+cindex: link completion
3274      #+cindex: completion, of links
3275      #+cindex: inserting links
3276      #+vindex: org-keep-stored-link-after-insertion
3277      Insert a link[fn:30].  This prompts for a link to be inserted
3278      into the buffer.  You can just type a link, using text for an
3279      internal link, or one of the link type prefixes mentioned in the
3280      examples above.  The link is inserted into the buffer, along with
3281      a descriptive text[fn:31].  If some text was selected at this
3282      time, it becomes the default description.
3284      - /Inserting stored links/ ::
3286           All links stored during the current session are part of the
3287           history for this prompt, so you can access them with
3288           {{{kbd(up)}}} and {{{kbd(down)}}} (or {{{kbd(M-p)}}},
3289           {{{kbd(M-n)}}}).
3291      - /Completion support/ ::
3293           Completion with {{{kbd(TAB)}}} helps you to insert valid
3294           link prefixes like =http= or =ftp=, including the prefixes
3295           defined through link abbreviations (see [[*Link
3296           abbreviations]]).  If you press {{{kbd(RET)}}} after inserting
3297           only the prefix, Org offers specific completion support for
3298           some link types[fn:32].  For example, if you type {{{kbd(f
3299           i l e RET)}}}---alternative access: {{{kbd(C-u C-c C-l)}}},
3300           see below---Org offers file name completion, and after
3301           {{{kbd(b b d b RET)}}} you can complete contact names.
3303 - {{{kbd(C-u C-c C-l)}}} ::
3305      #+cindex: file name completion
3306      #+cindex: completion, of file names
3307      #+kindex: C-u C-c C-l
3308      When {{{kbd(C-c C-l)}}} is called with a {{{kbd(C-u)}}} prefix
3309      argument, insert a link to a file.  You may use file name
3310      completion to select the name of the file.  The path to the file
3311      is inserted relative to the directory of the current Org file, if
3312      the linked file is in the current directory or in a sub-directory
3313      of it, or if the path is written relative to the current
3314      directory using =../=.  Otherwise an absolute path is used, if
3315      possible with =~/= for your home directory.  You can force an
3316      absolute path with two {{{kbd(C-u)}}} prefixes.
3318 - {{{kbd(C-c C-l)}}} (with cursor on existing link) ::
3320      #+cindex: following links
3321      When the cursor is on an existing link, {{{kbd(C-c C-l)}}} allows
3322      you to edit the link and description parts of the link.
3324      - {{{kbd(C-c C-o)}}} (~org-open-at-point~) ::
3326           #+kindex: C-c C-o
3327           #+findex: org-open-at-point
3328           #+vindex: org-file-apps
3329           #+vindex: org-link-frame-setup
3330           Open link at point.  This launches a web browser for URL
3331           (using ~browse-url-at-point~), run
3332           VM/MH-E/Wanderlust/Rmail/Gnus/BBDB for the corresponding
3333           links, and execute the command in a shell link.  When the
3334           cursor is on an internal link, this command runs the
3335           corresponding search.  When the cursor is on a TAG list in
3336           a headline, it creates the corresponding TAGS view.  If the
3337           cursor is on a timestamp, it compiles the agenda for that
3338           date.  Furthermore, it visits text and remote files in
3339           =file= links with Emacs and select a suitable application
3340           for local non-text files.  Classification of files is based
3341           on file extension only.  See option ~org-file-apps~.  If you
3342           want to override the default application and visit the file
3343           with Emacs, use a {{{kbd(C-u)}}} prefix.  If you want to
3344           avoid opening in Emacs, use a {{{kbd(C-u C-u)}}} prefix. \\
3345           If the cursor is on a headline, but not on a link, offer all
3346           links in the headline and entry text.  If you want to setup
3347           the frame configuration for following links, customize
3348           ~org-link-frame-setup~.
3350      - {{{kbd(RET)}}} ::
3352           #+vindex: org-return-follows-link
3353           #+kindex: RET
3354           When ~org-return-follows-link~ is set, {{{kbd(RET)}}} also
3355           follows the link at point.
3357      - {{{kbd(mouse-2)}}} or {{{kbd(mouse-1)}}} ::
3359           #+kindex: mouse-2
3360           #+kindex: mouse-1
3361           On links, {{{kbd(mouse-1)}}} and {{{kbd(mouse-2)}}} opens
3362           the link just as {{{kbd(C-c C-o)}}} does.
3364      - {{{kbd(mouse-3)}}} ::
3366           #+vindex: org-display-internal-link-with-indirect-buffer
3367           #+kindex: mouse-3
3368           Like {{{kbd(mouse-2)}}}, but force file links to be opened
3369           with Emacs, and internal links to be displayed in another
3370           window[fn:33].
3372      - {{{kbd(C-c C-x C-v)}}} (~org-toggle-inline-images~) ::
3374           #+cindex: inlining images
3375           #+cindex: images, inlining
3376           #+vindex: org-startup-with-inline-images
3377           #+kindex: C-c C-x C-v
3378           #+findex: org-toggle-inline-images
3379           Toggle the inline display of linked images.  Normally this
3380           only inlines images that have no description part in the
3381           link, i.e., images that are inlined during export.  When
3382           called with a prefix argument, also display images that do
3383           have a link description.  You can ask for inline images to
3384           be displayed at startup by configuring the variable
3385           ~org-startup-with-inline-images~[fn:34].
3387      - {{{kbd(C-c %)}}} (~org-mark-ring-push~) ::
3389           #+kindex: C-c %
3390           #+findex: org-mark-ring-push
3391           #+cindex: mark ring
3392           Push the current position onto the mark ring, to be able to
3393           return easily.  Commands following an internal link do this
3394           automatically.
3396      - {{{kbd(C-c &)}}} (~org-mark-ring-goto~) ::
3398           #+kindex: C-c &
3399           #+findex: org-mark-ring-goto
3400           #+cindex: links, returning to
3401           Jump back to a recorded position.  A position is recorded by
3402           the commands following internal links, and by {{{kbd(C-c
3403           %)}}}.  Using this command several times in direct
3404           succession moves through a ring of previously recorded
3405           positions.
3407 - {{{kbd(C-c C-x C-n)}}} (~org-next-link~), {{{kbd(C-c C-x C-p)}}} (~org-previous-link~) ::
3409      #+kindex: C-c C-x C-p
3410      #+findex: org-previous-link
3411      #+kindex: C-c C-x C-n
3412      #+findex: org-next-link
3413      #+cindex: links, finding next/previous
3414      Move forward/backward to the next link in the buffer.  At the
3415      limit of the buffer, the search fails once, and then wraps
3416      around.  The key bindings for this are really too long; you might
3417      want to bind this also to {{{kbd(C-n)}}} and {{{kbd(C-p)}}}.
3419      #+begin_src emacs-lisp
3420        (add-hook 'org-load-hook
3421                  (lambda ()
3422                    (define-key org-mode-map "\C-n" 'org-next-link)
3423                    (define-key org-mode-map "\C-p" 'org-previous-link)))
3424      #+end_src
3426 ** Using links outside Org
3427 :PROPERTIES:
3428 :DESCRIPTION: Linking from my C source code?
3429 :END:
3431 You can insert and follow links that have Org syntax not only in Org,
3432 but in any Emacs buffer.  For this, you should create two global
3433 commands, like this (please select suitable global keys yourself):
3435 #+begin_src emacs-lisp
3436   (global-set-key "\C-c L" 'org-insert-link-global)
3437   (global-set-key "\C-c o" 'org-open-at-point-global)
3438 #+end_src
3440 ** Link abbreviations
3441 :PROPERTIES:
3442 :DESCRIPTION: Shortcuts for writing complex links.
3443 :END:
3444 #+cindex: link abbreviations
3445 #+cindex: abbreviation, links
3447 Long URL can be cumbersome to type, and often many similar links are
3448 needed in a document.  For this you can use link abbreviations.  An
3449 abbreviated link looks like this
3451 : [[linkword:tag][description]]
3453 #+texinfo: @noindent
3454 #+vindex: org-link-abbrev-alist
3455 where the tag is optional.  The /linkword/ must be a word, starting
3456 with a letter, followed by letters, numbers, =-=, and =_=.
3457 Abbreviations are resolved according to the information in the
3458 variable ~org-link-abbrev-alist~ that relates the linkwords to
3459 replacement text.  Here is an example:
3461 #+begin_src emacs-lisp
3462   (setq org-link-abbrev-alist
3463         '(("bugzilla"  . "http://10.1.2.9/bugzilla/show_bug.cgi?id=")
3464           ("url-to-ja" . "http://translate.google.fr/translate?sl=en&tl=ja&u=%h")
3465           ("google"    . "http://www.google.com/search?q=")
3466           ("gmap"      . "http://maps.google.com/maps?q=%s")
3467           ("omap"      . "http://nominatim.openstreetmap.org/search?q=%s&polygon=1")
3468           ("ads"       . "http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=%s&db_key=AST")))
3469 #+end_src
3471 If the replacement text contains the string =%s=, it is replaced with
3472 the tag.  Using =%h= instead of =%s= percent-encodes the tag (see the
3473 example above, where we need to encode the URL parameter).  Using
3474 =%(my-function)= passes the tag to a custom function, and replace it
3475 by the resulting string.
3477 If the replacement text do not contain any specifier, it is simply
3478 appended to the string in order to create the link.
3480 Instead of a string, you may also specify a function that will be
3481 called with the tag as the only argument to create the link.
3483 With the above setting, you could link to a specific bug with
3484 =[[bugzilla:129]]=, search the web for =OrgMode= with =[[google:OrgMode]]=,
3485 show the map location of the Free Software Foundation =[[gmap:51
3486 Franklin Street, Boston]]= or of Carsten office =[[omap:Science Park 904,
3487 Amsterdam, The Netherlands]]= and find out what the Org author is doing
3488 besides Emacs hacking with =[[ads:Dominik,C]]=.
3490 If you need special abbreviations just for a single Org buffer, you
3491 can define them in the file with
3493 #+cindex: LINK, keyword
3494 #+begin_example
3495   ,#+LINK: bugzilla  http://10.1.2.9/bugzilla/show_bug.cgi?id=
3496   ,#+LINK: google    http://www.google.com/search?q=%s
3497 #+end_example
3499 #+texinfo: @noindent
3500 In-buffer completion (see [[*Completion]]) can be used after =[= to
3501 complete link abbreviations.  You may also define a function that
3502 implements special (e.g., completion) support for inserting such
3503 a link with {{{kbd(C-c C-l)}}}.  Such a function should not accept any
3504 arguments, and return the full link with prefix.  You can set the link
3505 completion function like this:
3507 #+BEGIN_SRC emacs-lisp
3508   (org-link-set-parameter "type" :complete #'some-completion-function)
3509 #+END_SRC
3511 ** Search options in file links
3512 :PROPERTIES:
3513 :DESCRIPTION: Linking to a specific location.
3514 :ALT_TITLE: Search options
3515 :END:
3516 #+cindex: search option in file links
3517 #+cindex: file links, searching
3519 File links can contain additional information to make Emacs jump to
3520 a particular location in the file when following a link.  This can be
3521 a line number or a search option after a double colon[fn:35].  For
3522 example, when the command {{{kbd(C-c l)}}} creates a link (see
3523 [[*Handling links]]) to a file, it encodes the words in the current line
3524 as a search string that can be used to find this line back later when
3525 following the link with {{{kbd(C-c C-o)}}}.
3527 Here is the syntax of the different ways to attach a search to a file
3528 link, together with an explanation:
3530 #+begin_example
3531   [[file:~/code/main.c::255]]
3532   [[file:~/xx.org::My Target]]
3533   [[file:~/xx.org::*My Target]]
3534   [[file:~/xx.org::#my-custom-id]]
3535   [[file:~/xx.org::/regexp/]]
3536 #+end_example
3538 - =255= :: Jump to line 255.
3539 - =My Target= :: Search for a link target =<<My Target>>=, or do
3540      a text search for =my target=, similar to the search in internal
3541      links, see [[*Internal links]].  In HTML export (see [[*HTML export]]),
3542      such a file link becomes a HTML reference to the corresponding
3543      named anchor in the linked file.
3544 - =*My Target= :: In an Org file, restrict search to headlines.
3545 - =#my-custom-id= :: Link to a heading with a =CUSTOM_ID= property
3546 - =/REGEXP/= :: Do a regular expression search for {{{var(REGEXP)}}}.
3547      This uses the Emacs command ~occur~ to list all matches in
3548      a separate window.  If the target file is in Org mode,
3549      ~org-occur~ is used to create a sparse tree with the matches.
3551 As a degenerate case, a file link with an empty file name can be used
3552 to search the current file.  For example, =[[file:::find me]]= does
3553 a search for =find me= in the current file, just as =[[find me]]= would.
3555 ** Custom searches
3556 :PROPERTIES:
3557 :DESCRIPTION: When the default search is not enough.
3558 :END:
3559 #+cindex: custom search strings
3560 #+cindex: search strings, custom
3562 The default mechanism for creating search strings and for doing the
3563 actual search related to a file link may not work correctly in all
3564 cases.  For example, BibTeX database files have many entries like
3565 ~year="1993"~ which would not result in good search strings, because
3566 the only unique identification for a BibTeX entry is the citation key.
3568 #+vindex: org-create-file-search-functions
3569 #+vindex: org-execute-file-search-functions
3570 If you come across such a problem, you can write custom functions to
3571 set the right search string for a particular file type, and to do the
3572 search for the string in the file.  Using ~add-hook~, these functions
3573 need to be added to the hook variables
3574 ~org-create-file-search-functions~ and
3575 ~org-execute-file-search-functions~.  See the docstring for these
3576 variables for more information.  Org actually uses this mechanism for
3577 BibTeX database files, and you can use the corresponding code as an
3578 implementation example.  See the file =org-bibtex.el=.
3580 * TODO items
3581 :PROPERTIES:
3582 :DESCRIPTION: Every tree branch can be a TODO item.
3583 :ALT_TITLE: TODO Items
3584 :END:
3585 #+cindex: TODO items
3587 Org mode does not maintain TODO lists as separate documents[fn:36].
3588 Instead, TODO items are an integral part of the notes file, because
3589 TODO items usually come up while taking notes!  With Org mode, simply
3590 mark any entry in a tree as being a TODO item.  In this way,
3591 information is not duplicated, and the entire context from which the
3592 TODO item emerged is always present.
3594 Of course, this technique for managing TODO items scatters them
3595 throughout your notes file.  Org mode compensates for this by
3596 providing methods to give you an overview of all the things that you
3597 have to do.
3599 ** Basic TODO functionality
3600 :PROPERTIES:
3601 :DESCRIPTION: Marking and displaying TODO entries.
3602 :ALT_TITLE: TODO basics
3603 :END:
3605 Any headline becomes a TODO item when it starts with the word =TODO=,
3606 for example:
3608 : *** TODO Write letter to Sam Fortune
3610 #+texinfo: @noindent
3611 The most important commands to work with TODO entries are:
3613 - {{{kbd(C-c C-t)}}} (~org-todo~) ::
3615      #+kindex: C-c C-t
3616      #+cindex: cycling, of TODO states
3617      Rotate the TODO state of the current item among
3619      #+begin_example
3620      ,-> (unmarked) -> TODO -> DONE --.
3621      '--------------------------------'
3622      #+end_example
3624      If TODO keywords have fast access keys (see [[*Fast access to
3625      TODO states]]), prompt for a TODO keyword through the fast
3626      selection interface; this is the default behavior when
3627      ~org-use-fast-todo-selection~ is non-~nil~.
3629      The same rotation can also be done "remotely" from the timeline
3630      and agenda buffers with the {{{kbd(t)}}} command key (see
3631      [[*Commands in the agenda buffer]]).
3633 - {{{kbd(C-u C-c C-t)}}} ::
3635      #+kindex: C-u C-c C-t
3636      When TODO keywords have no selection keys, select a specific
3637      keyword using completion; otherwise force cycling through TODO
3638      states with no prompt.  When ~org-use-fast-todo-selection~ is set
3639      to ~prefix~, use the fast selection interface.
3641 - {{{kbd(S-right)}}} {{{kbd(S-left)}}} ::
3643      #+kindex: S-right
3644      #+kindex: S-left
3645      #+vindex: org-treat-S-cursor-todo-selection-as-state-change
3646      Select the following/preceding TODO state, similar to cycling.
3647      Useful mostly if more than two TODO states are possible (see
3648      [[*Extended use of TODO keywords]]).  See also [[*Packages that
3649      conflict with Org mode]], for a discussion of the interaction with
3650      ~shift-selection-mode~.  See also the variable
3651      ~org-treat-S-cursor-todo-selection-as-state-change~.
3653 - {{{kbd(C-c / t)}}} (~org-show-todo-tree~) ::
3655      #+kindex: C-c / t
3656      #+cindex: sparse tree, for TODO
3657      #+vindex: org-todo-keywords
3658      #+findex: org-show-todo-tree
3659      View TODO items in a /sparse tree/ (see [[*Sparse trees]]).  Folds
3660      the entire buffer, but shows all TODO items---with not-DONE
3661      state---and the headings hierarchy above them.  With a prefix
3662      argument, or by using {{{kbd(C-c / T)}}}, search for a specific
3663      TODO.  You are prompted for the keyword, and you can also give
3664      a list of keywords like =KWD1|KWD2|...= to list entries that
3665      match any one of these keywords.  With a numeric prefix argument
3666      N, show the tree for the Nth keyword in the variable
3667      ~org-todo-keywords~.  With two prefix arguments, find all TODO
3668      states, both un-done and done.
3670 - {{{kbd(C-c a t)}}} (~org-todo-list~) ::
3672      #+kindex: C-c a t
3673      Show the global TODO list.  Collects the TODO items (with
3674      not-DONE states) from all agenda files (see [[*Agenda views]]) into
3675      a single buffer.  The new buffer is in Org Agenda mode, which
3676      provides commands to examine and manipulate the TODO entries from
3677      the new buffer (see [[*Commands in the agenda buffer]]).  See [[*The
3678      global TODO list]], for more information.
3680 - {{{kbd(S-M-RET)}}} (~org-insert-todo-heading~) ::
3682      #+kindex: S-M-RET
3683      #+findex: org-insert-todo-heading
3684      Insert a new TODO entry below the current one.
3686 #+vindex: org-todo-state-tags-triggers
3687 #+texinfo: @noindent
3688 Changing a TODO state can also trigger tag changes.  See the docstring
3689 of the option ~org-todo-state-tags-triggers~ for details.
3691 ** Extended use of TODO keywords
3692 :PROPERTIES:
3693 :DESCRIPTION: Workflow and assignments.
3694 :ALT_TITLE: TODO extensions
3695 :END:
3696 #+cindex: extended TODO keywords
3698 #+vindex: org-todo-keywords
3699 By default, marked TODO entries have one of only two states: TODO and
3700 DONE.  Org mode allows you to classify TODO items in more complex ways
3701 with /TODO keywords/ (stored in ~org-todo-keywords~).  With special
3702 setup, the TODO keyword system can work differently in different
3703 files.
3705 Note that /tags/ are another way to classify headlines in general and
3706 TODO items in particular (see [[*Tags]]).
3708 *** TODO keywords as workflow states
3709 :PROPERTIES:
3710 :DESCRIPTION: From TODO to DONE in steps.
3711 :ALT_TITLE: Workflow states
3712 :END:
3713 #+cindex: TODO workflow
3714 #+cindex: workflow states as TODO keywords
3716 You can use TODO keywords to indicate different /sequential/ states in
3717 the process of working on an item, for example[fn:37]:
3719 #+begin_src emacs-lisp
3720   (setq org-todo-keywords
3721         '((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED")))
3722 #+end_src
3724 The vertical bar separates the TODO keywords (states that /need
3725 action/) from the DONE states (which need /no further action/).  If
3726 you do not provide the separator bar, the last state is used as the
3727 DONE state.
3729 #+cindex: completion, of TODO keywords
3730 With this setup, the command {{{kbd(C-c C-t)}}} cycles an entry from
3731 =TODO= to =FEEDBACK=, then to =VERIFY=, and finally to =DONE= and
3732 =DELEGATED=.  You may also use a numeric prefix argument to quickly
3733 select a specific state.  For example {{{kbd(C-3 C-c C-t)}}} changes
3734 the state immediately to =VERIFY=.  Or you can use {{{kbd(S-left)}}}
3735 to go backward through the sequence.  If you define many keywords, you
3736 can use in-buffer completion (see [[*Completion]]) or even a special
3737 one-key selection scheme (see [[*Fast access to TODO states]]) to insert
3738 these words into the buffer.  Changing a TODO state can be logged with
3739 a timestamp, see [[*Tracking TODO state changes]], for more information.
3741 *** TODO keywords as types
3742 :PROPERTIES:
3743 :DESCRIPTION: I do this, Fred does the rest.
3744 :ALT_TITLE: TODO types
3745 :END:
3746 #+cindex: TODO types
3747 #+cindex: names as TODO keywords
3748 #+cindex: types as TODO keywords
3750 The second possibility is to use TODO keywords to indicate different
3751 /types/ of action items.  For example, you might want to indicate that
3752 items are for "work" or "home".  Or, when you work with several people
3753 on a single project, you might want to assign action items directly to
3754 persons, by using their names as TODO keywords.  This would be set up
3755 like this:
3757 #+begin_src emacs-lisp
3758   (setq org-todo-keywords '((type "Fred" "Sara" "Lucy" "|" "DONE")))
3759 #+end_src
3761 In this case, different keywords do not indicate a sequence, but
3762 rather different types.  So the normal work flow would be to assign
3763 a task to a person, and later to mark it DONE.  Org mode supports this
3764 style by adapting the workings of the command {{{kbd(C-c
3765 C-t)}}}[fn:38].  When used several times in succession, it still
3766 cycles through all names, in order to first select the right type for
3767 a task.  But when you return to the item after some time and execute
3768 {{{kbd(C-c C-t)}}} again, it will switch from any name directly to
3769 =DONE=.  Use prefix arguments or completion to quickly select
3770 a specific name.  You can also review the items of a specific TODO
3771 type in a sparse tree by using a numeric prefix to {{{kbd(C-c / t)}}}.
3772 For example, to see all things Lucy has to do, you would use
3773 {{{kbd(C-3 C-c / t)}}}.  To collect Lucy's items from all agenda files
3774 into a single buffer, you would use the numeric prefix argument as
3775 well when creating the global TODO list: {{{kbd(C-3 C-c a t)}}}.
3777 *** Multiple keyword sets in one file
3778 :PROPERTIES:
3779 :DESCRIPTION: Mixing it all, still finding your way.
3780 :ALT_TITLE: Multiple sets in one file
3781 :END:
3782 #+cindex: TODO keyword sets
3784 Sometimes you may want to use different sets of TODO keywords in
3785 parallel.  For example, you may want to have the basic TODO/DONE, but
3786 also a workflow for bug fixing, and a separate state indicating that
3787 an item has been canceled---so it is not DONE, but also does not
3788 require action.  Your setup would then look like this:
3790 #+begin_src emacs-lisp
3791   (setq org-todo-keywords
3792         '((sequence "TODO" "|" "DONE")
3793           (sequence "REPORT" "BUG" "KNOWNCAUSE" "|" "FIXED")
3794           (sequence "|" "CANCELED")))
3795 #+end_src
3797 The keywords should all be different, this helps Org mode to keep
3798 track of which subsequence should be used for a given entry.  In this
3799 setup, {{{kbd(C-c C-t)}}} only operates within a subsequence, so it
3800 switches from =DONE= to (nothing) to =TODO=, and from =FIXED= to
3801 (nothing) to =REPORT=.  Therefore you need a mechanism to initially
3802 select the correct sequence.  Besides the obvious ways like typing
3803 a keyword or using completion, you may also apply the following
3804 commands:
3806 #+attr_texinfo: :sep ,
3807 - {{{kbd(C-u C-u C-c C-t)}}}, {{{kbd(C-S-right)}}}, {{{kbd(C-S-left)}}} ::
3809      #+kindex: C-S-right
3810      #+kindex: C-S-left
3811      #+kindex: C-u C-u C-c C-t
3812      These keys jump from one TODO subset to the next.  In the above
3813      example, {{{kbd(C-u C-u C-c C-t)}}} or {{{kbd(C-S-right)}}} would
3814      jump from =TODO= or =DONE= to =REPORT=, and any of the words in
3815      the second row to =CANCELED=.  Note that the {{{kbd(C-S-)}}} key
3816      binding conflict with ~shift-selection-mode~ (see [[*Packages that
3817      conflict with Org mode]]).
3819 - {{{kbd(S-right)}}}, {{{kbd(S-left)}}} ::
3821      #+kindex: S-right
3822      #+kindex: S-left
3823      {{{kbd(S-left)}}} and {{{kbd(S-right)}}} walk through /all/
3824      keywords from all sets, so for example {{{kbd(S-right)}}} would
3825      switch from =DONE= to =REPORT= in the example above.  For
3826      a discussion of the interaction with ~shift-selection-mode~, see
3827      [[*Packages that conflict with Org mode]].
3829 *** Fast access to TODO states
3830 :PROPERTIES:
3831 :DESCRIPTION: Single letter selection of state.
3832 :END:
3834 If you would like to quickly change an entry to an arbitrary TODO
3835 state instead of cycling through the states, you can set up keys for
3836 single-letter access to the states.  This is done by adding the
3837 selection character after each keyword, in parentheses[fn:39].  For
3838 example:
3840 #+begin_src emacs-lisp
3841   (setq org-todo-keywords
3842         '((sequence "TODO(t)" "|" "DONE(d)")
3843           (sequence "REPORT(r)" "BUG(b)" "KNOWNCAUSE(k)" "|" "FIXED(f)")
3844           (sequence "|" "CANCELED(c)")))
3845 #+end_src
3847 #+vindex: org-fast-tag-selection-include-todo
3848 If you then press {{{kbd(C-c C-t)}}} followed by the selection key,
3849 the entry is switched to this state.  {{{kbd(SPC)}}} can be used to
3850 remove any TODO keyword from an entry[fn:40].
3852 *** Setting up keywords for individual files
3853 :PROPERTIES:
3854 :DESCRIPTION: Different files, different requirements.
3855 :ALT_TITLE: Per-file keywords
3856 :END:
3857 #+cindex: keyword options
3858 #+cindex: per-file keywords
3859 #+cindex: TODO, keyword
3860 #+cindex: TYP_TODO, keyword
3861 #+cindex: SEQ_TODO, keyword
3863 It can be very useful to use different aspects of the TODO mechanism
3864 in different files.  For file-local settings, you need to add special
3865 lines to the file which set the keywords and interpretation for that
3866 file only.  For example, to set one of the two examples discussed
3867 above, you need one of the following lines, starting in column zero
3868 anywhere in the file:
3870 : #+TODO: TODO FEEDBACK VERIFY | DONE CANCELED
3872 #+texinfo: @noindent
3873 you may also write =#+SEQ_TODO= to be explicit about the
3874 interpretation, but it means the same as =#+TODO=, or
3876 : #+TYP_TODO: Fred Sara Lucy Mike | DONE
3878 A setup for using several sets in parallel would be:
3880 #+begin_example
3881   ,#+TODO: TODO | DONE
3882   ,#+TODO: REPORT BUG KNOWNCAUSE | FIXED
3883   ,#+TODO: | CANCELED
3884 #+end_example
3886 #+cindex: completion, of option keywords
3887 #+kindex: M-TAB
3888 #+texinfo: @noindent
3889 To make sure you are using the correct keyword, type =#+= into the
3890 buffer and then use {{{kbd(M-TAB)}}} completion.
3892 #+cindex: DONE, final TODO keyword
3893 Remember that the keywords after the vertical bar---or the last
3894 keyword if no bar is there---must always mean that the item is DONE,
3895 although you may use a different word.  After changing one of these
3896 lines, use {{{kbd(C-c C-c)}}} with the cursor still in the line to
3897 make the changes known to Org mode[fn:41].
3899 *** Faces for TODO keywords
3900 :PROPERTIES:
3901 :DESCRIPTION: Highlighting states.
3902 :END:
3903 #+cindex: faces, for TODO keywords
3905 #+vindex: org-todo, face
3906 #+vindex: org-done, face
3907 #+vindex: org-todo-keyword-faces
3908 Org mode highlights TODO keywords with special faces: ~org-todo~ for
3909 keywords indicating that an item still has to be acted upon, and
3910 ~org-done~ for keywords indicating that an item is finished.  If you
3911 are using more than two different states, you might want to use
3912 special faces for some of them.  This can be done using the variable
3913 ~org-todo-keyword-faces~.  For example:
3915 #+begin_src emacs-lisp
3916   (setq org-todo-keyword-faces
3917         '(("TODO" . org-warning) ("STARTED" . "yellow")
3918           ("CANCELED" . (:foreground "blue" :weight bold))))
3919 #+end_src
3921 #+vindex: org-faces-easy-properties
3922 While using a list with face properties as shown for =CANCELED=
3923 /should/ work, this does not always seem to be the case.  If
3924 necessary, define a special face and use that.  A string is
3925 interpreted as a color.  The variable ~org-faces-easy-properties~
3926 determines if that color is interpreted as a foreground or
3927 a background color.
3929 *** TODO dependencies
3930 :PROPERTIES:
3931 :DESCRIPTION: When one task needs to wait for others.
3932 :END:
3933 #+cindex: TODO dependencies
3934 #+cindex: dependencies, of TODO states
3936 #+vindex: org-enforce-todo-dependencies
3937 #+cindex: ORDERED, property
3938 The structure of Org files---hierarchy and lists---makes it easy to
3939 define TODO dependencies.  Usually, a parent TODO task should not be
3940 marked DONE until all subtasks, defined as children tasks, are marked
3941 as DONE.  And sometimes there is a logical sequence to a number of
3942 (sub)tasks, so that one task cannot be acted upon before all siblings
3943 above it are done.  If you customize the variable
3944 ~org-enforce-todo-dependencies~, Org blocks entries from changing
3945 state to DONE while they have children that are not DONE.
3946 Furthermore, if an entry has a property =ORDERED=, each of its
3947 children is blocked until all earlier siblings are marked DONE.  Here
3948 is an example:
3950 #+begin_example
3951   ,* TODO Blocked until (two) is done
3952   ,** DONE one
3953   ,** TODO two
3955   ,* Parent
3956   :PROPERTIES:
3957   :ORDERED:  t
3958   :END:
3959   ,** TODO a
3960   ,** TODO b, needs to wait for (a)
3961   ,** TODO c, needs to wait for (a) and (b)
3962 #+end_example
3964 #+cindex: TODO dependencies, NOBLOCKING
3965 #+cindex: NOBLOCKING, property
3966 You can ensure an entry is never blocked by using the =NOBLOCKING=
3967 property:
3969 #+begin_example
3970   ,* This entry is never blocked
3971   :PROPERTIES:
3972   :NOBLOCKING: t
3973   :END:
3974 #+end_example
3976 - {{{kbd(C-c C-x o)}}} (~org-toggle-ordered-property~) ::
3978      #+kindex: C-c C-x o
3979      #+findex: org-toggle-ordered-property
3980      #+vindex: org-track-ordered-property-with-tag
3981      #+cindex: ORDERED, property
3982      Toggle the =ORDERED= property of the current entry.  A property
3983      is used for this behavior because this should be local to the
3984      current entry, not inherited like a tag.  However, if you would
3985      like to /track/ the value of this property with a tag for better
3986      visibility, customize the variable
3987      ~org-track-ordered-property-with-tag~.
3989 - {{{kbd(C-u C-u C-u C-c C-t)}}} ::
3991      #+kindex: C-u C-u C-u C-c C-t
3992      Change TODO state, circumventing any state blocking.
3994 #+vindex: org-agenda-dim-blocked-tasks
3995 If you set the variable ~org-agenda-dim-blocked-tasks~, TODO entries
3996 that cannot be closed because of such dependencies are shown in
3997 a dimmed font or even made invisible in agenda views (see [[*Agenda
3998 views]]).
4000 #+cindex: checkboxes and TODO dependencies
4001 #+vindex: org-enforce-todo-dependencies
4002 You can also block changes of TODO states by looking at checkboxes
4003 (see [[*Checkboxes]]).  If you set the variable
4004 ~org-enforce-todo-checkbox-dependencies~, an entry that has unchecked
4005 checkboxes is blocked from switching to DONE.
4007 If you need more complex dependency structures, for example
4008 dependencies between entries in different trees or files, check out
4009 the contributed module =org-depend.el=.
4011 ** Progress logging
4012 :PROPERTIES:
4013 :DESCRIPTION: Dates and notes for progress.
4014 :END:
4015 #+cindex: progress logging
4016 #+cindex: logging, of progress
4018 Org mode can automatically record a timestamp and possibly a note when
4019 you mark a TODO item as DONE, or even each time you change the state
4020 of a TODO item.  This system is highly configurable, settings can be
4021 on a per-keyword basis and can be localized to a file or even
4022 a subtree.  For information on how to clock working time for a task,
4023 see [[*Clocking work time]].
4025 *** Closing items
4026 :PROPERTIES:
4027 :DESCRIPTION: When was this entry marked DONE?
4028 :END:
4030 The most basic logging is to keep track of /when/ a certain TODO item
4031 was finished.  This is achieved with[fn:42]
4033 #+begin_src emacs-lisp
4034   (setq org-log-done 'time)
4035 #+end_src
4037 #+vindex: org-closed-keep-when-no-todo
4038 #+texinfo: @noindent
4039 Then each time you turn an entry from a TODO (not-done) state into any
4040 of the DONE states, a line =CLOSED: [timestamp]= is inserted just
4041 after the headline.  If you turn the entry back into a TODO item
4042 through further state cycling, that line is removed again.  If you
4043 turn the entry back to a non-TODO state (by pressing {{{kbd(C-c C-t
4044 SPC)}}} for example), that line is also removed, unless you set
4045 ~org-closed-keep-when-no-todo~ to non-~nil~.  If you want to record
4046 a note along with the timestamp, use[fn:43]
4048 #+begin_src emacs-lisp
4049   (setq org-log-done 'note)
4050 #+end_src
4052 #+texinfo: @noindent
4053 You are then be prompted for a note, and that note is stored below the
4054 entry with a =Closing Note= heading.
4056 *** Tracking TODO state changes
4057 :PROPERTIES:
4058 :DESCRIPTION: When did the status change?
4059 :END:
4060 #+cindex: drawer, for state change recording
4062 #+vindex: org-log-states-order-reversed
4063 #+vindex: org-log-into-drawer
4064 #+cindex: LOG_INTO_DRAWER, property
4065 When TODO keywords are used as workflow states (see [[*TODO keywords as workflow states][*Workflow states]]),
4066 you might want to keep track of when a state change occurred and maybe
4067 take a note about this change.  You can either record just
4068 a timestamp, or a time-stamped note for a change.  These records are
4069 inserted after the headline as an itemized list, newest first[fn:44].
4070 When taking a lot of notes, you might want to get the notes out of the
4071 way into a drawer (see [[*Drawers]]).  Customize the variable
4072 ~org-log-into-drawer~ to get this behavior---the recommended drawer
4073 for this is called =LOGBOOK=[fn:45].  You can also overrule the
4074 setting of this variable for a subtree by setting a =LOG_INTO_DRAWER=
4075 property.
4077 Since it is normally too much to record a note for every state, Org
4078 mode expects configuration on a per-keyword basis for this.  This is
4079 achieved by adding special markers =!= (for a timestamp) or =@= (for
4080 a note with timestamp) in parentheses after each keyword.  For
4081 example, with the setting
4083 #+begin_src emacs-lisp
4084   (setq org-todo-keywords
4085         '((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)" "CANCELED(c@)")))
4086 #+end_src
4088 To record a timestamp without a note for TODO keywords configured with
4089 =@=, just type {{{kbd(C-c C-c)}}} to enter a blank note when prompted.
4091 #+vindex: org-log-done
4092 #+texinfo: noindent
4093 you not only define global TODO keywords and fast access keys, but
4094 also request that a time is recorded when the entry is set to =DONE=,
4095 and that a note is recorded when switching to =WAIT= or
4096 =CANCELED=[fn:46].  The setting for =WAIT= is even more special: the
4097 =!= after the slash means that in addition to the note taken when
4098 entering the state, a timestamp should be recorded when /leaving/ the
4099 =WAIT= state, if and only if the /target/ state does not configure
4100 logging for entering it.  So it has no effect when switching from
4101 =WAIT= to =DONE=, because =DONE= is configured to record a timestamp
4102 only.  But when switching from =WAIT= back to =TODO=, the =/!= in the
4103 =WAIT= setting now triggers a timestamp even though =TODO= has no
4104 logging configured.
4106 You can use the exact same syntax for setting logging preferences local
4107 to a buffer:
4109 : #+TODO: TODO(t) WAIT(w@/!) | DONE(d!) CANCELED(c@)
4111 #+cindex: LOGGING, property
4112 In order to define logging settings that are local to a subtree or
4113 a single item, define a =LOGGING= property in this entry.  Any
4114 non-empty =LOGGING= property resets all logging settings to ~nil~.
4115 You may then turn on logging for this specific tree using =STARTUP=
4116 keywords like =lognotedone= or =logrepeat=, as well as adding state
4117 specific settings like =TODO(!)=.  For example:
4119 #+begin_example
4120   ,* TODO Log each state with only a time
4121     :PROPERTIES:
4122     :LOGGING: TODO(!) WAIT(!) DONE(!) CANCELED(!)
4123     :END:
4124   ,* TODO Only log when switching to WAIT, and when repeating
4125     :PROPERTIES:
4126     :LOGGING: WAIT(@) logrepeat
4127     :END:
4128   ,* TODO No logging at all
4129     :PROPERTIES:
4130     :LOGGING: nil
4131     :END:
4132 #+end_example
4134 *** Tracking your habits
4135 :PROPERTIES:
4136 :DESCRIPTION: How consistent have you been?
4137 :END:
4138 #+cindex: habits
4139 #+cindex: STYLE, property
4141 Org has the ability to track the consistency of a special category of
4142 TODO, called "habits."  A habit has the following properties:
4144 1. You have enabled the ~habits~ module by customizing the variable
4145    ~org-modules~.
4147 2. The habit is a TODO item, with a TODO keyword representing an open
4148    state.
4150 3. The property =STYLE= is set to the value =habit=.
4152 4. The TODO has a scheduled date, usually with a =.+= style repeat
4153    interval.  A =++= style may be appropriate for habits with time
4154    constraints, e.g., must be done on weekends, or a =+= style for an
4155    unusual habit that can have a backlog, e.g., weekly reports.
4157 5. The TODO may also have minimum and maximum ranges specified by
4158    using the syntax =.+2d/3d=, which says that you want to do the task
4159    at least every three days, but at most every two days.
4161 6. You must also have state logging for the DONE state enabled (see
4162    [[*Tracking TODO state changes]]), in order for historical data to be
4163    represented in the consistency graph.  If it is not enabled it is
4164    not an error, but the consistency graphs are largely meaningless.
4166 To give you an idea of what the above rules look like in action, here's an
4167 actual habit with some history:
4169 #+begin_example
4170   ,** TODO Shave
4171      SCHEDULED: <2009-10-17 Sat .+2d/4d>
4172      :PROPERTIES:
4173      :STYLE:    habit
4174      :LAST_REPEAT: [2009-10-19 Mon 00:36]
4175      :END:
4176      - State "DONE"       from "TODO"       [2009-10-15 Thu]
4177      - State "DONE"       from "TODO"       [2009-10-12 Mon]
4178      - State "DONE"       from "TODO"       [2009-10-10 Sat]
4179      - State "DONE"       from "TODO"       [2009-10-04 Sun]
4180      - State "DONE"       from "TODO"       [2009-10-02 Fri]
4181      - State "DONE"       from "TODO"       [2009-09-29 Tue]
4182      - State "DONE"       from "TODO"       [2009-09-25 Fri]
4183      - State "DONE"       from "TODO"       [2009-09-19 Sat]
4184      - State "DONE"       from "TODO"       [2009-09-16 Wed]
4185      - State "DONE"       from "TODO"       [2009-09-12 Sat]
4186 #+end_example
4188 What this habit says is: I want to shave at most every 2 days---given
4189 by the =SCHEDULED= date and repeat interval---and at least every
4190 4 days.  If today is the 15th, then the habit first appears in the
4191 agenda on Oct 17, after the minimum of 2 days has elapsed, and will
4192 appear overdue on Oct 19, after four days have elapsed.
4194 What's really useful about habits is that they are displayed along
4195 with a consistency graph, to show how consistent you've been at
4196 getting that task done in the past.  This graph shows every day that
4197 the task was done over the past three weeks, with colors for each day.
4198 The colors used are:
4200 - Blue :: If the task was not to be done yet on that day.
4201 - Green :: If the task could have been done on that day.
4202 - Yellow :: If the task was going to be overdue the next day.
4203 - Red :: If the task was overdue on that day.
4205 In addition to coloring each day, the day is also marked with an
4206 asterisk if the task was actually done that day, and an exclamation
4207 mark to show where the current day falls in the graph.
4209 There are several configuration variables that can be used to change
4210 the way habits are displayed in the agenda.
4212 - ~org-habit-graph-column~ ::
4214      #+vindex: org-habit-graph-column
4215      The buffer column at which the consistency graph should be drawn.
4216      This overwrites any text in that column, so it is a good idea to
4217      keep your habits' titles brief and to the point.
4219 - ~org-habit-preceding-days~ ::
4221      #+vindex: org-habit-preceding-days
4222      The amount of history, in days before today, to appear in
4223      consistency graphs.
4225 - ~org-habit-following-days~ ::
4227      #+vindex: org-habit-following-days
4228      The number of days after today that appear in consistency graphs.
4230 - ~org-habit-show-habits-only-for-today~ ::
4232      #+vindex: org-habit-show-habits-only-for-today
4233      If non-~nil~, only show habits in today's agenda view.  This is
4234      set to true by default.
4236 Lastly, pressing {{{kbd(K)}}} in the agenda buffer causes habits to
4237 temporarily be disabled and do not appear at all.  Press {{{kbd(K)}}}
4238 again to bring them back.  They are also subject to tag filtering, if
4239 you have habits which should only be done in certain contexts, for
4240 example.
4242 ** Priorities
4243 :PROPERTIES:
4244 :DESCRIPTION: Some things are more important than others.
4245 :END:
4246 #+cindex: priorities
4247 #+cindex: priority cookie
4249 If you use Org mode extensively, you may end up with enough TODO items
4250 that it starts to make sense to prioritize them.  Prioritizing can be
4251 done by placing a /priority cookie/ into the headline of a TODO item,
4252 like this
4254 : *** TODO [#A] Write letter to Sam Fortune
4256 #+vindex: org-priority-faces
4257 #+texinfo: @noindent
4258 By default, Org mode supports three priorities: =A=, =B=, and =C=.
4259 =A= is the highest priority.  An entry without a cookie is treated
4260 just like priority =B=.  Priorities make a difference only for sorting
4261 in the agenda (see [[*Weekly/daily agenda]]); outside the agenda, they
4262 have no inherent meaning to Org mode.  The cookies can be highlighted
4263 with special faces by customizing the variable ~org-priority-faces~.
4265 Priorities can be attached to any outline node; they do not need to be
4266 TODO items.
4268 #+attr_texinfo: :sep ;
4269 - {{{kbd(C-c \,)}}} (~org-priority~) ::
4271      #+kindex: C-c ,
4272      #+findex: org-priority
4273      Set the priority of the current headline.  The command prompts
4274      for a priority character =A=, =B= or =C=.  When you press
4275      {{{kbd(SPC)}}} instead, the priority cookie is removed from the
4276      headline.  The priorities can also be changed "remotely" from the
4277      timeline and agenda buffer with the {{{kbd(\,)}}} command (see
4278      [[*Commands in the agenda buffer]]).
4280 - {{{kbd(S-up)}}} (~org-priority-up~); {{{kbd(S-down)}}} (~org-priority-down~) ::
4282      #+kindex: S-up
4283      #+kindex: S-down
4284      #+findex: org-priority-up
4285      #+findex: org-priority-down
4286      #+vindex: org-priority-start-cycle-with-default
4287      Increase/decrease priority of current headline[fn:47].  Note that
4288      these keys are also used to modify timestamps (see [[*Creating
4289      timestamps]]).  See also [[*Packages that conflict with Org mode]], for
4290      a discussion of the interaction with ~shift-selection-mode~.
4292 #+vindex: org-highest-priority
4293 #+vindex: org-lowest-priority
4294 #+vindex: org-default-priority
4295 You can change the range of allowed priorities by setting the
4296 variables ~org-highest-priority~, ~org-lowest-priority~, and
4297 ~org-default-priority~.  For an individual buffer, you may set these
4298 values (highest, lowest, default) like this (please make sure that the
4299 highest priority is earlier in the alphabet than the lowest priority):
4301 #+cindex: PRIORITIES, keyword
4302 : #+PRIORITIES: A C B
4304 ** Breaking tasks down tasks into subtasks
4305 :PROPERTIES:
4306 :DESCRIPTION: Splitting a task into manageable pieces.
4307 :ALT_TITLE: Breaking down tasks
4308 :END:
4309 #+cindex: tasks, breaking down
4310 #+cindex: statistics, for TODO items
4312 #+vindex: org-agenda-todo-list-sublevels
4313 It is often advisable to break down large tasks into smaller,
4314 manageable subtasks.  You can do this by creating an outline tree
4315 below a TODO item, with detailed subtasks on the tree[fn:48].  To keep
4316 the overview over the fraction of subtasks that are already completed,
4317 insert either =[/]= or =[%]= anywhere in the headline.  These cookies
4318 are updated each time the TODO status of a child changes, or when
4319 pressing {{{kbd(C-c C-c)}}} on the cookie.  For example:
4321 #+begin_example
4322   ,* Organize Party [33%]
4323   ,** TODO Call people [1/2]
4324   ,*** TODO Peter
4325   ,*** DONE Sarah
4326   ,** TODO Buy food
4327   ,** DONE Talk to neighbor
4328 #+end_example
4330 #+cindex: COOKIE_DATA, property
4331 If a heading has both checkboxes and TODO children below it, the
4332 meaning of the statistics cookie become ambiguous.  Set the property
4333 =COOKIE_DATA= to either =checkbox= or =todo= to resolve this issue.
4335 #+vindex: org-hierarchical-todo-statistics
4336 If you would like to have the statistics cookie count any TODO entries
4337 in the subtree (not just direct children), configure the variable
4338 ~org-hierarchical-todo-statistics~.  To do this for a single subtree,
4339 include the word =recursive= into the value of the =COOKIE_DATA=
4340 property.
4342 #+begin_example org
4343   ,* Parent capturing statistics [2/20]
4344     :PROPERTIES:
4345     :COOKIE_DATA: todo recursive
4346     :END:
4347 #+end_example
4349 If you would like a TODO entry to automatically change to DONE when
4350 all children are done, you can use the following setup:
4352 #+begin_src emacs-lisp
4353   (defun org-summary-todo (n-done n-not-done)
4354     "Switch entry to DONE when all subentries are done, to TODO otherwise."
4355     (let (org-log-done org-log-states)   ; turn off logging
4356       (org-todo (if (= n-not-done 0) "DONE" "TODO"))))
4358   (add-hook 'org-after-todo-statistics-hook 'org-summary-todo)
4359 #+end_src
4361 Another possibility is the use of checkboxes to identify (a hierarchy
4362 of) a large number of subtasks (see [[*Checkboxes]]).
4364 ** Checkboxes
4365 :PROPERTIES:
4366 :DESCRIPTION: Tick-off lists.
4367 :END:
4368 #+cindex: checkboxes
4370 #+vindex: org-list-automatic-rules
4371 Every item in a plain list[fn:49] (see [[*Plain lists]]) can be made into
4372 a checkbox by starting it with the string =[ ]=.  This feature is
4373 similar to TODO items (see [[*TODO items]]), but is more lightweight.
4374 Checkboxes are not included into the global TODO list, so they are
4375 often great to split a task into a number of simple steps.  Or you can
4376 use them in a shopping list.  To toggle a checkbox, use {{{kbd(C-c
4377 C-c)}}}, or use the mouse (thanks to Piotr Zielinski's
4378 =org-mouse.el=).
4380 Here is an example of a checkbox list.
4382 #+begin_example
4383   ,* TODO Organize party [2/4]
4384     - [-] call people [1/3]
4385       - [ ] Peter
4386       - [X] Sarah
4387       - [ ] Sam
4388     - [X] order food
4389     - [ ] think about what music to play
4390     - [X] talk to the neighbors
4391 #+end_example
4393 Checkboxes work hierarchically, so if a checkbox item has children
4394 that are checkboxes, toggling one of the children checkboxes makes the
4395 parent checkbox reflect if none, some, or all of the children are
4396 checked.
4398 #+cindex: statistics, for checkboxes
4399 #+cindex: checkbox statistics
4400 #+cindex: COOKIE_DATA, property
4401 #+vindex: org-hierarchical-checkbox-statistics
4402 The =[2/4]= and =[1/3]= in the first and second line are cookies
4403 indicating how many checkboxes present in this entry have been checked
4404 off, and the total number of checkboxes present.  This can give you an
4405 idea on how many checkboxes remain, even without opening a folded
4406 entry.  The cookies can be placed into a headline or into (the first
4407 line of) a plain list item.  Each cookie covers checkboxes of direct
4408 children structurally below the headline/item on which the cookie
4409 appears[fn:50].  You have to insert the cookie yourself by typing
4410 either =[/]= or =[%]=.  With =[/]= you get an =n out of m= result, as
4411 in the examples above.  With =[%]= you get information about the
4412 percentage of checkboxes checked (in the above example, this would be
4413 =[50%]= and =[33%]=, respectively).  In a headline, a cookie can count
4414 either checkboxes below the heading or TODO states of children, and it
4415 displays whatever was changed last.  Set the property =COOKIE_DATA= to
4416 either =checkbox= or =todo= to resolve this issue.
4418 #+cindex: blocking, of checkboxes
4419 #+cindex: checkbox blocking
4420 #+cindex: ORDERED, property
4421 If the current outline node has an =ORDERED= property, checkboxes must
4422 be checked off in sequence, and an error is thrown if you try to check
4423 off a box while there are unchecked boxes above it.
4425 #+texinfo: @noindent
4426 The following commands work with checkboxes:
4428 - {{{kbd(C-c C-c)}}} (~org-toggle-checkbox~) ::
4430      #+kindex: C-c C-c
4431      #+findex: org-toggle-checkbox
4432      Toggle checkbox status or---with prefix argument---checkbox
4433      presence at point.  With a single prefix argument, add an empty
4434      checkbox or remove the current one[fn:51].  With a double prefix
4435      argument, set it to =[-]=, which is considered to be an
4436      intermediate state.
4438 - {{{kbd(C-c C-x C-b)}}} (~org-toggle-checkbox~) ::
4440      #+kindex: C-c C-x C-b
4441      Toggle checkbox status or---with prefix argument---checkbox
4442      presence at point.  With double prefix argument, set it to =[-]=,
4443      which is considered to be an intermediate state.
4445      - If there is an active region, toggle the first checkbox in the
4446        region and set all remaining boxes to the same status as the
4447        first.  With a prefix argument, add or remove the checkbox for
4448        all items in the region.
4450      - If the cursor is in a headline, toggle checkboxes in the region
4451        between this headline and the next---so /not/ the entire
4452        subtree.
4454      - If there is no active region, just toggle the checkbox at
4455        point.
4457 - {{{kbd(M-S-RET)}}} (~org-insert-todo-heading~) ::
4459      #+kindex: M-S-RET
4460      #+findex: org-insert-todo-heading
4461      Insert a new item with a checkbox.  This works only if the cursor
4462      is already in a plain list item (see [[*Plain lists]]).
4464 - {{{kbd(C-c C-x o)}}} (~org-toggle-ordered-property~) ::
4466      #+kindex: C-c C-x o
4467      #+findex: org-toggle-ordered-property
4468      #+vindex: org-track-ordered-property-with-tag
4469      Toggle the =ORDERED= property of the entry, to toggle if
4470      checkboxes must be checked off in sequence.  A property is used
4471      for this behavior because this should be local to the current
4472      entry, not inherited like a tag.  However, if you would like to
4473      /track/ the value of this property with a tag for better
4474      visibility, customize ~org-track-ordered-property-with-tag~.
4476 - {{{kbd(C-c #)}}} (~org-update-statistics-cookies~) ::
4478      #+kindex: C-c #
4479      #+findex: org-update-statistics-cookies
4480      Update the statistics cookie in the current outline entry.  When
4481      called with a {{{kbd(C-u)}}} prefix, update the entire file.
4482      Checkbox statistic cookies are updated automatically if you
4483      toggle checkboxes with {{{kbd(C-c C-c)}}} and make new ones with
4484      {{{kbd(M-S-RET)}}}.  TODO statistics cookies update when changing
4485      TODO states.  If you delete boxes/entries or add/change them by
4486      hand, use this command to get things back into sync.
4488 * Tags
4489 :PROPERTIES:
4490 :DESCRIPTION: Tagging headlines and matching sets of tags.
4491 :END:
4492 #+cindex: tags
4493 #+cindex: headline tagging
4494 #+cindex: matching, tags
4495 #+cindex: sparse tree, tag based
4497 An excellent way to implement labels and contexts for
4498 cross-correlating information is to assign /tags/ to headlines.  Org
4499 mode has extensive support for tags.
4501 #+vindex: org-tag-faces
4502 Every headline can contain a list of tags; they occur at the end of
4503 the headline.  Tags are normal words containing letters, numbers, =_=,
4504 and =@=.  Tags must be preceded and followed by a single colon, e.g.,
4505 =:work:=.  Several tags can be specified, as in =:work:urgent:=.  Tags
4506 by default are in bold face with the same color as the headline.  You
4507 may specify special faces for specific tags using the variable
4508 ~org-tag-faces~, in much the same way as you can for TODO keywords
4509 (see [[*Faces for TODO keywords]]).
4511 ** Tag inheritance
4512 :PROPERTIES:
4513 :DESCRIPTION: Tags use the tree structure of an outline.
4514 :END:
4515 #+cindex: tag inheritance
4516 #+cindex: inheritance, of tags
4517 #+cindex: sublevels, inclusion into tags match
4519 /Tags/ make use of the hierarchical structure of outline trees.  If
4520 a heading has a certain tag, all subheadings inherit the tag as well.
4521 For example, in the list
4523 #+begin_example
4524   ,* Meeting with the French group      :work:
4525   ,** Summary by Frank                  :boss:notes:
4526   ,*** TODO Prepare slides for him      :action:
4527 #+end_example
4529 #+texinfo: @noindent
4530 the final heading has the tags =work=, =boss=, =notes=, and =action=
4531 even though the final heading is not explicitly marked with those
4532 tags.  You can also set tags that all entries in a file should inherit
4533 just as if these tags were defined in a hypothetical level zero that
4534 surrounds the entire file.  Use a line like this[fn:52]
4536 #+cindex: FILETAGS, keyword
4537 : #+FILETAGS: :Peter:Boss:Secret:
4539 #+vindex: org-use-tag-inheritance
4540 #+vindex: org-tags-exclude-from-inheritance
4541 #+texinfo: @noindent
4542 To limit tag inheritance to specific tags, or to turn it off entirely,
4543 use the variables ~org-use-tag-inheritance~ and
4544 ~org-tags-exclude-from-inheritance~.
4546 #+vindex: org-tags-match-list-sublevels
4547 When a headline matches during a tags search while tag inheritance is
4548 turned on, all the sublevels in the same tree---for a simple match
4549 form---match as well[fn:53].  The list of matches may then become
4550 very long.  If you only want to see the first tags match in a subtree,
4551 configure the variable ~org-tags-match-list-sublevels~ (not
4552 recommended).
4554 #+vindex: org-agenda-use-tag-inheritance
4555 Tag inheritance is relevant when the agenda search tries to match
4556 a tag, either in the ~tags~ or ~tags-todo~ agenda types.  In other
4557 agenda types, ~org-use-tag-inheritance~ has no effect.  Still, you may
4558 want to have your tags correctly set in the agenda, so that tag
4559 filtering works fine, with inherited tags.  Set
4560 ~org-agenda-use-tag-inheritance~ to control this: the default value
4561 includes all agenda types, but setting this to ~nil~ can really speed
4562 up agenda generation.
4564 ** Setting tags
4565 :PROPERTIES:
4566 :DESCRIPTION: How to assign tags to a headline.
4567 :END:
4568 #+cindex: setting tags
4569 #+cindex: tags, setting
4571 #+kindex: M-TAB
4572 Tags can simply be typed into the buffer at the end of a headline.
4573 After a colon, {{{kbd(M-TAB)}}} offers completion on tags.  There is
4574 also a special command for inserting tags:
4576 - {{{kbd(C-c C-q)}}} (~org-set-tags-command~) ::
4578      #+kindex: C-c C-q
4579      #+findex: org-set-tags-command
4580      #+cindex: completion, of tags
4581      #+vindex: org-tags-column
4582      Enter new tags for the current headline.  Org mode either offers
4583      completion or a special single-key interface for setting tags,
4584      see below.  After pressing {{{kbd(RET)}}}, the tags are inserted
4585      and aligned to ~org-tags-column~.  When called with
4586      a {{{kbd(C-u)}}} prefix, all tags in the current buffer are
4587      aligned to that column, just to make things look nice.  Tags are
4588      automatically realigned after promotion, demotion, and TODO state
4589      changes (see [[*Basic TODO functionality]]).
4591 - {{{kbd(C-c C-c)}}} (~org-set-tags-command~) ::
4593      #+kindex: C-c C-c
4594      When the cursor is in a headline, this does the same as
4595      {{{kbd(C-c C-q)}}}.
4597 #+vindex: org-tag-alist
4598 Org supports tag insertion based on a /list of tags/.  By default this
4599 list is constructed dynamically, containing all tags currently used in
4600 the buffer.  You may also globally specify a hard list of tags with
4601 the variable ~org-tag-alist~.  Finally you can set the default tags
4602 for a given file with lines like
4604 #+cindex: TAGS, keyword
4605 #+begin_example
4606   ,#+TAGS: @work @home @tennisclub
4607   ,#+TAGS: laptop car pc sailboat
4608 #+end_example
4610 If you have globally defined your preferred set of tags using the
4611 variable ~org-tag-alist~, but would like to use a dynamic tag list in
4612 a specific file, add an empty =TAGS= keyword to that file:
4614 : #+TAGS:
4616 #+vindex: org-tag-persistent-alist
4617 If you have a preferred set of tags that you would like to use in
4618 every file, in addition to those defined on a per-file basis by =TAGS=
4619 keyword, then you may specify a list of tags with the variable
4620 ~org-tag-persistent-alist~.  You may turn this off on a per-file basis
4621 by adding a =STARTUP= keyword to that file:
4623 : #+STARTUP: noptag
4625 By default Org mode uses the standard minibuffer completion facilities
4626 for entering tags.  However, it also implements another, quicker, tag
4627 selection method called /fast tag selection/.  This allows you to
4628 select and deselect tags with just a single key press.  For this to
4629 work well you should assign unique letters to most of your commonly
4630 used tags.  You can do this globally by configuring the variable
4631 ~org-tag-alist~ in your Emacs init file.  For example, you may find
4632 the need to tag many items in different files with =@home=.  In this
4633 case you can set something like:
4635 #+begin_src emacs-lisp
4636   (setq org-tag-alist '(("@work" . ?w) ("@home" . ?h) ("laptop" . ?l)))
4637 #+end_src
4639 #+texinfo: @noindent
4640 If the tag is only relevant to the file you are working on, then you
4641 can instead set the =TAGS= keyword as:
4643 : #+TAGS: @work(w)  @home(h)  @tennisclub(t)  laptop(l)  pc(p)
4645 #+texinfo: @noindent
4646 The tags interface shows the available tags in a splash window.  If
4647 you want to start a new line after a specific tag, insert =\n= into
4648 the tag list
4650 : #+TAGS: @work(w) @home(h) @tennisclub(t) \n laptop(l) pc(p)
4652 #+texinfo: @noindent
4653 or write them in two lines:
4655 #+begin_example
4656   ,#+TAGS: @work(w)  @home(h)  @tennisclub(t)
4657   ,#+TAGS: laptop(l)  pc(p)
4658 #+end_example
4660 #+texinfo: @noindent
4661 You can also group together tags that are mutually exclusive by using
4662 braces, as in:
4664 : #+TAGS: { @work(w)  @home(h)  @tennisclub(t) }  laptop(l)  pc(p)
4666 #+texinfo: @noindent
4667 you indicate that at most one of =@work=, =@home=, and =@tennisclub=
4668 should be selected.  Multiple such groups are allowed.
4670 #+texinfo: @noindent
4671 Do not forget to press {{{kbd(C-c C-c)}}} with the cursor in one of
4672 these lines to activate any changes.
4674 #+texinfo: @noindent
4675 To set these mutually exclusive groups in the variable
4676 ~org-tags-alist~, you must use the dummy tags ~:startgroup~ and
4677 ~:endgroup~ instead of the braces.  Similarly, you can use ~:newline~
4678 to indicate a line break.  The previous example would be set globally
4679 by the following configuration:
4681 #+begin_src emacs-lisp
4682   (setq org-tag-alist '((:startgroup . nil)
4683                         ("@work" . ?w) ("@home" . ?h)
4684                         ("@tennisclub" . ?t)
4685                         (:endgroup . nil)
4686                         ("laptop" . ?l) ("pc" . ?p)))
4687 #+end_src
4689 If at least one tag has a selection key then pressing {{{kbd(C-c
4690 C-c)}}} automatically presents you with a special interface, listing
4691 inherited tags, the tags of the current headline, and a list of all
4692 valid tags with corresponding keys[fn:54].
4694 Pressing keys assigned to tags adds or removes them from the list of
4695 tags in the current line.  Selecting a tag in a group of mutually
4696 exclusive tags turns off any other tag from that group.
4698 In this interface, you can also use the following special keys:
4700 - {{{kbd(TAB)}}} ::
4702      #+kindex: TAB
4703      Enter a tag in the minibuffer, even if the tag is not in the
4704      predefined list.  You can complete on all tags present in the
4705      buffer.  You can also add several tags: just separate them with
4706      a comma.
4708 - {{{kbd(SPC)}}} ::
4710      #+kindex: SPC
4711      Clear all tags for this line.
4713 - {{{kbd(RET)}}} ::
4715      #+kindex: RET
4716      Accept the modified set.
4718 - {{{kbd(C-g)}}} ::
4720      #+kindex: C-g
4721      Abort without installing changes.
4723 - {{{kbd(q)}}} ::
4725      #+kindex: q
4726      If {{{kbd(q)}}} is not assigned to a tag, it aborts like
4727      {{{kbd(C-g)}}}.
4729 - {{{kbd(!)}}} ::
4731      #+kindex: !
4732      Turn off groups of mutually exclusive tags.  Use this to (as an
4733      exception) assign several tags from such a group.
4735 - {{{kbd(C-c)}}} ::
4737      #+kindex: C-c C-c
4738      Toggle auto-exit after the next change (see below).  If you are
4739      using expert mode, the first {{{kbd(C-c)}}} displays the
4740      selection window.
4742 #+texinfo: @noindent
4743 This method lets you assign tags to a headline with very few keys.
4744 With the above setup, you could clear the current tags and set
4745 =@home=, =laptop= and =pc= tags with just the following keys:
4746 {{{kbd(C-c C-c SPC h l p RET)}}}.  Switching from =@home= to =@work=
4747 would be done with {{{kbd(C-c C-c w RET)}}} or alternatively with
4748 {{{kbd(C-c C-c C-c w)}}}.  Adding the non-predefined tag =Sarah= could
4749 be done with {{{kbd(C-c C-c TAB S a r a h RET)}}}.
4751 #+vindex: org-fast-tag-selection-single-key
4752 If you find that most of the time you need only a single key press to
4753 modify your list of tags, set the variable
4754 ~org-fast-tag-selection-single-key~.  Then you no longer have to press
4755 {{{kbd(RET)}}} to exit fast tag selection---it exits after the first
4756 change.  If you then occasionally need more keys, press {{{kbd(C-c)}}}
4757 to turn off auto-exit for the current tag selection process (in
4758 effect: start selection with {{{kbd(C-c C-c C-c)}}} instead of
4759 {{{kbd(C-c C-c)}}}).  If you set the variable to the value ~expert~,
4760 the special window is not even shown for single-key tag selection, it
4761 comes up only when you press an extra {{{kbd(C-c)}}}.
4763 ** Tag hierarchy
4764 :PROPERTIES:
4765 :DESCRIPTION: Create a hierarchy of tags.
4766 :END:
4767 #+cindex: group tags
4768 #+cindex: tags, groups
4769 #+cindex: tags hierarchy
4771 Tags can be defined in hierarchies.  A tag can be defined as a /group
4772 tag/ for a set of other tags.  The group tag can be seen as the
4773 "broader term" for its set of tags.  Defining multiple group tags and
4774 nesting them creates a tag hierarchy.
4776 One use-case is to create a taxonomy of terms (tags) that can be used
4777 to classify nodes in a document or set of documents.
4779 When you search for a group tag, it return matches for all members in
4780 the group and its subgroups.  In an agenda view, filtering by a group
4781 tag displays or hide headlines tagged with at least one of the members
4782 of the group or any of its subgroups.  This makes tag searches and
4783 filters even more flexible.
4785 You can set group tags by using brackets and inserting a colon between
4786 the group tag and its related tags---beware that all whitespaces are
4787 mandatory so that Org can parse this line correctly:
4789 : #+TAGS: [ GTD : Control Persp ]
4791 In this example, =GTD= is the group tag and it is related to two other
4792 tags: =Control=, =Persp=.  Defining =Control= and =Persp= as group
4793 tags creates an hierarchy of tags:
4795 #+begin_example
4796   ,#+TAGS: [ Control : Context Task ]
4797   ,#+TAGS: [ Persp : Vision Goal AOF Project ]
4798 #+end_example
4800 That can conceptually be seen as a hierarchy of tags:
4802 - =GTD=
4803   - =Persp=
4804     - =Vision=
4805     - =Goal=
4806     - =AOF=
4807     - =Project=
4808   - =Control=
4809     - =Context=
4810     - =Task=
4812 You can use the ~:startgrouptag~, ~:grouptags~ and ~:endgrouptag~
4813 keyword directly when setting ~org-tag-alist~ directly:
4815 #+begin_src emacs-lisp
4816   (setq org-tag-alist '((:startgrouptag)
4817                         ("GTD")
4818                         (:grouptags)
4819                         ("Control")
4820                         ("Persp")
4821                         (:endgrouptag)
4822                         (:startgrouptag)
4823                         ("Control")
4824                         (:grouptags)
4825                         ("Context")
4826                         ("Task")
4827                         (:endgrouptag)))
4828 #+end_src
4830 The tags in a group can be mutually exclusive if using the same group
4831 syntax as is used for grouping mutually exclusive tags together; using
4832 curly brackets.
4834 : #+TAGS: { Context : @Home @Work @Call }
4836 When setting ~org-tag-alist~ you can use ~:startgroup~ and ~:endgroup~
4837 instead of ~:startgrouptag~ and ~:endgrouptag~ to make the tags
4838 mutually exclusive.
4840 Furthermore, the members of a group tag can also be regular
4841 expressions, creating the possibility of a more dynamic and rule-based
4842 tag structure.  The regular expressions in the group must be specified
4843 within curly brackets.  Here is an expanded example:
4845 #+begin_example
4846   ,#+TAGS: [ Vision : {V@.+} ]
4847   ,#+TAGS: [ Goal : {G@.+} ]
4848   ,#+TAGS: [ AOF : {AOF@.+} ]
4849   ,#+TAGS: [ Project : {P@.+} ]
4850 #+end_example
4852 Searching for the tag =Project= now lists all tags also including
4853 regular expression matches for =P@.+=, and similarly for tag searches
4854 on =Vision=, =Goal= and =AOF=.  For example, this would work well for
4855 a project tagged with a common project-identifier,
4856 e.g. =P@2014_OrgTags=.
4858 #+kindex: C-c C-x q
4859 #+findex: org-toggle-tags-groups
4860 #+vindex: org-group-tags
4861 If you want to ignore group tags temporarily, toggle group tags
4862 support with ~org-toggle-tags-groups~, bound to {{{kbd(C-c C-x q)}}}.
4863 If you want to disable tag groups completely, set ~org-group-tags~ to
4864 ~nil~.
4866 ** Tag searches
4867 :PROPERTIES:
4868 :DESCRIPTION: Searching for combinations of tags.
4869 :END:
4870 #+cindex: tag searches
4871 #+cindex: searching for tags
4873 Once a system of tags has been set up, it can be used to collect
4874 related information into special lists.
4876 - {{{kbd(C-c / m)}}} or {{{kbd(C-c \)}}} (~org-match-sparse-tree~) ::
4878      #+kindex: C-c / m
4879      #+kindex: C-c \
4880      #+findex: org-match-sparse-tree
4881      Create a sparse tree with all headlines matching a tags search.
4882      With a {{{kbd(C-u)}}} prefix argument, ignore headlines that are
4883      not a TODO line.
4885 - {{{kbd(C-c a m)}}} (~org-tags-view~) ::
4887      #+kindex: C-c a m
4888      #+findex: org-tags-view
4889      Create a global list of tag matches from all agenda files.  See
4890      [[*Matching tags and properties]].
4892 - {{{kbd(C-c a M)}}} (~org-tags-view~) ::
4894      #+kindex: C-c a M
4895      #+vindex: org-tags-match-list-sublevels
4896      Create a global list of tag matches from all agenda files, but
4897      check only TODO items and force checking subitems (see the option
4898      ~org-tags-match-list-sublevels~).
4900 These commands all prompt for a match string which allows basic
4901 Boolean logic like =+boss+urgent-project1=, to find entries with tags
4902 =boss= and =urgent=, but not =project1=, or =Kathy|Sally= to find
4903 entries which are tagged, like =Kathy= or =Sally=.  The full syntax of
4904 the search string is rich and allows also matching against TODO
4905 keywords, entry levels and properties.  For a complete description
4906 with many examples, see [[*Matching tags and properties]].
4908 * Properties and columns
4909 :PROPERTIES:
4910 :DESCRIPTION: Storing information about an entry.
4911 :END:
4912 #+cindex: properties
4914 A property is a key-value pair associated with an entry.  Properties
4915 can be set so they are associated with a single entry, with every
4916 entry in a tree, or with every entry in an Org file.
4918 There are two main applications for properties in Org mode.  First,
4919 properties are like tags, but with a value.  Imagine maintaining
4920 a file where you document bugs and plan releases for a piece of
4921 software.  Instead of using tags like =release_1=, =release_2=, you
4922 can use a property, say =Release=, that in different subtrees has
4923 different values, such as =1.0= or =2.0=.  Second, you can use
4924 properties to implement (very basic) database capabilities in an Org
4925 buffer.  Imagine keeping track of your music CDs, where properties
4926 could be things such as the album, artist, date of release, number of
4927 tracks, and so on.
4929 Properties can be conveniently edited and viewed in column view (see
4930 [[*Column view]]).
4932 ** Property syntax
4933 :PROPERTIES:
4934 :DESCRIPTION: How properties are spelled out.
4935 :END:
4936 #+cindex: property syntax
4937 #+cindex: drawer, for properties
4939 Properties are key--value pairs.  When they are associated with
4940 a single entry or with a tree they need to be inserted into a special
4941 drawer (see [[*Drawers]]) with the name =PROPERTIES=, which has to be
4942 located right below a headline, and its planning line (see [[*Deadlines
4943 and scheduling]]) when applicable.  Each property is specified on
4944 a single line, with the key---surrounded by colons---first, and the
4945 value after it.  Keys are case-insensitive.  Here is an example:
4947 #+begin_example
4948   ,* CD collection
4949   ,** Classic
4950   ,*** Goldberg Variations
4951       :PROPERTIES:
4952       :Title:     Goldberg Variations
4953       :Composer:  J.S. Bach
4954       :Artist:    Glen Gould
4955       :Publisher: Deutsche Grammophon
4956       :NDisks:    1
4957       :END:
4958 #+end_example
4960 Depending on the value of ~org-use-property-inheritance~, a property
4961 set this way is associated either with a single entry, or with the
4962 sub-tree defined by the entry, see [[*Property inheritance]].
4964 You may define the allowed values for a particular property =Xyz= by
4965 setting a property =Xyz_ALL=.  This special property is /inherited/,
4966 so if you set it in a level 1 entry, it applies to the entire tree.
4967 When allowed values are defined, setting the corresponding property
4968 becomes easier and is less prone to typing errors.  For the example
4969 with the CD collection, we can pre-define publishers and the number of
4970 disks in a box like this:
4972 #+begin_example
4973   ,* CD collection
4974     :PROPERTIES:
4975     :NDisks_ALL:  1 2 3 4
4976     :Publisher_ALL: "Deutsche Grammophon" Philips EMI
4977     :END:
4978 #+end_example
4980 If you want to set properties that can be inherited by any entry in
4981 a file, use a line like:
4983 #+cindex: @samp{_ALL} suffix, in properties
4984 #+cindex: PROPERTY, keyword
4985 : #+PROPERTY: NDisks_ALL 1 2 3 4
4987 #+cindex: @samp{+} suffix, in properties
4988 If you want to add to the value of an existing property, append a =+=
4989 to the property name.  The following results in the property =var=
4990 having the value =foo=1 bar=2=.
4992 #+begin_example
4993   ,#+PROPERTY: var  foo=1
4994   ,#+PROPERTY: var+ bar=2
4995 #+end_example
4997 It is also possible to add to the values of inherited properties.  The
4998 following results in the =Genres= property having the value =Classic
4999 Baroque= under the =Goldberg Variations= subtree.
5001 #+begin_example
5002   ,* CD collection
5003   ,** Classic
5004       :PROPERTIES:
5005       :Genres: Classic
5006       :END:
5007   ,*** Goldberg Variations
5008       :PROPERTIES:
5009       :Title:     Goldberg Variations
5010       :Composer:  J.S. Bach
5011       :Artist:    Glen Gould
5012       :Publisher: Deutsche Grammophon
5013       :NDisks:    1
5014       :Genres+:   Baroque
5015       :END:
5016 #+end_example
5018 Note that a property can only have one entry per drawer.
5020 #+vindex: org-global-properties
5021 Property values set with the global variable ~org-global-properties~
5022 can be inherited by all entries in all Org files.
5024 #+texinfo: @noindent
5025 The following commands help to work with properties:
5027 #+attr_texinfo: :sep ,
5028 - {{{kbd(M-TAB)}}} (~pcomplete~) ::
5030      #+kindex: M-TAB
5031      #+findex: pcomplete
5032      After an initial colon in a line, complete property keys.  All
5033      keys used in the current file are offered as possible
5034      completions.
5036 - {{{kbd(C-c C-x p)}}} (~org-set-property~) ::
5038      #+kindex: C-c C-x p
5039      #+findex: org-set-property
5040      Set a property.  This prompts for a property name and a value.
5041      If necessary, the property drawer is created as well.
5043 - {{{kbd(C-u M-x org-insert-drawer)}}} ::
5045      #+findex: org-insert-drawer
5046      Insert a property drawer into the current entry.  The drawer is
5047      inserted early in the entry, but after the lines with planning
5048      information like deadlines.
5050 - {{{kbd(C-c C-c)}}} (~org-property-action~) ::
5052      #+kindex: C-c C-c
5053      #+findex: org-property-action
5054      With the cursor in a property drawer, this executes property
5055      commands.
5057 - {{{kbd(C-c C-c s)}}} (~org-set-property~) ::
5059      #+kindex: C-c C-c s
5060      #+findex: org-set-property
5061      Set a property in the current entry.  Both the property and the value
5062      can be inserted using completion.
5064 - {{{kbd(S-right)}}} (~org-property-next-allowed-values~),  {{{kbd(S-left)}}} (~org-property-previous-allowed-value~) ::
5066      #+kindex: S-right
5067      #+kindex: S-left
5068      Switch property at point to the next/previous allowed value.
5070 - {{{kbd(C-c C-c d)}}} (~org-delete-property~) ::
5072      #+kindex: C-c C-c d
5073      #+findex: org-delete-property
5074      Remove a property from the current entry.
5076 - {{{kbd(C-c C-c D)}}} (~org-delete-property-globally~) ::
5078      #+kindex: C-c C-c D
5079      #+findex: org-delete-property-globally
5080      Globally remove a property, from all entries in the current file.
5082 - {{{kbd(C-c C-c c)}}} (~org-compute-property-at-point~) ::
5084      #+kindex: C-c C-c c
5085      #+findex: org-compute-property-at-point
5086      Compute the property at point, using the operator and scope from
5087      the nearest column format definition.
5089 ** Special properties
5090 :PROPERTIES:
5091 :DESCRIPTION: Access to other Org mode features.
5092 :END:
5093 #+cindex: properties, special
5095 Special properties provide an alternative access method to Org mode
5096 features, like the TODO state or the priority of an entry, discussed
5097 in the previous chapters.  This interface exists so that you can
5098 include these states in a column view (see [[*Column view]]), or to use
5099 them in queries.  The following property names are special and should
5100 not be used as keys in the properties drawer:
5102 #+cindex: ALLTAGS, special property
5103 #+cindex: BLOCKED, special property
5104 #+cindex: CLOCKSUM, special property
5105 #+cindex: CLOCKSUM_T, special property
5106 #+cindex: CLOSED, special property
5107 #+cindex: DEADLINE, special property
5108 #+cindex: FILE, special property
5109 #+cindex: ITEM, special property
5110 #+cindex: PRIORITY, special property
5111 #+cindex: SCHEDULED, special property
5112 #+cindex: TAGS, special property
5113 #+cindex: TIMESTAMP, special property
5114 #+cindex: TIMESTAMP_IA, special property
5115 #+cindex: TODO, special property
5116 | =ALLTAGS=      | All tags, including inherited ones.                            |
5117 | =BLOCKED=      | ~t~ if task is currently blocked by children or siblings.      |
5118 | =CATEGORY=     | The category of an entry.                                      |
5119 | =CLOCKSUM=     | The sum of CLOCK intervals in the subtree.  ~org-clock-sum~    |
5120 |                | must be run first to compute the values in the current buffer. |
5121 | =CLOCKSUM_T=   | The sum of CLOCK intervals in the subtree for today.           |
5122 |                | ~org-clock-sum-today~ must be run first to compute the         |
5123 |                | values in the current buffer.                                  |
5124 | =CLOSED=       | When was this entry closed?                                    |
5125 | =DEADLINE=     | The deadline time string, without the angular brackets.        |
5126 | =FILE=         | The filename the entry is located in.                          |
5127 | =ITEM=         | The headline of the entry.                                     |
5128 | =PRIORITY=     | The priority of the entry, a string with a single letter.      |
5129 | =SCHEDULED=    | The scheduling timestamp, without the angular brackets.        |
5130 | =TAGS=         | The tags defined directly in the headline.                     |
5131 | =TIMESTAMP=    | The first keyword-less timestamp in the entry.                 |
5132 | =TIMESTAMP_IA= | The first inactive timestamp in the entry.                     |
5133 | =TODO=         | The TODO keyword of the entry.                                 |
5135 ** Property searches
5136 :PROPERTIES:
5137 :DESCRIPTION: Matching property values.
5138 :END:
5139 #+cindex: properties, searching
5140 #+cindex: searching, of properties
5142 To create sparse trees and special lists with selection based on
5143 properties, the same commands are used as for tag searches (see [[*Tag
5144 searches]]).
5146 - {{{kbd(C-c / m)}}} or {{{kbd(C-c \)}}} (~org-match-sparse-tree~) ::
5148      #+kindex: C-c / m
5149      #+kindex: C-c \
5150      #+findex: org-match-sparse-tree
5151      Create a sparse tree with all matching entries.  With
5152      a {{{kbd(C-u)}}} prefix argument, ignore headlines that are not
5153      a TODO line.
5155 - {{{kbd(C-c a m)}}}, ~org-tags-view~ ::
5157      #+kindex: C-c a m
5158      Create a global list of tag/property matches from all agenda
5159      files.
5161 - {{{kbd(C-c a M)}}} (~org-tags-view~) ::
5163      #+kindex: C-c a M
5164      #+findex: org-tags-view
5165      #+vindex: org-tags-match-list-sublevels
5166      Create a global list of tag matches from all agenda files, but
5167      check only TODO items and force checking of subitems (see the
5168      option ~org-tags-match-list-sublevels~).
5170 The syntax for the search string is described in [[*Matching tags and
5171 properties]].
5173 There is also a special command for creating sparse trees based on a
5174 single property:
5176 - {{{kbd(C-c / p)}}} ::
5178      #+kindex: C-c / p
5179      Create a sparse tree based on the value of a property.  This
5180      first prompts for the name of a property, and then for a value.
5181      A sparse tree is created with all entries that define this
5182      property with the given value.  If you enclose the value in curly
5183      braces, it is interpreted as a regular expression and matched
5184      against the property values.
5186 ** Property inheritance
5187 :PROPERTIES:
5188 :DESCRIPTION: Passing values down a tree.
5189 :END:
5190 #+cindex: properties, inheritance
5191 #+cindex: inheritance, of properties
5193 #+vindex: org-use-property-inheritance
5194 The outline structure of Org documents lends itself to an inheritance
5195 model of properties: if the parent in a tree has a certain property,
5196 the children can inherit this property.  Org mode does not turn this
5197 on by default, because it can slow down property searches
5198 significantly and is often not needed.  However, if you find
5199 inheritance useful, you can turn it on by setting the variable
5200 ~org-use-property-inheritance~.  It may be set to ~t~ to make all
5201 properties inherited from the parent, to a list of properties that
5202 should be inherited, or to a regular expression that matches inherited
5203 properties.  If a property has the value ~nil~, this is interpreted as
5204 an explicit un-define of the property, so that inheritance search
5205 stops at this value and returns ~nil~.
5207 Org mode has a few properties for which inheritance is hard-coded, at
5208 least for the special applications for which they are used:
5210 - ~COLUMNS~ ::
5212      #+cindex: COLUMNS, property
5213      The =COLUMNS= property defines the format of column view (see
5214      [[*Column view]]).  It is inherited in the sense that the level where
5215      a =COLUMNS= property is defined is used as the starting point for
5216      a column view table, independently of the location in the subtree
5217      from where columns view is turned on.
5219 - ~CATEGORY~ ::
5221      #+cindex: CATEGORY, property
5222      For agenda view, a category set through a =CATEGORY= property
5223      applies to the entire subtree.
5225 - ~ARCHIVE~ ::
5227      #+cindex: ARCHIVE, property
5228      For archiving, the =ARCHIVE= property may define the archive
5229      location for the entire subtree (see [[*Moving a tree to an archive
5230      file]]).
5232 - ~LOGGING~ ::
5234      #+cindex: LOGGING, property
5235      The =LOGGING= property may define logging settings for an entry
5236      or a subtree (see [[*Tracking TODO state changes]]).
5238 ** Column view
5239 :PROPERTIES:
5240 :DESCRIPTION: Tabular viewing and editing.
5241 :END:
5243 A great way to view and edit properties in an outline tree is /column
5244 view/.  In column view, each outline node is turned into a table row.
5245 Columns in this table provide access to properties of the entries.
5246 Org mode implements columns by overlaying a tabular structure over the
5247 headline of each item.  While the headlines have been turned into
5248 a table row, you can still change the visibility of the outline tree.
5249 For example, you get a compact table by switching to "contents"
5250 view---{{{kbd(S-TAB)}}} {{{kbd(S-TAB)}}}, or simply {{{kbd(c)}}}
5251 while column view is active---but you can still open, read, and edit
5252 the entry below each headline.  Or, you can switch to column view
5253 after executing a sparse tree command and in this way get a table only
5254 for the selected items.  Column view also works in agenda buffers (see
5255 [[*Agenda views]]) where queries have collected selected items, possibly
5256 from a number of files.
5258 *** Defining columns
5259 :PROPERTIES:
5260 :DESCRIPTION: The COLUMNS format property.
5261 :END:
5262 #+cindex: column view, for properties
5263 #+cindex: properties, column view
5265 Setting up a column view first requires defining the columns.  This is
5266 done by defining a column format line.
5268 **** Scope of column definitions
5269 :PROPERTIES:
5270 :DESCRIPTION: Where defined, where valid?
5271 :END:
5273 To define a column format for an entire file, use a line like:
5275 #+cindex: COLUMNS, keyword
5276 : #+COLUMNS: %25ITEM %TAGS %PRIORITY %TODO
5278 To specify a format that only applies to a specific tree, add
5279 a =COLUMNS= property to the top node of that tree, for example:
5281 #+begin_example
5282   ,** Top node for columns view
5283      :PROPERTIES:
5284      :COLUMNS: %25ITEM %TAGS %PRIORITY %TODO
5285      :END:
5286 #+end_example
5288 If a =COLUMNS= property is present in an entry, it defines columns for
5289 the entry itself, and for the entire subtree below it.  Since the
5290 column definition is part of the hierarchical structure of the
5291 document, you can define columns on level 1 that are general enough
5292 for all sublevels, and more specific columns further down, when you
5293 edit a deeper part of the tree.
5295 **** Column attributes
5296 :PROPERTIES:
5297 :DESCRIPTION: Appearance and content of a column.
5298 :END:
5300 A column definition sets the attributes of a column.  The general
5301 definition looks like this:
5303 : %[WIDTH]PROPERTY[(TITLE)][{SUMMARY-TYPE}]
5305 #+texinfo: @noindent
5306 Except for the percent sign and the property name, all items are
5307 optional.  The individual parts have the following meaning:
5309 - {{{var(WIDTH)}}} ::
5311      An integer specifying the width of the column in characters.  If
5312      omitted, the width is determined automatically.
5314 - {{{var(PROPERTY)}}} ::
5316      The property that should be edited in this column.  Special
5317      properties representing meta data are allowed here as well (see
5318      [[*Special properties]]).
5320 - {{{var(TITLE)}}} ::
5322      The header text for the column.  If omitted, the property name is
5323      used.
5325 - {{{var(SUMMARY-TYPE)}}} ::
5327      The summary type.  If specified, the column values for parent
5328      nodes are computed from the children[fn:55].
5330      Supported summary types are:
5332      | =+=      | Sum numbers in this column.                           |
5333      | =+;%.1f= | Like =+=, but format result with =%.1f=.              |
5334      | =$=      | Currency, short for =+;%.2f=.                         |
5335      | =min=    | Smallest number in column.                            |
5336      | =max=    | Largest number.                                       |
5337      | =mean=   | Arithmetic mean of numbers.                           |
5338      | =X=      | Checkbox status, =[X]= if all children are =[X]=.     |
5339      | =X/=     | Checkbox status, =[n/m]=.                             |
5340      | =X%=     | Checkbox status, =[n%]=.                              |
5341      | =:=      | Sum times, HH:MM, plain numbers are hours.            |
5342      | =:min=   | Smallest time value in column.                        |
5343      | =:max=   | Largest time value.                                   |
5344      | =:mean=  | Arithmetic mean of time values.                       |
5345      | =@min=   | Minimum age[fn:56] (in days/hours/mins/seconds).      |
5346      | =@max=   | Maximum age (in days/hours/mins/seconds).             |
5347      | =@mean=  | Arithmetic mean of ages (in days/hours/mins/seconds). |
5348      | =est+=   | Add low-high estimates.                               |
5350      #+texinfo: @noindent
5351      #+vindex: org-columns-summary-types
5352      You can also define custom summary types by setting
5353      ~org-columns-summary-types~.
5355 The =est+= summary type requires further explanation.  It is used for
5356 combining estimates, expressed as low-high ranges.  For example,
5357 instead of estimating a particular task will take 5 days, you might
5358 estimate it as 5-6 days if you're fairly confident you know how much
5359 work is required, or 1-10 days if you do not really know what needs to
5360 be done.  Both ranges average at 5.5 days, but the first represents
5361 a more predictable delivery.
5363 When combining a set of such estimates, simply adding the lows and
5364 highs produces an unrealistically wide result.  Instead, =est+= adds
5365 the statistical mean and variance of the sub-tasks, generating a final
5366 estimate from the sum.  For example, suppose you had ten tasks, each
5367 of which was estimated at 0.5 to 2 days of work.  Straight addition
5368 produces an estimate of 5 to 20 days, representing what to expect if
5369 everything goes either extremely well or extremely poorly.  In
5370 contrast, =est+= estimates the full job more realistically, at 10-15
5371 days.
5373 Here is an example for a complete columns definition, along with
5374 allowed values[fn:57].
5376 #+begin_example
5377   :COLUMNS:  %25ITEM %9Approved(Approved?){X} %Owner %11Status \
5378                      %10Time_Estimate{:} %CLOCKSUM %CLOCKSUM_T
5379   :Owner_ALL:    Tammy Mark Karl Lisa Don
5380   :Status_ALL:   "In progress" "Not started yet" "Finished" ""
5381   :Approved_ALL: "[ ]" "[X]"
5382 #+end_example
5384 #+texinfo: @noindent
5385 The first column, =%25ITEM=, means the first 25 characters of the item
5386 itself, i.e., of the headline.  You probably always should start the
5387 column definition with the =ITEM= specifier.  The other specifiers
5388 create columns =Owner= with a list of names as allowed values, for
5389 =Status= with four different possible values, and for a checkbox field
5390 =Approved=.  When no width is given after the =%= character, the
5391 column is exactly as wide as it needs to be in order to fully display
5392 all values.  The =Approved= column does have a modified title
5393 (=Approved?=, with a question mark).  Summaries are created for the
5394 =Time_Estimate= column by adding time duration expressions like HH:MM,
5395 and for the =Approved= column, by providing an =[X]= status if all
5396 children have been checked.  The =CLOCKSUM= and =CLOCKSUM_T= columns
5397 are special, they lists the sums of CLOCK intervals in the subtree,
5398 either for all clocks or just for today.
5400 *** Using column view
5401 :PROPERTIES:
5402 :DESCRIPTION: How to create and use column view.
5403 :END:
5405 **** Turning column view on or off
5406 :PROPERTIES:
5407 :UNNUMBERED: notoc
5408 :END:
5410 - {{{kbd(C-c C-x C-c)}}} (~org-columns~) ::
5412      #+kindex: C-c C-x C-c
5413      #+vindex: org-columns
5414      #+vindex: org-columns-default-format
5415      Turn on column view.  If the cursor is before the first headline
5416      in the file, column view is turned on for the entire file, using
5417      the =#+COLUMNS= definition.  If the cursor is somewhere inside
5418      the outline, this command searches the hierarchy, up from point,
5419      for a =COLUMNS= property that defines a format.  When one is
5420      found, the column view table is established for the tree starting
5421      at the entry that contains the =COLUMNS= property.  If no such
5422      property is found, the format is taken from the =#+COLUMNS= line
5423      or from the variable ~org-columns-default-format~, and column
5424      view is established for the current entry and its subtree.
5426 - {{{kbd(r)}}} or {{{kbd(g)}}} (~org-columns-redo~) ::
5428      #+kindex: r
5429      #+kindex: g
5430      #+findex: org-columns-redo
5431      Recreate the column view, to include recent changes made in the
5432      buffer.
5434 - {{{kbd(q)}}} (~org-columns-quit~) ::
5436      #+kindex: q
5437      #+findex: org-columns-quit
5438      Exit column view.
5440 **** Editing values
5441 :PROPERTIES:
5442 :UNNUMBERED: notoc
5443 :END:
5445 #+attr_texinfo: :sep and
5446 - {{{kbd(left)}}}, {{{kbd(right)}}}, {{{kbd(up)}}}, {{{kbd(down)}}} ::
5448      Move through the column view from field to field.
5450 - {{{kbd(1..9\,0)}}} ::
5452      #+kindex: 1..9,0
5453      Directly select the Nth allowed value, {{{kbd(0)}}} selects the
5454      10th value.
5456 - {{{kbd(n)}}} or {{{kbd(S-right)}}} (~org-columns-next-allowed-value~) and {{{kbd(p)}}} or {{{kbd(S-left)}}} (~org-columns-previous-allowed-value~) ::
5458      #+kindex: n
5459      #+kindex: S-right
5460      #+kindex: p
5461      #+kindex: S-left
5462      #+findex: org-columns-next-allowed-value
5463      #+findex: org-columns-previous-allowed-value
5464      Switch to the next/previous allowed value of the field.  For
5465      this, you have to have specified allowed values for a property.
5467 - {{{kbd(e)}}} (~org-columns-edit-value~) ::
5469      #+kindex: e
5470      #+findex: org-columns-edit-value
5471      Edit the property at point.  For the special properties, this
5472      invokes the same interface that you normally use to change that
5473      property.  For example, the tag completion or fast selection
5474      interface pops up when editing a =TAGS= property.
5476 - {{{kbd(C-c C-c)}}} (~org-columns-set-tags-or-toggle~) ::
5478      #+kindex: C-c C-c
5479      #+findex: org-columns-set-tags-or-toggle
5480      When there is a checkbox at point, toggle it.
5482 - {{{kbd(v)}}} (~org-columns-show-value~) ::
5484      #+kindex: v
5485      #+findex: org-columns-show-value
5486      View the full value of this property.  This is useful if the
5487      width of the column is smaller than that of the value.
5489 - {{{kbd(a)}}} (~org-columns-edit-allowed~) ::
5491      #+kindex: a
5492      #+findex: org-columns-edit-allowed
5493      Edit the list of allowed values for this property.  If the list
5494      is found in the hierarchy, the modified values is stored there.
5495      If no list is found, the new value is stored in the first entry
5496      that is part of the current column view.
5498 **** Modifying column view on-the-fly:
5499 :PROPERTIES:
5500 :UNNUMBERED: notoc
5501 :END:
5503 #+attr_texinfo: :sep and
5504 - {{{kbd(<)}}} (~org-columns-narrow~) and {{{kbd(>)}}} (~org-columns-widen~) ::
5506      #+kindex: <
5507      #+kindex: >
5508      #+findex: org-columns-narrow
5509      #+findex: org-columns-widen
5510      Make the column narrower/wider by one character.
5512 - {{{kbd(S-M-right)}}} (~org-columns-new~) ::
5514      #+kindex: S-M-right
5515      #+findex: org-columns-new
5516      Insert a new column, to the left of the current column.
5518 - {{{kbd(S-M-left)}}} (~org-columns-delete~) ::
5520      #+kindex: S-M-left
5521      #+findex: org-columns-delete
5522      Delete the current column.
5524 *** Capturing column view
5525 :PROPERTIES:
5526 :DESCRIPTION: A dynamic block for column view.
5527 :END:
5529 Since column view is just an overlay over a buffer, it cannot be
5530 exported or printed directly.  If you want to capture a column view,
5531 use a =columnview= dynamic block (see [[*Dynamic blocks]]).  The frame of
5532 this block looks like this:
5534 #+cindex: BEGIN columnview
5535 #+begin_example
5536   ,* The column view
5537   ,#+BEGIN: columnview :hlines 1 :id "label"
5539   ,#+END:
5540 #+end_example
5542 #+texinfo: @noindent
5543 This dynamic block has the following parameters:
5545 - =:id= ::
5547      This is the most important parameter.  Column view is a feature
5548      that is often localized to a certain (sub)tree, and the capture
5549      block might be at a different location in the file.  To identify
5550      the tree whose view to capture, you can use four values:
5552      - =local= ::
5554           Use the tree in which the capture block is located.
5556      - =global= ::
5558           Make a global view, including all headings in the file.
5560      - =file:FILENAME= ::
5562           Run column view at the top of the {{{var(FILENAME)}}} file
5564      - =LABEL= ::
5566           #+cindex: ID, property
5567           Call column view in the tree that has an =ID= property with
5568           the value {{{var(LABEL)}}}.  You can use {{{kbd(M-x
5569           org-id-copy)}}} to create a globally unique ID for the
5570           current entry and copy it to the kill-ring.
5572 - =:hlines= ::
5574      When ~t~, insert an hline after every line.  When a number N,
5575      insert an hline before each headline with level ~<= N~.
5577 - =:vlines= ::
5579      When non-~nil~, force column groups to get vertical lines.
5581 - =:maxlevel= ::
5583      When set to a number, do not capture entries below this level.
5585 - =:skip-empty-rows= ::
5587      When non-~nil~, skip rows where the only non-empty specifier of
5588      the column view is =ITEM=.
5590 - =:indent= ::
5592      When non-~nil~, indent each =ITEM= field according to its level.
5594 #+texinfo: @noindent
5595 The following commands insert or update the dynamic block:
5597 - {{{kbd(C-c C-x i)}}} (~org-insert-columns-dblock~) ::
5599      #+kindex: C-c C-x i
5600      #+findex: org-insert-columns-dblock
5601      Insert a dynamic block capturing a column view.  Prompt for the
5602      scope or ID of the view.
5604 - {{{kbd(C-c C-c)}}} {{{kbd(C-c C-x C-u)}}} (~org-dblock-update~) ::
5606      #+kindex: C-c C-c
5607      #+kindex: C-c C-x C-u
5608      #+findex: org-dblock-update
5609      Update dynamic block at point.  The cursor needs to be in the
5610      =#+BEGIN= line of the dynamic block.
5612 - {{{kbd(C-u C-c C-x C-u)}}} (~org-update-all-dblocks~) ::
5614      #+kindex: C-u C-c C-x C-u
5615      Update all dynamic blocks (see [[*Dynamic blocks]]).  This is useful
5616      if you have several clock table blocks, column-capturing blocks
5617      or other dynamic blocks in a buffer.
5619 You can add formulas to the column view table and you may add plotting
5620 instructions in front of the table---these survive an update of the
5621 block.  If there is a =TBLFM= keyword after the table, the table is
5622 recalculated automatically after an update.
5624 An alternative way to capture and process property values into a table
5625 is provided by Eric Schulte's =org-collector.el= which is
5626 a contributed package[fn:58].  It provides a general API to collect
5627 properties from entries in a certain scope, and arbitrary Lisp
5628 expressions to process these values before inserting them into a table
5629 or a dynamic block.
5631 * Dates and times
5632 :PROPERTIES:
5633 :DESCRIPTION: Making items useful for planning.
5634 :ALT_TITLE: Dates and Times
5635 :END:
5636 #+cindex: dates
5637 #+cindex: times
5638 #+cindex: timestamp
5639 #+cindex: date stamp
5641 To assist project planning, TODO items can be labeled with a date
5642 and/or a time.  The specially formatted string carrying the date and
5643 time information is called a /timestamp/ in Org mode.  This may be
5644 a little confusing because timestamp is often used as indicating when
5645 something was created or last changed.  However, in Org mode this term
5646 is used in a much wider sense.
5648 ** Timestamps, deadlines, and scheduling
5649 :PROPERTIES:
5650 :DESCRIPTION: Assigning a time to a tree entry.
5651 :ALT_TITLE: Timestamps
5652 :END:
5653 #+cindex: timestamps
5654 #+cindex: ranges, time
5655 #+cindex: date stamps
5656 #+cindex: deadlines
5657 #+cindex: scheduling
5659 A timestamp is a specification of a date (possibly with a time or
5660 a range of times) in a special format, either =<2003-09-16 Tue>= or
5661 =<2003-09-16 Tue 09:39>= or =<2003-09-16 Tue 12:00-12:30>=[fn:59].
5662 A timestamp can appear anywhere in the headline or body of an Org tree
5663 entry.  Its presence causes entries to be shown on specific dates in
5664 the agenda (see [[*Weekly/daily agenda]]).  We distinguish:
5666 - Plain timestamp; Event; Appointment ::
5668      #+cindex: timestamp
5669      #+cindex: appointment
5670      A simple timestamp just assigns a date/time to an item.  This is
5671      just like writing down an appointment or event in a paper agenda.
5672      In the timeline and agenda displays, the headline of an entry
5673      associated with a plain timestamp is shown exactly on that date.
5675      #+begin_example
5676        ,* Meet Peter at the movies
5677          <2006-11-01 Wed 19:15>
5678        ,* Discussion on climate change
5679          <2006-11-02 Thu 20:00-22:00>
5680      #+end_example
5682 - Timestamp with repeater interval ::
5684      #+cindex: timestamp, with repeater interval
5685      A timestamp may contain a /repeater interval/, indicating that it
5686      applies not only on the given date, but again and again after
5687      a certain interval of N days (d), weeks (w), months (m), or years
5688      (y).  The following shows up in the agenda every Wednesday:
5690      #+begin_example
5691        ,* Pick up Sam at school
5692          <2007-05-16 Wed 12:30 +1w>
5693      #+end_example
5695 - Diary-style sexp entries ::
5697      #+cindex: diary style timestamps
5698      #+cindex: sexp timestamps
5699      For more complex date specifications, Org mode supports using the
5700      special sexp diary entries implemented in the Emacs
5701      calendar/diary package[fn:60].  For example, with optional time:
5703      #+begin_example
5704        ,* 22:00-23:00 The nerd meeting on every 2nd Thursday of the month
5705          <%%(org-float t 4 2)>
5706      #+end_example
5708 - Time/Date range ::
5710      #+cindex: timerange
5711      #+cindex: date range
5712      Two timestamps connected by =--= denote a range.  The headline is
5713      shown on the first and last day of the range, and on any dates
5714      that are displayed and fall in the range.  Here is an example:
5716      #+begin_example
5717        ,** Meeting in Amsterdam
5718           <2004-08-23 Mon>--<2004-08-26 Thu>
5719      #+end_example
5721 - Inactive timestamp ::
5723      #+cindex: timestamp, inactive
5724      #+cindex: inactive timestamp
5725      Just like a plain timestamp, but with square brackets instead of
5726      angular ones.  These timestamps are inactive in the sense that
5727      they do /not/ trigger an entry to show up in the agenda.
5729      #+begin_example
5730        ,* Gillian comes late for the fifth time
5731          [2006-11-01 Wed]
5732      #+end_example
5734 ** Creating timestamps
5735 :PROPERTIES:
5736 :DESCRIPTION: Commands to insert timestamps.
5737 :END:
5739 For Org mode to recognize timestamps, they need to be in the specific
5740 format.  All commands listed below produce timestamps in the correct
5741 format.
5743 #+attr_texinfo: :sep ,
5744 - {{{kbd(C-c .)}}} (~org-time-stamp~) ::
5746      #+kindex: C-c .
5747      #+findex: org-time-stamp
5748      Prompt for a date and insert a corresponding timestamp.  When the
5749      cursor is at an existing timestamp in the buffer, the command is
5750      used to modify this timestamp instead of inserting a new one.
5751      When this command is used twice in succession, a time range is
5752      inserted.
5754 - {{{kbd(C-c !)}}} (~org-time-stamp-inactive~) ::
5756      #+kindex: C-c !
5757      #+findex: org-time-stamp-inactive
5758      Like {{{kbd(C-c .)}}}, but insert an inactive timestamp that does
5759      not cause an agenda entry.
5761 - {{{kbd(C-u C-c .)}}}, {{{kbd(C-u C-c !)}}} ::
5763      #+kindex: C-u C-c .
5764      #+kindex: C-u C-c .
5765      #+kindex: C-u C-c !
5766      #+vindex: org-time-stamp-rounding-minutes
5767      Like {{{kbd(C-c .)}}} and {{{kbd(C-c !)}}}, but use the
5768      alternative format which contains date and time.  The default
5769      time can be rounded to multiples of 5 minutes, see the option
5770      ~org-time-stamp-rounding-minutes~.
5772 - {{{kbd(C-c C-c)}}} ::
5774      #+kindex: C-c C-c
5775      Normalize timestamp, insert/fix day name if missing or wrong.
5777 - {{{kbd(C-c <)}}} (~org-date-from-calendar~) ::
5779      #+kindex: C-c <
5780      #+findex: org-date-from-calendar
5781      Insert a timestamp corresponding to the cursor date in the Calendar.
5783 - {{{kbd(C-c >)}}} (~org-goto-calendar~) ::
5785      #+kindex: C-c >
5786      #+findex: org-goto-calendar
5787      Access the Emacs calendar for the current date.  If there is a
5788      timestamp in the current line, go to the corresponding date instead.
5790 - {{{kbd(C-c C-o)}}} (~org-open-at-point~) ::
5792      #+kindex: C-c C-o
5793      #+findex: org-open-at-point
5794      Access the agenda for the date given by the timestamp or -range
5795      at point (see [[*Weekly/daily agenda]]).
5797 - {{{kbd(S-left)}}} (~org-timestamp-down-day~), {{{kbd(S-right)}}} (~org-timestamp-up-day~) ::
5799      #+kindex: S-left
5800      #+kindex: S-right
5801      #+findex: org-timestamp-down-day
5802      #+findex: org-timestamp-up-day
5803      Change date at cursor by one day.  These key bindings conflict
5804      with shift-selection and related modes (see [[*Packages that
5805      conflict with Org mode]]).
5807 - {{{kbd(S-up)}}} (~org-timestamp-up~), {{{kbd(S-down)}}} (~org-timestamp-down~) ::
5809      #+kindex: S-up
5810      Change the item under the cursor in a timestamp.  The cursor can
5811      be on a year, month, day, hour or minute.  When the timestamp
5812      contains a time range like =15:30-16:30=, modifying the first
5813      time also shifts the second, shifting the time block with
5814      constant length.  To change the length, modify the second time.
5815      Note that if the cursor is in a headline and not at a timestamp,
5816      these same keys modify the priority of an item.  (see
5817      [[*Priorities]]).  The key bindings also conflict with
5818      shift-selection and related modes (see [[*Packages that conflict
5819      with Org mode]]).
5821 - {{{kbd(C-c C-y)}}} (~org-evaluate-time-range~) ::
5823      #+kindex: C-c C-y
5824      #+findex: org-evaluate-time-range
5825      #+cindex: evaluate time range
5826      Evaluate a time range by computing the difference between start
5827      and end.  With a prefix argument, insert result after the time
5828      range (in a table: into the following column).
5830 *** The date/time prompt
5831 :PROPERTIES:
5832 :DESCRIPTION: How Org mode helps you enter dates and times.
5833 :END:
5834 #+cindex: date, reading in minibuffer
5835 #+cindex: time, reading in minibuffer
5837 #+vindex: org-read-date-prefer-future
5838 When Org mode prompts for a date/time, the default is shown in default
5839 date/time format, and the prompt therefore seems to ask for a specific
5840 format.  But it in fact accepts date/time information in a variety of
5841 formats.  Generally, the information should start at the beginning of
5842 the string.  Org mode finds whatever information is in there and
5843 derives anything you have not specified from the /default date and
5844 time/.  The default is usually the current date and time, but when
5845 modifying an existing timestamp, or when entering the second stamp of
5846 a range, it is taken from the stamp in the buffer.  When filling in
5847 information, Org mode assumes that most of the time you want to enter
5848 a date in the future: if you omit the month/year and the given
5849 day/month is /before/ today, it assumes that you mean a future
5850 date[fn:61].  If the date has been automatically shifted into the
5851 future, the time prompt shows this with =(=>F)=.
5853 For example, let's assume that today is *June 13, 2006*.  Here is how
5854 various inputs are interpreted, the items filled in by Org mode are in
5855 *bold*.
5857 | =3-2-5=        | \rArr{} 2003-02-05                              |
5858 | =2/5/3=        | \rArr{} 2003-02-05                              |
5859 | =14=           | \rArr{} *2006*-*06*-14                          |
5860 | =12=           | \rArr{} *2006*-*07*-12                          |
5861 | =2/5=          | \rArr{} *2007*-02-05                            |
5862 | =Fri=          | \rArr{} nearest Friday (default date or later)  |
5863 | =sep 15=       | \rArr{} *2006*-09-15                            |
5864 | =feb 15=       | \rArr{} *2007*-02-15                            |
5865 | =sep 12 9=     | \rArr{} 2009-09-12                              |
5866 | =12:45=        | \rArr{} *2006*-*06*-*13* 12:45                  |
5867 | =22 sept 0:34= | \rArr{} *2006*-09-22 0:34                       |
5868 | =w4=           | \rArr{} ISO week for of the current year *2006* |
5869 | =2012 w4 fri=  | \rArr{} Friday of ISO week 4 in 2012            |
5870 | =2012-w04-5=   | \rArr{} Same as above                           |
5872 Furthermore you can specify a relative date by giving, as the /first/
5873 thing in the input: a plus/minus sign, a number and a letter---=d=,
5874 =w=, =m= or =y=---to indicate change in days, weeks, months, or
5875 years.  With a single plus or minus, the date is always relative to
5876 today.  With a double plus or minus, it is relative to the default
5877 date.  If instead of a single letter, you use the abbreviation of day
5878 name, the date is the Nth such day, e.g.:
5880 | =+0=    | \rArr{} today                       |
5881 | =.=     | \rArr{} today                       |
5882 | =+4d=   | \rArr{} four days from today        |
5883 | =+4=    | \rArr{} same as +4d                 |
5884 | =+2w=   | \rArr{} two weeks from today        |
5885 | =++5=   | \rArr{} five days from default date |
5886 | =+2tue= | \rArr{} second Tuesday from now     |
5888 #+vindex: parse-time-months
5889 #+vindex: parse-time-weekdays
5890 The function understands English month and weekday abbreviations.  If
5891 you want to use un-abbreviated names and/or other languages, configure
5892 the variables ~parse-time-months~ and ~parse-time-weekdays~.
5894 #+vindex: org-read-date-force-compatible-dates
5895 Not all dates can be represented in a given Emacs implementation.  By
5896 default Org mode forces dates into the compatibility range 1970--2037
5897 which works on all Emacs implementations.  If you want to use dates
5898 outside of this range, read the docstring of the variable
5899 ~org-read-date-force-compatible-dates~.
5901 You can specify a time range by giving start and end times or by
5902 giving a start time and a duration (in HH:MM format).  Use one or two
5903 dash(es) as the separator in the former case and use =+= as the
5904 separator in the latter case, e.g.:
5906 | =11am-1:15pm=  | \rArr{} 11:00-13:15   |
5907 | =11am--1:15pm= | \rArr{} same as above |
5908 | =11am+2:15=    | \rArr{} same as above |
5910 #+cindex: calendar, for selecting date
5911 #+vindex: org-popup-calendar-for-date-prompt
5912 Parallel to the minibuffer prompt, a calendar is popped up[fn:62].
5913 When you exit the date prompt, either by clicking on a date in the
5914 calendar, or by pressing {{{kbd(RET)}}}, the date selected in the
5915 calendar is combined with the information entered at the prompt.  You
5916 can control the calendar fully from the minibuffer:
5918 #+kindex: <
5919 #+kindex: >
5920 #+kindex: M-v
5921 #+kindex: C-v
5922 #+kindex: mouse-1
5923 #+kindex: S-right
5924 #+kindex: S-left
5925 #+kindex: S-down
5926 #+kindex: S-up
5927 #+kindex: M-S-right
5928 #+kindex: M-S-left
5929 #+kindex: RET
5930 #+attr_texinfo: :columns 0.25 0.55
5931 | {{{kbd(RET)}}}           | Choose date at cursor in calendar.     |
5932 | {{{kbd(mouse-1)}}}       | Select date by clicking on it.         |
5933 | {{{kbd(S-right)}}}    | One day forward.                       |
5934 | {{{kbd(S-left)}}}     | One day backward.                      |
5935 | {{{kbd(S-down)}}}     | One week forward.                      |
5936 | {{{kbd(S-up)}}}       | One week backward.                     |
5937 | {{{kbd(M-S-right)}}}  | One month forward.                     |
5938 | {{{kbd(M-S-left)}}}   | One month backward.                    |
5939 | {{{kbd(>)}}}             | Scroll calendar forward by one month.  |
5940 | {{{kbd(<)}}}             | Scroll calendar backward by one month. |
5941 | {{{kbd(M-v)}}}           | Scroll calendar forward by 3 months.   |
5942 | {{{kbd(C-v)}}}           | Scroll calendar backward by 3 months.  |
5944 #+vindex: org-read-date-display-live
5945 The actions of the date/time prompt may seem complex, but I assure you
5946 they will grow on you, and you will start getting annoyed by pretty
5947 much any other way of entering a date/time out there.  To help you
5948 understand what is going on, the current interpretation of your input
5949 is displayed live in the minibuffer[fn:63].
5951 *** Custom time format
5952 :PROPERTIES:
5953 :DESCRIPTION: Making dates look different.
5954 :END:
5955 #+cindex: custom date/time format
5956 #+cindex: time format, custom
5957 #+cindex: date format, custom
5959 #+vindex: org-display-custom-times
5960 #+vindex: org-time-stamp-custom-formats
5961 Org mode uses the standard ISO notation for dates and times as it is
5962 defined in ISO 8601.  If you cannot get used to this and require
5963 another representation of date and time to keep you happy, you can get
5964 it by customizing the variables ~org-display-custom-times~ and
5965 ~org-time-stamp-custom-formats~.
5967 - {{{kbd(C-c C-x C-t)}}} (~org-toggle-time-stamp-overlays~) ::
5969      #+kindex: C-c C-x C-t
5970      #+findex: org-toggle-time-stamp-overlays
5971      Toggle the display of custom formats for dates and times.
5973 #+texinfo: @noindent
5974 Org mode needs the default format for scanning, so the custom
5975 date/time format does not /replace/ the default format.  Instead, it
5976 is put /over/ the default format using text properties.  This has the
5977 following consequences:
5979 - You cannot place the cursor onto a timestamp anymore, only before or
5980   after.
5982 - The {{{kbd(S-up)}}} and {{{kbd(S-down)}}} keys can no longer be used
5983   to adjust each component of a timestamp.  If the cursor is at the
5984   beginning of the stamp, {{{kbd(S-up)}}} and {{{kbd(S-down)}}} change
5985   the stamp by one day, just like {{{kbd(S-left)}}}
5986   {{{kbd(S-right)}}}.  At the end of the stamp, change the time by one
5987   minute.
5989 - If the timestamp contains a range of clock times or a repeater,
5990   these are not overlaid, but remain in the buffer as they were.
5992 - When you delete a timestamp character-by-character, it only
5993   disappears from the buffer after /all/ (invisible) characters
5994   belonging to the ISO timestamp have been removed.
5996 - If the custom timestamp format is longer than the default and you
5997   are using dates in tables, table alignment will be messed up.  If
5998   the custom format is shorter, things do work as expected.
6000 ** Deadlines and scheduling
6001 :PROPERTIES:
6002 :DESCRIPTION: Planning your work.
6003 :END:
6005 A timestamp may be preceded by special keywords to facilitate
6006 planning.  Both the timestamp and the keyword have to be positioned
6007 immediately after the task they refer to.
6009 - =DEADLINE= ::
6011      #+cindex: DEADLINE
6012      Meaning: the task (most likely a TODO item, though not
6013      necessarily) is supposed to be finished on that date.
6015      #+vindex: org-deadline-warning-days
6016      On the deadline date, the task is listed in the agenda.  In
6017      addition, the agenda for /today/ carries a warning about the
6018      approaching or missed deadline, starting
6019      ~org-deadline-warning-days~ before the due date, and continuing
6020      until the entry is marked DONE.  An example:
6022      #+begin_example
6023        ,*** TODO write article about the Earth for the Guide
6024            DEADLINE: <2004-02-29 Sun>
6025            The editor in charge is [[bbdb:Ford Prefect]]
6026      #+end_example
6028      #+vindex: org-agenda-skip-deadline-prewarning-if-scheduled
6029      You can specify a different lead time for warnings for a specific
6030      deadlines using the following syntax.  Here is an example with
6031      a warning period of 5 days =DEADLINE: <2004-02-29 Sun -5d>=.
6032      This warning is deactivated if the task gets scheduled and you
6033      set ~org-agenda-skip-deadline-prewarning-if-scheduled~ to ~t~.
6035 - =SCHEDULED= ::
6037      #+cindex: SCHEDULED
6038      Meaning: you are planning to start working on that task on the
6039      given date.
6041      #+vindex: org-agenda-skip-scheduled-if-done
6042      The headline is listed under the given date[fn:64].  In addition,
6043      a reminder that the scheduled date has passed is present in the
6044      compilation for /today/, until the entry is marked DONE, i.e.,
6045      the task is automatically forwarded until completed.
6047      #+begin_example
6048        ,*** TODO Call Trillian for a date on New Years Eve.
6049            SCHEDULED: <2004-12-25 Sat>
6050      #+end_example
6052      #+vindex: org-scheduled-delay-days
6053      #+vindex: org-agenda-skip-scheduled-delay-if-deadline
6054      If you want to /delay/ the display of this task in the agenda,
6055      use =SCHEDULED: <2004-12-25 Sat -2d>=: the task is still
6056      scheduled on the 25th but will appear two days later.  In case
6057      the task contains a repeater, the delay is considered to affect
6058      all occurrences; if you want the delay to only affect the first
6059      scheduled occurrence of the task, use =--2d= instead.  See
6060      ~org-scheduled-delay-days~ and
6061      ~org-agenda-skip-scheduled-delay-if-deadline~ for details on how
6062      to control this globally or per agenda.
6064      #+texinfo: @noindent
6065      *Important:* Scheduling an item in Org mode should /not/ be
6066      understood in the same way that we understand /scheduling
6067      a meeting/.  Setting a date for a meeting is just a simple
6068      appointment, you should mark this entry with a simple plain
6069      timestamp, to get this item shown on the date where it applies.
6070      This is a frequent misunderstanding by Org users.  In Org mode,
6071      /scheduling/ means setting a date when you want to start working
6072      on an action item.
6074 You may use timestamps with repeaters in scheduling and deadline
6075 entries.  Org mode issues early and late warnings based on the
6076 assumption that the timestamp represents the /nearest instance/ of the
6077 repeater.  However, the use of diary S-exp entries like
6079 : <%%(org-float t 42)>
6081 #+texinfo: @noindent
6082 in scheduling and deadline timestamps is limited.  Org mode does not
6083 know enough about the internals of each S-exp function to issue early
6084 and late warnings.  However, it shows the item on each day where the
6085 S-exp entry matches.
6087 *** Inserting deadlines or schedules
6088 :PROPERTIES:
6089 :DESCRIPTION: Planning items.
6090 :ALT_TITLE: Inserting deadline/schedule
6091 :END:
6093 The following commands allow you to quickly insert a deadline or to
6094 schedule an item:[fn:65]
6096 - {{{kbd(C-c C-d)}}} (~org-deadline~) ::
6098      #+kindex: C-c C-d
6099      #+findex: org-deadline
6100      #+vindex: org-log-redeadline
6101      Insert =DEADLINE= keyword along with a stamp.  The insertion
6102      happens in the line directly following the headline.  Remove any
6103      =CLOSED= timestamp .  When called with a prefix argument, also
6104      remove any existing deadline from the entry.  Depending on the
6105      variable ~org-log-redeadline~, take a note when changing an
6106      existing deadline[fn:66].
6108 - {{{kbd(C-c C-s)}}} (~org-schedule~) ::
6110      #+kindex: C-c C-s
6111      #+findex: org-schedule
6112      #+vindex: org-log-reschedule
6113      Insert =SCHEDULED= keyword along with a stamp.  The insertion
6114      happens in the line directly following the headline.  Remove any
6115      =CLOSED= timestamp.  When called with a prefix argument, also
6116      remove the scheduling date from the entry.  Depending on the
6117      variable ~org-log-reschedule~, take a note when changing an
6118      existing scheduling time[fn:67].
6120 - {{{kbd(C-c C-x C-k)}}} (~org-mark-entry-for-agenda-action~) ::
6122      #+kindex: C-c C-x C-k
6123      #+kindex: k a
6124      #+kindex: k s
6125      #+findex: org-mark-entry-for-agenda-action
6126      Mark the current entry for agenda action.  After you have marked
6127      the entry like this, you can open the agenda or the calendar to
6128      find an appropriate date.  With the cursor on the selected date,
6129      press {{{kbd(k s)}}} or {{{kbd(k d)}}} to schedule the marked
6130      item.
6132 - {{{kbd(C-c / d)}}} (~org-check-deadlines~) ::
6134      #+kindex: C-c / d
6135      #+findex: org-check-deadlines
6136      #+cindex: sparse tree, for deadlines
6137      #+vindex: org-deadline-warning-days
6138      Create a sparse tree with all deadlines that are either past-due,
6139      or which will become due within ~org-deadline-warning-days~.
6140      With {{{kbd(C-u)}}} prefix, show all deadlines in the file.  With
6141      a numeric prefix, check that many days.  For example, {{{kbd(C-1
6142      C-c / d)}}} shows all deadlines due tomorrow.
6144 - {{{kbd(C-c / b)}}}, ~org-check-before-date~ ::
6146      #+kindex: C-c / b
6147      #+findex: org-check-before-date
6148      Sparse tree for deadlines and scheduled items before a given
6149      date.
6151 - {{{kbd(C-c / a)}}}, ~org-check-after-date~ ::
6153      #+kindex: C-c / a
6154      #+findex: org-check-after-date
6155      Sparse tree for deadlines and scheduled items after a given date.
6157 Note that ~org-schedule~ and ~org-deadline~ supports setting the date
6158 by indicating a relative time e.g., =+1d= sets the date to the next
6159 day after today, and =--1w= sets the date to the previous week before
6160 any current timestamp.
6162 *** Repeated tasks
6163 :PROPERTIES:
6164 :DESCRIPTION: Items that show up again and again.
6165 :END:
6166 #+cindex: tasks, repeated
6167 #+cindex: repeated tasks
6169 Some tasks need to be repeated again and again.  Org mode helps to
6170 organize such tasks using a so-called repeater in a =DEADLINE=,
6171 =SCHEDULED=, or plain timestamp.  In the following example:
6173 #+begin_example
6174   ,** TODO Pay the rent
6175      DEADLINE: <2005-10-01 Sat +1m>
6176 #+end_example
6178 #+texinfo: noindent
6179 the =+1m= is a repeater; the intended interpretation is that the task
6180 has a deadline on =<2005-10-01>= and repeats itself every (one) month
6181 starting from that time.  You can use yearly, monthly, weekly, daily
6182 and hourly repeat cookies by using the ~y/w/m/d/h~ letters.  If you
6183 need both a repeater and a special warning period in a deadline entry,
6184 the repeater should come first and the warning period last: =DEADLINE:
6185 <2005-10-01 Sat +1m -3d>=.
6187 #+vindex: org-todo-repeat-to-state
6188 Deadlines and scheduled items produce entries in the agenda when they
6189 are over-due, so it is important to be able to mark such an entry as
6190 completed once you have done so.  When you mark a =DEADLINE= or
6191 a =SCHEDULED= with the TODO keyword =DONE=, it no longer produces
6192 entries in the agenda.  The problem with this is, however, is that
6193 then also the /next/ instance of the repeated entry will not be
6194 active.  Org mode deals with this in the following way: when you try
6195 to mark such an entry DONE, using {{{kbd(C-c C-t)}}}, it shifts the
6196 base date of the repeating timestamp by the repeater interval, and
6197 immediately sets the entry state back to TODO[fn:68].  In the example
6198 above, setting the state to DONE would actually switch the date like
6199 this:
6201 #+begin_example
6202   ,** TODO Pay the rent
6203      DEADLINE: <2005-11-01 Tue +1m>
6204 #+end_example
6206 To mark a task with a repeater as DONE, use {{{kbd(C-- 1 C-c C-t)}}},
6207 i.e., ~org-todo~ with a numeric prefix argument of =-1=.
6209 #+vindex: org-log-repeat
6210 A timestamp[fn:69] is added under the deadline, to keep a record that
6211 you actually acted on the previous instance of this deadline.
6213 As a consequence of shifting the base date, this entry is no longer
6214 visible in the agenda when checking past dates, but all future
6215 instances will be visible.
6217 With the =+1m= cookie, the date shift is always exactly one month.  So
6218 if you have not paid the rent for three months, marking this entry
6219 DONE still keeps it as an overdue deadline.  Depending on the task,
6220 this may not be the best way to handle it.  For example, if you forgot
6221 to call your father for 3 weeks, it does not make sense to call him
6222 3 times in a single day to make up for it.  Finally, there are tasks
6223 like changing batteries which should always repeat a certain time
6224 /after/ the last time you did it.  For these tasks, Org mode has
6225 special repeaters =++= and =.+=.  For example:
6227 #+begin_example
6228   ,** TODO Call Father
6229      DEADLINE: <2008-02-10 Sun ++1w>
6230      Marking this DONE shifts the date by at least one week, but also
6231      by as many weeks as it takes to get this date into the future.
6232      However, it stays on a Sunday, even if you called and marked it
6233      done on Saturday.
6235   ,** TODO Empty kitchen trash
6236      DEADLINE: <2008-02-08 Fri 20:00 ++1d>
6237      Marking this DONE shifts the date by at least one day, and also
6238      by as many days as it takes to get the timestamp into the future.
6239      Since there is a time in the timestamp, the next deadline in the
6240      future will be on today's date if you complete the task before
6241      20:00.
6243   ,** TODO Check the batteries in the smoke detectors
6244      DEADLINE: <2005-11-01 Tue .+1m>
6245      Marking this DONE will shift the date to one month after today.
6246 #+end_example
6248 #+vindex: org-agenda-skip-scheduled-if-deadline-is-shown
6249 You may have both scheduling and deadline information for a specific
6250 task.  If the repeater is set for the scheduling information only, you
6251 probably want the repeater to be ignored after the deadline.  If so,
6252 set the variable ~org-agenda-skip-scheduled-if-deadline-is-shown~ to
6253 ~repeated-after-deadline~.  However, any scheduling information
6254 without a repeater is no longer relevant once the task is done, and
6255 thus, removed upon repeating the task.  If you want both scheduling
6256 and deadline information to repeat after the same interval, set the
6257 same repeater for both timestamps.
6259 An alternative to using a repeater is to create a number of copies of
6260 a task subtree, with dates shifted in each copy.  The command
6261 {{{kbd(C-c C-x c)}}} was created for this purpose; it is described in
6262 [[*Structure editing]].
6264 ** Clocking work time
6265 :PROPERTIES:
6266 :DESCRIPTION: Tracking how long you spend on a task.
6267 :END:
6268 #+cindex: clocking time
6269 #+cindex: time clocking
6271 Org mode allows you to clock the time you spend on specific tasks in
6272 a project.  When you start working on an item, you can start the
6273 clock.  When you stop working on that task, or when you mark the task
6274 done, the clock is stopped and the corresponding time interval is
6275 recorded.  It also computes the total time spent on each
6276 subtree[fn:70] of a project.  And it remembers a history or tasks
6277 recently clocked, to that you can jump quickly between a number of
6278 tasks absorbing your time.
6280 To save the clock history across Emacs sessions, use:
6282 #+begin_src emacs-lisp
6283   (setq org-clock-persist 'history)
6284   (org-clock-persistence-insinuate)
6285 #+end_src
6287 #+vindex: org-clock-persist
6288 When you clock into a new task after resuming Emacs, the incomplete
6289 clock[fn:71] is retrieved (see [[*Resolving idle time]]) and you are
6290 prompted about what to do with it.
6292 *** Clocking commands
6293 :PROPERTIES:
6294 :DESCRIPTION: Starting and stopping a clock.
6295 :END:
6297 #+attr_texinfo: :sep ,
6298 - {{{kbd(C-c C-x C-i)}}} (~org-clock-in~) ::
6300      #+kindex: C-c C-x C-i
6301      #+findex: org-clock-in
6302      #+vindex: org-clock-into-drawer
6303      #+vindex: org-clock-continuously
6304      #+cindex: LOG_INTO_DRAWER, property
6305      Start the clock on the current item (clock-in).  This inserts the
6306      CLOCK keyword together with a timestamp.  If this is not the
6307      first clocking of this item, the multiple CLOCK lines are wrapped
6308      into a =LOGBOOK= drawer (see also the variable
6309      ~org-clock-into-drawer~).  You can also overrule the setting of
6310      this variable for a subtree by setting a =CLOCK_INTO_DRAWER= or
6311      =LOG_INTO_DRAWER= property.  When called with a {{{kbd(C-u)}}}
6312      prefix argument, select the task from a list of recently clocked
6313      tasks.  With two {{{kbd(C-u C-u)}}} prefixes, clock into the task
6314      at point and mark it as the default task; the default task is
6315      always be available with letter {{{kbd(d)}}} when selecting
6316      a clocking task.  With three {{{kbd(C-u C-u C-u)}}} prefixes,
6317      force continuous clocking by starting the clock when the last
6318      clock stopped.
6320      #+cindex: CLOCK_MODELINE_TOTAL, property
6321      #+cindex: LAST_REPEAT, property
6322      #+vindex: org-clock-modeline-total
6323      #+vindex: org-clock-in-prepare-hook
6324      While the clock is running, Org shows the current clocking time
6325      in the mode line, along with the title of the task.  The clock
6326      time shown is all time ever clocked for this task and its
6327      children.  If the task has an effort estimate (see [[*Effort
6328      estimates]]), the mode line displays the current clocking time
6329      against it[fn:72].  If the task is a repeating one (see [[*Repeated
6330      tasks]]), show only the time since the last reset of the
6331      task[fn:73].  You can exercise more control over show time with
6332      the =CLOCK_MODELINE_TOTAL= property.  It may have the values
6333      =current= to show only the current clocking instance, =today= to
6334      show all time clocked on this tasks today---see also the
6335      variable ~org-extend-today-until~, ~all~ to include all time, or
6336      ~auto~ which is the default[fn:74].  Clicking with
6337      {{{kbd(mouse-1)}}} onto the mode line entry pops up a menu with
6338      clocking options.
6340 - {{{kbd(C-c C-x C-o)}}} (~org-clock-out~) ::
6342      #+kindex: C-c C-x C-o
6343      #+findex: org-clock-out
6344      #+vindex: org-log-note-clock-out
6345      Stop the clock (clock-out).  This inserts another timestamp at
6346      the same location where the clock was last started.  It also
6347      directly computes the resulting time in inserts it after the time
6348      range as ==>HH:MM=.  See the variable ~org-log-note-clock-out~
6349      for the possibility to record an additional note together with
6350      the clock-out timestamp[fn:75].
6352 - {{{kbd(C-c C-x C-x)}}} (~org-clock-in-last~) ::
6354      #+kindex: C-c C-x C-x
6355      #+findex: org-clock-in-last
6356      #+vindex: org-clock-continuously
6357      Re-clock the last clocked task.  With one {{{kbd(C-u)}}} prefix
6358      argument, select the task from the clock history.  With two
6359      {{{kbd(C-u)}}} prefixes, force continuous clocking by starting
6360      the clock when the last clock stopped.
6362 - {{{kbd(C-c C-x C-e)}}} (~org-clock-modify-effort-estimate~) ::
6364      #+kindex: C-c C-x C-e
6365      #+findex: org-clock-modify-effort-estimate
6366      Update the effort estimate for the current clock task.
6368 - {{{kbd(C-c C-c)}}} or {{{kbd(C-c C-y)}}} (~org-evaluate-time-range~) ::
6370      #+kindex: C-c C-c
6371      #+kindex: C-c C-y
6372      #+findex: org-evaluate-time-range
6373      Recompute the time interval after changing one of the timestamps.
6374      This is only necessary if you edit the timestamps directly.  If
6375      you change them with {{{kbd(S-<cursor>)}}} keys, the update is
6376      automatic.
6378 - {{{kbd(C-S-up)}}} (~org-clock-timestamps-up~), {{{kbd(C-S-down)}}} (~org-clock-timestamps-down~) ::
6380      #+kindex: C-S-up
6381      #+findex: org-clock-timestamps-up
6382      #+kindex: C-S-down
6383      #+findex: org-clock-timestamps-down
6384      On CLOCK log lines, increase/decrease both timestamps so that the
6385      clock duration keeps the same value.
6387 - {{{kbd(S-M-up)}}} (~org-timestamp-up~), {{{kbd(S-M-down)}}} (~org-timestamp-down~) ::
6389      #+kindex: S-M-up
6390      #+findex: org-clock-timestamp-up
6391      #+kindex: S-M-down
6392      #+findex: org-clock-timestamp-down
6393      On =CLOCK= log lines, increase/decrease the timestamp at point
6394      and the one of the previous, or the next, clock timestamp by the
6395      same duration.  For example, if you hit {{{kbd(S-M-up)}}} to
6396      increase a clocked-out timestamp by five minutes, then the
6397      clocked-in timestamp of the next clock is increased by five
6398      minutes.
6400 - {{{kbd(C-c C-t)}}} (~org-todo~) ::
6402      #+kindex: C-c C-t
6403      #+findex: org-todo
6404      Changing the TODO state of an item to DONE automatically stops
6405      the clock if it is running in this same item.
6407 - {{{kbd(C-c C-x C-q)}}} (~org-clock-cancel~) ::
6409      #+kindex: C-c C-x C-q
6410      #+findex: org-clock-cancel
6411      Cancel the current clock.  This is useful if a clock was started
6412      by mistake, or if you ended up working on something else.
6414 - {{{kbd(C-c C-x C-j)}}} (~org-clock-goto~) ::
6416      #+kindex: C-c C-x C-j
6417      #+findex: or-clock-goto
6418      Jump to the headline of the currently clocked in task.  With
6419      a {{{kbd(C-u)}}} prefix argument, select the target task from
6420      a list of recently clocked tasks.
6422 - {{{kbd(C-c C-x C-d)}}} (~org-clock-display~) ::
6424      #+kindex: C-c C-x C-d
6425      #+findex: org-clock-display
6426      #+vindex: org-remove-highlights-with-change
6427      Display time summaries for each subtree in the current buffer.
6428      This puts overlays at the end of each headline, showing the total
6429      time recorded under that heading, including the time of any
6430      subheadings.  You can use visibility cycling to study the tree,
6431      but the overlays disappear when you change the buffer (see
6432      variable ~org-remove-highlights-with-change~) or press {{{kbd(C-c
6433      C-c)}}}.
6435 The {{{kbd(l)}}} key may be used in the agenda (see [[*Weekly/daily
6436 agenda]]) to show which tasks have been worked on or closed during
6437 a day.
6439 *Important:* note that both ~org-clock-out~ and ~org-clock-in-last~
6440 can have a global keybinding and do not modify the window disposition.
6442 *** The clock table
6443 :PROPERTIES:
6444 :DESCRIPTION: Detailed reports.
6445 :END:
6446 #+cindex: clocktable, dynamic block
6447 #+cindex: report, of clocked time
6449 Org mode can produce quite complex reports based on the time clocking
6450 information.  Such a report is called a /clock table/, because it is
6451 formatted as one or several Org tables.
6453 #+attr_texinfo: :sep ,
6454 - {{{kbd(C-c C-x C-r)}}} (~org-clock-report~) ::
6456      #+kindex: C-c C-x C-r
6457      #+findex: org-clock-report
6458      Insert a dynamic block (see [[*Dynamic blocks]]) containing a clock
6459      report as an Org mode table into the current file.  When the
6460      cursor is at an existing clock table, just update it.  When
6461      called with a prefix argument, jump to the first clock report in
6462      the current document and update it.  The clock table always
6463      includes also trees with =ARCHIVE= tag.
6465 - {{{kbd(C-c C-c)}}} or {{{kbd(C-c C-x C-u)}}} (~org-dblock-update~) ::
6467      #+kindex: C-c C-c
6468      #+kindex: C-c C-x C-u
6469      #+findex: org-dblock-update
6470      Update dynamic block at point.  The cursor needs to be in the
6471      =BEGIN= line of the dynamic block.
6473 - {{{kbd(C-u C-c C-x C-u)}}} ::
6475      #+kindex: C-u C-c C-x C-u
6476      Update all dynamic blocks (see [[*Dynamic blocks]]).  This is useful
6477      if you have several clock table blocks in a buffer.
6479 - {{{kbd(S-left)}}}, {{{kbd(S-right)}}} (~org-clocktable-try-shift~) ::
6481      #+kindex: S-left
6482      #+kindex: S-right
6483      #+findex: org-clocktable-try-shift
6484      Shift the current =:block= interval and update the table.  The
6485      cursor needs to be in the =#+BEGIN: clocktable= line for this
6486      command.  If =:block= is =today=, it is shifted to =today-1=,
6487      etc.
6489 Here is an example of the frame for a clock table as it is inserted
6490 into the buffer with the {{{kbd(C-c C-x C-r)}}} command:
6492 #+cindex: BEGIN clocktable
6493 #+begin_example
6494   ,#+BEGIN: clocktable :maxlevel 2 :emphasize nil :scope file
6495   ,#+END: clocktable
6496 #+end_example
6498 #+texinfo: @noindent
6499 #+vindex: org-clocktable-defaults
6500 The =#+BEGIN= line and specify a number of options to define the
6501 scope, structure, and formatting of the report.  Defaults for all
6502 these options can be configured in the variable
6503 ~org-clocktable-defaults~.
6505 #+texinfo: @noindent
6506 First there are options that determine which clock entries are to
6507 be selected:
6509 - :maxlevel ::
6511      Maximum level depth to which times are listed in the table.
6512      Clocks at deeper levels are summed into the upper level.
6514 - :scope ::
6516      The scope to consider.  This can be any of the following:
6518      | ~nil~                  | the current buffer or narrowed region                    |
6519      | ~file~                 | the full current buffer                                  |
6520      | ~subtree~              | the subtree where the clocktable is located              |
6521      | ~treeN~                | the surrounding level N tree, for example =tree3=        |
6522      | ~tree~                 | the surrounding level 1 tree                             |
6523      | ~agenda~               | all agenda files                                         |
6524      | =("file" ...)=         | scan these files                                         |
6525      | =FUNCTION=             | scan files returned by calling FUNCTION with no argument |
6526      | ~file-with-archives~   | current file and its archives                            |
6527      | ~agenda-with-archives~ | all agenda files, including archives                     |
6529 - :block ::
6531      The time block to consider.  This block is specified either
6532      absolutely, or relative to the current time and may be any of
6533      these formats:
6535      | =2007-12-31=                            | New year eve 2007     |
6536      | =2007-12=                               | December 2007         |
6537      | =2007-W50=                              | ISO-week 50 in 2007   |
6538      | =2007-Q2=                               | 2nd quarter in 2007   |
6539      | =2007=                                  | the year 2007         |
6540      | ~today~, ~yesterday~, ~today-N~         | a relative day        |
6541      | ~thisweek~, ~lastweek~, ~thisweek-N~    | a relative week       |
6542      | ~thismonth~, ~lastmonth~, ~thismonth-N~ | a relative month      |
6543      | ~thisyear~, ~lastyear~, ~thisyear-N~    | a relative year       |
6544      | ~untilnow~                              | all clocked time ever |
6546      #+vindex: org-clock-display-default-range
6547      When this option is not set, Org falls back to the value in
6548      ~org-clock-display-default-range~, which defaults to the current
6549      year.
6551      Use {{{kbd(S-left)}}} or {{{kbd(S-right)}}} to shift the time
6552      interval.
6554 - :tstart ::
6556      A time string specifying when to start considering times.
6557      Relative times like ="<-2w>"= can also be used.  See [[*Matching
6558      tags and properties]] for relative time syntax.
6560 - :tend  ::
6562      A time string specifying when to stop considering times.
6563      Relative times like ="<now>"= can also be used.  See [[*Matching
6564      tags and properties]] for relative time syntax.
6566 - wstart ::
6568      The starting day of the week.  The default is 1 for Monday.
6570 - mstart ::
6572      The starting day of the month.  The default is 1 for the first.
6574 - :step ::
6576      Set to ~week~ or ~day~ to split the table into chunks.  To use
6577      this, ~:block~ or ~:tstart~, ~:tend~ are needed.
6579 - :stepskip0 ::
6581      Do not show steps that have zero time.
6583 - :fileskip0 ::
6585      Do not show table sections from files which did not contribute.
6587 - :tags ::
6589      A tags match to select entries that should contribute.  See
6590      [[*Matching tags and properties]] for the match syntax.
6592 #+findex: org-clocktable-write-default
6593 Then there are options that determine the formatting of the table.
6594 There options are interpreted by the function
6595 ~org-clocktable-write-default~, but you can specify your own function
6596 using the =:formatter= parameter.
6598 - :emphasize ::
6600      When ~t~, emphasize level one and level two items.
6602 - :lang ::
6604      Language[fn:76] to use for descriptive cells like "Task".
6606 - :link ::
6608      Link the item headlines in the table to their origins.
6610 - :narrow ::
6612      An integer to limit the width of the headline column in the Org
6613      table.  If you write it like =50!=, then the headline is also
6614      shortened in export.
6616 - :indent  ::
6618      Indent each headline field according to its level.
6620 - :tcolumns ::
6622      Number of columns to be used for times.  If this is smaller than
6623      =:maxlevel=, lower levels are lumped into one column.
6625 - :level ::
6627      Should a level number column be included?
6629 - :sort ::
6631      A cons cell containing the column to sort and a sorting type.
6632      E.g., =:sort (1 . ?a)= sorts the first column alphabetically.
6634 - :compact ::
6636      Abbreviation for =:level nil :indent t :narrow 40! :tcolumns 1=.
6637      All are overwritten except if there is an explicit =:narrow=.
6639 - :timestamp ::
6641      A timestamp for the entry, when available.  Look for SCHEDULED,
6642      DEADLINE, TIMESTAMP and TIMESTAMP_IA special properties (see
6643      [[*Special properties]]), in this order.
6645 - :properties ::
6647      List of properties shown in the table.  Each property gets its
6648      own column.
6650 - :inherit-props ::
6652      When this flag is non-~nil~, the values for =:properties= are
6653      inherited.
6655 - :formula  ::
6657      Content of a =TBLFM= keyword to be added and evaluated.  As
6658      a special case, =:formula %= adds a column with % time.  If you
6659      do not specify a formula here, any existing formula below the
6660      clock table survives updates and is evaluated.
6662 - :formatter ::
6664      A function to format clock data and insert it into the buffer.
6666 To get a clock summary of the current level 1 tree, for the current
6667 day, you could write:
6669 #+begin_example
6670   ,#+BEGIN: clocktable :maxlevel 2 :block today :scope tree1 :link t
6671   ,#+END: clocktable
6672 #+end_example
6674 #+texinfo: @noindent
6675 To use a specific time range you could write[fn:77]
6677 #+begin_example
6678   ,#+BEGIN: clocktable :tstart "<2006-08-10 Thu 10:00>"
6679                       :tend "<2006-08-10 Thu 12:00>"
6680   ,#+END: clocktable
6681 #+end_example
6683 A range starting a week ago and ending right now could be written as
6685 #+begin_example
6686   ,#+BEGIN: clocktable :tstart "<-1w>" :tend "<now>"
6687   ,#+END: clocktable
6688 #+end_example
6690 A summary of the current subtree with % times would be:
6692 #+begin_example
6693   ,#+BEGIN: clocktable :scope subtree :link t :formula %
6694   ,#+END: clocktable
6695 #+end_example
6697 A horizontally compact representation of everything clocked during
6698 last week would be:
6700 #+begin_example
6701   ,#+BEGIN: clocktable :scope agenda :block lastweek :compact t
6702   ,#+END: clocktable
6703 #+end_example
6705 *** Resolving idle time and continuous clocking
6706 :PROPERTIES:
6707 :DESCRIPTION: Resolving time when you've been idle.
6708 :ALT_TITLE: Resolving idle time
6709 :END:
6711 **** Resolving idle time
6712 :PROPERTIES:
6713 :UNNUMBERED: notoc
6714 :END:
6716 #+cindex: resolve idle time
6717 #+cindex: idle, resolve, dangling
6719 If you clock in on a work item, and then walk away from your
6720 computer---perhaps to take a phone call---you often need to
6721 "resolve" the time you were away by either subtracting it from the
6722 current clock, or applying it to another one.
6724 #+vindex: org-clock-idle-time
6725 #+vindex: org-clock-x11idle-program-name
6726 By customizing the variable ~org-clock-idle-time~ to some integer,
6727 such as 10 or 15, Emacs can alert you when you get back to your
6728 computer after being idle for that many minutes[fn:78], and ask what
6729 you want to do with the idle time.  There will be a question waiting
6730 for you when you get back, indicating how much idle time has passed
6731 constantly updated with the current amount, as well as a set of
6732 choices to correct the discrepancy:
6734 - {{{kbd(k)}}} ::
6736      #+kindex: k
6737      To keep some or all of the minutes and stay clocked in, press
6738      {{{kbd(k)}}}.  Org asks how many of the minutes to keep.  Press
6739      {{{kbd(RET)}}} to keep them all, effectively changing nothing, or
6740      enter a number to keep that many minutes.
6742 - {{{kbd(K)}}} ::
6744      #+kindex: K
6745      If you use the shift key and press {{{kbd(K)}}}, it keeps however
6746      many minutes you request and then immediately clock out of that
6747      task.  If you keep all of the minutes, this is the same as just
6748      clocking out of the current task.
6750 - {{{kbd(s)}}} ::
6752      #+kindex: s
6753      To keep none of the minutes, use {{{kbd(s)}}} to subtract all the
6754      away time from the clock, and then check back in from the moment
6755      you returned.
6757 - {{{kbd(S)}}} ::
6759      #+kindex: S
6760      To keep none of the minutes and just clock out at the start of
6761      the away time, use the shift key and press {{{kbd(S)}}}.
6762      Remember that using shift always leave you clocked out, no matter
6763      which option you choose.
6765 - {{{kbd(C)}}} ::
6767      #+kindex: C
6768      To cancel the clock altogether, use {{{kbd(C)}}}.  Note that if
6769      instead of canceling you subtract the away time, and the
6770      resulting clock amount is less than a minute, the clock is still
6771      canceled rather than cluttering up the log with an empty entry.
6773 What if you subtracted those away minutes from the current clock, and
6774 now want to apply them to a new clock?  Simply clock in to any task
6775 immediately after the subtraction.  Org will notice that you have
6776 subtracted time "on the books", so to speak, and will ask if you want
6777 to apply those minutes to the next task you clock in on.
6779 There is one other instance when this clock resolution magic occurs.
6780 Say you were clocked in and hacking away, and suddenly your cat chased
6781 a mouse who scared a hamster that crashed into your UPS's power
6782 button!  You suddenly lose all your buffers, but thanks to auto-save
6783 you still have your recent Org mode changes, including your last clock
6786 If you restart Emacs and clock into any task, Org will notice that you
6787 have a dangling clock which was never clocked out from your last
6788 session.  Using that clock's starting time as the beginning of the
6789 unaccounted-for period, Org will ask how you want to resolve that
6790 time.  The logic and behavior is identical to dealing with away time
6791 due to idleness; it is just happening due to a recovery event rather
6792 than a set amount of idle time.
6794 You can also check all the files visited by your Org agenda for
6795 dangling clocks at any time using {{{kbd(M-x org-resolve-clocks
6796 RET)}}} (or {{{kbd(C-c C-x C-z)}}}).
6798 **** Continuous clocking
6799 :PROPERTIES:
6800 :UNNUMBERED: notoc
6801 :END:
6802 #+cindex: continuous clocking
6804 #+vindex: org-clock-continuously
6805 You may want to start clocking from the time when you clocked out the
6806 previous task.  To enable this systematically, set
6807 ~org-clock-continuously~ to non-~nil~.  Each time you clock in, Org
6808 retrieves the clock-out time of the last clocked entry for this
6809 session, and start the new clock from there.
6811 If you only want this from time to time, use three universal prefix
6812 arguments with ~org-clock-in~ and two {{{kbd(C-u C-u)}}} with
6813 ~org-clock-in-last~.
6815 ** Effort estimates
6816 :PROPERTIES:
6817 :DESCRIPTION: Planning work effort in advance.
6818 :END:
6819 #+cindex: effort estimates
6820 #+cindex: EFFORT, property
6821 #+vindex: org-effort-property
6823 If you want to plan your work in a very detailed way, or if you need
6824 to produce offers with quotations of the estimated work effort, you
6825 may want to assign effort estimates to entries.  If you are also
6826 clocking your work, you may later want to compare the planned effort
6827 with the actual working time, a great way to improve planning
6828 estimates.  Effort estimates are stored in a special property
6829 =EFFORT=.  You can set the effort for an entry with the following
6830 commands:
6832 - {{{kbd(C-c C-x e)}}}  (~org-set-effort~) ::
6834      #+kindex: C-c C-x e
6835      #+findex: org-set-effort
6836      Set the effort estimate for the current entry.  With a prefix
6837      argument, set it to the next allowed value---see below.  This
6838      command is also accessible from the agenda with the {{{kbd(e)}}}
6839      key.
6841 - {{{kbd(C-c C-x C-e)}}} (~org-clock-modify-effort-estimate~) ::
6843      #+kindex: C-c C-x C-e
6844      #+findex: org-clock-modify-effort-estimate
6845      Modify the effort estimate of the item currently being clocked.
6847 Clearly the best way to work with effort estimates is through column
6848 view (see [[*Column view]]).  You should start by setting up discrete
6849 values for effort estimates, and a =COLUMNS= format that displays
6850 these values together with clock sums---if you want to clock your
6851 time.  For a specific buffer you can use:
6853 #+begin_example
6854   ,#+PROPERTY: Effort_ALL 0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00
6855   ,#+COLUMNS: %40ITEM(Task) %17Effort(Estimated Effort){:} %CLOCKSUM
6856 #+end_example
6858 #+texinfo: noindent
6859 #+vindex: org-global-properties
6860 #+vindex: org-columns-default-format
6861 or, even better, you can set up these values globally by customizing
6862 the variables ~org-global-properties~ and
6863 ~org-columns-default-format~.  In particular if you want to use this
6864 setup also in the agenda, a global setup may be advised.
6866 The way to assign estimates to individual items is then to switch to
6867 column mode, and to use {{{kbd(S-right)}}} and {{{kbd(S-left)}}} to
6868 change the value.  The values you enter are immediately summed up in
6869 the hierarchy.  In the column next to it, any clocked time is
6870 displayed.
6872 #+vindex: org-agenda-columns-add-appointments-to-effort-sum
6873 If you switch to column view in the daily/weekly agenda, the effort
6874 column summarizes the estimated work effort for each day[fn:79], and
6875 you can use this to find space in your schedule.  To get an overview
6876 of the entire part of the day that is committed, you can set the
6877 option ~org-agenda-columns-add-appointments-to-effort-sum~.  The
6878 appointments on a day that take place over a specified time interval
6879 are then also added to the load estimate of the day.
6881 Effort estimates can be used in secondary agenda filtering that is
6882 triggered with the {{{kbd(/)}}} key in the agenda (see [[*Commands in
6883 the agenda buffer]]).  If you have these estimates defined consistently,
6884 two or three key presses narrow down the list to stuff that fits into
6885 an available time slot.
6887 ** Taking notes with a relative timer
6888 :PROPERTIES:
6889 :DESCRIPTION: Notes with a running timer.
6890 :ALT_TITLE: Timers
6891 :END:
6892 #+cindex: relative timer
6893 #+cindex: countdown timer
6895 Org provides two types of timers.  There is a relative timer that
6896 counts up, which can be useful when taking notes during, for example,
6897 a meeting or a video viewing.  There is also a countdown timer.
6899 The relative and countdown are started with separate commands.
6901 - {{{kbd(C-c C-x 0)}}} (~org-timer-start~) ::
6903      #+kindex: C-c C-x 0
6904      #+findex: org-timer-start
6905      Start or reset the relative timer.  By default, the timer is set
6906      to 0.  When called with a {{{kbd(C-u)}}} prefix, prompt the user
6907      for a starting offset.  If there is a timer string at point, this
6908      is taken as the default, providing a convenient way to restart
6909      taking notes after a break in the process.  When called with
6910      a double prefix argument {{{kbd(C-u C-u)}}}, change all timer
6911      strings in the active region by a certain amount.  This can be
6912      used to fix timer strings if the timer was not started at exactly
6913      the right moment.
6915 - {{{kbd(C-c C-x ;)}}} (~org-timer-set-timer~) ::
6917      #+kindex: C-c C-x ;
6918      #+findex: org-timer-set-timer
6919      #+vindex: org-timer-default-timer
6920      Start a countdown timer.  The user is prompted for a duration.
6921      ~org-timer-default-timer~ sets the default countdown value.
6922      Giving a numeric prefix argument overrides this default value.
6923      This command is available as {{{kbd(;)}}} in agenda buffers.
6925 Once started, relative and countdown timers are controlled with the
6926 same commands.
6928 - {{{kbd(C-c C-x .)}}} (~org-timer~) ::
6930      #+kindex: C-c C-x .
6931      #+findex: org-timer
6932      Insert a relative time into the buffer.  The first time you use
6933      this, the timer starts.  Using a prefix argument restarts it.
6935 - {{{kbd(C-c C-x -)}}} (~org-timer-item~) ::
6937      #+kindex: C-c C-x -
6938      #+findex: org-timer-item
6939      Insert a description list item with the current relative time.
6940      With a prefix argument, first reset the timer to 0.
6942 - {{{kbd(M-RET)}}} (~org-insert-heading~) ::
6944      #+kindex: M-RET
6945      #+findex: org-insert-heading
6946      Once the timer list is started, you can also use
6947      {{{kbd(M-RET)}}} to insert new timer items.
6949 - {{{kbd(C-c C-x \,)}}} (~org-timer-pause-or-continue~) ::
6951      #+kindex: C-c C-x ,
6952      #+findex: org-timer-pause-or-continue
6953      Pause the timer, or continue it if it is already paused.
6955 - {{{kbd(C-c C-x _)}}} (~org-timer-stop~) ::
6957      #+kindex: C-c C-x _
6958      #+findex: org-timer-stop
6959      Stop the timer.  After this, you can only start a new timer, not
6960      continue the old one.  This command also removes the timer from
6961      the mode line.
6963 * Capture - Refile - Archive
6964 :PROPERTIES:
6965 :DESCRIPTION: The ins and outs for projects.
6966 :END:
6967 #+cindex: capture
6969 An important part of any organization system is the ability to quickly
6970 capture new ideas and tasks, and to associate reference material with
6971 them.  Org does this using a process called /capture/.  It also can
6972 store files related to a task (/attachments/) in a special directory.
6973 Once in the system, tasks and projects need to be moved around.
6974 Moving completed project trees to an archive file keeps the system
6975 compact and fast.
6977 ** Capture
6978 :PROPERTIES:
6979 :DESCRIPTION: Capturing new stuff.
6980 :END:
6981 #+cindex: capture
6983 Capture lets you quickly store notes with little interruption of your
6984 work flow.  Org's method for capturing new items is heavily inspired
6985 by John Wiegley's excellent =remember.el= package.
6987 *** Setting up capture
6988 :PROPERTIES:
6989 :DESCRIPTION: Where notes will be stored.
6990 :END:
6992 The following customization sets a default target file for notes, and
6993 defines a global key[fn:80] for capturing new material.
6995 #+vindex: org-default-notes-file
6996 #+begin_src emacs-lisp
6997   (setq org-default-notes-file (concat org-directory "/notes.org"))
6998   (define-key global-map "\C-cc" 'org-capture)
6999 #+end_src
7001 *** Using capture
7002 :PROPERTIES:
7003 :DESCRIPTION: Commands to invoke and terminate capture.
7004 :END:
7006 - {{{kbd(C-c c)}}} (~org-capture~) ::
7008      #+kindex: C-c c
7009      #+findex: org-capture
7010      #+cindex: date tree
7011      Call the command ~org-capture~.  Note that this keybinding is
7012      global and not active by default: you need to install it.  If you
7013      have templates defined (see [[*Capture templates]]), it offers these
7014      templates for selection or use a new Org outline node as the
7015      default template.  It inserts the template into the target file
7016      and switch to an indirect buffer narrowed to this new node.  You
7017      may then insert the information you want.
7019 - {{{kbd(C-c C-c)}}} (~org-capture-finalize~) ::
7021      #+kindex: C-c C-c
7022      #+findex: org-capture-finalize
7023      Once you have finished entering information into the capture
7024      buffer, {{{kbd(C-c C-c)}}} returns you to the window
7025      configuration before the capture process, so that you can resume
7026      your work without further distraction.  When called with a prefix
7027      argument, finalize and then jump to the captured item.
7029 - {{{kbd(C-c C-w)}}} (~org-capture-refile~) ::
7031      #+kindex: C-c C-w
7032      #+findex: org-capture-refile
7033      Finalize the capture process by refiling the note to a different
7034      place (see [[*Refile and copy]]).  Please realize that this is
7035      a normal refiling command that will be executed---so the cursor
7036      position at the moment you run this command is important.  If you
7037      have inserted a tree with a parent and children, first move the
7038      cursor back to the parent.  Any prefix argument given to this
7039      command is passed on to the ~org-refile~ command.
7041 - {{{kbd(C-c C-k)}}} (~org-capture-kill~) ::
7043      #+kindex: C-c C-k
7044      #+findex: org-capture-kill
7045      Abort the capture process and return to the previous state.
7047 You can also call ~org-capture~ in a special way from the agenda,
7048 using the {{{kbd(k c)}}} key combination.  With this access, any
7049 timestamps inserted by the selected capture template defaults to the
7050 cursor date in the agenda, rather than to the current date.
7052 To find the locations of the last stored capture, use ~org-capture~
7053 with prefix commands:
7055 - {{{kbd(C-u C-c c)}}} ::
7057      #+kindex: C-u C-c c
7058      Visit the target location of a capture template.  You get to
7059      select the template in the usual way.
7061 - {{{kbd(C-u C-u C-c c)}}} ::
7063      #+kindex: C-u C-u C-c c
7064      Visit the last stored capture item in its buffer.
7066 #+vindex: org-capture-bookmark
7067 #+cindex: org-capture-last-stored
7068 You can also jump to the bookmark ~org-capture-last-stored~, which is
7069 automatically created unless you set ~org-capture-bookmark~ to ~nil~.
7071 To insert the capture at point in an Org buffer, call ~org-capture~
7072 with a ~C-0~ prefix argument.
7074 *** Capture templates
7075 :PROPERTIES:
7076 :DESCRIPTION: Define the outline of different note types.
7077 :END:
7078 #+cindex: templates, for Capture
7080 You can use templates for different types of capture items, and for
7081 different target locations.  The easiest way to create such templates
7082 is through the customize interface.
7084 - {{{kbd(C-c c C)}}} ::
7086      #+kindex: C-c c C
7087      #+vindex: org-capture-templates
7088      Customize the variable ~org-capture-templates~.
7090 Before we give the formal description of template definitions, let's
7091 look at an example.  Say you would like to use one template to create
7092 general TODO entries, and you want to put these entries under the
7093 heading =Tasks= in your file =~/org/gtd.org=.  Also, a date tree in
7094 the file =journal.org= should capture journal entries.  A possible
7095 configuration would look like:
7097 #+begin_src emacs-lisp
7098   (setq org-capture-templates
7099         '(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks")
7100            "* TODO %?\n  %i\n  %a")
7101           ("j" "Journal" entry (file+datetree "~/org/journal.org")
7102            "* %?\nEntered on %U\n  %i\n  %a")))
7103 #+end_src
7105 #+texinfo: @noindent
7106 If you then press {{{kbd(C-c c t)}}}, Org will prepare the template
7107 for you like this:
7109 #+begin_example
7110   ,* TODO
7111     [[file:LINK TO WHERE YOU INITIATED CAPTURE]]
7112 #+end_example
7114 #+texinfo: @noindent
7115 During expansion of the template, ~%a~ has been replaced by a link to
7116 the location from where you called the capture command.  This can be
7117 extremely useful for deriving tasks from emails, for example.  You
7118 fill in the task definition, press {{{kbd(C-c C-c)}}} and Org returns
7119 you to the same place where you started the capture process.
7121 To define special keys to capture to a particular template without
7122 going through the interactive template selection, you can create your
7123 key binding like this:
7125 #+begin_src emacs-lisp
7126   (define-key global-map "\C-cx"
7127     (lambda () (interactive) (org-capture nil "x")))
7128 #+end_src
7130 **** Template elements
7131 :PROPERTIES:
7132 :DESCRIPTION: What is needed for a complete template entry.
7133 :END:
7135 Now lets look at the elements of a template definition.  Each entry in
7136 ~org-capture-templates~ is a list with the following items:
7138 - keys ::
7140      The keys that selects the template, as a string, characters only,
7141      for example ="a"=, for a template to be selected with a single
7142      key, or ="bt"= for selection with two keys.  When using several
7143      keys, keys using the same prefix key must be sequential in the
7144      list and preceded by a 2-element entry explaining the prefix key,
7145      for example:
7147      #+begin_src emacs-lisp
7148        ("b" "Templates for marking stuff to buy")
7149      #+end_src
7151      #+texinfo: @noindent
7152      If you do not define a template for the {{{kbd(C)}}} key, this
7153      key opens the Customize buffer for this complex variable.
7155 - description ::
7157      A short string describing the template, shown during selection.
7159 - type ::
7161      The type of entry, a symbol.  Valid values are:
7163      - ~entry~ ::
7165           An Org mode node, with a headline.  Will be filed as the child
7166           of the target entry or as a top-level entry.  The target file
7167           should be an Org file.
7169      - ~item~ ::
7171           A plain list item, placed in the first plain list at the
7172           target location.  Again the target file should be an Org
7173           file.
7175      - ~checkitem~ ::
7177           A checkbox item.  This only differs from the plain list item
7178           by the default template.
7180      - ~table-line~ ::
7182           A new line in the first table at the target location.  Where
7183           exactly the line will be inserted depends on the properties
7184           ~:prepend~ and ~:table-line-pos~ (see below).
7186      - ~plain~ ::
7188           Text to be inserted as it is.
7190 - target ::
7192      #+vindex: org-default-notes-file
7193      #+vindex: org-directory
7194      Specification of where the captured item should be placed.  In
7195      Org files, targets usually define a node.  Entries will become
7196      children of this node.  Other types will be added to the table or
7197      list in the body of this node.  Most target specifications
7198      contain a file name.  If that file name is the empty string, it
7199      defaults to ~org-default-notes-file~.  A file can also be given
7200      as a variable or as a function called with no argument.  When an
7201      absolute path is not specified for a target, it is taken as
7202      relative to ~org-directory~.
7204      Valid values are:
7206      - =(file "path/to/file")= ::
7208           Text will be placed at the beginning or end of that file.
7210      - =(id "id of existing org entry")= ::
7212           Filing as child of this entry, or in the body of the entry.
7214      - =(file+headline "filename" "node headline")= ::
7216           Fast configuration if the target heading is unique in the file.
7218      - =(file+olp "filename" "Level 1 heading" "Level 2" ...)= ::
7220           For non-unique headings, the full path is safer.
7222      - =(file+regexp "filename" "regexp to find location")= ::
7224           Use a regular expression to position the cursor.
7226      - =(file+olp+datetree "filename" [ "Level 1 heading" ...])= ::
7228           This target[fn:81] creates a heading in a date tree[fn:82] for
7229           today's date.  If the optional outline path is given, the tree
7230           will be built under the node it is pointing to, instead of at
7231           top level.  Check out the ~:time-prompt~ and ~:tree-type~
7232           properties below for additional options.
7234      - ~(file+function "filename" function-finding-location)~ ::
7236           A function to find the right location in the file.
7238      - ~(clock)~ ::
7240           File to the entry that is currently being clocked.
7242      - ~(function function-finding-location)~ ::
7244           Most general way: write your own function which both visits the
7245           file and moves point to the right location.
7247 - template ::
7249      The template for creating the capture item.  If you leave this
7250      empty, an appropriate default template will be used.  Otherwise
7251      this is a string with escape codes, which will be replaced
7252      depending on time and context of the capture call.  The string
7253      with escapes may be loaded from a template file, using the
7254      special syntax =(file "template filename")=.  See below for more
7255      details.
7257 - properties ::
7259      The rest of the entry is a property list of additional options.
7260      Recognized properties are:
7262      - ~:prepend~ ::
7264           Normally new captured information will be appended at the
7265           target location (last child, last table line, last list item,
7266           ...).  Setting this property changes that.
7268      - ~:immediate-finish~ ::
7270           When set, do not offer to edit the information, just file it
7271           away immediately.  This makes sense if the template only needs
7272           information that can be added automatically.
7274      - ~:empty-lines~ ::
7276           Set this to the number of lines to insert before and after the
7277           new item.  Default 0, and the only other common value is 1.
7279      - ~:clock-in~ ::
7281           Start the clock in this item.
7283      - ~:clock-keep~ ::
7285           Keep the clock running when filing the captured entry.
7287      - ~:clock-resume~ ::
7289           If starting the capture interrupted a clock, restart that clock
7290           when finished with the capture.  Note that ~:clock-keep~ has
7291           precedence over ~:clock-resume~.  When setting both to
7292           non-~nil~, the current clock will run and the previous one will
7293           not be resumed.
7295      - ~:time-prompt~ ::
7297           Prompt for a date/time to be used for date/week trees and when
7298           filling the template.  Without this property, capture uses the
7299           current date and time.  Even if this property has not been set,
7300           you can force the same behavior by calling ~org-capture~ with
7301           a {{{kbd(C-1)}}} prefix argument.
7303      - ~:tree-type~ ::
7305           When ~week~, make a week tree instead of the month tree, i.e.,
7306           place the headings for each day under a heading with the
7307           current ISO week.
7309      - ~:unnarrowed~ ::
7311           Do not narrow the target buffer, simply show the full buffer.  Default
7312           is to narrow it so that you only see the new material.
7314      - ~:table-line-pos~ ::
7316           Specification of the location in the table where the new line
7317           should be inserted.  It should be a string like =II-3= meaning
7318           that the new line should become the third line before the
7319           second horizontal separator line.
7321      - ~:kill-buffer~ ::
7323           If the target file was not yet visited when capture was invoked, kill
7324           the buffer again after capture is completed.
7326 **** Template expansion
7327 :PROPERTIES:
7328 :DESCRIPTION: Filling in information about time and context.
7329 :END:
7331 In the template itself, special "%-escapes"[fn:83] allow dynamic
7332 insertion of content.  The templates are expanded in the order given
7333 here:
7335 - ~%[FILE]~ ::
7337      Insert the contents of the file given by {{{var(FILE)}}}.
7339 - ~%(SEXP)~ ::
7341      Evaluate Elisp SEXP and replace with the result.  The
7342      {{{var(SEXP)}}} must return a string.
7344 - ~%<FORMAT>~ ::
7346      The result of format-time-string on the {{{var(FORMAT)}}}
7347      specification.
7349 - ~%t~ ::
7351      Timestamp, date only.
7353 - ~%T~ ::
7355      Timestamp, with date and time.
7357 - ~%u~, ~%U~ ::
7359      Like ~%t~, ~%T~ above, but inactive timestamps.
7361 - ~%i~ ::
7363      Initial content, the region when capture is called while the
7364      region is active.  The entire text will be indented like ~%i~
7365      itself.
7367 - ~%a~ ::
7369      Annotation, normally the link created with ~org-store-link~.
7371 - ~%A~ ::
7373      Like ~%a~, but prompt for the description part.
7375 - ~%l~ ::
7377      Like ~%a~, but only insert the literal link.
7379 - ~%c~ ::
7381      Current kill ring head.
7383 - ~%x~ ::
7385      Content of the X clipboard.
7387 - ~%k~ ::
7389      Title of the currently clocked task.
7391 - ~%K~ ::
7393      Link to the currently clocked task.
7395 - ~%n~ ::
7397      User name (taken from ~user-full-name~).
7399 - ~%f~ ::
7401      File visited by current buffer when org-capture was called.
7403 - ~%F~ ::
7405      Full path of the file or directory visited by current buffer.
7407 - ~%:keyword~ ::
7409      Specific information for certain link types, see below.
7411 - ~%^g~  ::
7413      Prompt for tags, with completion on tags in target file.
7415 - ~%^G~  ::
7417      Prompt for tags, with completion all tags in all agenda files.
7419 - ~%^t~  ::
7421      Like ~%t~, but prompt for date.  Similarly ~%^T~, ~%^u~, ~%^U~.  You may
7422      define a prompt like ~%^{Birthday}t~.
7424 - ~%^C~  ::
7426      Interactive selection of which kill or clip to use.
7428 - ~%^L~  ::
7430      Like ~%^C~, but insert as link.
7432 - ~%^{PROP}p~ ::
7434      Prompt the user for a value for property PROP.
7436 - ~%^{PROMPT}~ ::
7438      Prompt the user for a string and replace this sequence with it.
7439      You may specify a default value and a completion table with
7440      ~%^{prompt|default|completion2|completion3...}~.  The arrow keys
7441      access a prompt-specific history.
7443 - ~%\n~ ::
7445      Insert the text entered at the Nth ~%^{PROMPT}~, where N is
7446      a number, starting from 1.
7448 - ~%?~ ::
7450      After completing the template, position cursor here.
7452 #+texinfo: @noindent
7453 #+vindex: org-store-link-props
7454 For specific link types, the following keywords are defined[fn:84]:
7456 #+vindex: org-from-is-user-regexp
7457 | Link type    | Available keywords                                       |
7458 |--------------+----------------------------------------------------------|
7459 | bbdb         | ~%:name~, ~%:company~                                    |
7460 | irc          | ~%:server~, ~%:port~, ~%:nick~                           |
7461 | mh, rmail    | ~%:type~, ~%:subject~, ~%:message-id~                    |
7462 |              | ~%:from~, ~%:fromname~, ~%:fromaddress~                  |
7463 |              | ~%:to~, ~%:toname~, ~%:toaddress~                        |
7464 |              | ~%:date~ (message date header field)                     |
7465 |              | ~%:date-timestamp~ (date as active timestamp)            |
7466 |              | ~%:date-timestamp-inactive~ (date as inactive timestamp) |
7467 |              | ~%:fromto~ (either "to NAME" or "from NAME")[fn:85]      |
7468 | gnus         | ~%:group~, for messages also all email fields            |
7469 | w3, w3m      | ~%:url~                                                  |
7470 | info         | ~%:file~, ~%:node~                                       |
7471 | calendar     | ~%:date~                                                 |
7472 | org-protocol | ~%:link~, ~%:description~, ~%:annotation~                |
7474 **** Templates in contexts
7475 :PROPERTIES:
7476 :DESCRIPTION: Only show a template in a specific context.
7477 :END:
7479 #+vindex: org-capture-templates-contexts
7480 To control whether a capture template should be accessible from
7481 a specific context, you can customize
7482 ~org-capture-templates-contexts~.  Let's say, for example, that you
7483 have a capture template "p" for storing Gnus emails containing
7484 patches.  Then you would configure this option like this:
7486 #+begin_src emacs-lisp
7487   (setq org-capture-templates-contexts
7488         '(("p" (in-mode . "message-mode"))))
7489 #+end_src
7491 You can also tell that the command key {{{kbd(p)}}} should refer to
7492 another template.  In that case, add this command key like this:
7494 #+begin_src emacs-lisp
7495   (setq org-capture-templates-contexts
7496         '(("p" "q" (in-mode . "message-mode"))))
7497 #+end_src
7499 See the docstring of the variable for more information.
7501 ** Attachments
7502 :PROPERTIES:
7503 :DESCRIPTION: Add files to tasks.
7504 :END:
7505 #+cindex: attachments
7506 #+vindex: org-attach-directory
7508 It is often useful to associate reference material with an outline
7509 node/task.  Small chunks of plain text can simply be stored in the
7510 subtree of a project.  Hyperlinks (see [[*Hyperlinks]]) can establish
7511 associations with files that live elsewhere on your computer or in the
7512 cloud, like emails or source code files belonging to a project.
7513 Another method is /attachments/, which are files located in
7514 a directory belonging to an outline node.  Org uses directories named
7515 by the unique ID of each entry.  These directories are located in the
7516 ~data~ directory which lives in the same directory where your Org file
7517 lives[fn:86].  If you initialize this directory with =git init=, Org
7518 automatically commits changes when it sees them.  The attachment
7519 system has been contributed to Org by John Wiegley.
7521 In cases where it seems better to do so, you can attach a directory of
7522 your choice to an entry.  You can also make children inherit the
7523 attachment directory from a parent, so that an entire subtree uses the
7524 same attached directory.
7526 #+texinfo: @noindent
7527 The following commands deal with attachments:
7529 - {{{kbd(C-c C-a)}}} (~org-attach~) ::
7531      #+kindex: C-c C-a
7532      #+findex: org-attach
7533      The dispatcher for commands related to the attachment system.
7534      After these keys, a list of commands is displayed and you must
7535      press an additional key to select a command:
7537      - {{{kbd(a)}}} (~org-attach-attach~) ::
7539           #+kindex: C-c C-a a
7540           #+findex: org-attach-attach
7541           #+vindex: org-attach-method
7542           Select a file and move it into the task's attachment
7543           directory.  The file is copied, moved, or linked, depending
7544           on ~org-attach-method~.  Note that hard links are not
7545           supported on all systems.
7547      - {{{kbd(c)}}}/{{{kbd(m)}}}/{{{kbd(l)}}} ::
7549           #+kindex: C-c C-a c
7550           #+kindex: C-c C-a m
7551           #+kindex: C-c C-a l
7552           Attach a file using the copy/move/link method.  Note that
7553           hard links are not supported on all systems.
7555      - {{{kbd(n)}}} (~org-attach-new~) ::
7557           #+kindex: C-c C-a n
7558           #+findex: org-attach-new
7559           Create a new attachment as an Emacs buffer.
7561      - {{{kbd(z)}}} (~org-attach-sync~) ::
7563           #+kindex: C-c C-a z
7564           #+findex: org-attach-sync
7565           Synchronize the current task with its attachment directory, in case
7566           you added attachments yourself.
7568      - {{{kbd(o)}}} (~org-attach-open~) ::
7570           #+kindex: C-c C-a o
7571           #+findex: org-attach-open
7572           #+vindex: org-file-apps
7573           Open current task's attachment.  If there is more than one,
7574           prompt for a file name first.  Opening follows the rules set
7575           by ~org-file-apps~.  For more details, see the information
7576           on following hyperlinks (see [[*Handling links]]).
7578      - {{{kbd(O)}}} (~org-attach-open-in-emacs~) ::
7580           #+kindex: C-c C-a O
7581           #+findex: org-attach-open-in-emacs
7582           Also open the attachment, but force opening the file in
7583           Emacs.
7585      - {{{kbd(f)}}} (~org-attach-reveal~) ::
7587           #+kindex: C-c C-a f
7588           #+findex: org-attach-reveal
7589           Open the current task's attachment directory.
7591      - {{{kbd(F)}}} (~org-attach-reveal-in-emacs~) ::
7593           #+kindex: C-c C-a F
7594           #+findex: org-attach-reveal-in-emacs
7595           Also open the directory, but force using Dired in Emacs.
7597      - {{{kbd(d)}}} (~org-attach-delete-one~) ::
7599           #+kindex: C-c C-a d
7600           Select and delete a single attachment.
7602      - {{{kbd(D)}}} (~org-attach-delete-all~) ::
7604           #+kindex: C-c C-a D
7605           Delete all of a task's attachments.  A safer way is to open
7606           the directory in Dired and delete from there.
7608      - {{{kbd(s)}}} (~org-attach-set-directory~) ::
7610           #+kindex: C-c C-a s
7611           #+cindex: ATTACH_DIR, property
7612           Set a specific directory as the entry's attachment
7613           directory.  This works by putting the directory path into
7614           the =ATTACH_DIR= property.
7616      - {{{kbd(i)}}} (~org-attach-set-inherit~) ::
7618           #+kindex: C-c C-a i
7619           #+cindex: ATTACH_DIR_INHERIT, property
7620           Set the =ATTACH_DIR_INHERIT= property, so that children use
7621           the same directory for attachments as the parent does.
7623 #+cindex: attach from Dired
7624 #+findex: org-attach-dired-to-subtree
7625 It is possible to attach files to a subtree from a Dired buffer.  To
7626 use this feature, have one window in Dired mode containing the file(s)
7627 to be attached and another window with point in the subtree that shall
7628 get the attachments.  In the Dired window, with point on a file,
7629 {{{kbd(M-x org-attach-dired-to-subtree)}}} attaches the file to the
7630 subtree using the attachment method set by variable
7631 ~org-attach-method~.  When files are marked in the Dired window then
7632 all marked files get attached.
7634 Add the following lines to the Emacs init file to have {{{kbd(C-c C-x
7635 a)}}} attach files in Dired buffers.
7637 #+begin_src emacs-lisp
7638   (add-hook 'dired-mode-hook
7639             (lambda ()
7640               (define-key dired-mode-map
7641                 (kbd "C-c C-x a")
7642                 #'org-attach-dired-to-subtree))))
7643 #+end_src
7645 The following code shows how to bind the previous command with
7646 a specific attachment method.
7648 #+begin_src emacs-lisp
7649   (add-hook 'dired-mode-hook
7650             (lambda ()
7651               (define-key dired-mode-map (kbd "C-c C-x c")
7652                 (lambda ()
7653                   (interactive)
7654                   (let ((org-attach-method 'cp))
7655                     (call-interactively #'org-attach-dired-to-subtree))))))
7656 #+end_src
7658 ** RSS feeds
7659 :PROPERTIES:
7660 :DESCRIPTION: Getting input from RSS feeds.
7661 :END:
7662 #+cindex: RSS feeds
7663 #+cindex: Atom feeds
7665 Org can add and change entries based on information found in RSS feeds
7666 and Atom feeds.  You could use this to make a task out of each new
7667 podcast in a podcast feed.  Or you could use a phone-based
7668 note-creating service on the web to import tasks into Org.  To access
7669 feeds, configure the variable ~org-feed-alist~.  The docstring of this
7670 variable has detailed information.  With the following
7672 #+begin_src emacs-lisp
7673   (setq org-feed-alist
7674         '(("Slashdot"
7675            "http://rss.slashdot.org/Slashdot/slashdot"
7676            "~/txt/org/feeds.org" "Slashdot Entries")))
7677 #+end_src
7679 #+texinfo: @noindent
7680 new items from the feed provided by =rss.slashdot.org= result in new
7681 entries in the file =~/org/feeds.org= under the heading =Slashdot
7682 Entries=, whenever the following command is used:
7684 - {{{kbd(C-c C-x g)}}} (~org-feed-update-all~) ::
7686      #+kindex: C-c C-x g
7687      Collect items from the feeds configured in ~org-feed-alist~ and
7688      act upon them.
7690 - {{{kbd(C-c C-x G)}}} (~org-feed-goto-inbox~) ::
7692      #+kindex: C-c C-x G
7693      Prompt for a feed name and go to the inbox configured for this feed.
7695 Under the same headline, Org creates a drawer =FEEDSTATUS= in which it
7696 stores information about the status of items in the feed, to avoid
7697 adding the same item several times.
7699 For more information, including how to read atom feeds, see
7700 =org-feed.el= and the docstring of ~org-feed-alist~.
7702 ** Protocols for external access
7703 :PROPERTIES:
7704 :DESCRIPTION: External access to Emacs and Org.
7705 :ALT_TITLE: Protocols
7706 :END:
7707 #+cindex: protocols, for external access
7709 Org protocol is a means to trigger custom actions in Emacs from
7710 external applications.  Any application that supports calling external
7711 programs with an URL as argument may be used with this functionality.
7712 For example, you can configure bookmarks in your web browser to send
7713 a link to the current page to Org and create a note from it using
7714 capture (see [[*Capture]]).  You can also create a bookmark that tells
7715 Emacs to open the local source file of a remote website you are
7716 browsing.
7718 #+cindex: Org protocol, set-up
7719 #+cindex: Installing Org protocol
7720 In order to use Org protocol from an application, you need to register
7721 =org-protocol://= as a valid scheme-handler.  External calls are
7722 passed to Emacs through the =emacsclient= command, so you also need to
7723 ensure an Emacs server is running.  More precisely, when the
7724 application calls
7726 : emacsclient org-protocol://PROTOCOL?key1=val1&key2=val2
7728 #+texinfo: @noindent
7729 Emacs calls the handler associated to {{{var(PROTOCOL)}}} with
7730 argument =(:key1 val1 :key2 val2)=.
7732 #+cindex: protocol, new protocol
7733 #+cindex: defining new protocols
7734 Org protocol comes with three predefined protocols, detailed in the
7735 following sections.  Configure ~org-protocol-protocol-alist~ to define
7736 your own.
7738 *** ~store-link~ protocol
7739 :PROPERTIES:
7740 :DESCRIPTION: Store a link, push URL to kill-ring.
7741 :END:
7742 #+cindex: store-link protocol
7743 #+cindex: protocol, store-link
7745 Using ~store-link~ handler, you can copy links, insertable through
7746 {{{kbd(M-x org-insert-link)}}} or yanking thereafter.  More precisely,
7747 the command
7749 : emacsclient org-protocol://store-link?url=URL&title=TITLE
7751 #+texinfo: @noindent
7752 stores the following link:
7754 : [[URL][TITLE]]
7756 In addition, {{{var(URL)}}} is pushed on the kill-ring for yanking.
7757 You need to encode {{{var(URL)}}} and {{{var(TITLE)}}} if they contain
7758 slashes, and probably quote those for the shell.
7760 To use this feature from a browser, add a bookmark with an arbitrary
7761 name, e.g., =Org: store-link= and enter this as /Location/:
7763 #+begin_example
7764 javascript:location.href='org-protocol://store-link?url='+
7765       encodeURIComponent(location.href);
7766 #+end_example
7768 *** ~capture~ protocol
7769 :PROPERTIES:
7770 :DESCRIPTION: Fill a buffer with external information.
7771 :END:
7772 #+cindex: capture protocol
7773 #+cindex: protocol, capture
7775 Activating "capture" handler pops up a =Capture= buffer and fills the
7776 capture template associated to the =X= key with them.
7778 : emacsclient org-protocol://capture?template=X?url=URL?title=TITLE?body=BODY
7780 To use this feature, add a bookmark with an arbitrary name, e.g.
7781 =Org: capture= and enter this as =Location=:
7783 #+begin_example
7784   javascript:location.href='org-protocol://template=x'+
7785         '&url='+encodeURIComponent(window.location.href)+
7786         '&title='+encodeURIComponent(document.title)+
7787         '&body='+encodeURIComponent(window.getSelection());
7788 #+end_example
7790 #+vindex: org-protocol-default-template-key
7791 The result depends on the capture template used, which is set in the
7792 bookmark itself, as in the example above, or in
7793 ~org-protocol-default-template-key~.
7795 The following template placeholders are available:
7797 #+begin_example
7798   %:link          The URL
7799   %:description   The webpage title
7800   %:annotation    Equivalent to [[%:link][%:description]]
7801   %i              The selected text
7802 #+end_example
7804 *** ~open-source~ protocol
7805 :PROPERTIES:
7806 :DESCRIPTION: Edit published contents.
7807 :END:
7808 #+cindex: open-source protocol
7809 #+cindex: protocol, open-source
7811 The ~open-source~ handler is designed to help with editing local
7812 sources when reading a document.  To that effect, you can use
7813 a bookmark with the following location:
7815 #+begin_example
7816   javascript:location.href='org-protocol://open-source?&url='+
7817         encodeURIComponent(location.href)
7818 #+end_example
7820 #+vindex: org-protocol-project-alist
7821 The variable ~org-protocol-project-alist~ maps URLs to local file
7822 names, by stripping URL parameters from the end and replacing the
7823 ~:base-url~ with ~:working-directory~ and ~:online-suffix~ with
7824 ~:working-suffix~.  For example, assuming you own a local copy of
7825 =https://orgmode.org/worg/= contents at =/home/user/worg=, you can set
7826 ~org-protocol-project-alist~ to the following
7828 #+begin_src emacs-lisp
7829   (setq org-protocol-project-alist
7830         '(("Worg"
7831            :base-url "https://orgmode.org/worg/"
7832            :working-directory "/home/user/worg/"
7833            :online-suffix ".html"
7834            :working-suffix ".org")))
7835 #+end_src
7837 #+texinfo: @noindent
7838 If you are now browsing
7839 =https://orgmode.org/worg/org-contrib/org-protocol.html= and find
7840 a typo or have an idea about how to enhance the documentation, simply
7841 click the bookmark and start editing.
7843 #+cindex: rewritten URL in open-source protocol
7844 #+cindex: protocol, open-source rewritten URL
7845 However, such mapping may not yield the desired results.  Suppose you
7846 maintain an online store located at =http://example.com/=.  The local
7847 sources reside in =/home/user/example/=.  It is common practice to
7848 serve all products in such a store through one file and rewrite URLs
7849 that do not match an existing file on the server.  That way, a request
7850 to =http://example.com/print/posters.html= might be rewritten on the
7851 server to something like
7852 =http://example.com/shop/products.php/posters.html.php=.  The
7853 ~open-source~ handler probably cannot find a file named
7854 =/home/user/example/print/posters.html.php= and fails.
7856 Such an entry in ~org-protocol-project-alist~ may hold an additional
7857 property ~:rewrites~.  This property is a list of cons cells, each of
7858 which maps a regular expression to a path relative to the
7859 ~:working-directory~.
7861 Now map the URL to the path =/home/user/example/products.php= by
7862 adding ~:rewrites~ rules like this:
7864 #+begin_src emacs-lisp
7865   (setq org-protocol-project-alist
7866         '(("example.com"
7867            :base-url "http://example.com/"
7868            :working-directory "/home/user/example/"
7869            :online-suffix ".php"
7870            :working-suffix ".php"
7871            :rewrites (("example.com/print/" . "products.php")
7872                       ("example.com/$" . "index.php")))))
7873 #+end_src
7875 #+texinfo: @noindent
7876 Since =example.com/$= is used as a regular expression, it maps
7877 =http://example.com/=, =https://example.com=,
7878 =http://www.example.com/= and similar to
7879 =/home/user/example/index.php=.
7881 The ~:rewrites~ rules are searched as a last resort if and only if no
7882 existing file name is matched.
7884 #+cindex: protocol, open-source, set-up mapping
7885 #+cindex: mappings in open-source protocol
7886 #+findex: org-protocol-create
7887 #+findex: org-protocol-create-for-org
7888 Two functions can help you filling ~org-protocol-project-alist~ with
7889 valid contents: ~org-protocol-create~ and
7890 ~org-protocol-create-for-org~.  The latter is of use if you're editing
7891 an Org file that is part of a publishing project.
7893 ** Refile and copy
7894 :PROPERTIES:
7895 :DESCRIPTION: Moving/copying a tree from one place to another.
7896 :END:
7897 #+cindex: refiling notes
7898 #+cindex: copying notes
7900 When reviewing the captured data, you may want to refile or to copy
7901 some of the entries into a different list, for example into a project.
7902 Cutting, finding the right location, and then pasting the note is
7903 cumbersome.  To simplify this process, you can use the following
7904 special command:
7906 - {{{kbd(C-c M-w)}}} (~org-copy~) ::
7908      #+kindex: C-c M-w
7909      #+findex: org-copy
7910      Copying works like refiling, except that the original note is not
7911      deleted.
7913 - {{{kbd(C-c C-w)}}} (~org-refile~) ::
7915      #+kindex: C-c C-w
7916      #+findex: org-refile
7917      #+vindex: org-reverse-note-order
7918      #+vindex: org-refile-targets
7919      #+vindex: org-refile-use-outline-path
7920      #+vindex: org-outline-path-complete-in-steps
7921      #+vindex: org-refile-allow-creating-parent-nodes
7922      #+vindex: org-log-refile
7923      Refile the entry or region at point.  This command offers
7924      possible locations for refiling the entry and lets you select one
7925      with completion.  The item (or all items in the region) is filed
7926      below the target heading as a subitem.  Depending on
7927      ~org-reverse-note-order~, it is either the first or last subitem.
7929      By default, all level 1 headlines in the current buffer are
7930      considered to be targets, but you can have more complex
7931      definitions across a number of files.  See the variable
7932      ~org-refile-targets~ for details.  If you would like to select
7933      a location via a file-path-like completion along the outline
7934      path, see the variables ~org-refile-use-outline-path~ and
7935      ~org-outline-path-complete-in-steps~.  If you would like to be
7936      able to create new nodes as new parents for refiling on the fly,
7937      check the variable ~org-refile-allow-creating-parent-nodes~.
7938      When the variable ~org-log-refile~[fn:87] is set, a timestamp or
7939      a note is recorded whenever an entry is refiled.
7941 - {{{kbd(C-u C-c C-w)}}} ::
7943      #+kindex: C-u C-c C-w
7944      Use the refile interface to jump to a heading.
7946 - {{{kbd(C-u C-u C-c C-w)}}} (~org-refile-goto-last-stored~) ::
7948      #+kindex: C-u C-u C-c C-w
7949      #+findex: org-refile-goto-last-stored
7950      Jump to the location where ~org-refile~ last moved a tree to.
7952 - {{{kbd(C-2 C-c C-w)}}} ::
7954      #+kindex: C-2 C-c C-w
7955      Refile as the child of the item currently being clocked.
7957 - {{{kbd(C-3 C-c C-w)}}} ::
7959      #+kindex: C-3 C-c C-w
7960      #+vindex: org-refile-keep
7961      Refile and keep the entry in place.  Also see ~org-refile-keep~
7962      to make this the default behavior, and beware that this may
7963      result in duplicated ~ID~ properties.
7965 - {{{kbd(C-0 C-c C-w)}}} or {{{kbd(C-u C-u C-u C-c C-w)}}} (~org-refile-cache-clear~) ::
7967      #+kindex: C-u C-u C-u C-c C-w
7968      #+kindex: C-0 C-c C-w
7969      #+findex: org-refile-cache-clear
7970      #+vindex: org-refile-use-cache
7971      Clear the target cache.  Caching of refile targets can be turned
7972      on by setting ~org-refile-use-cache~.  To make the command see
7973      new possible targets, you have to clear the cache with this
7974      command.
7976 ** Archiving
7977 :PROPERTIES:
7978 :DESCRIPTION: What to do with finished products.
7979 :END:
7980 #+cindex: archiving
7982 When a project represented by a (sub)tree is finished, you may want to
7983 move the tree out of the way and to stop it from contributing to the
7984 agenda.  Archiving is important to keep your working files compact and
7985 global searches like the construction of agenda views fast.
7987 - {{{kbd(C-c C-x C-a)}}} (~org-archive-subtree-default~) ::
7989      #+kindex: C-c C-x C-a
7990      #+findex: org-archive-subtree-default
7991      #+vindex: org-archive-default-command
7992      Archive the current entry using the command specified in the
7993      variable ~org-archive-default-command~.
7995 *** Moving a tree to an archive file
7996 :PROPERTIES:
7997 :DESCRIPTION: Moving a tree to an archive file.
7998 :ALT_TITLE: Moving subtrees
7999 :END:
8000 #+cindex: external archiving
8002 The most common archiving action is to move a project tree to another
8003 file, the archive file.
8005 - {{{kbd(C-c C-x C-s)}}} or short {{{kbd(C-c $)}}} (~org-archive-subtree~) ::
8007      #+kindex: C-c C-x C-s
8008      #+kindex: C-c $
8009      #+findex: org-archive-subtree
8010      #+vindex: org-archive-location
8011      Archive the subtree starting at the cursor position to the
8012      location given by ~org-archive-location~.
8014 - {{{kbd(C-u C-c C-x C-s)}}} ::
8016      #+kindex: C-u C-c C-x C-s
8017      Check if any direct children of the current headline could be
8018      moved to the archive.  To do this, check each subtree for open
8019      TODO entries.  If none is found, the command offers to move it to
8020      the archive location.  If the cursor is /not/ on a headline when
8021      this command is invoked, check level 1 trees.
8023 - {{{kbd(C-u C-u C-c C-x C-s)}}} ::
8025      #+kindex: C-u C-u C-c C-x C-s
8026      As above, but check subtree for timestamps instead of TODO
8027      entries.  The command offers to archive the subtree if it /does/
8028      contain a timestamp, and that timestamp is in the past.
8030 #+cindex: archive locations
8031 The default archive location is a file in the same directory as the
8032 current file, with the name derived by appending =_archive= to the
8033 current file name.  You can also choose what heading to file archived
8034 items under, with the possibility to add them to a datetree in a file.
8035 For information and examples on how to specify the file and the
8036 heading, see the documentation string of the variable
8037 ~org-archive-location~.
8039 There is also an in-buffer option for setting this variable, for
8040 example:
8042 #+cindex: ARCHIVE, keyword
8043 : #+ARCHIVE: %s_done::
8045 #+texinfo: @noindent
8046 #+cindex: ARCHIVE, property
8047 If you would like to have a special archive location for a single
8048 entry or a (sub)tree, give the entry an =ARCHIVE= property with the
8049 location as the value (see [[*Properties and columns]]).
8051 #+vindex: org-archive-save-context-info
8052 When a subtree is moved, it receives a number of special properties
8053 that record context information like the file from where the entry
8054 came, its outline path the archiving time etc.  Configure the variable
8055 ~org-archive-save-context-info~ to adjust the amount of information
8056 added.
8058 *** Internal archiving
8059 :PROPERTIES:
8060 :DESCRIPTION: Switch off a tree but keep it in the file.
8061 :END:
8063 If you want to just switch off---for agenda views---certain subtrees
8064 without moving them to a different file, you can use the =ARCHIVE=
8065 tag.
8067 A headline that is marked with the =ARCHIVE= tag (see [[*Tags]]) stays at
8068 its location in the outline tree, but behaves in the following way:
8071   #+vindex: org-cycle-open-archived-trees
8072   It does not open when you attempt to do so with a visibility cycling
8073   command (see [[*Visibility cycling]]).  You can force cycling archived
8074   subtrees with {{{kbd(C-TAB)}}}, or by setting the option
8075   ~org-cycle-open-archived-trees~.  Also normal outline commands, like
8076   ~outline-show-all~, open archived subtrees.
8079   #+vindex: org-sparse-tree-open-archived-trees
8080   During sparse tree construction (see [[*Sparse trees]]), matches in
8081   archived subtrees are not exposed, unless you configure the option
8082   ~org-sparse-tree-open-archived-trees~.
8085   #+vindex: org-agenda-skip-archived-trees
8086   During agenda view construction (see [[*Agenda views]]), the content of
8087   archived trees is ignored unless you configure the option
8088   ~org-agenda-skip-archived-trees~, in which case these trees are
8089   always included.  In the agenda you can press {{{kbd(v a)}}} to get
8090   archives temporarily included.
8093   #+vindex: org-export-with-archived-trees
8094   Archived trees are not exported (see [[*Exporting]]), only the headline
8095   is.  Configure the details using the variable
8096   ~org-export-with-archived-trees~.
8099   #+vindex: org-columns-skip-archived-trees
8100   Archived trees are excluded from column view unless the variable
8101   ~org-columns-skip-archived-trees~ is configured to ~nil~.
8103 The following commands help manage the =ARCHIVE= tag:
8105 - {{{kbd(C-c C-x a)}}} (~org-toggle-archive-tag~) ::
8107      #+kindex: C-c C-x a
8108      #+findex: org-toggle-archive-tag
8109      Toggle the archive tag for the current headline.  When the tag is
8110      set, the headline changes to a shadowed face, and the subtree
8111      below it is hidden.
8113 - {{{kbd(C-u C-c C-x a)}}} ::
8115      #+kindex: C-u C-c C-x a
8116      Check if any direct children of the current headline should be
8117      archived.  To do this, check each subtree for open TODO entries.
8118      If none is found, the command offers to set the =ARCHIVE= tag for
8119      the child.  If the cursor is /not/ on a headline when this
8120      command is invoked, check the level 1 trees.
8122 - {{{kbd(C-TAB)}}}, ~org-force-cycle-archived~ ::
8124      #+kindex: C-TAB
8125      Cycle a tree even if it is tagged with =ARCHIVE=.
8127 - {{{kbd(C-c C-x A)}}} (~org-archive-to-archive-sibling~) ::
8129      #+kindex: C-c C-x A
8130      #+findex: org-archive-to-archive-sibling
8131      Move the current entry to the /Archive Sibling/.  This is
8132      a sibling of the entry with the heading =Archive= and the archive
8133      tag.  The entry becomes a child of that sibling and in this way
8134      retains a lot of its original context, including inherited tags
8135      and approximate position in the outline.
8137 * Agenda views
8138 :PROPERTIES:
8139 :DESCRIPTION: Collecting information into views.
8140 :ALT_TITLE: Agenda Views
8141 :END:
8142 #+cindex: agenda views
8144 Due to the way Org works, TODO items, time-stamped items, and tagged
8145 headlines can be scattered throughout a file or even a number of
8146 files.  To get an overview of open action items, or of events that are
8147 important for a particular date, this information must be collected,
8148 sorted and displayed in an organized way.
8150 Org can select items based on various criteria and display them in
8151 a separate buffer.  Seven different view types are provided:
8153 - an /agenda/ that is like a calendar and shows information for
8154   specific dates,
8156 - a /TODO list/ that covers all unfinished action items,
8158 - a /match view/, showings headlines based on the tags, properties,
8159   and TODO state associated with them,
8161 - a /timeline view/ that shows all events in a single Org file, in
8162   time-sorted view,
8164 - a /text search view/ that shows all entries from multiple files that
8165   contain specified keywords,
8167 - a /stuck projects view/ showing projects that currently do not move
8168   along, and
8170 - /custom views/ that are special searches and combinations of
8171   different views.
8173 #+texinfo: @noindent
8174 The extracted information is displayed in a special /agenda buffer/.
8175 This buffer is read-only, but provides commands to visit the
8176 corresponding locations in the original Org files, and even to edit
8177 these files remotely.
8179 #+vindex: org-agenda-skip-comment-trees
8180 #+vindex: org-agenda-skip-archived-trees
8181 #+cindex: commented entries, in agenda views
8182 #+cindex: archived entries, in agenda views
8183 By default, the report ignores commented (see [[*Comment lines]]) and
8184 archived (see [[*Internal archiving]]) entries.  You can override this by
8185 setting ~org-agenda-skip-comment-trees~ and
8186 ~org-agenda-skip-archived-trees~ to ~nil~.
8188 #+vindex: org-agenda-window-setup
8189 #+vindex: org-agenda-restore-windows-after-quit
8190 Two variables control how the agenda buffer is displayed and whether
8191 the window configuration is restored when the agenda exits:
8192 ~org-agenda-window-setup~ and ~org-agenda-restore-windows-after-quit~.
8194 ** Agenda files
8195 :PROPERTIES:
8196 :DESCRIPTION: Files being searched for agenda information.
8197 :END:
8198 #+cindex: agenda files
8199 #+cindex: files for agenda
8201 #+vindex: org-agenda-files
8202 The information to be shown is normally collected from all /agenda
8203 files/, the files listed in the variable ~org-agenda-files~[fn:88].
8204 If a directory is part of this list, all files with the extension
8205 =.org= in this directory are part of the list.
8207 Thus, even if you only work with a single Org file, that file should
8208 be put into the list[fn:89].  You can customize ~org-agenda-files~,
8209 but the easiest way to maintain it is through the following commands
8211 #+attr_texinfo: :sep and
8212 - {{{kbd(C-c [)}}} (~org-agenda-file-to-front~) ::
8214      #+kindex: C-c [
8215      #+findex: org-agenda-file-to-front
8216      #+cindex: files, adding to agenda list
8217      Add current file to the list of agenda files.  The file is added
8218      to the front of the list.  If it was already in the list, it is
8219      moved to the front.  With a prefix argument, file is added/moved
8220      to the end.
8222 - {{{kbd(C-c ])}}} (~org-remove-file~) ::
8224      #+kindex: C-c ]
8225      #+findex: org-remove-file
8226      Remove current file from the list of agenda files.
8228 - {{{kbd(C-')}}} and {{{kbd(C-\,)}}} (~org-cycle-agenda-files~) ::
8230      #+kindex: C-'
8231      #+kindex: C-,
8232      #+findex: org-cycle-agenda-files
8233      #+cindex: cycling, of agenda files
8234      Cycle through agenda file list, visiting one file after the other.
8236 - {{{kbd(M-x org-iswitchb)}}} ::
8238      #+findex: org-iswitchb
8239      Command to use an ~iswitchb~-like interface to switch to and
8240      between Org buffers.
8242 #+texinfo: @noindent
8243 The Org menu contains the current list of files and can be used to
8244 visit any of them.
8246 If you would like to focus the agenda temporarily on a file not in
8247 this list, or on just one file in the list, or even on only a subtree
8248 in a file, then this can be done in different ways.  For a single
8249 agenda command, you may press {{{kbd(<)}}} once or several times in
8250 the dispatcher (see [[*The agenda dispatcher]]).  To restrict the agenda
8251 scope for an extended period, use the following commands:
8253 - {{{kbd(C-c C-x <)}}} (~org-agenda-set-restriction-lock~) ::
8255      #+kindex: C-c C-x <
8256      #+findex: org-agenda-set-restriction-lock
8257      Permanently restrict the agenda to the current subtree.  When
8258      called with a prefix argument, or with the cursor before the
8259      first headline in a file, set the agenda scope to the entire
8260      file.  This restriction remains in effect until removed with
8261      {{{kbd(C-c C-x >)}}}, or by typing either {{{kbd(<)}}} or
8262      {{{kbd(>)}}} in the agenda dispatcher.  If there is a window
8263      displaying an agenda view, the new restriction takes effect
8264      immediately.
8266 - {{{kbd(C-c C-x >)}}} (~org-agenda-remove-restriction-lock~) ::
8268      #+kindex: C-c C-x >
8269      #+findex: org-agenda-remove-restriction-lock
8270      Remove the permanent restriction created by {{{kbd(C-c C-x <)}}}.
8272 #+texinfo: @noindent
8273 When working with =speedbar.el=, you can use the following commands in
8274 the Speedbar frame:
8276 - {{{kbd(<)}}} (~org-speedbar-set-agenda-restriction~) ::
8278      #+findex: org-speedbar-set-agenda-restriction
8279      Permanently restrict the agenda to the item---either an Org file
8280      or a subtree in such a file---at the cursor in the Speedbar
8281      frame.  If there is a window displaying an agenda view, the new
8282      restriction takes effect immediately.
8284 - {{{kbd(>)}}} (~org-agenda-remove-restriction-lock~) ::
8286      #+findex: org-agenda-remove-restriction-lock
8287      Lift the restriction.
8289 ** The agenda dispatcher
8290 :PROPERTIES:
8291 :DESCRIPTION: Keyboard access to agenda views.
8292 :ALT_TITLE: Agenda dispatcher
8293 :END:
8294 #+cindex: agenda dispatcher
8295 #+cindex: dispatching agenda commands
8297 The views are created through a dispatcher, which should be bound to
8298 a global key---for example {{{kbd(C-c a)}}} (see [[*Activation]]).  In
8299 the following we will assume that {{{kbd(C-c a)}}} is indeed how the
8300 dispatcher is accessed and list keyboard access to commands
8301 accordingly.  After pressing {{{kbd(C-c a)}}}, an additional letter is
8302 required to execute a command.  The dispatcher offers the following
8303 default commands:
8305 - {{{kbd(a)}}} ::
8307      #+kindex: C-c a a
8308      Create the calendar-like agenda (see [[*Weekly/daily agenda]]).
8310 - {{{kbd(t)}}} or {{{kbd(T)}}} ::
8312      #+kindex: C-c a t
8313      #+kindex: C-c a T
8314      Create a list of all TODO items (see [[*The global TODO list]]).
8316 - {{{kbd(m)}}} or {{{kbd(M)}}} ::
8318      #+kindex: C-c a m
8319      #+kindex: C-c a M
8320      Create a list of headlines matching a given expression (see
8321      [[*Matching tags and properties]]).
8323 - {{{kbd(s)}}} ::
8325      #+kindex: C-c a s
8326      Create a list of entries selected by a boolean expression of
8327      keywords and/or regular expressions that must or must not occur
8328      in the entry.
8330 - {{{kbd(/)}}} ::
8332      #+kindex: C-c a /
8333      #+vindex: org-agenda-text-search-extra-files
8334      Search for a regular expression in all agenda files and
8335      additionally in the files listed in
8336      ~org-agenda-text-search-extra-files~.  This uses the Emacs
8337      command ~multi-occur~.  A prefix argument can be used to specify
8338      the number of context lines for each match, default is
8339      1.
8341 - {{{kbd(#)}}} or {{{kbd(!)}}} ::
8343      #+kindex: C-c a #
8344      #+kindex: C-c a !
8345      Create a list of stuck projects (see [[*Stuck projects]]).
8347 - {{{kbd(<)}}} ::
8349      #+kindex: C-c a <
8350      Restrict an agenda command to the current buffer[fn:90].  After
8351      pressing {{{kbd(<)}}}, you still need to press the character
8352      selecting the command.
8354 - {{{kbd(< <)}}} ::
8356      #+kindex: C-c a < <
8357      If there is an active region, restrict the following agenda
8358      command to the region.  Otherwise, restrict it to the current
8359      subtree[fn:91].  After pressing {{{kbd(< <)}}}, you still need to
8360      press the character selecting the command.
8362 - {{{kbd(*)}}} ::
8364      #+kindex: C-c a *
8365      #+vindex: org-agenda-sticky
8366      #+findex: org-toggle-sticky-agenda
8367      Toggle sticky agenda views.  By default, Org maintains only
8368      a single agenda buffer and rebuilds it each time you change the
8369      view, to make sure everything is always up to date.  If you
8370      switch between views often and the build time bothers you, you
8371      can turn on sticky agenda buffers (make this the default by
8372      customizing the variable ~org-agenda-sticky~).  With sticky
8373      agendas, the dispatcher only switches to the selected view, you
8374      need to update it by hand with {{{kbd(r)}}} or {{{kbd(g)}}}.  You
8375      can toggle sticky agenda view any time with
8376      ~org-toggle-sticky-agenda~.
8378 You can also define custom commands that are accessible through the
8379 dispatcher, just like the default commands.  This includes the
8380 possibility to create extended agenda buffers that contain several
8381 blocks together, for example the weekly agenda, the global TODO list
8382 and a number of special tags matches.  See [[*Custom agenda views]].
8384 ** The built-in agenda views
8385 :PROPERTIES:
8386 :DESCRIPTION: What is available out of the box?
8387 :ALT_TITLE: Built-in agenda views
8388 :END:
8390 In this section we describe the built-in views.
8392 *** Weekly/daily agenda
8393 :PROPERTIES:
8394 :DESCRIPTION: The calendar page with current tasks.
8395 :END:
8396 #+cindex: agenda
8397 #+cindex: weekly agenda
8398 #+cindex: daily agenda
8400 The purpose of the weekly/daily /agenda/ is to act like a page of
8401 a paper agenda, showing all the tasks for the current week or day.
8403 - {{{kbd(C-c a a)}}} (~org-agenda-list~) ::
8405      #+kindex: C-c a a
8406      #+findex: org-agenda-list
8407      #+cindex: org-agenda, command
8408      Compile an agenda for the current week from a list of Org files.
8409      The agenda shows the entries for each day.  With a numeric
8410      prefix[fn:92] (like {{{kbd(C-u 2 1 C-c a a)}}}) you may set the
8411      number of days to be displayed.
8413 #+vindex: org-agenda-span
8414 #+vindex: org-agenda-start-day
8415 #+vindex: org-agenda-start-on-weekday
8416 The default number of days displayed in the agenda is set by the
8417 variable ~org-agenda-span~.  This variable can be set to any number of
8418 days you want to see by default in the agenda, or to a span name, such
8419 a ~day~, ~week~, ~month~ or ~year~.  For weekly agendas, the default
8420 is to start on the previous Monday (see
8421 ~org-agenda-start-on-weekday~).  You can also set the start date using
8422 a date shift: ~(setq org-agenda-start-day "+10d")~ starts the agenda
8423 ten days from today in the future.
8425 Remote editing from the agenda buffer means, for example, that you can
8426 change the dates of deadlines and appointments from the agenda buffer.
8427 The commands available in the Agenda buffer are listed in [[*Commands
8428 in the agenda buffer]].
8430 **** Calendar/Diary integration
8431 :PROPERTIES:
8432 :UNNUMBERED: notoc
8433 :END:
8434 #+cindex: calendar integration
8435 #+cindex: diary integration
8437 Emacs contains the calendar and diary by Edward M. Reingold.  The
8438 calendar displays a three-month calendar with holidays from different
8439 countries and cultures.  The diary allows you to keep track of
8440 anniversaries, lunar phases, sunrise/set, recurrent appointments
8441 (weekly, monthly) and more.  In this way, it is quite complementary to
8442 Org.  It can be very useful to combine output from Org with the diary.
8444 In order to include entries from the Emacs diary into Org mode's
8445 agenda, you only need to customize the variable
8447 #+begin_src emacs-lisp
8448   (setq org-agenda-include-diary t)
8449 #+end_src
8451 #+texinfo: @noindent
8452 After that, everything happens automatically.  All diary entries
8453 including holidays, anniversaries, etc., are included in the agenda
8454 buffer created by Org mode.  {{{kbd(SPC)}}}, {{{kbd(TAB)}}}, and
8455 {{{kbd(RET)}}} can be used from the agenda buffer to jump to the diary
8456 file in order to edit existing diary entries.  The {{{kbd(i)}}}
8457 command to insert new entries for the current date works in the agenda
8458 buffer, as well as the commands {{{kbd(S)}}}, {{{kbd(M)}}}, and
8459 {{{kbd(C)}}} to display Sunrise/Sunset times, show lunar phases and to
8460 convert to other calendars, respectively.  {{{kbd(c)}}} can be used to
8461 switch back and forth between calendar and agenda.
8463 If you are using the diary only for S-exp entries and holidays, it is
8464 faster to not use the above setting, but instead to copy or even move
8465 the entries into an Org file.  Org mode evaluates diary-style sexp
8466 entries, and does it faster because there is no overhead for first
8467 creating the diary display.  Note that the sexp entries must start at
8468 the left margin, no whitespace is allowed before them, as seen in the
8469 following segment of an Org file:[fn:93]
8471 #+begin_example
8472   ,* Holidays
8473     :PROPERTIES:
8474     :CATEGORY: Holiday
8475     :END:
8476   %%(org-calendar-holiday)   ; special function for holiday names
8478   ,* Birthdays
8479     :PROPERTIES:
8480     :CATEGORY: Ann
8481     :END:
8482   %%(org-anniversary 1956  5 14) Arthur Dent is %d years old
8483   %%(org-anniversary 1869 10  2) Mahatma Gandhi would be %d years old
8484 #+end_example
8486 **** Anniversaries from BBDB
8487 :PROPERTIES:
8488 :UNNUMBERED: notoc
8489 :END:
8490 #+cindex: BBDB, anniversaries
8491 #+cindex: anniversaries, from BBDB
8493 #+findex: org-bbdb-anniversaries
8494 If you are using the Insidious Big Brother Database to store your
8495 contacts, you very likely prefer to store anniversaries in BBDB rather
8496 than in a separate Org or diary file.  Org supports this and can show
8497 BBDB anniversaries as part of the agenda.  All you need to do is to
8498 add the following to one of your agenda files:
8500 #+begin_example
8501   ,* Anniversaries
8502     :PROPERTIES:
8503     :CATEGORY: Anniv
8504     :END:
8505   %%(org-bbdb-anniversaries)
8506 #+end_example
8508 You can then go ahead and define anniversaries for a BBDB record.
8509 Basically, you need to press {{{kbd(C-o anniversary RET)}}} with the
8510 cursor in a BBDB record and then add the date in the format
8511 =YYYY-MM-DD= or =MM-DD=, followed by a space and the class of the
8512 anniversary (=birthday=, =wedding=, or a format string).  If you omit
8513 the class, it defaults to =birthday=.  Here are a few examples, the
8514 header for the file =org-bbdb.el= contains more detailed information.
8516 #+begin_example
8517   1973-06-22
8518   06-22
8519   1955-08-02 wedding
8520   2008-04-14 %s released version 6.01 of Org mode, %d years ago
8521 #+end_example
8523 After a change to BBDB, or for the first agenda display during an
8524 Emacs session, the agenda display suffers a short delay as Org updates
8525 its hash with anniversaries.  However, from then on things will be
8526 very fast, much faster in fact than a long list of
8527 =%%(diary-anniversary)= entries in an Org or Diary file.
8529 #+findex: org-bbdb-anniversaries-future
8530 If you would like to see upcoming anniversaries with a bit of
8531 forewarning, you can use the following instead:
8533 #+begin_example
8534   ,* Anniversaries
8535     :PROPERTIES:
8536     :CATEGORY: Anniv
8537     :END:
8538   %%(org-bbdb-anniversaries-future 3)
8539 #+end_example
8541 That will give you three days' warning: on the anniversary date itself
8542 and the two days prior.  The argument is optional: if omitted, it
8543 defaults to 7.
8545 **** Appointment reminders
8546 :PROPERTIES:
8547 :UNNUMBERED: notoc
8548 :END:
8549 #+cindex: @file{appt.el}
8550 #+cindex: appointment reminders
8551 #+cindex: appointment
8552 #+cindex: reminders
8554 #+cindex: APPT_WARNTIME, keyword
8555 Org can interact with Emacs appointments notification facility.  To
8556 add the appointments of your agenda files, use the command
8557 ~org-agenda-to-appt~.  This command lets you filter through the list
8558 of your appointments and add only those belonging to a specific
8559 category or matching a regular expression.  It also reads
8560 a =APPT_WARNTIME= property which overrides the value of
8561 ~appt-message-warning-time~ for this appointment.  See the docstring
8562 for details.
8564 *** The global TODO list
8565 :PROPERTIES:
8566 :DESCRIPTION: All unfinished action items.
8567 :ALT_TITLE: Global TODO list
8568 :END:
8569 #+cindex: global TODO list
8570 #+cindex: TODO list, global
8572 The global TODO list contains all unfinished TODO items formatted and
8573 collected into a single place.
8575 - {{{kbd(C-c a t)}}} (~org-todo-list~) ::
8577      #+kindex: C-c a t
8578      #+findex: org-todo-list
8579      Show the global TODO list.  This collects the TODO items from all
8580      agenda files (see [[*Agenda views]]) into a single buffer.  By
8581      default, this lists items with a state the is not a DONE state.
8582      The buffer is in ~agenda-mode~, so there are commands to examine
8583      and manipulate the TODO entries directly from that buffer (see
8584      [[*Commands in the agenda buffer]]).
8586 - {{{kbd(C-c a T)}}} (~org-todo-list~) ::
8588      #+kindex: C-c a T
8589      #+findex: org-todo-list
8590      #+cindex: TODO keyword matching
8591      #+vindex: org-todo-keywords
8592      Like the above, but allows selection of a specific TODO keyword.
8593      You can also do this by specifying a prefix argument to
8594      {{{kbd(C-c a t)}}}.  You are prompted for a keyword, and you may
8595      also specify several keywords by separating them with =|= as the
8596      boolean OR operator.  With a numeric prefix, the Nth keyword in
8597      ~org-todo-keywords~ is selected.
8599      #+kindex: r
8600      The {{{kbd(r)}}} key in the agenda buffer regenerates it, and you
8601      can give a prefix argument to this command to change the selected
8602      TODO keyword, for example {{{kbd(3 r)}}}.  If you often need
8603      a search for a specific keyword, define a custom command for it
8604      (see [[*The agenda dispatcher]]).
8606      Matching specific TODO keywords can also be done as part of
8607      a tags search (see [[*Tag searches]]).
8609 Remote editing of TODO items means that you can change the state of
8610 a TODO entry with a single key press.  The commands available in the
8611 TODO list are described in [[*Commands in the agenda buffer]].
8613 #+cindex: sublevels, inclusion into TODO list
8614 Normally the global TODO list simply shows all headlines with TODO
8615 keywords.  This list can become very long.  There are two ways to keep
8616 it more compact:
8619   #+vindex: org-agenda-todo-ignore-scheduled
8620   #+vindex: org-agenda-todo-ignore-deadlines
8621   #+vindex: org-agenda-todo-ignore-timestamp
8622   #+vindex: org-agenda-todo-ignore-with-date
8623   Some people view a TODO item that has been /scheduled/ for execution
8624   or have a /deadline/ (see [[*Timestamps, deadlines, and scheduling]]) as
8625   no longer /open/.  Configure the variables
8626   ~org-agenda-todo-ignore-scheduled~,
8627   ~org-agenda-todo-ignore-deadlines~,
8628   ~org-agenda-todo-ignore-timestamp~ and/or
8629   ~org-agenda-todo-ignore-with-date~ to exclude such items from the
8630   global TODO list.
8633   #+vindex: org-agenda-todo-list-sublevels
8634   TODO items may have sublevels to break up the task into subtasks.
8635   In such cases it may be enough to list only the highest level TODO
8636   headline and omit the sublevels from the global list.  Configure the
8637   variable ~org-agenda-todo-list-sublevels~ to get this behavior.
8639 *** Matching tags and properties
8640 :PROPERTIES:
8641 :DESCRIPTION: Structured information with fine-tuned search.
8642 :END:
8643 #+cindex: matching, of tags
8644 #+cindex: matching, of properties
8645 #+cindex: tags view
8646 #+cindex: match view
8648 If headlines in the agenda files are marked with /tags/ (see [[*Tags]]),
8649 or have properties (see [[*Properties and columns]]), you can select
8650 headlines based on this metadata and collect them into an agenda
8651 buffer.  The match syntax described here also applies when creating
8652 sparse trees with {{{kbd(C-c / m)}}}.
8654 - {{{kbd(C-c a m)}}} (~org-tags-view~) ::
8656      #+kindex: C-c a m
8657      #+findex: org-tags-view
8658      Produce a list of all headlines that match a given set of tags.
8659      The command prompts for a selection criterion, which is a boolean
8660      logic expression with tags, like =+work+urgent-withboss= or
8661      =work|home= (see [[*Tags]]).  If you often need a specific search,
8662      define a custom command for it (see [[*The agenda dispatcher]]).
8664 - {{{kbd(C-c a M)}}} (~org-tags-view~) ::
8666      #+kindex: C-c a M
8667      #+findex: org-tags-view
8668      #+vindex: org-tags-match-list-sublevels
8669      #+vindex: org-agenda-tags-todo-honor-ignore-options
8670      Like {{{kbd(C-c a m)}}}, but only select headlines that are also
8671      TODO items and force checking subitems (see the variable
8672      ~org-tags-match-list-sublevels~).  To exclude scheduled/deadline
8673      items, see the variable
8674      ~org-agenda-tags-todo-honor-ignore-options~.  Matching specific
8675      TODO keywords together with a tags match is also possible, see
8676      [[*Tag searches]].
8678 The commands available in the tags list are described in [[*Commands
8679 in the agenda buffer]].
8681 #+cindex: boolean logic, for agenda searches
8682 A search string can use Boolean operators =&= for AND and =|= for OR.
8683 =&= binds more strongly than =|=.  Parentheses are currently not
8684 implemented.  Each element in the search is either a tag, a regular
8685 expression matching tags, or an expression like =PROPERTY OPERATOR
8686 VALUE= with a comparison operator, accessing a property value.  Each
8687 element may be preceded by =-= to select against it, and =+= is
8688 syntactic sugar for positive selection.  The AND operator =&= is
8689 optional when =+= or =-= is present.  Here are some examples, using
8690 only tags.
8692 - ~+work-boss~ ::
8694      Select headlines tagged =work=, but discard those also tagged
8695      =boss=.
8697 - ~work|laptop~ ::
8699      Selects lines tagged =work= or =laptop=.
8701 - ~work|laptop+night~ ::
8703      Like before, but require the =laptop= lines to be tagged
8704      also =night=.
8706 #+cindex: regular expressions, with tags search
8707 Instead of a tag, you may also specify a regular expression enclosed
8708 in curly braces.  For example, =work+{^boss.*}= matches headlines that
8709 contain the tag =:work:= and any tag /starting/ with =boss=.
8711 #+cindex: group tags, as regular expressions
8712 Group tags (see [[*Tag hierarchy]]) are expanded as regular expressions.
8713 E.g., if =work= is a group tag for the group =:work:lab:conf:=, then
8714 searching for =work= also searches for ={\(?:work\|lab\|conf\)}= and
8715 searching for =-work= searches for all headlines but those with one of
8716 the tags in the group (i.e., =-{\(?:work\|lab\|conf\)}=).
8718 #+cindex: TODO keyword matching, with tags search
8719 #+cindex: level, for tags/property match
8720 #+cindex: category, for tags/property match
8721 #+vindex: org-odd-levels-only
8722 You may also test for properties (see [[*Properties and columns]]) at the
8723 same time as matching tags.  The properties may be real properties, or
8724 special properties that represent other metadata (see [[*Special
8725 properties]]).  For example, the property =TODO= represents the TODO
8726 keyword of the entry.  Or, the property =LEVEL= represents the level
8727 of an entry.  So searching =+LEVEL=3+boss-TODO​="DONE"= lists all level
8728 three headlines that have the tag =boss= and are /not/ marked with the
8729 TODO keyword =DONE=.  In buffers with ~org-odd-levels-only~ set,
8730 =LEVEL= does not count the number of stars, but =LEVEL=2= corresponds
8731 to 3 stars etc.
8733 Here are more examples:
8735 - =work+TODO​="WAITING"= ::
8737      Select =work=-tagged TODO lines with the specific TODO keyword
8738      =WAITING=.
8740 - =work+TODO​="WAITING"|home+TODO​="WAITING"= ::
8742      Waiting tasks both at work and at home.
8744 When matching properties, a number of different operators can be used
8745 to test the value of a property.  Here is a complex example:
8747 #+begin_example
8748   +work-boss+PRIORITY="A"+Coffee="unlimited"+Effort<2
8749            +With={Sarah|Denny}+SCHEDULED>="<2008-10-11>"
8750 #+end_example
8752 #+texinfo: @noindent
8753 The type of comparison depends on how the comparison value is written:
8755 - If the comparison value is a plain number, a numerical comparison is
8756   done, and the allowed operators are =<=, ===, =>=, =<==, =>==, and
8757   =<>=.
8759 - If the comparison value is enclosed in double-quotes, a string
8760   comparison is done, and the same operators are allowed.
8762 - If the comparison value is enclosed in double-quotes /and/ angular
8763   brackets (like =DEADLINE<​="<2008-12-24 18:30>"=), both values are
8764   assumed to be date/time specifications in the standard Org way, and
8765   the comparison is done accordingly.  Valid values also include
8766   ="<now>"= for now (including time), ="<today>"=, and ="<tomorrow>"=
8767   for these days at 0:00 hours, i.e., without a time specification.
8768   You can also use strings like ="<+5d>"= or ="<-2m>"= with units =d=,
8769   =w=, =m=, and =y= for day, week, month, and year, respectively.
8771 - If the comparison value is enclosed in curly braces, a regexp match
8772   is performed, with === meaning that the regexp matches the property
8773   value, and =<>= meaning that it does not match.
8775 So the search string in the example finds entries tagged =work= but
8776 not =boss=, which also have a priority value =A=, a =Coffee= property
8777 with the value =unlimited=, an =EFFORT= property that is numerically
8778 smaller than 2, a =With= property that is matched by the regular
8779 expression =Sarah|Denny=, and that are scheduled on or after October
8780 11, 2008.
8782 You can configure Org mode to use property inheritance during
8783 a search, but beware that this can slow down searches considerably.
8784 See [[*Property inheritance]], for details.
8786 For backward compatibility, and also for typing speed, there is also
8787 a different way to test TODO states in a search.  For this, terminate
8788 the tags/property part of the search string (which may include several
8789 terms connected with =|=) with a =/= and then specify a Boolean
8790 expression just for TODO keywords.  The syntax is then similar to that
8791 for tags, but should be applied with care: for example, a positive
8792 selection on several TODO keywords cannot meaningfully be combined
8793 with boolean AND.  However, /negative selection/ combined with AND can
8794 be meaningful.  To make sure that only lines are checked that actually
8795 have any TODO keyword (resulting in a speed-up), use {{{kbd(C-c
8796 a M)}}}, or equivalently start the TODO part after the slash with =!=.
8797 Using {{{kbd(C-c a M)}}} or =/!= does not match TODO keywords in
8798 a DONE state.  Examples:
8800 - =work/WAITING= ::
8802      Same as =work+TODO​="WAITING"=.
8804 - =work/!-WAITING-NEXT= ::
8806      Select =work=-tagged TODO lines that are neither =WAITING= nor
8807      =NEXT=.
8809 - =work/!+WAITING|+NEXT= ::
8811      Select =work=-tagged TODO lines that are either =WAITING= or
8812      =NEXT=.
8814 *** Search view
8815 :PROPERTIES:
8816 :DESCRIPTION: Find entries by searching for text.
8817 :END:
8818 #+cindex: search view
8819 #+cindex: text search
8820 #+cindex: searching, for text
8822 This agenda view is a general text search facility for Org mode
8823 entries.  It is particularly useful to find notes.
8825 - {{{kbd(C-c a s)}}} (~org-search-view~) ::
8827      #+kindex: C-c a s
8828      #+findex: org-search-view
8829      This is a special search that lets you select entries by matching
8830      a substring or specific words using a boolean logic.
8832 For example, the search string =computer equipment= matches entries
8833 that contain =computer equipment= as a substring, even if the two
8834 words are separated by more space or a line break.
8836 Search view can also search for specific keywords in the entry, using
8837 Boolean logic.  The search string =+computer
8838 +wifi -ethernet -{8\.11[bg]}= matches note entries that contain the
8839 keywords =computer= and =wifi=, but not the keyword =ethernet=, and
8840 which are also not matched by the regular expression =8\.11[bg]=,
8841 meaning to exclude both =8.11b= and =8.11g=.  The first =+= is
8842 necessary to turn on boolean search, other =+= characters are
8843 optional.  For more details, see the docstring of the command
8844 ~org-search-view~.
8846 You can incrementally adjust a boolean search with the following keys
8848 #+attr_texinfo: :columns 0.1 0.6
8849 | {{{kbd([)}}} | Add a positive search word        |
8850 | {{{kbd(])}}} | Add a negative search word        |
8851 | {{{kbd({)}}} | Add a positive regular expression |
8852 | {{{kbd(})}}} | Add a negative regular expression |
8854 #+vindex: org-agenda-text-search-extra-files
8855 Note that in addition to the agenda files, this command also searches
8856 the files listed in ~org-agenda-text-search-extra-files~.
8858 *** Stuck projects
8859 :PROPERTIES:
8860 :DESCRIPTION: Find projects you need to review.
8861 :END:
8862 #+pindex: GTD, Getting Things Done
8864 If you are following a system like David Allen's GTD to organize your
8865 work, one of the "duties" you have is a regular review to make sure
8866 that all projects move along.  A /stuck/ project is a project that has
8867 no defined next actions, so it never shows up in the TODO lists Org
8868 mode produces.  During the review, you need to identify such projects
8869 and define next actions for them.
8871 - {{{kbd(C-c a #)}}} (~org-agenda-list-stuck-projects~) ::
8873      #+kindex: C-c a #
8874      #+findex: org-agenda-list-stuck-projects
8875      List projects that are stuck.
8877 - {{{kbd(C-c a !)}}} ::
8879      #+kindex: C-c a !
8880      #+vindex: org-stuck-projects
8881      Customize the variable ~org-stuck-projects~ to define what
8882      a stuck project is and how to find it.
8884 You almost certainly need to configure this view before it works for
8885 you.  The built-in default assumes that all your projects are level-2
8886 headlines, and that a project is not stuck if it has at least one
8887 entry marked with a TODO keyword =TODO= or =NEXT= or =NEXTACTION=.
8889 Let's assume that you, in your own way of using Org mode, identify
8890 projects with a tag =:PROJECT:=, and that you use a TODO keyword
8891 =MAYBE= to indicate a project that should not be considered yet.
8892 Let's further assume that the TODO keyword =DONE= marks finished
8893 projects, and that =NEXT= and =TODO= indicate next actions.  The tag
8894 =:@shop:= indicates shopping and is a next action even without the
8895 NEXT tag.  Finally, if the project contains the special word =IGNORE=
8896 anywhere, it should not be listed either.  In this case you would
8897 start by identifying eligible projects with a tags/TODO match (see
8898 [[*Tag searches]]) =+PROJECT/-MAYBE-DONE=, and then check for =TODO=,
8899 =NEXT=, =@shop=, and =IGNORE= in the subtree to identify projects that
8900 are not stuck.  The correct customization for this is:
8902 #+begin_src emacs-lisp
8903   (setq org-stuck-projects
8904         '("+PROJECT/-MAYBE-DONE" ("NEXT" "TODO") ("@shop")
8905           "\\<IGNORE\\>"))
8906 #+end_src
8908 Note that if a project is identified as non-stuck, the subtree of this
8909 entry is searched for stuck projects.
8911 ** Presentation and sorting
8912 :PROPERTIES:
8913 :DESCRIPTION: How agenda items are prepared for display.
8914 :END:
8915 #+cindex: presentation, of agenda items
8917 #+vindex: org-agenda-prefix-format
8918 #+vindex: org-agenda-tags-column
8919 Before displaying items in an agenda view, Org mode visually prepares
8920 the items and sorts them.  Each item occupies a single line.  The line
8921 starts with a /prefix/ that contains the /category/ (see [[*Categories]])
8922 of the item and other important information.  You can customize in
8923 which column tags are displayed through ~org-agenda-tags-column~.  You
8924 can also customize the prefix using the option
8925 ~org-agenda-prefix-format~.  This prefix is followed by a cleaned-up
8926 version of the outline headline associated with the item.
8928 *** Categories
8929 :PROPERTIES:
8930 :DESCRIPTION: Not all tasks are equal.
8931 :END:
8932 #+cindex: category
8933 #+cindex: CATEGORY, keyword
8935 The category is a broad label assigned to each agenda item.  By
8936 default, the category is simply derived from the file name, but you
8937 can also specify it with a special line in the buffer, like
8938 this:
8940 : #+CATEGORY: Thesis
8942 #+texinfo: @noindent
8943 #+cindex: CATEGORY, property
8944 If you would like to have a special category for a single entry or
8945 a (sub)tree, give the entry a =CATEGORY= property with the special
8946 category you want to apply as the value.
8948 #+texinfo: @noindent
8949 The display in the agenda buffer looks best if the category is not
8950 longer than 10 characters.
8952 #+texinfo: @noindent
8953 #+vindex: org-agenda-category-icon-alist
8954 You can set up icons for category by customizing the
8955 ~org-agenda-category-icon-alist~ variable.
8957 *** Time-of-day specifications
8958 :PROPERTIES:
8959 :DESCRIPTION: How the agenda knows the time.
8960 :END:
8961 #+cindex: time-of-day specification
8963 Org mode checks each agenda item for a time-of-day specification.  The
8964 time can be part of the timestamp that triggered inclusion into the
8965 agenda, for example
8967 : <2005-05-10 Tue 19:00>
8969 #+texinfo: @noindent
8970 Time ranges can be specified with two timestamps:
8972 : <2005-05-10 Tue 20:30>--<2005-05-10 Tue 22:15>
8974 In the headline of the entry itself, a time(range) may also appear as
8975 plain text (like =12:45= or a =8:30-1pm=).  If the agenda integrates
8976 the Emacs diary (see [[*Weekly/daily agenda]]), time specifications in
8977 diary entries are recognized as well.
8979 For agenda display, Org mode extracts the time and displays it in
8980 a standard 24 hour format as part of the prefix.  The example times in
8981 the previous paragraphs would end up in the agenda like this:
8983 #+begin_example
8984    8:30-13:00 Arthur Dent lies in front of the bulldozer
8985   12:45...... Ford Prefect arrives and takes Arthur to the pub
8986   19:00...... The Vogon reads his poem
8987   20:30-22:15 Marvin escorts the Hitchhikers to the bridge
8988 #+end_example
8990 #+cindex: time grid
8991 If the agenda is in single-day mode, or for the display of today, the
8992 timed entries are embedded in a time grid, like
8994 #+begin_example
8995    8:00...... ------------------
8996    8:30-13:00 Arthur Dent lies in front of the bulldozer
8997   10:00...... ------------------
8998   12:00...... ------------------
8999   12:45...... Ford Prefect arrives and takes Arthur to the pub
9000   14:00...... ------------------
9001   16:00...... ------------------
9002   18:00...... ------------------
9003   19:00...... The Vogon reads his poem
9004   20:00...... ------------------
9005   20:30-22:15 Marvin escorts the Hitchhikers to the bridge
9006 #+end_example
9008 #+vindex: org-agenda-use-time-grid
9009 #+vindex: org-agenda-time-grid
9010 The time grid can be turned on and off with the variable
9011 ~org-agenda-use-time-grid~, and can be configured with
9012 ~org-agenda-time-grid~.
9014 *** Sorting of agenda items
9015 :PROPERTIES:
9016 :DESCRIPTION: The order of things.
9017 :END:
9018 #+cindex: sorting, of agenda items
9019 #+cindex: priorities, of agenda items
9021 Before being inserted into a view, the items are sorted.  How this is
9022 done depends on the type of view.
9025   #+vindex: org-agenda-files
9026   For the daily/weekly agenda, the items for each day are sorted.  The
9027   default order is to first collect all items containing an explicit
9028   time-of-day specification.  These entries are shown at the beginning
9029   of the list, as a /schedule/ for the day.  After that, items remain
9030   grouped in categories, in the sequence given by ~org-agenda-files~.
9031   Within each category, items are sorted by priority (see
9032   [[*Priorities]]), which is composed of the base priority (2000 for
9033   priority =A=, 1000 for =B=, and 0 for =C=), plus additional
9034   increments for overdue scheduled or deadline items.
9036 - For the TODO list, items remain in the order of categories, but
9037   within each category, sorting takes place according to priority (see
9038   [[*Priorities]]).  The priority used for sorting derives from the
9039   priority cookie, with additions depending on how close an item is to
9040   its due or scheduled date.
9042 - For tags matches, items are not sorted at all, but just appear in
9043   the sequence in which they are found in the agenda files.
9045 #+vindex: org-agenda-sorting-strategy
9046 Sorting can be customized using the variable
9047 ~org-agenda-sorting-strategy~, and may also include criteria based on
9048 the estimated effort of an entry (see [[*Effort estimates]]).
9050 *** Filtering/limiting agenda times
9051 :PROPERTIES:
9052 :DESCRIPTION: Dynamically narrow the agenda.
9053 :END:
9055 Agenda built-in or customized commands are statically defined.  Agenda
9056 filters and limits provide two ways of dynamically narrowing down the
9057 list of agenda entries: /filters/ and /limits/.  Filters only act on
9058 the display of the items, while limits take effect before the list of
9059 agenda entries is built.  Filters are more often used interactively,
9060 while limits are mostly useful when defined as local variables within
9061 custom agenda commands.
9063 **** Filtering in the agenda
9064 :PROPERTIES:
9065 :UNNUMBERED: notoc
9066 :END:
9067 #+cindex: agenda filtering
9068 #+cindex: filtering entries, in agenda
9069 #+cindex: tag filtering, in agenda
9070 #+cindex: category filtering, in agenda
9071 #+cindex: top headline filtering, in agenda
9072 #+cindex: effort filtering, in agenda
9073 #+cindex: query editing, in agenda
9075 - {{{kbd(/)}}} (~org-agenda-filter-by-tag~) ::
9077      #+findex: org-agenda-filter-by-tag
9078      #+vindex: org-agenda-tag-filter-preset
9079      Filter the agenda view with respect to a tag and/or effort
9080      estimates.  The difference between this and a custom agenda
9081      command is that filtering is very fast, so that you can switch
9082      quickly between different filters without having to recreate the
9083      agenda.[fn:94]
9085      You are prompted for a tag selection letter; {{{kbd(SPC)}}} means
9086      any tag at all.  Pressing {{{kbd(TAB)}}} at that prompt offers
9087      completion to select a tag, including any tags that do not have
9088      a selection character.  The command then hides all entries that
9089      do not contain or inherit this tag.  When called with prefix
9090      argument, remove the entries that /do/ have the tag.  A second
9091      {{{kbd(/)}}} at the prompt turns off the filter and shows any
9092      hidden entries.  Pressing {{{kbd(+)}}} or {{{kbd(-)}}} switches
9093      between filtering and excluding the next tag.
9095      #+vindex: org-agenda-auto-exclude-function
9096      Org also supports automatic, context-aware tag filtering.  If the
9097      variable ~org-agenda-auto-exclude-function~ is set to
9098      a user-defined function, that function can decide which tags
9099      should be excluded from the agenda automatically.  Once this is
9100      set, the {{{kbd(/)}}} command then accepts {{{kbd(RET)}}} as
9101      a sub-option key and runs the auto exclusion logic.  For example,
9102      let's say you use a =Net= tag to identify tasks which need
9103      network access, an =Errand= tag for errands in town, and a =Call=
9104      tag for making phone calls.  You could auto-exclude these tags
9105      based on the availability of the Internet, and outside of
9106      business hours, with something like this:
9108      #+begin_src emacs-lisp
9109        (defun org-my-auto-exclude-function (tag)
9110          (and (cond
9111                ((string= tag "Net")
9112                 (/= 0 (call-process "/sbin/ping" nil nil nil
9113                                     "-c1" "-q" "-t1" "mail.gnu.org")))
9114                ((or (string= tag "Errand") (string= tag "Call"))
9115                 (let ((hour (nth 2 (decode-time))))
9116                   (or (< hour 8) (> hour 21)))))
9117               (concat "-" tag)))
9119        (setq org-agenda-auto-exclude-function 'org-my-auto-exclude-function)
9120      #+end_src
9122 - {{{kbd(<)}}} (~org-agenda-filter-by-category~) ::
9124      #+findex: org-agenda-filter-by-category
9125      Filter the current agenda view with respect to the category of
9126      the item at point.  Pressing {{{kbd(<)}}} another time removes
9127      this filter.  When called with a prefix argument exclude the
9128      category of the item at point from the agenda.
9130      #+vindex: org-agenda-category-filter-preset
9131      You can add a filter preset in custom agenda commands through the
9132      option ~org-agenda-category-filter-preset~.  See [[*Setting options
9133      for custom commands]].
9135 - {{{kbd(^)}}} (~org-agenda-filter-by-top-headline~) ::
9137      #+findex: org-agenda-filter-by-top-headline
9138      Filter the current agenda view and only display the siblings and
9139      the parent headline of the one at point.
9141 - {{{kbd(=)}}} (~org-agenda-filter-by-regexp~) ::
9143      #+findex: org-agenda-filter-by-regexp
9144      Filter the agenda view by a regular expression: only show agenda
9145      entries matching the regular expression the user entered.  When
9146      called with a prefix argument, it filters /out/ entries matching
9147      the regexp.  With two universal prefix arguments, it removes all
9148      the regexp filters, which can be accumulated.
9150      #+vindex: org-agenda-regexp-filter-preset
9151      You can add a filter preset in custom agenda commands through the
9152      option ~org-agenda-regexp-filter-preset~.  See [[*Setting options
9153      for custom commands]].
9155 - {{{kbd(_)}}} (~org-agenda-filter-by-effort~) ::
9157      #+findex: org-agenda-filter-by-effort
9158      Filter the agenda view with respect to effort estimates.  You
9159      first need to set up allowed efforts globally, for example
9161      #+begin_src emacs-lisp
9162        (setq org-global-properties
9163              '(("Effort_ALL". "0 0:10 0:30 1:00 2:00 3:00 4:00")))
9164      #+end_src
9166      #+vindex: org-sort-agenda-noeffort-is-high
9167      You can then filter for an effort by first typing an operator,
9168      one of {{{kbd(<)}}}, {{{kbd(>)}}} and {{{kbd(=)}}}, and then the
9169      one-digit index of an effort estimate in your array of allowed
9170      values, where {{{kbd(0)}}} means the 10th value.  The filter then
9171      restricts to entries with effort smaller-or-equal, equal, or
9172      larger-or-equal than the selected value.  For application of the
9173      operator, entries without a defined effort are treated according
9174      to the value of ~org-sort-agenda-noeffort-is-high~.
9176      When called with a prefix argument, it removes entries matching
9177      the condition.  With two universal prefix arguments, it clears
9178      effort filters, which can be accumulated.
9180      #+vindex: org-agenda-effort-filter-preset
9181      You can add a filter preset in custom agenda commands through the
9182      option ~org-agenda-effort-filter-preset~.  See [[*Setting options
9183      for custom commands]].
9185 - {{{kbd(|)}}} (~org-agenda-filter-remove-all~) ::
9187      Remove all filters in the current agenda view.
9189 **** Setting limits for the agenda
9190 :PROPERTIES:
9191 :UNNUMBERED: notoc
9192 :END:
9193 #+cindex: limits, in agenda
9195 Here is a list of options that you can set, either globally, or
9196 locally in your custom agenda views (see [[*Custom agenda views]]).
9198 - ~org-agenda-max-entries~ ::
9200      #+vindex: org-agenda-max-entries
9201      Limit the number of entries.
9203 - ~org-agenda-max-effort~ ::
9205      #+vindex: org-agenda-max-effort
9206      Limit the duration of accumulated efforts (as minutes).
9208 - ~org-agenda-max-todos~ ::
9210      #+vindex: org-agenda-max-todos
9211      Limit the number of entries with TODO keywords.
9213 - ~org-agenda-max-tags~ ::
9215      #+vindex: org-agenda-max-tags
9216      Limit the number of tagged entries.
9218 When set to a positive integer, each option excludes entries from
9219 other categories: for example, ~(setq org-agenda-max-effort 100)~
9220 limits the agenda to 100 minutes of effort and exclude any entry that
9221 has no effort property.  If you want to include entries with no effort
9222 property, use a negative value for ~org-agenda-max-effort~.  One
9223 useful setup is to use ~org-agenda-max-entries~ locally in a custom
9224 command.  For example, this custom command displays the next five
9225 entries with a =NEXT= TODO keyword.
9227 #+begin_src emacs-lisp
9228   (setq org-agenda-custom-commands
9229         '(("n" todo "NEXT"
9230            ((org-agenda-max-entries 5)))))
9231 #+end_src
9233 Once you mark one of these five entry as DONE, rebuilding the agenda
9234 will again the next five entries again, including the first entry that
9235 was excluded so far.
9237 You can also dynamically set temporary limits, which are lost when
9238 rebuilding the agenda:
9240 - {{{kbd(~ )}}} (~org-agenda-limit-interactively~) ::
9242      #+findex: org-agenda-limit-interactively
9243      This prompts for the type of limit to apply and its value.
9245 ** Commands in the agenda buffer
9246 :PROPERTIES:
9247 :DESCRIPTION: Remote editing of Org trees.
9248 :ALT_TITLE: Agenda commands
9249 :END:
9250 #+cindex: commands, in agenda buffer
9252 Entries in the agenda buffer are linked back to the Org file or diary
9253 file where they originate.  You are not allowed to edit the agenda
9254 buffer itself, but commands are provided to show and jump to the
9255 original entry location, and to edit the Org files "remotely" from the
9256 agenda buffer.  In this way, all information is stored only once,
9257 removing the risk that your agenda and note files may diverge.
9259 Some commands can be executed with mouse clicks on agenda lines.  For
9260 the other commands, the cursor needs to be in the desired line.
9262 *** Motion
9263 :PROPERTIES:
9264 :UNNUMBERED: notoc
9265 :END:
9266 #+cindex: motion commands in agenda
9268 - {{{kbd(n)}}} (~org-agenda-next-line~) ::
9270      #+kindex: n
9271      #+findex: org-agenda-next-line
9272      Next line (same as {{{kbd(down)}}} and {{{kbd(C-n)}}}).
9274 - {{{kbd(p)}}} (~org-agenda-previous-line~) ::
9276      #+kindex: p
9277      #+findex: org-agenda-previous-line
9278      Previous line (same as {{{kbd(up)}}} and {{{kbd(C-p)}}}).
9280 *** View/Go to Org file
9281 :PROPERTIES:
9282 :UNNUMBERED: notoc
9283 :END:
9284 #+cindex: view file commands in agenda
9286 - {{{kbd(SPC)}}} or {{{kbd(mouse-3)}}} (~org-agenda-show-and-scroll-up~) ::
9288      #+kindex: SPC
9289      #+kindex: mouse-3
9290      #+findex: org-agenda-show-and-scroll-up
9291      Display the original location of the item in another window.
9292      With a prefix argument, make sure that drawers stay folded.
9294 - {{{kbd(L)}}} (~org-agenda-recenter~) ::
9296      #+findex: org-agenda-recenter
9297      Display original location and recenter that window.
9299 - {{{kbd(TAB)}}} or {{{kbd(mouse-2)}}} (~org-agenda-goto~) ::
9301      #+kindex: TAB
9302      #+kindex: mouse-2
9303      #+findex: org-agenda-goto
9304      Go to the original location of the item in another window.
9306 - {{{kbd(RET)}}} (~org-agenda-switch-to~) ::
9308      #+kindex: RET
9309      #+findex: org-agenda-switch-to
9310      Go to the original location of the item and delete other windows.
9312 - {{{kbd(F)}}} (~org-agenda-follow-mode~) ::
9314      #+kindex: F
9315      #+findex: org-agenda-follow-mode
9316      #+vindex: org-agenda-start-with-follow-mode
9317      Toggle Follow mode.  In Follow mode, as you move the cursor
9318      through the agenda buffer, the other window always shows the
9319      corresponding location in the Org file.  The initial setting for
9320      this mode in new agenda buffers can be set with the variable
9321      ~org-agenda-start-with-follow-mode~.
9323 - {{{kbd(C-c C-x b)}}} (~org-agenda-tree-to-indirect-buffer~) ::
9325      #+kindex: C-c C-x b
9326      #+findex: org-agenda-tree-to-indirect-buffer
9327      Display the entire subtree of the current item in an indirect
9328      buffer.  With a numeric prefix argument N, go up to level N and
9329      then take that tree.  If N is negative, go up that many levels.
9330      With a {{{kbd(C-u)}}} prefix, do not remove the previously used
9331      indirect buffer.
9333 - {{{kbd(C-c C-o)}}} (~org-agenda-open-link~) ::
9335      #+kindex: C-c C-o
9336      #+findex: org-agenda-open-link
9337      Follow a link in the entry.  This offers a selection of any links
9338      in the text belonging to the referenced Org node.  If there is
9339      only one link, follow it without a selection prompt.
9341 *** Change display
9342 :PROPERTIES:
9343 :UNNUMBERED: notoc
9344 :END:
9345 #+cindex: change agenda display
9346 #+cindex: display changing, in agenda
9348 #+attr_texinfo: :sep ,
9349 - {{{kbd(A)}}} ::
9351      #+kindex: A
9352      Interactively select another agenda view and append it to the
9353      current view.
9355 - {{{kbd(o)}}} ::
9357      #+kindex: o
9358      Delete other windows.
9360 - {{{kbd(v d)}}} or short {{{kbd(d)}}} (~org-agenda-day-view~) ::
9362      #+kindex: v d
9363      #+kindex: d
9364      #+findex: org-agenda-day-view
9365      Switch to day view.  When switching to day view, this setting
9366      becomes the default for subsequent agenda refreshes.  A numeric
9367      prefix argument may be used to jump directly to a specific day of
9368      the year.  For example, {{{kbd(32 d)}}} jumps to February 1st.
9369      When setting day view, a year may be encoded in the prefix
9370      argument as well.  For example, {{{kbd(200712 d)}}} jumps to
9371      January 12, 2007.  If such a year specification has only one or
9372      two digits, it is expanded into one of the 30 next years or the
9373      last 69 years.
9375 - {{{kbd(v w)}}} or short {{{kbd(w)}}} (~org-agenda-week-view~) ::
9377      #+kindex: v w
9378      #+kindex: w
9379      #+findex: org-agenda-week-view
9380      Switch to week view.  When switching week view, this setting
9381      becomes the default for subsequent agenda refreshes.  A numeric
9382      prefix argument may be used to jump directly to a specific day of
9383      the ISO week.  For example {{{kbd(9 w)}}} to ISO week number 9.
9384      When setting week view, a year may be encoded in the prefix
9385      argument as well.  For example, {{{kbd(200712 w)}}} jumps to week
9386      12 in 2007.  If such a year specification has only one or two
9387      digits, it is expanded into one of the 30 next years or the last
9388      69 years.
9390 - {{{kbd(v m)}}} (~org-agenda-month-view~) ::
9392      #+kindex: v m
9393      #+findex: org-agenda-month-view
9394      Switch to month view.  Because month views are slow to create,
9395      they do not become the default for subsequent agenda refreshes.
9396      A numeric prefix argument may be used to jump directly to
9397      a specific day of the month.  When setting month view, a year may
9398      be encoded in the prefix argument as well.  For example,
9399      {{{kbd(200712 m)}}} jumps to December, 2007.  If such a year
9400      specification has only one or two digits, it is expanded into one
9401      of the 30 next years or the last 69 years.
9403 - {{{kbd(v y)}}} (~org-agenda-year-view~) ::
9405      #+kindex: v y
9406      #+findex: org-agenda-year-view
9407      Switch to year view.  Because year views are slow to create, they
9408      do not become the default for subsequent agenda refreshes.
9409      A numeric prefix argument may be used to jump directly to
9410      a specific day of the year.
9412 - {{{kbd(v SPC)}}} (~org-agenda-reset-view~) ::
9414      #+kindex: v SPC
9415      #+findex: org-agenda-reset-view
9416      #+vindex: org-agenda-span
9417      Reset the current view to ~org-agenda-span~.
9419 - {{{kbd(f)}}} (~org-agenda-later~) ::
9421      #+kindex: f
9422      #+findex: org-agenda-later
9423      Go forward in time to display the span following the current one.
9424      For example, if the display covers a week, switch to the
9425      following week.  With a prefix argument, repeat that many times.
9427 - {{{kbd(b)}}} (~org-agenda-earlier~) ::
9429      #+kindex: b
9430      #+findex: org-agenda-earlier
9431      Go backward in time to display earlier dates.
9433 - {{{kbd(.)}}} (~org-agenda-goto-today~) ::
9435      #+kindex: .
9436      #+findex: org-agenda-goto-today
9437      Go to today.
9439 - {{{kbd(j)}}} (~org-agenda-goto-date~) ::
9441      #+kindex: j
9442      #+findex: org-agenda-goto-date
9443      Prompt for a date and go there.
9445 - {{{kbd(J)}}} (~org-agenda-clock-goto~) ::
9447      #+kindex: J
9448      #+findex: org-agenda-clock-goto
9449      Go to the currently clocked-in task /in the agenda buffer/.
9451 - {{{kbd(D)}}} (~org-agenda-toggle-diary~) ::
9453      #+kindex: D
9454      #+findex: org-agenda-toggle-diary
9455      Toggle the inclusion of diary entries.  See [[*Weekly/daily agenda]].
9457 - {{{kbd(v l)}}} or {{{kbd(v L)}}} or short {{{kbd(l)}}} (~org-agenda-log-mode~) ::
9459      #+kindex: v l
9460      #+kindex: l
9461      #+kindex: v L
9462      #+findex: org-agenda-log-mode
9463      #+vindex: org-log-done
9464      #+vindex: org-agenda-log-mode-items
9465      Toggle Logbook mode.  In Logbook mode, entries that were marked
9466      DONE while logging was on (see the variable ~org-log-done~) are
9467      shown in the agenda, as are entries that have been clocked on
9468      that day.  You can configure the entry types that should be
9469      included in log mode using the variable
9470      ~org-agenda-log-mode-items~.  When called with a {{{kbd(C-u)}}}
9471      prefix, show all possible logbook entries, including state
9472      changes.  When called with two prefix arguments {{{kbd(C-u
9473      C-u)}}}, show only logging information, nothing else.  {{{kbd(v
9474      L)}}} is equivalent to {{{kbd(C-u v l)}}}.
9476 - {{{kbd(v [)}}} or short {{{kbd([)}}} (~org-agenda-manipulate-query-add~) ::
9478      #+kindex: v [
9479      #+kindex: [
9480      #+findex: org-agenda-manipulate-query-add
9481      Include inactive timestamps into the current view.  Only for
9482      weekly/daily agenda and timeline views.
9484 - {{{kbd(v a)}}} (~org-agenda-archives-mode~) ::
9486      #+kindex: v a
9487      #+findex: org-agenda-archives-mode
9488      Toggle Archives mode.  In Archives mode, trees that are archived
9489      (see [[*Internal archiving]]) are also scanned when producing the
9490      agenda.  To exit archives mode, press {{{kbd(v a)}}} again.
9492 - {{{kbd(v A)}}} ::
9494      #+kindex: v A
9495      Toggle Archives mode.  Include all archive files as well.
9497 - {{{kbd(v R)}}} or short {{{kbd(R)}}} (~org-agenda-clockreport-mode~) ::
9499      #+kindex: v R
9500      #+kindex: R
9501      #+findex: org-agenda-clockreport-mode
9502      #+vindex: org-agenda-start-with-clockreport-mode
9503      #+vindex: org-clock-report-include-clocking-task
9504      Toggle Clockreport mode.  In Clockreport mode, the daily/weekly
9505      agenda always shows a table with the clocked times for the time
9506      span and file scope covered by the current agenda view.  The
9507      initial setting for this mode in new agenda buffers can be set
9508      with the variable ~org-agenda-start-with-clockreport-mode~.  By
9509      using a prefix argument when toggling this mode (i.e., {{{kbd(C-u
9510      R)}}}), the clock table does not show contributions from entries
9511      that are hidden by agenda filtering[fn:95].  See also the
9512      variable ~org-clock-report-include-clocking-task~.
9514 - {{{kbd(v c)}}} ::
9516      #+kindex: v c
9517      #+vindex: org-agenda-clock-consistency-checks
9518      Show overlapping clock entries, clocking gaps, and other clocking
9519      problems in the current agenda range.  You can then visit
9520      clocking lines and fix them manually.  See the variable
9521      ~org-agenda-clock-consistency-checks~ for information on how to
9522      customize the definition of what constituted a clocking problem.
9523      To return to normal agenda display, press {{{kbd(l)}}} to exit
9524      Logbook mode.
9526 - {{{kbd(v E)}}} or short {{{kbd(E)}}} (~org-agenda-entry-text-mode~) ::
9528      #+kindex: v E
9529      #+kindex: E
9530      #+findex: org-agenda-entry-text-mode
9531      #+vindex: org-agenda-start-with-entry-text-mode
9532      #+vindex: org-agenda-entry-text-maxlines
9533      Toggle entry text mode.  In entry text mode, a number of lines
9534      from the Org outline node referenced by an agenda line are
9535      displayed below the line.  The maximum number of lines is given
9536      by the variable ~org-agenda-entry-text-maxlines~.  Calling this
9537      command with a numeric prefix argument temporarily modifies that
9538      number to the prefix value.
9540 - {{{kbd(G)}}} (~org-agenda-toggle-time-grid~) ::
9542      #+kindex: G
9543      #+vindex: org-agenda-use-time-grid
9544      #+vindex: org-agenda-time-grid
9545      Toggle the time grid on and off.  See also the variables
9546      ~org-agenda-use-time-grid~ and ~org-agenda-time-grid~.
9548 - {{{kbd(r)}}} (~org-agenda-redo~), {{{kbd(g)}}} ::
9550      #+kindex: r
9551      #+kindex: g
9552      #+findex: org-agenda-redo
9553      Recreate the agenda buffer, for example to reflect the changes
9554      after modification of the timestamps of items with
9555      {{{kbd(S-left)}}} and {{{kbd(S-right)}}}.  When the
9556      buffer is the global TODO list, a prefix argument is interpreted
9557      to create a selective list for a specific TODO keyword.
9559 - {{{kbd(C-x C-s)}}} or short {{{kbd(s)}}} (~org-save-all-org-buffers~) ::
9561      #+kindex: C-x C-s
9562      #+findex: org-save-all-org-buffers
9563      #+kindex: s
9564      Save all Org buffers in the current Emacs session, and also the
9565      locations of IDs.
9567 - {{{kbd(C-c C-x C-c)}}} (~org-agenda-columns~) ::
9569      #+kindex: C-c C-x C-c
9570      #+findex: org-agenda-columns
9571      #+vindex: org-columns-default-format
9572      Invoke column view (see [[*Column view]]) in the agenda buffer.  The
9573      column view format is taken from the entry at point, or, if there
9574      is no entry at point, from the first entry in the agenda view.
9575      So whatever the format for that entry would be in the original
9576      buffer (taken from a property, from a =COLUMNS= keyword, or from
9577      the default variable ~org-columns-default-format~) is used in the
9578      agenda.
9580 - {{{kbd(C-c C-x >)}}} (~org-agenda-remove-restriction-lock~) ::
9582      #+kindex: C-c C-x >
9583      #+findex: org-agenda-remove-restriction-lock
9584      Remove the restriction lock on the agenda, if it is currently
9585      restricted to a file or subtree (see [[*Agenda files]]).
9587 - {{{kbd(M-up)}}} (~org-agenda-drag-line-backward~) ::
9589      #+kindex: M-up
9590      #+findex: org-agenda-drag-line-backward
9591      Drag the line at point backward one line.  With a numeric prefix
9592      argument, drag backward by that many lines.
9594      Moving agenda lines does not persist after an agenda refresh and
9595      does not modify the contributing Org files.
9597 - {{{kbd(M-down)}}} (~org-agenda-drag-line-forward~) ::
9599      #+kindex: M-down
9600      #+findex: org-agenda-drag-line-forward
9601      Drag the line at point forward one line.  With a numeric prefix
9602      argument, drag forward by that many lines.
9604 *** Remote editing
9605 :PROPERTIES:
9606 :UNNUMBERED: notoc
9607 :END:
9608 #+cindex: remote editing, from agenda
9610 - {{{kbd(0--9)}}} ::
9612      Digit argument.
9614 - {{{kbd(C-_)}}} (~org-agenda-undo~) ::
9616      #+kindex: C-_
9617      #+findex: org-agenda-undo
9618      #+cindex: undoing remote-editing events
9619      #+cindex: remote editing, undo
9620      Undo a change due to a remote editing command.  The change is
9621      undone both in the agenda buffer and in the remote buffer.
9623 - {{{kbd(t)}}} (~org-agenda-todo~) ::
9625      #+kindex: t
9626      #+findex: org-agenda-todo
9627      Change the TODO state of the item, both in the agenda and in the
9628      original Org file.
9630 - {{{kbd(C-S-right)}}} (~org-agenda-todo-nextset~) ::
9632      #+kindex: C-S-right
9633      #+findex: org-agenda-todo-nextset
9634      Switch to the next set of TODO keywords.
9636 - {{{kbd(C-S-left)}}}, ~org-agenda-todo-previousset~ ::
9638      #+kindex: C-S-left
9639      Switch to the previous set of TODO keywords.
9641 - {{{kbd(C-k)}}} (~org-agenda-kill~) ::
9643      #+kindex: C-k
9644      #+findex: org-agenda-kill
9645      #+vindex: org-agenda-confirm-kill
9646      Delete the current agenda item along with the entire subtree
9647      belonging to it in the original Org file.  If the text to be
9648      deleted remotely is longer than one line, the kill needs to be
9649      confirmed by the user.  See variable ~org-agenda-confirm-kill~.
9651 - {{{kbd(C-c C-w)}}} (~org-agenda-refile~) ::
9653      #+kindex: C-c C-w
9654      #+findex: org-agenda-refile
9655      Refile the entry at point.
9657 - {{{kbd(C-c C-x C-a)}}} or short {{{kbd(a)}}} (~org-agenda-archive-default-with-confirmation~) ::
9659      #+kindex: C-c C-x C-a
9660      #+kindex: a
9661      #+findex: org-agenda-archive-default-with-confirmation
9662      #+vindex: org-archive-default-command
9663      Archive the subtree corresponding to the entry at point using the
9664      default archiving command set in ~org-archive-default-command~.
9665      When using the {{{kbd(a)}}} key, confirmation is required.
9667 - {{{kbd(C-c C-x a)}}} (~org-agenda-toggle-archive-tag~) ::
9669      #+kindex: C-c C-x a
9670      #+findex: org-agenda-toggle-archive-tag
9671      Toggle the archive tag (see [[*Internal archiving]]) for the current
9672      headline.
9674 - {{{kbd(C-c C-x A)}}} (~org-agenda-archive-to-archive-sibling~) ::
9676      #+kindex: C-c C-x A
9677      #+findex: org-agenda-archive-to-archive-sibling
9678      Move the subtree corresponding to the current entry to its
9679      /archive sibling/.
9681 - {{{kbd(C-c C-x C-s)}}} or short {{{kbd($)}}} (~org-agenda-archive~) ::
9683      #+kindex: C-c C-x C-s
9684      #+kindex: $
9685      #+findex: org-agenda-archive
9686      Archive the subtree corresponding to the current headline.  This
9687      means the entry is moved to the configured archive location, most
9688      likely a different file.
9690 - {{{kbd(T)}}} (~org-agenda-show-tags~) ::
9692      #+kindex: T
9693      #+findex: org-agenda-show-tags
9694      #+vindex: org-agenda-show-inherited-tags
9695      Show all tags associated with the current item.  This is useful
9696      if you have turned off ~org-agenda-show-inherited-tags~, but
9697      still want to see all tags of a headline occasionally.
9699 - {{{kbd(:)}}} (~org-agenda-set-tags~) ::
9701      #+kindex: :
9702      #+findex: org-agenda-set-tags
9703      Set tags for the current headline.  If there is an active region
9704      in the agenda, change a tag for all headings in the region.
9706 - {{{kbd(\,)}}} (~org-agenda-priority~) ::
9708      #+kindex: ,
9709      #+findex: org-agenda-priority
9710      Set the priority for the current item.  Org mode prompts for the
9711      priority character.  If you reply with {{{kbd(SPC)}}}, the
9712      priority cookie is removed from the entry.
9714 - {{{kbd(P)}}} (~org-agenda-show-priority~) ::
9716      #+kindex: P
9717      #+findex: org-agenda-show-priority
9718      Display weighted priority of current item.
9720 - {{{kbd(+)}}} or {{{kbd(S-up)}}} (~org-agenda-priority-up~) ::
9722      #+kindex: +
9723      #+kindex: C-up
9724      #+findex: org-agenda-priority-up
9725      Increase the priority of the current item.  The priority is
9726      changed in the original buffer, but the agenda is not resorted.
9727      Use the {{{kbd(r)}}} key for this.
9729 - {{{kbd(-)}}} or {{{kbd(S-down)}}} (~org-agenda-priority-down~) ::
9731      #+kindex: -
9732      #+kindex: C-down
9733      #+findex: orga-agenda-priority-down
9734      Decrease the priority of the current item.
9736 - {{{kbd(C-c C-z)}}} or short {{{kbd(z)}}} (~org-agenda-add-note~) ::
9738      #+kindex: z
9739      #+kindex: C-c C-z
9740      #+findex: org-agenda-add-note
9741      #+vindex: org-log-into-drawer
9742      Add a note to the entry.  This note is recorded, and then filed
9743      to the same location where state change notes are put.  Depending
9744      on ~org-log-into-drawer~, this may be inside a drawer.
9746 - {{{kbd(C-c C-a)}}} (~org-attach~) ::
9748      #+kindex: C-c C-a
9749      #+findex: org-attach
9750      Dispatcher for all command related to attachments.
9752 - {{{kbd(C-c C-s)}}} (~org-agenda-schedule~) ::
9754      #+kindex: C-c C-s
9755      #+findex: org-agenda-schedule
9756      Schedule this item.  With a prefix argument, remove the
9757      scheduling timestamp
9759 - {{{kbd(C-c C-d)}}} (~org-agenda-deadline~) ::
9761      #+kindex: C-c C-d
9762      #+findex: org-agenda-deadline
9763      Set a deadline for this item.  With a prefix argument, remove the
9764      deadline.
9766 - {{{kbd(S-right)}}} (~org-agenda-do-date-later~) ::
9768      #+kindex: S-right
9769      #+findex: org-agenda-do-date-later
9770      Change the timestamp associated with the current line by one day
9771      into the future.  If the date is in the past, the first call to
9772      this command moves it to today.  With a numeric prefix argument,
9773      change it by that many days.  For example, {{{kbd(3
9774      6 5 S-right)}}} changes it by a year.  With a {{{kbd(C-u)}}}
9775      prefix, change the time by one hour.  If you immediately repeat
9776      the command, it will continue to change hours even without the
9777      prefix argument.  With a double {{{kbd(C-u C-u)}}} prefix, do the
9778      same for changing minutes.  The stamp is changed in the original
9779      Org file, but the change is not directly reflected in the agenda
9780      buffer.  Use {{{kbd(r)}}} or {{{kbd(g)}}} to update the buffer.
9782 - {{{kbd(S-left)}}} (~org-agenda-do-date-earlier~) ::
9784      #+kindex: S-left
9785      #+findex: org-agenda-do-date-earlier
9786      Change the timestamp associated with the current line by one day
9787      into the past.
9789 - {{{kbd(>)}}} (~org-agenda-date-prompt~) ::
9791      #+kindex: >
9792      #+findex: org-agenda-date-prompt
9793      Change the timestamp associated with the current line.  The key
9794      {{{kbd(>)}}} has been chosen, because it is the same as
9795      {{{kbd(S-.)}}}  on my keyboard.
9797 - {{{kbd(I)}}} (~org-agenda-clock-in~) ::
9799      #+kindex: I
9800      #+findex: org-agenda-clock-in
9801      Start the clock on the current item.  If a clock is running
9802      already, it is stopped first.
9804 - {{{kbd(O)}}} (~org-agenda-clock-out~) ::
9806      #+kindex: O
9807      #+findex: org-agenda-clock-out
9808      Stop the previously started clock.
9810 - {{{kbd(X)}}} (~org-agenda-clock-cancel~) ::
9812      #+kindex: X
9813      #+findex: org-agenda-clock-cancel
9814      Cancel the currently running clock.
9816 - {{{kbd(J)}}} (~org-agenda-clock-goto~) ::
9818      #+kindex: J
9819      #+findex: org-agenda-clock-goto
9820      Jump to the running clock in another window.
9822 - {{{kbd(k)}}} (~org-agenda-capture~) ::
9824      #+kindex: k
9825      #+findex: org-agenda-capture
9826      #+cindex: capturing, from agenda
9827      #+vindex: org-capture-use-agenda-date
9828      Like ~org-capture~, but use the date at point as the default date
9829      for the capture template.  See ~org-capture-use-agenda-date~ to
9830      make this the default behavior of ~org-capture~.
9832 *** Bulk remote editing selected entries
9833 :PROPERTIES:
9834 :UNNUMBERED: notoc
9835 :END:
9836 #+cindex: remote editing, bulk, from agenda
9837 #+vindex: org-agenda-bulk-custom-functions
9839 - {{{kbd(m)}}} (~org-agenda-bulk-mark~) ::
9840      #+kindex: m
9841      #+findex: org-agenda-bulk-mark
9843      Mark the entry at point for bulk action.  If there is an active
9844      region in the agenda, mark the entries in the region.  With
9845      numeric prefix argument, mark that many successive entries.
9847 - {{{kbd(*)}}} (~org-agenda-bulk-mark-all~) ::
9848      #+kindex: *
9849      #+findex: org-agenda-bulk-mark-all
9851      Mark all visible agenda entries for bulk action.
9853 - {{{kbd(u)}}} (~org-agenda-bulk-unmark~) ::
9854      #+kindex: u
9855      #+findex: org-agenda-bulk-unmark
9857      Unmark entry for bulk action.
9859 - {{{kbd(U)}}} (~org-agenda-bulk-remove-all-marks~) ::
9860      #+kindex: U
9861      #+findex: org-agenda-bulk-remove-all-marks
9863      Unmark all marked entries for bulk action.
9865 - {{{kbd(M-m)}}} (~org-agenda-bulk-toggle~) ::
9866      #+kindex: M-m
9867      #+findex: org-agenda-bulk-toggle
9869      Toggle mark of the entry at point for bulk action.
9871 - {{{kbd(M-*)}}} (~org-agenda-bulk-toggle-all~) ::
9872      #+kindex: M-*
9873      #+findex: org-agenda-bulk-toggle-all
9875      Mark entries matching a regular expression for bulk action.
9877 - {{{kbd(%)}}} (~org-agenda-bulk-mark-regexp~) ::
9878      #+kindex: %
9879      #+findex: org-agenda-bulk-mark-regexp
9881      Mark entries matching a regular expression for bulk action.
9883 - {{{kbd(B)}}} (~org-agenda-bulk-action~) ::
9884      #+kindex: B
9885      #+findex: org-agenda-bulk-action
9886      #+vindex: org-agenda-bulk-persistent-marks
9888      Bulk action: act on all marked entries in the agenda.  This
9889      prompts for another key to select the action to be applied.  The
9890      prefix argument to {{{kbd(B)}}} is passed through to the
9891      {{{kbd(s)}}} and {{{kbd(d)}}} commands, to bulk-remove these
9892      special timestamps.  By default, marks are removed after the
9893      bulk.  If you want them to persist, set
9894      ~org-agenda-bulk-persistent-marks~ to ~t~ or hit {{{kbd(p)}}} at
9895      the prompt.
9897      - {{{kbd(*)}}} ::
9899           Toggle persistent marks.
9901      - {{{kbd($)}}} ::
9903           Archive all selected entries.
9905      - {{{kbd(A)}}} ::
9907           Archive entries by moving them to their respective archive
9908           siblings.
9910      - {{{kbd(t)}}} ::
9912           Change TODO state.  This prompts for a single TODO keyword and
9913           changes the state of all selected entries, bypassing blocking
9914           and suppressing logging notes---but not timestamps.
9916      - {{{kbd(+)}}}  ::
9918           Add a tag to all selected entries.
9920      - {{{kbd(-)}}}  ::
9922           Remove a tag from all selected entries.
9924      - {{{kbd(s)}}}  ::
9926           Schedule all items to a new date.  To shift existing schedule
9927           dates by a fixed number of days, use something starting with
9928           double plus at the prompt, for example =++8d= or =++2w=.
9930      - {{{kbd(d)}}}  ::
9932           Set deadline to a specific date.
9934      - {{{kbd(r)}}}  ::
9936           Prompt for a single refile target and move all entries.  The
9937           entries are no longer in the agenda; refresh ({{{kbd(g)}}}) to
9938           bring them back.
9940      - {{{kbd(S)}}}  ::
9942           Reschedule randomly into the coming N days.  N is prompted for.
9943           With a prefix argument ({{{kbd(C-u B S)}}}), scatter only
9944           across weekdays.
9946      - {{{kbd(f)}}}  ::
9948           #+vindex: org-agenda-bulk-custom-functions
9949           Apply a function[fn:96] to marked entries.  For example, the
9950           function below sets the =CATEGORY= property of the entries to
9951           =web=.
9953           #+begin_src emacs-lisp
9954             (defun set-category ()
9955               (interactive "P")
9956               (let ((marker (or (org-get-at-bol 'org-hd-marker)
9957                                 (org-agenda-error))))
9958                 (org-with-point-at marker
9959                   (org-back-to-heading t)
9960                   (org-set-property "CATEGORY" "web"))))
9961           #+end_src
9963 *** Calendar commands
9964 :PROPERTIES:
9965 :UNNUMBERED: notoc
9966 :END:
9967 #+cindex: calendar commands, from agenda
9969 - {{{kbd(c)}}} (~org-agenda-goto-calendar~) ::
9971      #+kindex: c
9972      #+findex: org-agenda-goto-calendar
9973      Open the Emacs calendar and move to the date at the agenda
9974      cursor.
9976 - {{{kbd(c)}}} (~org-calendar-goto-agenda~) ::
9978      #+kindex: c
9979      #+findex: org-calendar-goto-agenda
9980      When in the calendar, compute and show the Org agenda for the
9981      date at the cursor.
9983 - {{{kbd(i)}}} (~org-agenda-diary-entry~) ::
9984      #+kindex: i
9985      #+findex: org-agenda-diary-entry
9987      #+cindex: diary entries, creating from agenda
9988      Insert a new entry into the diary, using the date at the cursor
9989      and (for block entries) the date at the mark.  This adds to the
9990      Emacs diary file[fn:97], in a way similar to the {{{kbd(i)}}}
9991      command in the calendar.  The diary file pops up in another
9992      window, where you can add the entry.
9994      #+vindex: org-agenda-diary-file
9995      If you configure ~org-agenda-diary-file~ to point to an Org file,
9996      Org creates entries in that file instead.  Most entries are
9997      stored in a date-based outline tree that will later make it easy
9998      to archive appointments from previous months/years.  The tree is
9999      built under an entry with a =DATE_TREE= property, or else with
10000      years as top-level entries.  Emacs prompts you for the entry
10001      text---if you specify it, the entry is created in
10002      ~org-agenda-diary-file~ without further interaction.  If you
10003      directly press {{{kbd(RET)}}} at the prompt without typing text,
10004      the target file is shown in another window for you to finish the
10005      entry there.  See also the {{{kbd(k r)}}} command.
10007 - {{{kbd(M)}}} (~org-agenda-phases-of-moon~) ::
10009      #+kindex: M
10010      #+findex: org-agenda-phases-of-moon
10011      Show the phases of the moon for the three months around current
10012      date.
10014 - {{{kbd(S)}}} (~org-agenda-sunrise-sunset~) ::
10016      #+kindex: S
10017      #+findex: org-agenda-sunrise-sunset
10018      Show sunrise and sunset times.  The geographical location must be
10019      set with calendar variables, see the documentation for the Emacs
10020      calendar.
10022 - {{{kbd(C)}}} (~org-agenda-convert-date~) ::
10024      #+kindex: C
10025      #+findex: org-agenda-convert-date
10026      Convert the date at cursor into many other cultural and historic
10027      calendars.
10029 - {{{kbd(H)}}} (~org-agenda-holidays~) ::
10031      #+kindex: H
10032      #+findex: org-agenda-holidays
10033      Show holidays for three months around the cursor date.
10035 *** Quit and exit
10036 :PROPERTIES:
10037 :UNNUMBERED: notoc
10038 :END:
10040 - {{{kbd(q)}}} (~org-agenda-quit~) ::
10041      #+kindex: q
10042      #+findex: org-agenda-quit
10044      Quit agenda, remove the agenda buffer.
10046 - {{{kbd(x)}}} (~org-agenda-exit~) ::
10047      #+kindex: x
10048      #+findex: org-agenda-exit
10050      #+cindex: agenda files, removing buffers
10051      Exit agenda, remove the agenda buffer and all buffers loaded by
10052      Emacs for the compilation of the agenda.  Buffers created by the
10053      user to visit Org files are not removed.
10055 ** Custom agenda views
10056 :PROPERTIES:
10057 :DESCRIPTION: Defining special searches and views.
10058 :END:
10059 #+cindex: custom agenda views
10060 #+cindex: agenda views, custom
10062 Custom agenda commands serve two purposes: to store and quickly access
10063 frequently used TODO and tags searches, and to create special
10064 composite agenda buffers.  Custom agenda commands are accessible
10065 through the dispatcher (see [[*The agenda dispatcher]]), just like the
10066 default commands.
10068 *** Storing searches
10069 :PROPERTIES:
10070 :DESCRIPTION: Type once, use often.
10071 :END:
10073 The first application of custom searches is the definition of keyboard
10074 shortcuts for frequently used searches, either creating an agenda
10075 buffer, or a sparse tree (the latter covering of course only the
10076 current buffer).
10078 #+kindex: C-c a C
10079 #+vindex: org-agenda-custom-commands
10080 #+cindex: agenda views, main example
10081 #+cindex: agenda, as an agenda views
10082 #+cindex: agenda*, as an agenda views
10083 #+cindex: tags, as an agenda view
10084 #+cindex: todo, as an agenda view
10085 #+cindex: tags-todo
10086 #+cindex: todo-tree
10087 #+cindex: occur-tree
10088 #+cindex: tags-tree
10089 Custom commands are configured in the variable
10090 ~org-agenda-custom-commands~.  You can customize this variable, for
10091 example by pressing {{{kbd(C-c a C)}}}.  You can also directly set it
10092 with Emacs Lisp in the Emacs init file.  The following example
10093 contains all valid agenda views:
10095 #+begin_src emacs-lisp
10096   (setq org-agenda-custom-commands
10097         '(("x" agenda)
10098           ("y" agenda*)
10099           ("w" todo "WAITING")
10100           ("W" todo-tree "WAITING")
10101           ("u" tags "+boss-urgent")
10102           ("v" tags-todo "+boss-urgent")
10103           ("U" tags-tree "+boss-urgent")
10104           ("f" occur-tree "\\<FIXME\\>")
10105           ("h" . "HOME+Name tags searches") ;description for "h" prefix
10106           ("hl" tags "+home+Lisa")
10107           ("hp" tags "+home+Peter")
10108           ("hk" tags "+home+Kim")))
10109 #+end_src
10111 #+texinfo: @noindent
10112 The initial string in each entry defines the keys you have to press
10113 after the dispatcher command {{{kbd(C-c a)}}} in order to access the
10114 command.  Usually this will be just a single character, but if you
10115 have many similar commands, you can also define two-letter
10116 combinations where the first character is the same in several
10117 combinations and serves as a prefix key[fn:98].  The second parameter
10118 is the search type, followed by the string or regular expression to be
10119 used for the matching.  The example above will therefore define:
10121 - {{{kbd(C-c a x)}}} ::
10123      as a global search for agenda entries planned[fn:99] this
10124      week/day.
10126 - {{{kbd(C-c a y)}}} ::
10128      as the same search, but only for entries with an hour
10129      specification like =[h]h:mm=---think of them as appointments.
10131 - {{{kbd(C-c a w)}}} ::
10133      as a global search for TODO entries with =WAITING= as the TODO
10134      keyword.
10136 - {{{kbd(C-c a W)}}} ::
10138      as the same search, but only in the current buffer and displaying
10139      the results as a sparse tree.
10141 - {{{kbd(C-c a u)}}} ::
10143      as a global tags search for headlines tagged =boss= but not
10144      =urgent=.
10146 - {{{kbd(C-c a v)}}} ::
10148      The same search, but limiting it to headlines that are also TODO
10149      items.
10151 - {{{kbd(C-c a U)}}} ::
10153      as the same search, but only in the current buffer and displaying
10154      the result as a sparse tree.
10156 - {{{kbd(C-c a f)}}} ::
10158      to create a sparse tree (again, current buffer only) with all
10159      entries containing the word =FIXME=.
10161 - {{{kbd(C-c a h)}}} ::
10163      as a prefix command for a =HOME= tags search where you have to
10164      press an additional key ({{{kbd(l)}}}, {{{kbd(p)}}} or
10165      {{{kbd(k)}}}) to select a name (Lisa, Peter, or Kim) as
10166      additional tag to match.
10168 Note that ~*-tree~ agenda views need to be called from an Org buffer
10169 as they operate on the current buffer only.
10170 *** Block agenda
10171 :PROPERTIES:
10172 :DESCRIPTION: All the stuff you need in a single buffer.
10173 :END:
10174 #+cindex: block agenda
10175 #+cindex: agenda, with block views
10177 Another possibility is the construction of agenda views that comprise
10178 the results of /several/ commands, each of which creates a block in
10179 the agenda buffer.  The available commands include ~agenda~ for the
10180 daily or weekly agenda (as created with {{{kbd(C-c a a)}}}), ~alltodo~
10181 for the global TODO list (as constructed with {{{kbd(C-c a t)}}}), and
10182 the matching commands discussed above: ~todo~, ~tags~, and
10183 ~tags-todo~.  Here are two examples:
10185 #+begin_src emacs-lisp
10186   (setq org-agenda-custom-commands
10187         '(("h" "Agenda and Home-related tasks"
10188            ((agenda "")
10189             (tags-todo "home")
10190             (tags "garden")))
10191           ("o" "Agenda and Office-related tasks"
10192            ((agenda "")
10193             (tags-todo "work")
10194             (tags "office")))))
10195 #+end_src
10197 #+texinfo: @noindent
10198 This defines {{{kbd(C-c a h)}}} to create a multi-block view for stuff
10199 you need to attend to at home.  The resulting agenda buffer contains
10200 your agenda for the current week, all TODO items that carry the tag
10201 =home=, and also all lines tagged with =garden=.  Finally the command
10202 {{{kbd(C-c a o)}}} provides a similar view for office tasks.
10204 *** Setting options for custom commands
10205 :PROPERTIES:
10206 :DESCRIPTION: Changing the rules.
10207 :ALT_TITLE: Setting options
10208 :END:
10209 #+cindex: options, for custom agenda views
10211 #+vindex: org-agenda-custom-commands
10212 Org mode contains a number of variables regulating agenda construction
10213 and display.  The global variables define the behavior for all agenda
10214 commands, including the custom commands.  However, if you want to
10215 change some settings just for a single custom view, you can do so.
10216 Setting options requires inserting a list of variable names and values
10217 at the right spot in ~org-agenda-custom-commands~.  For example:
10219 #+begin_src emacs-lisp
10220   (setq org-agenda-custom-commands
10221         '(("w" todo "WAITING"
10222            ((org-agenda-sorting-strategy '(priority-down))
10223             (org-agenda-prefix-format "  Mixed: ")))
10224           ("U" tags-tree "+boss-urgent"
10225            ((org-show-context-detail 'minimal)))
10226           ("N" search ""
10227            ((org-agenda-files '("~org/notes.org"))
10228             (org-agenda-text-search-extra-files nil)))))
10229 #+end_src
10231 #+texinfo: @noindent
10232 Now the {{{kbd(C-c a w)}}} command sorts the collected entries only by
10233 priority, and the prefix format is modified to just say =Mixed:=
10234 instead of giving the category of the entry.  The sparse tags tree of
10235 {{{kbd(C-c a U)}}} now turns out ultra-compact, because neither the
10236 headline hierarchy above the match, nor the headline following the
10237 match are shown.  The command {{{kbd(C-c a N)}}} does a text search
10238 limited to only a single file.
10240 For command sets creating a block agenda, ~org-agenda-custom-commands~
10241 has two separate spots for setting options.  You can add options that
10242 should be valid for just a single command in the set, and options that
10243 should be valid for all commands in the set.  The former are just
10244 added to the command entry; the latter must come after the list of
10245 command entries.  Going back to the block agenda example (see [[*Block
10246 agenda]]), let's change the sorting strategy for the {{{kbd(C-c a h)}}}
10247 commands to ~priority-down~, but let's sort the results for GARDEN
10248 tags query in the opposite order, ~priority-up~.  This would look like
10249 this:
10251 #+begin_src emacs-lisp
10252   (setq org-agenda-custom-commands
10253         '(("h" "Agenda and Home-related tasks"
10254            ((agenda)
10255             (tags-todo "home")
10256             (tags "garden"
10257                   ((org-agenda-sorting-strategy '(priority-up)))))
10258            ((org-agenda-sorting-strategy '(priority-down))))
10259           ("o" "Agenda and Office-related tasks"
10260            ((agenda)
10261             (tags-todo "work")
10262             (tags "office")))))
10263 #+end_src
10265 As you see, the values and parentheses setting is a little complex.
10266 When in doubt, use the customize interface to set this variable---it
10267 fully supports its structure.  Just one caveat: when setting options
10268 in this interface, the /values/ are just Lisp expressions.  So if the
10269 value is a string, you need to add the double-quotes around the value
10270 yourself.
10272 #+vindex: org-agenda-custom-commands-contexts
10273 To control whether an agenda command should be accessible from
10274 a specific context, you can customize
10275 ~org-agenda-custom-commands-contexts~.  Let's say for example that you
10276 have an agenda command {{{kbd(o)}}} displaying a view that you only
10277 need when reading emails.  Then you would configure this option like
10278 this:
10280 #+begin_src emacs-lisp
10281   (setq org-agenda-custom-commands-contexts
10282         '(("o" (in-mode . "message-mode"))))
10283 #+end_src
10285 You can also tell that the command key {{{kbd(o)}}} should refer to
10286 another command key {{{kbd(r)}}}.  In that case, add this command key
10287 like this:
10289 #+begin_src emacs-lisp
10290   (setq org-agenda-custom-commands-contexts
10291         '(("o" "r" (in-mode . "message-mode"))))
10292 #+end_src
10294 See the docstring of the variable for more information.
10296 ** Exporting agenda views
10297 :PROPERTIES:
10298 :DESCRIPTION: Writing a view to a file.
10299 :END:
10300 #+cindex: agenda views, exporting
10302 If you are away from your computer, it can be very useful to have
10303 a printed version of some agenda views to carry around.  Org mode can
10304 export custom agenda views as plain text, HTML[fn:100], Postscript,
10305 PDF[fn:101], and iCalendar files.  If you want to do this only
10306 occasionally, use the following command:
10308 - {{{kbd(C-x C-w)}}} (~org-agenda-write~) ::
10309      #+kindex: C-x C-w
10310      #+findex: org-agenda-write
10311      #+cindex: exporting agenda views
10312      #+cindex: agenda views, exporting
10314      #+vindex: org-agenda-exporter-settings
10315      Write the agenda view to a file.
10317 If you need to export certain agenda views frequently, you can
10318 associate any custom agenda command with a list of output file
10319 names[fn:102].  Here is an example that first defines custom commands
10320 for the agenda and the global TODO list, together with a number of
10321 files to which to export them.  Then we define two block agenda
10322 commands and specify file names for them as well.  File names can be
10323 relative to the current working directory, or absolute.
10325 #+begin_src emacs-lisp
10326   (setq org-agenda-custom-commands
10327         '(("X" agenda "" nil ("agenda.html" "agenda.ps"))
10328           ("Y" alltodo "" nil ("todo.html" "todo.txt" "todo.ps"))
10329           ("h" "Agenda and Home-related tasks"
10330            ((agenda "")
10331             (tags-todo "home")
10332             (tags "garden"))
10333            nil
10334            ("~/views/home.html"))
10335           ("o" "Agenda and Office-related tasks"
10336            ((agenda)
10337             (tags-todo "work")
10338             (tags "office"))
10339            nil
10340            ("~/views/office.ps" "~/calendars/office.ics"))))
10341 #+end_src
10343 The extension of the file name determines the type of export.  If it
10344 is =.html=, Org mode uses the htmlize package to convert the buffer to
10345 HTML and save it to this file name.  If the extension is =.ps=,
10346 ~ps-print-buffer-with-faces~ is used to produce Postscript output.  If
10347 the extension is =.ics=, iCalendar export is run export over all files
10348 that were used to construct the agenda, and limit the export to
10349 entries listed in the agenda.  Any other extension produces a plain
10350 ASCII file.
10352 The export files are /not/ created when you use one of those
10353 commands interactively because this might use too much overhead.
10354 Instead, there is a special command to produce /all/ specified
10355 files in one step:
10357 #+attr_texinfo: :table-type table :indic @asis
10358 - {{{kbd(C-c a e)}}} (~org-store-agenda-views~) ::
10359      #+kindex: C-c a e
10360      #+findex: org-store-agenda-views
10362      Export all agenda views that have export file names associated
10363      with them.
10365 You can use the options section of the custom agenda commands to also
10366 set options for the export commands.  For example:
10368 #+begin_src emacs-lisp
10369   (setq org-agenda-custom-commands
10370         '(("X" agenda ""
10371            ((ps-number-of-columns 2)
10372             (ps-landscape-mode t)
10373             (org-agenda-prefix-format " [ ] ")
10374             (org-agenda-with-colors nil)
10375             (org-agenda-remove-tags t))
10376            ("theagenda.ps"))))
10377 #+end_src
10379 #+texinfo: @noindent
10380 #+vindex: org-agenda-exporter-settings
10381 This command sets two options for the Postscript exporter, to make it
10382 print in two columns in landscape format---the resulting page can be
10383 cut in two and then used in a paper agenda.  The remaining settings
10384 modify the agenda prefix to omit category and scheduling information,
10385 and instead include a checkbox to check off items.  We also remove the
10386 tags to make the lines compact, and we do not want to use colors for
10387 the black-and-white printer.  Settings specified in
10388 ~org-agenda-exporter-settings~ also apply, e.g.,
10390 #+begin_src emacs-lisp
10391   (setq org-agenda-exporter-settings
10392         '((ps-number-of-columns 2)
10393           (ps-landscape-mode t)
10394           (org-agenda-add-entry-text-maxlines 5)
10395           (htmlize-output-type 'css)))
10396 #+end_src
10398 #+texinfo: @noindent
10399 but the settings in ~org-agenda-custom-commands~ take precedence.
10401 #+texinfo: @noindent
10402 From the command line you may also use:
10404 #+begin_src shell
10405   emacs -eval (org-batch-store-agenda-views) -kill
10406 #+end_src
10408 #+texinfo: @noindent
10409 or, if you need to modify some parameters[fn:103]
10411 #+begin_src shell
10412   emacs -eval '(org-batch-store-agenda-views                      \
10413                 org-agenda-span (quote month)                     \
10414                 org-agenda-start-day "2007-11-01"                 \
10415                 org-agenda-include-diary nil                      \
10416                 org-agenda-files (quote ("~/org/project.org")))'  \
10417         -kill
10418 #+end_src
10420 #+texinfo: @noindent
10421 which creates the agenda views restricted to the file
10422 =~/org/project.org=, without diary entries and with a 30-day extent.
10424 You can also extract agenda information in a way that allows further
10425 processing by other programs.  See [[*Extracting agenda information]], for
10426 more information.
10428 ** Using column view in the agenda
10429 :PROPERTIES:
10430 :DESCRIPTION: Using column view for collected entries.
10431 :ALT_TITLE: Agenda column view
10432 :END:
10433 #+cindex: column view, in agenda
10434 #+cindex: agenda, column view
10436 Column view (see [[*Column view]]) is normally used to view and edit
10437 properties embedded in the hierarchical structure of an Org file.  It
10438 can be quite useful to use column view also from the agenda, where
10439 entries are collected by certain criteria.
10441 - {{{kbd(C-c C-x C-c)}}} (~org-agenda-columns~) ::
10442      #+kindex: C-c C-x C-c
10443      #+findex: org-agenda-columns
10445      Turn on column view in the agenda.
10447 To understand how to use this properly, it is important to realize
10448 that the entries in the agenda are no longer in their proper outline
10449 environment.  This causes the following issues:
10452    #+vindex: org-columns-default-format
10453    #+vindex: org-overriding-columns-format
10454    Org needs to make a decision which columns format to use.  Since
10455    the entries in the agenda are collected from different files, and
10456    different files may have different columns formats, this is
10457    a non-trivial problem.  Org first checks if the variable
10458    ~org-agenda-overriding-columns-format~ is currently set, and if so,
10459    takes the format from there.  Otherwise it takes the format
10460    associated with the first item in the agenda, or, if that item does
10461    not have a specific format (defined in a property, or in its file),
10462    it uses ~org-columns-default-format~.
10465    #+cindex: CLOCKSUM, special property
10466    If any of the columns has a summary type defined (see [[*Column
10467    attributes]]), turning on column view in the agenda visits all
10468    relevant agenda files and make sure that the computations of this
10469    property are up to date.  This is also true for the special
10470    =CLOCKSUM= property.  Org then sums the values displayed in the
10471    agenda.  In the daily/weekly agenda, the sums cover a single day;
10472    in all other views they cover the entire block.
10474    It is important to realize that the agenda may show the same entry
10475    /twice/---for example as scheduled and as a deadline---and it may
10476    show two entries from the same hierarchy (for example a /parent/
10477    and its /child/).  In these cases, the summation in the agenda
10478    leads to incorrect results because some values count double.
10480 3. When the column view in the agenda shows the =CLOCKSUM= property,
10481    that is always the entire clocked time for this item.  So even in
10482    the daily/weekly agenda, the clocksum listed in column view may
10483    originate from times outside the current view.  This has the
10484    advantage that you can compare these values with a column listing
10485    the planned total effort for a task---one of the major
10486    applications for column view in the agenda.  If you want
10487    information about clocked time in the displayed period use clock
10488    table mode (press {{{kbd(R)}}} in the agenda).
10491    #+cindex: CLOCKSUM_T, special property
10492    When the column view in the agenda shows the =CLOCKSUM_T= property,
10493    that is always today's clocked time for this item.  So even in the
10494    weekly agenda, the clocksum listed in column view only originates
10495    from today.  This lets you compare the time you spent on a task for
10496    today, with the time already spent---via =CLOCKSUM=---and with
10497    the planned total effort for it.
10499 * Markup for rich export
10500 :PROPERTIES:
10501 :DESCRIPTION: Prepare text for rich export.
10502 :ALT_TITLE: Markup
10503 :END:
10505 When exporting Org documents, the exporter tries to reflect the
10506 structure of the document as accurately as possible in the back-end.
10507 Since export targets like HTML and LaTeX allow much richer formatting,
10508 Org mode has rules on how to prepare text for rich export.  This
10509 section summarizes the markup rules used in an Org mode buffer.
10511 ** Paragraphs
10512 :PROPERTIES:
10513 :DESCRIPTION: The basic unit of text.
10514 :END:
10515 #+cindex: paragraphs, markup rules
10517 Paragraphs are separated by at least one empty line.  If you need to
10518 enforce a line break within a paragraph, use ~\\~ at the end of
10519 a line.
10521 To preserve the line breaks, indentation and blank lines in a region,
10522 but otherwise use normal formatting, you can use this construct, which
10523 can also be used to format poetry.
10525 #+cindex: BEGIN_VERSE
10526 #+cindex: verse blocks
10527 #+begin_example
10528   ,#+BEGIN_VERSE
10529    Great clouds overhead
10530    Tiny black birds rise and fall
10531    Snow covers Emacs
10533       ---AlexSchroeder
10534   ,#+END_VERSE
10535 #+end_example
10537 When quoting a passage from another document, it is customary to
10538 format this as a paragraph that is indented on both the left and the
10539 right margin.  You can include quotations in Org documents like this:
10541 #+cindex: BEGIN_QUOTE
10542 #+cindex: quote blocks
10543 #+begin_example
10544   ,#+BEGIN_QUOTE
10545   Everything should be made as simple as possible,
10546   but not any simpler ---Albert Einstein
10547   ,#+END_QUOTE
10548 #+end_example
10550 If you would like to center some text, do it like this:
10552 #+cindex: BEGIN_CENTER
10553 #+cindex: center blocks
10554 #+begin_example
10555   ,#+BEGIN_CENTER
10556   Everything should be made as simple as possible, \\
10557   but not any simpler
10558   ,#+END_CENTER
10559 #+end_example
10561 ** Emphasis and monospace
10562 :PROPERTIES:
10563 :DESCRIPTION: Bold, italic, etc.
10564 :END:
10565 #+cindex: underlined text, markup rules
10566 #+cindex: bold text, markup rules
10567 #+cindex: italic text, markup rules
10568 #+cindex: verbatim text, markup rules
10569 #+cindex: code text, markup rules
10570 #+cindex: strike-through text, markup rules
10572 You can make words =*bold*=, =/italic/=, =_underlined_=, ==verbatim==
10573 and =~code~=, and, if you must, =+strike-through+=.  Text in the code
10574 and verbatim string is not processed for Org mode specific syntax; it
10575 is exported verbatim.
10577 #+vindex: org-fontify-emphasized-text
10578 To turn off fontification for marked up text, you can set
10579 ~org-fontify-emphasized-text~ to ~nil~.  To narrow down the list of
10580 available markup syntax, you can customize ~org-emphasis-alist~.
10582 ** Horizontal rules
10583 :PROPERTIES:
10584 :DESCRIPTION: Make a line.
10585 :END:
10586 #+cindex: horizontal rules, markup rules
10588 A line consisting of only dashes, and at least 5 of them, is exported
10589 as a horizontal line.
10591 ** Images and tables
10592 :PROPERTIES:
10593 :DESCRIPTION: Images, tables and caption mechanism.
10594 :END:
10595 #+cindex: tables, markup rules
10596 #+cindex: CAPTION, keyword
10597 #+cindex: NAME, keyword
10599 Both the native Org mode tables (see [[*Tables]]) and tables formatted
10600 with the =table.el= package are exported properly.  For Org mode
10601 tables, the lines before the first horizontal separator line become
10602 table header lines.  You can use the following lines somewhere before
10603 the table to assign a caption and a label for cross references, and in
10604 the text you can refer to the object with =[[tab:basic-data]]= (see
10605 [[*Internal links]]):
10607 #+begin_example
10608   ,#+CAPTION: This is the caption for the next table (or link)
10609   ,#+NAME:   tab:basic-data
10610   | ... | ... |
10611   |-----+-----|
10612 #+end_example
10614 Optionally, the caption can take the form:
10616 : #+CAPTION[Caption for list of tables]: Caption for table.
10618 #+cindex: inlined images, markup rules
10619 Some back-ends allow you to directly include images into the exported
10620 document.  Org does this, if a link to an image file does not have
10621 a description part, for example =[[./img/a.jpg]]=.  If you wish to define
10622 a caption for the image and maybe a label for internal cross
10623 references, make sure that the link is on a line by itself and precede
10624 it with =CAPTION= and =NAME= keywords as follows:
10626 #+begin_example
10627   ,#+CAPTION: This is the caption for the next figure link (or table)
10628   ,#+NAME:   fig:SED-HR4049
10629   [[./img/a.jpg]]
10630 #+end_example
10632 #+texinfo: @noindent
10633 Such images can be displayed within the buffer.  See [[*Handling links][the discussion of
10634 image links]].
10636 Even though images and tables are prominent examples of captioned
10637 structures, the same caption mechanism can apply to many
10638 others---e.g., LaTeX equations, source code blocks.  Depending on the
10639 export back-end, those may or may not be handled.
10641 ** Literal examples
10642 :PROPERTIES:
10643 :DESCRIPTION: Source code examples with special formatting.
10644 :END:
10645 #+cindex: literal examples, markup
10646 #+cindex: code line references, markup
10648 You can include literal examples that should not be subjected to
10649 markup.  Such examples are typeset in monospace, so this is well
10650 suited for source code and similar examples.
10652 #+cindex: BEGIN_EXAMPLE
10653 #+cindex: example block
10654 #+begin_example
10655   ,#+BEGIN_EXAMPLE
10656     Some example from a text file.
10657   ,#+END_EXAMPLE
10658 #+end_example
10660 Note that such blocks may be /indented/ in order to align nicely with
10661 indented text and in particular with plain list structure (see
10662 [[*Plain lists]]).  For simplicity when using small examples, you can
10663 also start the example lines with a colon followed by a space.  There
10664 may also be additional whitespace before the colon:
10666 #+begin_example
10667   Here is an example
10668      : Some example from a text file.
10669 #+end_example
10671 #+cindex: formatting source code, markup rules
10672 #+vindex: org-latex-listings
10673 If the example is source code from a programming language, or any
10674 other text that can be marked up by Font Lock in Emacs, you can ask
10675 for the example to look like the fontified Emacs buffer[fn:104].  This
10676 is done with the code block, where you also need to specify the name
10677 of the major mode that should be used to fontify the example[fn:105],
10678 see [[*Structure templates]] for shortcuts to easily insert code blocks.
10680 #+cindex: BEGIN_SRC
10681 #+cindex: src block
10682 #+begin_example
10683   ,#+BEGIN_SRC emacs-lisp
10684     (defun org-xor (a b)
10685       "Exclusive or."
10686       (if a (not b) b))
10687    ,#+END_SRC
10688 #+end_example
10690 Both in =example= and in =src= snippets, you can add a =-n= switch to
10691 the end of the =#+BEGIN= line, to get the lines of the example
10692 numbered.  The =-n= takes an optional numeric argument specifying the
10693 starting line number of the block.  If you use a =+n= switch, the
10694 numbering from the previous numbered snippet is continued in the
10695 current one.  The =+n= switch can also take a numeric argument.  This
10696 adds the value of the argument to the last line of the previous block
10697 to determine the starting line number.
10699 #+begin_example
10700   ,#+BEGIN_SRC emacs-lisp -n 20
10701     ;; This exports with line number 20.
10702     (message "This is line 21")
10703   ,#+END_SRC
10705   ,#+BEGIN_SRC emacs-lisp +n 10
10706     ;; This is listed as line 31.
10707     (message "This is line 32")
10708   ,#+END_SRC
10709 #+end_example
10711 In literal examples, Org interprets strings like =(ref:name)= as
10712 labels, and use them as targets for special hyperlinks like
10713 =[[(name)]]=---i.e., the reference name enclosed in single parenthesis.
10714 In HTML, hovering the mouse over such a link remote-highlights the
10715 corresponding code line, which is kind of cool.
10717 You can also add a =-r= switch which /removes/ the labels from the
10718 source code[fn:106].  With the =-n= switch, links to these references
10719 are labeled by the line numbers from the code listing.  Otherwise
10720 links use the labels with no parentheses.  Here is an example:
10722 #+begin_example -l "(dumb-reference:%s)"
10723   ,#+BEGIN_SRC emacs-lisp -n -r
10724     (save-excursion                 (ref:sc)
10725        (goto-char (point-min))      (ref:jump)
10726   ,#+END_SRC
10727   In line [[(sc)]] we remember the current position. [[(jump)][Line (jump)]]
10728   jumps to point-min.
10729 #+end_example
10731 #+cindex: indentation, in source blocks
10732 Finally, you can use =-i= to preserve the indentation of a specific
10733 code block (see [[*Editing source code]]).
10735 #+vindex: org-coderef-label-format
10736 If the syntax for the label format conflicts with the language syntax,
10737 use a =-l= switch to change the format, for example
10739 : #+BEGIN_SRC pascal -n -r -l "((%s))"
10741 #+texinfo: @noindent
10742 See also the variable ~org-coderef-label-format~.
10744 HTML export also allows examples to be published as text areas (see
10745 [[*Text areas in HTML export]]).
10747 Because the =#+BEGIN= ... =#+END= patterns need to be added so often,
10748 a shortcut is provided (see [[*Structure templates]]).
10750 - {{{kbd(C-c ')}}} (~org-edit-special~) ::
10752      #+kindex: C-c '
10753      #+findex: org-edit-special
10754      Edit the source code example at point in its native mode.  This
10755      works by switching to a temporary buffer with the source code.
10756      You need to exit by pressing {{{kbd(C-c ')}}} again[fn:107].  The
10757      edited version then replaces the old version in the Org buffer.
10758      Fixed-width regions---where each line starts with a colon
10759      followed by a space---are edited using ~artist-mode~[fn:108] to
10760      allow creating ASCII drawings easily.  Using this command in an
10761      empty line creates a new fixed-width region.
10763 - {{{kbd(C-c l)}}} (~org-store-link~) ::
10765      #+kindex: C-c l
10766      #+findex: org-store-link
10767      Calling ~org-store-link~ while editing a source code example in
10768      a temporary buffer created with {{{kbd(C-c ')}}} prompts for
10769      a label.  Make sure that it is unique in the current buffer, and
10770      insert it with the proper formatting like =(ref:label)= at the
10771      end of the current line.  Then the label is stored as a link
10772      =(label)=, for retrieval with {{{kbd(C-c C-l)}}}.
10774 ** Special symbols
10775 :PROPERTIES:
10776 :DESCRIPTION: Greek letters and other symbols.
10777 :END:
10778 #+cindex: math symbols
10779 #+cindex: special symbols
10780 #+cindex: @TeX{} macros
10781 #+cindex: @LaTeX{} fragments, markup rules
10782 #+cindex: HTML entities
10783 #+cindex: @LaTeX{} entities
10785 You can use LaTeX-like syntax to insert special symbols---named
10786 entities---like =\alpha= to indicate the Greek letter, or =\to= to indicate
10787 an arrow.  Completion for these symbols is available, just type =\=
10788 and maybe a few letters, and press {{{kbd(M-TAB)}}} to see possible
10789 completions.  If you need such a symbol inside a word, terminate it
10790 with a pair of curly brackets.  For example
10792 #+begin_example
10793   Pro tip: Given a circle \Gamma of diameter d, the length of its
10794   circumference is \pi{}d.
10795 #+end_example
10797 #+findex: org-entities-help
10798 #+vindex: org-entities-user
10799 A large number of entities is provided, with names taken from both
10800 HTML and LaTeX; you can comfortably browse the complete list from
10801 a dedicated buffer using the command ~org-entities-help~.  It is also
10802 possible to provide your own special symbols in the variable
10803 ~org-entities-user~.
10805 During export, these symbols are transformed into the native format of
10806 the exporter back-end.  Strings like =\alpha= are exported as =&alpha;= in
10807 the HTML output, and as =\(\alpha\)= in the LaTeX output.  Similarly, =\nbsp=
10808 becomes =&nbsp;= in HTML and =~= in LaTeX.
10810 #+cindex: escaping characters
10811 Entities may also be used as a way to escape markup in an Org
10812 document, e.g., =\under{}not underlined\under= exports as =_not underlined_=.
10814 #+cindex: special symbols, in-buffer display
10815 If you would like to see entities displayed as UTF-8 characters, use
10816 the following command[fn:109]:
10818 - {{{kbd(C-c C-x \)}}} (~org-toggle-pretty-entities~) ::
10819      #+kindex: C-c C-x \
10820      #+findex: org-toggle-pretty-entities
10822      Toggle display of entities as UTF-8 characters.  This does not
10823      change the buffer content which remains plain ASCII, but it
10824      overlays the UTF-8 character for display purposes only.
10826 #+cindex: shy hyphen, special symbol
10827 #+cindex: dash, special symbol
10828 #+cindex: ellipsis, special symbol
10829 In addition to regular entities defined above, Org exports in
10830 a special way[fn:110] the following commonly used character
10831 combinations: =\-= is treated as a shy hyphen, =--= and =---= are
10832 converted into dashes, and =...= becomes a compact set of dots.
10834 ** Subscripts and superscripts
10835 :PROPERTIES:
10836 :DESCRIPTION: Simple syntax for raising/lowering text.
10837 :END:
10838 #+cindex: subscript
10839 #+cindex: superscript
10841 =^= and =_= are used to indicate super- and subscripts.  To increase
10842 the readability of ASCII text, it is not necessary, but OK, to
10843 surround multi-character sub- and superscripts with curly braces.  For
10844 example
10846 #+begin_example
10847   The radius of the sun is R_sun = 6.96 x 10^8 m.  On the other hand,
10848   the radius of Alpha Centauri is R_{Alpha Centauri} = 1.28 x R_{sun}.
10849 #+end_example
10851 #+vindex: org-use-sub-superscripts
10852 If you write a text where the underscore is often used in a different
10853 context, Org's convention to always interpret these as subscripts can
10854 get in your way.  Configure the variable ~org-use-sub-superscripts~ to
10855 change this convention.  For example, when setting this variable to
10856 ~{}~, =a_b= is not interpreted as a subscript, but =a_{b}= is.
10858 - {{{kbd(C-c C-x \)}}} (~org-toggle-pretty-entities~~) ::
10859      #+kindex: C-c C-x \
10860      #+findex: org-toggle-pretty-entities
10862      In addition to showing entities as UTF-8 characters, this command
10863      also formats sub- and superscripts in a WYSIWYM way.
10865 ** Embedded LaTeX
10866 :PROPERTIES:
10867 :DESCRIPTION: LaTeX can be freely used inside Org documents.
10868 :ALT_TITLE: Embedded Latex
10869 :END:
10870 #+cindex: @TeX{} interpretation
10871 #+cindex: @LaTeX{} interpretation
10873 Plain ASCII is normally sufficient for almost all note taking.
10874 Exceptions include scientific notes, which often require mathematical
10875 symbols and the occasional formula.  LaTeX[fn:111] is widely used to
10876 typeset scientific documents.  Org mode supports embedding LaTeX code
10877 into its files, because many academics are used to writing and reading
10878 LaTeX source code, and because it can be readily processed to produce
10879 pretty output for a number of export back-ends.
10881 *** LaTeX fragments
10882 :PROPERTIES:
10883 :DESCRIPTION: Complex formulas made easy.
10884 :END:
10885 #+cindex: @LaTeX{} fragments
10887 #+vindex: org-format-latex-header
10888 Org mode can contain LaTeX math fragments, and it supports ways to
10889 process these for several export back-ends.  When exporting to LaTeX,
10890 the code is left as it is.  When exporting to HTML, Org can use either
10891 [[http://www.mathjax.org][MathJax]] (see [[*Math formatting in HTML export]]) or transcode the math
10892 into images (see [[*Previewing LaTeX fragments]]).
10894 LaTeX fragments do not need any special marking at all.  The following
10895 snippets are identified as LaTeX source code:
10897 - Environments of any kind[fn:112].  The only requirement is that the
10898   =\begin= statement appears on a new line, preceded by only
10899   whitespace.
10901 - Text within the usual LaTeX math delimiters.  To avoid conflicts
10902   with currency specifications, single =$= characters are only
10903   recognized as math delimiters if the enclosed text contains at most
10904   two line breaks, is directly attached to the =$= characters with no
10905   whitespace in between, and if the closing =$= is followed by
10906   whitespace, punctuation or a dash.  For the other delimiters, there
10907   is no such restriction, so when in doubt, use =\(...\)= as inline
10908   math delimiters.
10910 #+texinfo: @noindent
10911 For example:
10913 #+begin_example
10914   \begin{equation}                        % arbitrary environments,
10915   x=\sqrt{b}                              % even tables, figures
10916   \end{equation}                          % etc
10918   If $a^2=b$ and \( b=2 \), then the solution must be
10919   either $$ a=+\sqrt{2} $$ or \[ a=-\sqrt{2} \].
10920 #+end_example
10922 #+vindex: org-export-with-latex
10923 LaTeX processing can be configured with the variable
10924 ~org-export-with-latex~.  The default setting is ~t~ which means
10925 MathJax for HTML, and no processing for ASCII and LaTeX back-ends.
10926 You can also set this variable on a per-file basis using one of these
10927 lines:
10929 | =#+OPTIONS: tex:t=        | Do the right thing automatically (MathJax) |
10930 | =#+OPTIONS: tex:nil=      | Do not process LaTeX fragments at all      |
10931 | =#+OPTIONS: tex:verbatim= | Verbatim export, for jsMath or so          |
10933 *** Previewing LaTeX fragments
10934 :PROPERTIES:
10935 :DESCRIPTION: What will this snippet look like?
10936 :END:
10937 #+cindex: @LaTeX{} fragments, preview
10939 #+vindex: org-preview-latex-default-process
10940 If you have a working LaTeX installation and =dvipng=, =dvisvgm= or
10941 =convert= installed[fn:113], LaTeX fragments can be processed to
10942 produce images of the typeset expressions to be used for inclusion
10943 while exporting to HTML (see [[*LaTeX fragments]]), or for inline
10944 previewing within Org mode.
10946 #+vindex: org-format-latex-options
10947 #+vindex: org-format-latex-header
10948 You can customize the variables ~org-format-latex-options~ and
10949 ~org-format-latex-header~ to influence some aspects of the preview.
10950 In particular, the ~:scale~ (and for HTML export, ~:html-scale~)
10951 property of the former can be used to adjust the size of the preview
10952 images.
10954 - {{{kbd(C-c C-x C-l)}}} (~org-toggle-latex-fragment~) ::
10955      #+kindex: C-c C-x C-l
10956      #+findex: org-toggle-latex-fragment
10958      Produce a preview image of the LaTeX fragment at point and
10959      overlay it over the source code.  If there is no fragment at
10960      point, process all fragments in the current entry (between two
10961      headlines).  When called with a prefix argument, process the
10962      entire subtree.  When called with two prefix arguments, or when
10963      the cursor is before the first headline, process the entire
10964      buffer.
10966 #+vindex: org-startup-with-latex-preview
10967 You can turn on the previewing of all LaTeX fragments in a file with
10969 : #+STARTUP: latexpreview
10971 To disable it, simply use
10973 : #+STARTUP: nolatexpreview
10975 *** Using CDLaTeX to enter math
10976 :PROPERTIES:
10977 :DESCRIPTION: Speed up entering of formulas.
10978 :ALT_TITLE: CDLaTeX mode
10979 :END:
10980 #+cindex: CD@LaTeX{}
10982 CDLaTeX mode is a minor mode that is normally used in combination with
10983 a major LaTeX mode like AUCTeX in order to speed-up insertion of
10984 environments and math templates.  Inside Org mode, you can make use of
10985 some of the features of CDLaTeX mode.  You need to install
10986 =cdlatex.el= and =texmathp.el= (the latter comes also with AUCTeX)
10987 from [[http://www.astro.uva.nl/~dominik/Tools/cdlatex]].  Do not use
10988 CDLaTeX mode itself under Org mode, but use the light version
10989 ~org-cdlatex-mode~ that comes as part of Org mode.  Turn it on for the
10990 current buffer with {{{kbd(M-x org-cdlatex-mode)}}}, or for all Org
10991 files with
10993 #+begin_src emacs-lisp
10994   (add-hook 'org-mode-hook 'turn-on-org-cdlatex)
10995 #+end_src
10997 When this mode is enabled, the following features are present (for
10998 more details see the documentation of CDLaTeX mode):
11000 #+attr_texinfo: :sep ,
11001 - {{{kbd(C-c {)}}} ::
11002      #+kindex: C-c @{
11004      Insert an environment template.
11006 - {{{kbd(TAB)}}} ::
11007      #+kindex: TAB
11009      The {{{kbd(TAB)}}} expands the template if the cursor is inside
11010      a LaTeX fragment[fn:114].  For example, {{{kbd(TAB)}}} expands
11011      =fr= to =\frac{}{}= and position the cursor correctly inside the
11012      first brace.  Another {{{kbd(TAB)}}} gets you into the second
11013      brace.
11015      Even outside fragments, {{{kbd(TAB)}}} expands environment
11016      abbreviations at the beginning of a line.  For example, if you
11017      write =equ= at the beginning of a line and press {{{kbd(TAB)}}},
11018      this abbreviation is expanded to an =equation= environment.  To
11019      get a list of all abbreviations, type {{{kbd(M-x
11020      cdlatex-command-help)}}}.
11022 - {{{kbd(^)}}}, {{{kbd(_)}}} ::
11023      #+kindex: _
11024      #+kindex: ^
11025      #+vindex: cdlatex-simplify-sub-super-scripts
11027      Pressing {{{kbd(_)}}} and {{{kbd(^)}}} inside a LaTeX fragment
11028      inserts these characters together with a pair of braces.  If you
11029      use {{{kbd(TAB)}}} to move out of the braces, and if the braces
11030      surround only a single character or macro, they are removed again
11031      (depending on the variable ~cdlatex-simplify-sub-super-scripts~).
11033 - {{{kbd(`)}}} ::
11034      #+kindex: `
11036      Pressing the backquote followed by a character inserts math
11037      macros, also outside LaTeX fragments.  If you wait more than 1.5
11038      seconds after the backquote, a help window pops up.
11040 - {{{kbd(')}}} ::
11041      #+kindex: '
11043      Pressing the single-quote followed by another character modifies
11044      the symbol before point with an accent or a font.  If you wait
11045      more than 1.5 seconds after the single-quote, a help window pops
11046      up.  Character modification works only inside LaTeX fragments;
11047      outside the quote is normal.
11049 * Exporting
11050 :PROPERTIES:
11051 :DESCRIPTION: Sharing and publishing notes.
11052 :END:
11053 #+cindex: exporting
11055 Sometimes, you may want to pretty print your notes, publish them on
11056 the web or even share them with people not using Org.  In these cases,
11057 the Org export facilities can be used to convert your documents to
11058 a variety of other formats, while retaining as much structure (see
11059 [[*Document structure]]) and markup (see [[*Markup for rich export]]) as
11060 possible.
11062 #+cindex: export back-end
11063 Libraries responsible for such translation are called back-ends.  Org
11064 ships with the following ones
11066 - /ascii/ (ASCII format)
11067 - /beamer/ (LaTeX Beamer format)
11068 - /html/ (HTML format)
11069 - /icalendar/ (iCalendar format)
11070 - /latex/ (LaTeX format)
11071 - /md/ (Markdown format)
11072 - /odt/ (OpenDocument Text format)
11073 - /org/ (Org format)
11074 - /texinfo/ (Texinfo format)
11075 - /man/ (Man page format)
11077 #+texinfo: @noindent
11078 Org also uses additional libraries located in =contrib/= directory
11079 (see [[*Installation]]).  Users can install additional export libraries
11080 for additional formats from the Emacs packaging system.  For easy
11081 discovery, these packages have a common naming scheme: ~ox-NAME~,
11082 where {{{var(NAME)}}} is one of the formats.  For example,
11083 ~ox-koma-letter~ /koma-letter/ back-end.
11085 #+vindex: org-export-backends
11086 Org loads back-ends for the following formats by default: ASCII, HTML,
11087 iCalendar, LaTeX and ODT.  Org can load additional back-ends either of
11088 two ways: through the ~org-export-backends~ variable configuration;
11089 or, by requiring the library in the Emacs init file like this:
11091 #+begin_src emacs-lisp
11092   (require 'ox-md)
11093 #+end_src
11095 ** The export dispatcher
11096 :PROPERTIES:
11097 :DESCRIPTION: The main interface.
11098 :END:
11099 #+cindex: dispatcher, for export commands
11100 #+cindex: Export, dispatcher
11102 The export dispatcher is the main interface for Org's exports.
11103 A hierarchical menu presents the currently configured export formats.
11104 Options are shown as easy toggle switches on the same screen.
11106 #+vindex: org-export-dispatch-use-expert-ui
11107 Org also has a minimal prompt interface for the export dispatcher.
11108 When the variable ~org-export-dispatch-use-expert-ui~ is set to
11109 a non-~nil~ value, Org prompts in the minibuffer.  To switch back to
11110 the hierarchical menu, press {{{kbd(?)}}}.
11112 - {{{kbd(C-c C-e)}}} (~org-export~) ::
11113      #+kindex: C-c C-e
11114      #+findex: org-export
11116      Invokes the export dispatcher interface.  The options show
11117      default settings.  The {{{kbd(C-u)}}} prefix argument preserves
11118      options from the previous export, including any sub-tree
11119      selections.
11121 Org exports the entire buffer by default.  If the Org buffer has an
11122 active region, then Org exports just that region.
11124 Within the dispatcher interface, the following key combinations can
11125 further alter what is exported, and how.
11127 - {{{kbd(C-a)}}} ::
11128      #+kindex: C-c C-e C-a
11130      Toggle asynchronous export.  Asynchronous export uses an external
11131      Emacs process with a specially configured initialization file to
11132      complete the exporting process in the background thereby
11133      releasing the current interface.  This is particularly useful
11134      when exporting long documents.
11136      Output from an asynchronous export is saved on the "the export
11137      stack".  To view this stack, call the export dispatcher with
11138      a double {{{kbd(C-u)}}} prefix argument.  If already in the
11139      export dispatcher menu, {{{kbd(&)}}} displays the stack.
11141      #+vindex: org-export-async-init-file
11142      To make the background export process the default, customize the
11143      variable, ~org-export-in-background~.  Additionally, you can set
11144      the initialization file used by the background process with
11145      ~org-export-async-init-file~.
11147      #+vindex: org-export-in-background
11148      You can make asynchronous export the default by setting
11149      ~org-export-in-background~.
11151 - {{{kbd(C-b)}}} ::
11152      #+kindex: C-c C-e C-b
11154      Toggle body-only export.  Useful for excluding headers and
11155      footers in the export.  Affects only those back-end formats that
11156      have such sections---like =<head>...</head>= in HTML.
11158 - {{{kbd(C-s}}} ::
11159      #+kindex: C-c C-e C-s
11161      Toggle sub-tree export.  When turned on, Org exports only the
11162      sub-tree starting from the cursor position at the time the export
11163      dispatcher was invoked.  Org uses the top heading of this
11164      sub-tree as the document's title.  If the cursor is not on
11165      a heading, Org uses the nearest enclosing header.  If the cursor
11166      is in the document preamble, Org signals an error and aborts
11167      export.
11169      #+vindex: org-export-initial-scope
11170      To make the sub-tree export the default, customize the variable
11171      ~org-export-initial-scope~.
11173 - {{{kbd(C-v)}}} ::
11174      #+kindex: C-c C-e C-v
11176      Toggle visible-only export.  Useful for exporting only visible
11177      parts of an Org document by adjusting outline visibility
11178      settings.
11180 ** Export settings
11181 :PROPERTIES:
11182 :DESCRIPTION: Common export settings.
11183 :END:
11184 #+cindex: options, for export
11185 #+cindex: Export, settings
11187 #+cindex: OPTIONS, keyword
11188 Export options can be set: globally with variables; for an individual
11189 file by making variables buffer-local with in-buffer settings (see
11190 [[*Summary of in-buffer settings]]), by setting individual keywords, or by
11191 specifying them in a compact form with the =OPTIONS= keyword; or for
11192 a tree by setting properties (see [[*Properties and columns]]).  Options
11193 set at a specific level override options set at a more general level.
11195 #+cindex: SETUPFILE, keyword
11196 In-buffer settings may appear anywhere in the file, either directly or
11197 indirectly through a file included using =#+SETUPFILE: filename or
11198 URL= syntax.  Option keyword sets tailored to a particular back-end
11199 can be inserted from the export dispatcher (see [[*The export
11200 dispatcher]]) using the =Insert template= command by pressing
11201 {{{kbd(#)}}}.  To insert keywords individually, a good way to make
11202 sure the keyword is correct is to type =#+= and then to use
11203 {{{kbd(M-TAB)}}}[fn:16] for completion.
11205 The export keywords available for every back-end, and their equivalent
11206 global variables, include:
11208 - =AUTHOR= ::
11210      #+cindex: AUTHOR, keyword
11211      #+vindex: user-full-name
11212      The document author (~user-full-name~).
11214 - =CREATOR= ::
11216      #+cindex: CREATOR, keyword
11217      #+vindex: org-expot-creator-string
11218      Entity responsible for output generation
11219      (~org-export-creator-string~).
11221 - =DATE= ::
11223      #+cindex: DATE, keyword
11224      #+vindex: org-export-date-timestamp-format
11225      A date or a time-stamp[fn:115].
11227 - =EMAIL= ::
11229      #+cindex: EMAIL, keyword
11230      #+vindex: user-mail-address
11231      The email address (~user-mail-address~).
11233 - =LANGUAGE= ::
11235      #+cindex: LANGUAGE, keyword
11236      #+vindex: org-export-default-language
11237      Language to use for translating certain strings
11238      (~org-export-default-language~).  With =#+LANGUAGE: fr=, for
11239      example, Org translates =Table of contents= to the French =Table
11240      des matières=.
11242 - =SELECT_TAGS= ::
11244      #+cindex: SELECT_TAGS, keyword
11245      #+vindex: org-export-select-tags
11246      The default value is ~("export")~.  When a tree is tagged with
11247      =export= (~org-export-select-tags~), Org selects that tree and
11248      its sub-trees for export.  Org excludes trees with =noexport=
11249      tags, see below.  When selectively exporting files with =export=
11250      tags set, Org does not export any text that appears before the
11251      first headline.
11253 - =EXCLUDE_TAGS= ::
11255      #+cindex: EXCLUDE_TAGS, keyword
11256      #+vindex: org-export-exclude-tags
11257      The default value is ~("noexport")~.  When a tree is tagged with
11258      =noexport= (~org-export-exclude-tags~), Org excludes that tree
11259      and its sub-trees from export.  Entries tagged with =noexport=
11260      are unconditionally excluded from the export, even if they have
11261      an =export= tag.  Even if a sub-tree is not exported, Org
11262      executes any code blocks contained there.
11264 - =TITLE= ::
11266      #+cindex: TITLE, keyword
11267      #+cindex: document title
11268      Org displays this title.  For long titles, use multiple =#+TITLE=
11269      lines.
11271 - =EXPORT_FILE_NAME= ::
11273      #+cindex: EXPORT_FILE_NAME, keyword
11274      The name of the output file to be generated.  Otherwise, Org
11275      generates the file name based on the buffer name and the
11276      extension based on the back-end format.
11278 The =OPTIONS= keyword is a compact form.  To configure multiple
11279 options, use several =OPTIONS= lines.  =OPTIONS= recognizes the
11280 following arguments.
11282 - ~'~ ::
11284      #+vindex: org-export-with-smart-quotes
11285      Toggle smart quotes (~org-export-with-smart-quotes~).  Depending
11286      on the language used, when activated, Org treats pairs of double
11287      quotes as primary quotes, pairs of single quotes as secondary
11288      quotes, and single quote marks as apostrophes.
11290 - ~*~ ::
11292      #+vindex: org-export-with-emphasize
11293      Toggle emphasized text (~org-export-with-emphasize~).
11295 - ~-~ ::
11297      #+vindex: org-export-with-special-strings
11298      Toggle conversion of special strings
11299      (~org-export-with-special-strings~).
11301 - ~:~ ::
11303      #+vindex: org-export-with-fixed-width
11304      Toggle fixed-width sections (~org-export-with-fixed-width~).
11306 - ~<~ ::
11308      #+vindex: org-export-with-timestamps
11309      Toggle inclusion of time/date active/inactive stamps
11310      (~org-export-with-timestamps~).
11312 - ~\n~ ::
11314      #+vindex: org-export-preserve-breaks
11315      Toggles whether to preserve line breaks
11316      (~org-export-preserve-breaks~).
11318 - ~^~ ::
11320      #+vindex: org-export-with-sub-superscripts
11321      Toggle TeX-like syntax for sub- and superscripts.  If you write
11322      =^:{}=, =a_{b}= is interpreted, but the simple =a_b= is left as
11323      it is (~org-export-with-sub-superscripts~).
11325 - ~arch~ ::
11327      #+vindex: org-export-with-archived-trees
11328      Configure how archived trees are exported.  When set to
11329      ~headline~, the export process skips the contents and processes
11330      only the headlines (~org-export-with-archived-trees~).
11332 - ~author~ ::
11334      #+vindex: org-export-with-author
11335      Toggle inclusion of author name into exported file
11336      (~org-export-with-author~).
11338 - ~broken-links~ ::
11340      #+vindex: org-export-with-broken-links
11341      Toggles if Org should continue exporting upon finding a broken
11342      internal link.  When set to ~mark~, Org clearly marks the problem
11343      link in the output (~org-export-with-broken-links~).
11345 - ~c~ ::
11347      #+vindex: org-export-with-clocks
11348      Toggle inclusion of CLOCK keywords (~org-export-with-clocks~).
11350 - ~creator~ ::
11352      #+vindex: org-export-with-creator
11353      Toggle inclusion of creator information in the exported file
11354      (~org-export-with-creator~).
11356 - ~d~ ::
11358      #+vindex: org-export-with-drawers
11359      Toggles inclusion of drawers, or list of drawers to include, or
11360      list of drawers to exclude (~org-export-with-drawers~).
11362 - ~date~ ::
11364      #+vindex: org-export-with-date
11365      Toggle inclusion of a date into exported file
11366      (~org-export-with-date~).
11368 - ~e~ ::
11370      #+vindex: org-export-with-entities
11371      Toggle inclusion of entities (~org-export-with-entities~).
11373 - ~email~ ::
11375      #+vindex: org-export-with-email
11376      Toggle inclusion of the author's e-mail into exported file
11377      (~org-export-with-email~).
11379 - ~f~ ::
11381      #+vindex: org-export-with-footnotes
11382      Toggle the inclusion of footnotes (~org-export-with-footnotes~).
11384 - ~H~ ::
11386      #+vindex: org-export-headline-levels
11387      Set the number of headline levels for export
11388      (~org-export-headline-levels~).  Below that level, headlines are
11389      treated differently.  In most back-ends, they become list items.
11391 - ~inline~ ::
11393      #+vindex: org-export-with-inlinetasks
11394      Toggle inclusion of inlinetasks (~org-export-with-inlinetasks~).
11396 - ~num~ ::
11398      #+vindex: org-export-with-section-numbers
11399      #+cindex: UNNUMBERED, property
11400      Toggle section-numbers (~org-export-with-section-numbers~).  When
11401      set to number N, Org numbers only those headlines at level N or
11402      above.  Set =UNNUMBERED= property to non-~nil~ to disable
11403      numbering of heading and subheadings entirely.  Moreover, when
11404      the value is =notoc= the headline, and all its children, do not
11405      appear in the table of contents either (see [[*Table of contents]]).
11407 - ~p~ ::
11409      #+vindex: org-export-with-planning
11410      Toggle export of planning information
11411      (~org-export-with-planning~).  "Planning information" comes from
11412      lines located right after the headline and contain any
11413      combination of these cookies: =SCHEDULED=, =DEADLINE=, or
11414      =CLOSED=.
11416 - ~pri~ ::
11418      #+vindex: org-export-with-priority
11419      Toggle inclusion of priority cookies
11420      (~org-export-with-priority~).
11422 - ~prop~ ::
11424      #+vindex: org-export-with-properties
11425      Toggle inclusion of property drawers, or list the properties to
11426      include (~org-export-with-properties~).
11428 - ~stat~ ::
11430      #+vindex: org-export-with-statistics-cookies
11431      Toggle inclusion of statistics cookies
11432      (~org-export-with-statistics-cookies~).
11434 - ~tags~ ::
11436      #+vindex: org-export-with-tags
11437      Toggle inclusion of tags, may also be ~not-in-toc~
11438      (~org-export-with-tags~).
11440 - ~tasks~ ::
11442      #+vindex: org-export-with-tasks
11443      Toggle inclusion of tasks (TODO items); or ~nil~ to remove all
11444      tasks; or ~todo~ to remove DONE tasks; or list the keywords to
11445      keep (~org-export-with-tasks~).
11447 - ~tex~ ::
11449      #+vindex: org-export-with-latex
11450      ~nil~ does not export; ~t~ exports; ~verbatim~ keeps everything
11451      in verbatim (~org-export-with-latex~).
11453 - ~timestamp~ ::
11455      #+vindex: org-export-time-stamp-file
11456      Toggle inclusion of the creation time in the exported file
11457      (~org-export-time-stamp-file~).
11459 - ~title~ ::
11461      #+vindex: org-export-with-title
11462      Toggle inclusion of title (~org-export-with-title~).
11464 - ~toc~ ::
11466      #+vindex: org-export-with-toc
11467      Toggle inclusion of the table of contents, or set the level limit
11468      (~org-export-with-toc~).
11470 - ~todo~ ::
11472      #+vindex: org-export-with-todo-keywords
11473      Toggle inclusion of TODO keywords into exported text
11474      (~org-export-with-todo-keywords~).
11476 - ~|~ ::
11478      #+vindex: org-export-with-tables
11479      Toggle inclusion of tables (~org-export-with-tables~).
11481 When exporting sub-trees, special node properties in them can override
11482 the above keywords.  They are special because they have an =EXPORT_=
11483 prefix.  For example, =DATE= and =EXPORT_FILE_NAME= keywords become,
11484 respectively, =EXPORT_DATE= and =EXPORT_FILE_NAME=.  Except for
11485 =SETUPFILE=, all other keywords listed above have an =EXPORT_=
11486 equivalent.
11488 #+cindex: BIND, keyword
11489 #+vindex: org-export-allow-bind-keywords
11490 If ~org-export-allow-bind-keywords~ is non-~nil~, Emacs variables can
11491 become buffer-local during export by using the =BIND= keyword.  Its
11492 syntax is =#+BIND: variable value=.  This is particularly useful for
11493 in-buffer settings that cannot be changed using keywords.
11495 ** Table of contents
11496 :PROPERTIES:
11497 :DESCRIPTION: The if and where of the table of contents.
11498 :END:
11499 #+cindex: table of contents
11500 #+cindex: list of tables
11501 #+cindex: list of listings
11503 #+cindex: @samp{toc}, in OPTIONS keyword
11504 #+vindex: org-export-with-toc
11505 The table of contents includes all headlines in the document.  Its
11506 depth is therefore the same as the headline levels in the file.  If
11507 you need to use a different depth, or turn it off entirely, set the
11508 ~org-export-with-toc~ variable accordingly.  You can achieve the same
11509 on a per file basis, using the following =toc= item in =OPTIONS=
11510 keyword:
11512 #+begin_example
11513   ,#+OPTIONS: toc:2          (only include two levels in TOC)
11514   ,#+OPTIONS: toc:nil        (no default TOC at all)
11515 #+end_example
11517 #+cindex: excluding entries from table of contents
11518 #+cindex: table of contents, exclude entries
11519 Org includes both numbered and unnumbered headlines in the table of
11520 contents[fn:116].  If you need to exclude an unnumbered headline,
11521 along with all its children, set the =UNNUMBERED= property to =notoc=
11522 value.
11524 #+begin_example
11525   ,* Subtree not numbered, not in table of contents either
11526     :PROPERTIES:
11527     :UNNUMBERED: notoc
11528     :END:
11529 #+end_example
11531 #+cindex: TOC, keyword
11532 Org normally inserts the table of contents directly before the first
11533 headline of the file.  To move the table of contents to a different
11534 location, first turn off the default with ~org-export-with-toc~
11535 variable or with =#+OPTIONS: toc:nil=.  Then insert =#+TOC: headlines
11536 N= at the desired location(s).
11538 #+begin_example
11539   ,#+OPTIONS: toc:nil
11540   ...
11541   ,#+TOC: headlines 2
11542 #+end_example
11544 To adjust the table of contents depth for a specific section of the
11545 Org document, append an additional =local= parameter.  This parameter
11546 becomes a relative depth for the current level.  The following example
11547 inserts a local table of contents, with direct children only.
11549 #+begin_example
11550   ,* Section
11551   ,#+TOC: headlines 1 local
11552 #+end_example
11554 Note that for this feature to work properly in LaTeX export, the Org
11555 file requires the inclusion of the titletoc package.  Because of
11556 compatibility issues, titletoc has to be loaded /before/ hyperref.
11557 Customize the ~org-latex-default-packages-alist~ variable.
11559 Use the =TOC= keyword to generate list of tables---respectively, all
11560 listings---with captions.
11562 #+begin_example
11563   ,#+TOC: listings
11564   ,#+TOC: tables
11565 #+end_example
11567 #+cindex: ALT_TITLE, property
11568 Normally Org uses the headline for its entry in the table of contents.
11569 But with =ALT_TITLE= property, a different entry can be specified for
11570 the table of contents.
11572 ** Include files
11573 :PROPERTIES:
11574 :DESCRIPTION: Include additional files into a document.
11575 :END:
11576 #+cindex: include files, during export
11577 #+cindex: Export, include files
11578 #+cindex: INCLUDE, keyword
11580 During export, you can include the content of another file.  For
11581 example, to include your =.emacs= file, you could use:
11583 : #+INCLUDE: "~/.emacs" src emacs-lisp
11585 #+texinfo: @noindent
11586 The optional second and third parameter are the markup (e.g., =quote=,
11587 =example=, or =src=), and, if the markup is =src=, the language for
11588 formatting the contents.  The markup is optional; if it is not given,
11589 assume text is in Org syntax and process it normally.  The =INCLUDE=
11590 keyword also allows additional parameters =:prefix1= and =:prefix= to
11591 specify prefixes for the first line and for each following line,
11592 =:minlevel= in order to get Org mode content demoted to a specified
11593 level, as well as any options accepted by the selected markup.  For
11594 example, to include a file as an item, use:
11596 : #+INCLUDE: "~/snippets/xx" :prefix1 "   + " :prefix "     "
11598 You can also include a portion of a file by specifying a lines range
11599 using the =:lines= parameter.  The line at the upper end of the range
11600 is not included.  The start and/or the end of the range may be omitted
11601 to use the obvious defaults.
11603 - =#+INCLUDE: "~/.emacs" :lines "5-10"= ::
11605      Include lines 5 to 10, 10 excluded.
11607 - =#+INCLUDE: "~/.emacs" :lines "-10"=  ::
11609      Include lines 1 to 10, 10 excluded.
11611 - =#+INCLUDE: "~/.emacs" :lines "10-"=  ::
11613      Include lines from 10 to EOF.
11615 You can visit the file being included with the following command.
11617 - {{{kbd(C-c ')}}} (~org-edit~special~) ::
11618      #+kindex: C-c '
11619      #+findex: org-edit-special
11621      Visit the include file at point.
11623 ** Macro replacement
11624 :PROPERTIES:
11625 :DESCRIPTION: Use macros to create templates.
11626 :END:
11627 #+cindex: macro replacement, during export
11628 #+cindex: MACRO, keyword
11630 #+vindex: org-export-global-macros
11631 Macros replace text snippets during export.  Macros are defined
11632 globally in ~org-export-global-macros~, or document-wise with the
11633 following syntax:
11635 : #+MACRO: name   replacement text; $1, $2 are arguments
11637 #+texinfo: @noindent
11638 which can be referenced using ={{{name(arg1, arg2)}}}=[fn:117].  For
11639 example
11641 #+begin_example
11642   ,#+MACRO: poem The rose is $1, The violet's $2. Life's ordered: Org assists you.
11643   {{{poem(red,blue)}}}
11644 #+end_example
11646 #+texinfo: @noindent
11647 becomes
11649 : The rose is red, The violet's blue. Life's ordered: Org assists you.
11651 As a special case, Org parses any replacement text starting with
11652 =(eval= as an Emacs Lisp expression and evaluates it accordingly.
11653 Within such templates, arguments become strings.  Thus, the following
11654 macro
11656 : #+MACRO: gnucheck (eval (concat "GNU/" (capitalize $1)))
11658 #+texinfo: @noindent
11659 turns ={{{gnucheck(linux)}}}= into =GNU/Linux= during export.
11661 Org recognizes macro references in following Org markup areas:
11662 paragraphs, headlines, verse blocks, tables cells and lists.  Org also
11663 recognizes macro references in keywords, such as =CAPTION=, =TITLE=,
11664 =AUTHOR=, =DATE=, and for some back-end specific export options.
11666 Org comes with following pre-defined macros:
11668 #+attr_texinfo: :sep ;
11669 - ={{{keyword(NAME)}}}=; ={{{title}}}=; ={{{author}}}=; ={{{email}}}= ::
11671      #+cindex: keyword, macro
11672      #+cindex: title, macro
11673      #+cindex: author, macro
11674      #+cindex: email, macro
11675      The =keyword= macro collects all values from {{{var(NAME)}}}
11676      keywords throughout the buffer, separated with white space.
11677      =title=, =author= and =email= macros are shortcuts for,
11678      respectively, ={{{keyword(TITLE)}}}=, ={{{keyword(AUTHOR)}}}= and
11679      ={{{keyword(EMAIL)}}}=.
11681 - ={{{date}}}=; ={{{date(FORMAT)}}}= ::
11683      #+cindex: date, macro
11684      This macro refers to the =DATE= keyword.  {{{var(FORMAT)}}} is an
11685      optional argument to the =date= macro that is used only if =DATE=
11686      is a single timestamp.  {{{var(FORMAT)}}} should be a format
11687      string understood by ~format-time-string~.
11689 - ={{{time(FORMAT)}}}=; ={{{modification-time(FORMAT, VC)}}}= ::
11691      #+cindex: time, macro
11692      #+cindex: modification time, macro
11693      These macros refer to the document's date and time of export and
11694      date and time of modification.  {{{var(FORMAT)}}} is a string
11695      understood by ~format-time-string~.  If the second argument to
11696      the ~modification-time~ macro is non-~nil~, Org uses =vc.el= to
11697      retrieve the document's modification time from the version
11698      control system.  Otherwise Org reads the file attributes.
11700 - ={{{input-file}}}= ::
11702      #+cindex: input file, macro
11703      This macro refers to the filename of the exported file.
11705 - ={{{property(PROPERTY-NAME)}}}=; ={{{property(PROPERTY-NAME, SEARCH OPTION)}}}= ::
11707      #+cindex: property, macro
11708      This macro returns the value of property {{{var(PROPERTY-NAME)}}}
11709      in the current entry.  If {{{var(SEARCH-OPTION)}}} (see [[*Search
11710      options in file links]]) refers to a remote entry, use it instead.
11712 - ={{{n}}}=; ={{{n(NAME)}}}=; ={{{n(NAME, ACTION)}}}= ::
11714      #+cindex: n, macro
11715      #+cindex: counter, macro
11716      This macro implements custom counters by returning the number of
11717      times the macro has been expanded so far while exporting the
11718      buffer.  You can create more than one counter using different
11719      {{{var(NAME)}}} values.  If {{{var(ACTION)}}} is =-=, previous
11720      value of the counter is held, i.e., the specified counter is not
11721      incremented.  If the value is a number, the specified counter is
11722      set to that value.  If it is any other non-empty string, the
11723      specified counter is reset to 1.  You may leave {{{var(NAME)}}}
11724      empty to reset the default counter.
11726 #+vindex: org-hide-macro-markers
11727 The surrounding brackets can be made invisible by setting
11728 ~org-hide-macro-markers~ non-~nil~.
11730 Org expands macros at the very beginning of the export process.
11732 ** Comment lines
11733 :PROPERTIES:
11734 :DESCRIPTION: What will not be exported.
11735 :END:
11736 #+cindex: exporting, not
11738 #+cindex: comment lines
11739 Lines starting with zero or more whitespace characters followed by one
11740 =#= and a whitespace are treated as comments and, as such, are not
11741 exported.
11743 #+cindex: BEGIN_COMMENT
11744 #+cindex: comment block
11745 Likewise, regions surrounded by =#+BEGIN_COMMENT= ... =#+END_COMMENT=
11746 are not exported.
11748 #+cindex: comment trees
11749 Finally, a =COMMENT= keyword at the beginning of an entry, but after
11750 any other keyword or priority cookie, comments out the entire subtree.
11751 In this case, the subtree is not exported and no code block within it
11752 is executed either[fn:118].  The command below helps changing the
11753 comment status of a headline.
11755 - {{{kbd(C-c ;)}}} (~org-toggle-comment~) ::
11756      #+kindex: C-c ;
11757      #+findex: org-toggle-comment
11759      Toggle the =COMMENT= keyword at the beginning of an entry.
11761 ** ASCII/Latin-1/UTF-8 export
11762 :PROPERTIES:
11763 :DESCRIPTION: Exporting to flat files with encoding.
11764 :END:
11765 #+cindex: ASCII export
11766 #+cindex: Latin-1 export
11767 #+cindex: UTF-8 export
11769 ASCII export produces an output file containing only plain ASCII
11770 characters.  This is the simplest and most direct text output.  It
11771 does not contain any Org markup.  Latin-1 and UTF-8 export use
11772 additional characters and symbols available in these encoding
11773 standards.  All three of these export formats offer the most basic of
11774 text output for maximum portability.
11776 #+vindex: org-ascii-text-width
11777 On export, Org fills and justifies text according to the text width
11778 set in ~org-ascii-text-width~.
11780 #+vindex: org-ascii-links-to-notes
11781 Org exports links using a footnote-like style where the descriptive
11782 part is in the text and the link is in a note before the next heading.
11783 See the variable ~org-ascii-links-to-notes~ for details.
11785 *** ASCII export commands
11786 :PROPERTIES:
11787 :UNNUMBERED: notoc
11788 :END:
11790 #+attr_texinfo: :sep ,
11791 - {{{kbd(C-c C-e t a)}}} (~org-ascii-export-to-ascii~), {{{kbd(C-c C-e t l)}}}, {{{kbd(C-c C-e t u)}}} ::
11792      #+kindex: C-c C-e t a
11793      #+kindex: C-c C-e t l
11794      #+kindex: C-c C-e t u
11795      #+findex: org-ascii-export-to-ascii
11797      Export as an ASCII file with a =.txt= extension.  For
11798      =myfile.org=, Org exports to =myfile.txt=, overwriting without
11799      warning.  For =myfile.txt=, Org exports to =myfile.txt.txt= in
11800      order to prevent data loss.
11802 #+attr_texinfo: :sep ,
11803 - {{{kbd(C-c C-e t A)}}} (~org-ascii-export-to-ascii~), {{{kbd(C-c C-e t L)}}}, {{{kbd(C-c C-e t U)}}} ::
11804      #+kindex: C-c C-e t A
11805      #+kindex: C-c C-e t L
11806      #+kindex: C-c C-e t U
11807      #+findex: org-ascii-export-to-ascii
11809      Export to a temporary buffer.  Does not create a file.
11811 *** ASCII specific export settings
11812 :PROPERTIES:
11813 :UNNUMBERED: notoc
11814 :END:
11816 The ASCII export back-end has one extra keyword for customizing ASCII
11817 output.  Setting this keyword works similar to the general options
11818 (see [[*Export settings]]).
11820 - =SUBTITLE= ::
11822      #+cindex: SUBTITLE, keyword
11823      The document subtitle.  For long subtitles, use multiple
11824      =#+SUBTITLE= lines in the Org file.  Org prints them on one
11825      continuous line, wrapping into multiple lines if necessary.
11827 *** Header and sectioning structure
11828 :PROPERTIES:
11829 :UNNUMBERED: notoc
11830 :END:
11832 Org converts the first three outline levels into headlines for ASCII
11833 export.  The remaining levels are turned into lists.  To change this
11834 cut-off point where levels become lists, see [[*Export settings]].
11836 *** Quoting ASCII text
11837 :PROPERTIES:
11838 :UNNUMBERED: notoc
11839 :END:
11841 To insert text within the Org file by the ASCII back-end, use one the
11842 following constructs, inline, keyword, or export block:
11844 #+cindex: ASCII, keyword
11845 #+cindex: BEGIN_EXPORT ascii
11846 #+begin_example
11847   Inline text @@ascii:and additional text@@ within a paragraph.
11849   ,#+ASCII: Some text
11851   ,#+BEGIN_EXPORT ascii
11852   Org exports text in this block only when using ASCII back-end.
11853   ,#+END_EXPORT
11854 #+end_example
11856 *** ASCII specific attributes
11857 :PROPERTIES:
11858 :UNNUMBERED: notoc
11859 :END:
11860 #+cindex: ATTR_ASCII, keyword
11861 #+cindex: horizontal rules, in ASCII export
11863 ASCII back-end recognizes only one attribute, ~:width~, which
11864 specifies the width of an horizontal rule in number of characters.
11865 The keyword and syntax for specifying widths is:
11867 #+begin_example
11868   ,#+ATTR_ASCII: :width 10
11869   -----
11870 #+end_example
11872 *** ASCII special blocks
11873 :PROPERTIES:
11874 :UNNUMBERED: notoc
11875 :END:
11876 #+cindex: special blocks, in ASCII export
11877 #+cindex: BEGIN_JUSTIFYLEFT
11878 #+cindex: BEGIN_JUSTIFYRIGHT
11880 Besides =#+BEGIN_CENTER= blocks (see [[*Paragraphs]]), ASCII back-end has
11881 these two left and right justification blocks:
11883 #+begin_example
11884   ,#+BEGIN_JUSTIFYLEFT
11885   It's just a jump to the left...
11886   ,#+END_JUSTIFYLEFT
11888   ,#+BEGIN_JUSTIFYRIGHT
11889   ...and then a step to the right.
11890   ,#+END_JUSTIFYRIGHT
11891 #+end_example
11893 ** Beamer export
11894 #+cindex: Beamer export
11896 Org uses Beamer export to convert an Org file tree structure into
11897 high-quality interactive slides for presentations.  Beamer is a LaTeX
11898 document class for creating presentations in PDF, HTML, and other
11899 popular display formats.
11901 *** Beamer export commands
11902 :PROPERTIES:
11903 :DESCRIPTION: For creating Beamer documents.
11904 :END:
11906 - {{{kbd(C-c C-e l b)}}} (~org-beamer-export-to-latex~) ::
11907      #+kindex: C-c C-e l b
11908      #+findex: org-beamer-export-to-latex
11910      Export as LaTeX file with a =.tex= extension.  For =myfile.org=,
11911      Org exports to =myfile.tex=, overwriting without warning.
11913 - {{{kbd(C-c C-e l B)}}} (~org-beamer-export-as-latex~) ::
11914      #+kindex: C-c C-e l B
11915      #+findex: org-beamer-export-as-latex
11917      Export to a temporary buffer.  Does not create a file.
11919 - {{{kbd(C-c C-e l P)}}} (~org-beamer-export-to-pdf~) ::
11920      #+kindex: C-c C-e l P
11921      #+findex: org-beamer-export-to-pdf
11923      Export as LaTeX file and then convert it to PDF format.
11925 - {{{kbd(C-c C-e l O)}}} ::
11926      #+kindex: C-c C-e l O
11928      Export as LaTeX file, convert it to PDF format, and then open the
11929      PDF file.
11931 *** Beamer specific export settings
11932 :PROPERTIES:
11933 :DESCRIPTION: For customizing Beamer export.
11934 :END:
11936 Beamer export back-end has several additional keywords for customizing
11937 Beamer output.  These keywords work similar to the general options
11938 settings (see [[*Export settings]]).
11940 - =BEAMER_THEME= ::
11942      #+cindex: BEAMER_THEME, keyword
11943      #+vindex: org-beamer-theme
11944      The Beamer layout theme (~org-beamer-theme~).  Use square
11945      brackets for options.  For example:
11947      : #+BEAMER_THEME: Rochester [height=20pt]
11949 - =BEAMER_FONT_THEME= ::
11951      #+cindex: BEAMER_FONT_THEME, keyword
11952      The Beamer font theme.
11954 - =BEAMER_INNER_THEME= ::
11956      #+cindex: BEAMER_INNER_THEME, keyword
11957      The Beamer inner theme.
11959 - =BEAMER_OUTER_THEME= ::
11961      #+cindex: BEAMER_OUTER_THEME, keyword
11962      The Beamer outer theme.
11964 - =BEAMER_HEADER= ::
11966      #+cindex: BEAMER_HEADER, keyword
11967      Arbitrary lines inserted in the preamble, just before the
11968      =hyperref= settings.
11970 - =DESCRIPTION= ::
11972      #+cindex: DESCRIPTION, keyword
11973      The document description.  For long descriptions, use multiple
11974      =DESCRIPTION= keywords.  By default, =hyperref= inserts
11975      =DESCRIPTION= as metadata.  Use ~org-latex-hyperref-template~ to
11976      configure document metadata.  Use ~org-latex-title-command~ to
11977      configure typesetting of description as part of front matter.
11979 - =KEYWORDS= ::
11981      #+cindex: KEYWORDS, keyword
11982      The keywords for defining the contents of the document.  Use
11983      multiple =KEYWORDS= lines if necessary.  By default, =hyperref=
11984      inserts =KEYWORDS= as metadata.  Use
11985      ~org-latex-hyperref-template~ to configure document metadata.
11986      Use ~org-latex-title-command~ to configure typesetting of
11987      keywords as part of front matter.
11989 - =SUBTITLE= ::
11991      #+cindex: SUBTITLE, keyword
11992      Document's subtitle.  For typesetting, use
11993      ~org-beamer-subtitle-format~ string.  Use
11994      ~org-latex-hyperref-template~ to configure document metadata.
11995      Use ~org-latex-title-command~ to configure typesetting of
11996      subtitle as part of front matter.
11998 *** Frames and Blocks in Beamer
11999 :PROPERTIES:
12000 :DESCRIPTION: For composing Beamer slides.
12001 :END:
12003 Org transforms heading levels into Beamer's sectioning elements,
12004 frames and blocks.  Any Org tree with a not-too-deep-level nesting
12005 should in principle be exportable as a Beamer presentation.
12008   #+vindex: org-beamer-frame-level
12009   Org headlines become Beamer frames when the heading level in Org is
12010   equal to ~org-beamer-frame-level~ or =H= value in a =OPTIONS= line
12011   (see [[*Export settings]]).
12013   #+cindex: BEAMER_ENV, property
12014   Org overrides headlines to frames conversion for the current tree of
12015   an Org file if it encounters the =BEAMER_ENV= property set to
12016   =frame= or =fullframe=.  Org ignores whatever
12017   ~org-beamer-frame-level~ happens to be for that headline level in
12018   the Org tree.  In Beamer terminology, a full frame is a frame
12019   without its title.
12021 - Org exports a Beamer frame's objects as block environments.  Org can
12022   enforce wrapping in special block types when =BEAMER_ENV= property
12023   is set[fn:119].  For valid values see
12024   ~org-beamer-environments-default~.  To add more values, see
12025   ~org-beamer-environments-extra~.
12026   #+vindex: org-beamer-environments-default
12027   #+vindex: org-beamer-environments-extra
12030   #+cindex: BEAMER_REF, property
12031   If =BEAMER_ENV= is set to =appendix=, Org exports the entry as an
12032   appendix.  When set to =note=, Org exports the entry as a note
12033   within the frame or between frames, depending on the entry's heading
12034   level.  When set to =noteNH=, Org exports the entry as a note
12035   without its title.  When set to =againframe=, Org exports the entry
12036   with =\againframe= command, which makes setting the =BEAMER_REF=
12037   property mandatory because =\againframe= needs frame to resume.
12039   When =ignoreheading= is set, Org export ignores the entry's headline
12040   but not its content.  This is useful for inserting content between
12041   frames.  It is also useful for properly closing a =column=
12042   environment.  @end itemize
12044   #+cindex: BEAMER_ACT, property
12045   #+cindex: BEAMER_OPT, property
12046   When =BEAMER_ACT= is set for a headline, Org export translates that
12047   headline as an overlay or action specification.  When enclosed in
12048   square brackets, Org export makes the overlay specification
12049   a default.  Use =BEAMER_OPT= to set any options applicable to the
12050   current Beamer frame or block.  The Beamer export back-end wraps
12051   with appropriate angular or square brackets.  It also adds the
12052   =fragile= option for any code that may require a verbatim block.
12054   #+cindex: BEAMER_COL, property
12055   To create a column on the Beamer slide, use the =BEAMER_COL=
12056   property for its headline in the Org file.  Set the value of
12057   =BEAMER_COL= to a decimal number representing the fraction of the
12058   total text width.  Beamer export uses this value to set the column's
12059   width and fills the column with the contents of the Org entry.  If
12060   the Org entry has no specific environment defined, Beamer export
12061   ignores the heading.  If the Org entry has a defined environment,
12062   Beamer export uses the heading as title.  Behind the scenes, Beamer
12063   export automatically handles LaTeX column separations for contiguous
12064   headlines.  To manually adjust them for any unique configurations
12065   needs, use the =BEAMER_ENV= property.
12067 *** Beamer specific syntax
12068 :PROPERTIES:
12069 :DESCRIPTION: For using in Org documents.
12070 :END:
12072 Since Org's Beamer export back-end is an extension of the LaTeX
12073 back-end, it recognizes other LaTeX specific syntax---for example,
12074 =#+LATEX:= or =#+ATTR_LATEX:=.  See [[*LaTeX export]], for details.
12076 Beamer export wraps the table of contents generated with =toc:t=
12077 =OPTION= keyword in a =frame= environment.  Beamer export does not
12078 wrap the table of contents generated with =TOC= keyword (see [[*Table of
12079 contents]]).  Use square brackets for specifying options.
12081 : #+TOC: headlines [currentsection]
12083 Insert Beamer-specific code using the following constructs:
12085 #+cindex: BEAMER, keyword
12086 #+cindex: BEGIN_EXPORT beamer
12087 #+begin_example
12088   ,#+BEAMER: \pause
12090   ,#+BEGIN_EXPORT beamer
12091     Only Beamer export back-end exports this.
12092   ,#+END_BEAMER
12094   Text @@beamer:some code@@ within a paragraph.
12095 #+end_example
12097 Inline constructs, such as the last one above, are useful for adding
12098 overlay specifications to objects with ~bold~, ~item~, ~link~,
12099 ~radio-target~ and ~target~ types.  Enclose the value in angular
12100 brackets and place the specification at the beginning of the object as
12101 shown in this example:
12103 :  A *@@beamer:<2->@@useful* feature
12105 #+cindex: ATTR_BEAMER, keyword
12106 Beamer export recognizes the =ATTR_BEAMER= keyword with the following
12107 attributes from Beamer configurations: =:environment= for changing
12108 local Beamer environment, =:overlay= for specifying Beamer overlays in
12109 angular or square brackets, and =:options= for inserting optional
12110 arguments.
12112 #+begin_example
12113   ,#+ATTR_BEAMER: :environment nonindentlist
12114   - item 1, not indented
12115   - item 2, not indented
12116   - item 3, not indented
12117 #+end_example
12119 #+begin_example
12120   ,#+ATTR_BEAMER: :overlay <+->
12121   - item 1
12122   - item 2
12123 #+end_example
12125 #+begin_example
12126   ,#+ATTR_BEAMER: :options [Lagrange]
12127   Let $G$ be a finite group, and let $H$ be
12128   a subgroup of $G$.  Then the order of $H$ divides the order of $G$.
12129 #+end_example
12131 *** Editing support
12132 :PROPERTIES:
12133 :DESCRIPTION: Editing support.
12134 :END:
12136 The ~org-beamer-mode~ is a special minor mode for faster editing of
12137 Beamer documents.
12139 : #+STARTUP: beamer
12141 - {{{kbd(C-c C-b)}}} (~org-beamer-select-environment~) ::
12142      #+kindex: C-c C-b
12143      #+findex: org-beamer-select-environment
12145      The ~org-beamer-mode~ provides this key for quicker selections in
12146      Beamer normal environments, and for selecting the =BEAMER_COL=
12147      property.
12149 *** A Beamer example
12150 :PROPERTIES:
12151 :DESCRIPTION: A complete presentation.
12152 :END:
12154 Here is an example of an Org document ready for Beamer export.
12156 #+begin_example
12157   ;#+TITLE: Example Presentation
12158   ;#+AUTHOR: Carsten Dominik
12159   ;#+OPTIONS: H:2 toc:t num:t
12160   ;#+LATEX_CLASS: beamer
12161   ;#+LATEX_CLASS_OPTIONS: [presentation]
12162   ;#+BEAMER_THEME: Madrid
12163   ;#+COLUMNS: %45ITEM %10BEAMER_ENV(Env) %10BEAMER_ACT(Act) %4BEAMER_COL(Col) %8BEAMER_OPT(Opt)
12165   ,* This is the first structural section
12167   ,** Frame 1
12168   ,*** Thanks to Eric Fraga                                           :B_block:
12169       :PROPERTIES:
12170       :BEAMER_COL: 0.48
12171       :BEAMER_ENV: block
12172       :END:
12173       for the first viable Beamer setup in Org
12174   ,*** Thanks to everyone else                                        :B_block:
12175       :PROPERTIES:
12176       :BEAMER_COL: 0.48
12177       :BEAMER_ACT: <2->
12178       :BEAMER_ENV: block
12179       :END:
12180       for contributing to the discussion
12181   ,**** This will be formatted as a beamer note                       :B_note:
12182        :PROPERTIES:
12183        :BEAMER_env: note
12184        :END:
12185   ,** Frame 2 (where we will not use columns)
12186   ,*** Request
12187       Please test this stuff!
12188 #+end_example
12190 ** HTML export
12191 :PROPERTIES:
12192 :DESCRIPTION: Exporting to HTML.
12193 :END:
12194 #+cindex: HTML export
12196 Org mode contains an HTML exporter with extensive HTML formatting
12197 compatible with XHTML 1.0 strict standard.
12199 *** HTML export commands
12200 :PROPERTIES:
12201 :DESCRIPTION: Invoking HTML export.
12202 :END:
12204 - {{{kbd(C-c C-e h h)}}} (~org-html-export-to-html~) ::
12205      #+kindex: C-c C-e h h
12206      #+kindex: C-c C-e h o
12207      #+findex: org-html-export-to-html
12209      Export as HTML file with a =.html= extension.  For =myfile.org=,
12210      Org exports to =myfile.html=, overwriting without warning.
12211      {{{kbd{C-c C-e h o)}}} exports to HTML and opens it in a web
12212      browser.
12214 - {{{kbd(C-c C-e h H)}}} (~org-html-export-as-html~) ::
12215      #+kindex: C-c C-e h H
12216      #+findex: org-html-export-as-html
12218      Exports to a temporary buffer.  Does not create a file.
12220 *** HTML specific export settings
12221 :PROPERTIES:
12222 :DESCRIPTION: Settings for HTML export.
12223 :END:
12225 HTML export has a number of keywords, similar to the general options
12226 settings described in [[*Export settings]].
12228 - =DESCRIPTION= ::
12230      #+cindex: DESCRIPTION, keyword
12231      This is the document's description, which the HTML exporter
12232      inserts it as a HTML meta tag in the HTML file.  For long
12233      descriptions, use multiple =DESCRIPTION= lines.  The exporter
12234      takes care of wrapping the lines properly.
12236 - =HTML_DOCTYPE= ::
12238      #+cindex: HTML_DOCTYPE, keyword
12239      #+vindex: org-html-doctype
12240      Specify the document type, for example: HTML5
12241      (~org-html-doctype~).
12243 - =HTML_CONTAINER= ::
12245      #+cindex: HTML_CONTAINER, keyword
12246      #+vindex: org-html-container-element
12247      Specify the HTML container, such as =div=, for wrapping sections
12248      and elements (~org-html-container-element~).
12250 - =HTML_LINK_HOME= ::
12252      #+cindex: HTML_LINK_HOME, keyword
12253      #+vindex: org-html-link-home
12254      The URL for home link (~org-html-link-home~).
12256 - =HTML_LINK_UP= ::
12258      #+cindex: HTML_LINK_UP, keyword
12259      #+vindex: org-html-link-up
12260      The URL for the up link of exported HTML pages
12261      (~org-html-link-up~).
12263 - =HTML_MATHJAX= ::
12265      #+cindex: HTML_MATHJAX, keyword
12266      #+vindex: org-html-mathjax-options
12267      Options for MathJax (~org-html-mathjax-options~).  MathJax is
12268      used to typeset LaTeX math in HTML documents.  See [[*Math
12269      formatting in HTML export]], for an example.
12271 - =HTML_HEAD= ::
12273      #+cindex: HTML_HEAD, keyword
12274      #+vindex: org-html-head
12275      Arbitrary lines for appending to the HTML document's head
12276      (~org-html-head~).
12278 - =HTML_HEAD_EXTRA= ::
12280      #+cindex: HTML_HEAD_EXTRA, keyword
12281      #+vindex: org-html-head-extra
12282      More arbitrary lines for appending to the HTML document's head
12283      (~org-html-head-extra~).
12285 - =KEYWORDS= ::
12287      #+cindex: KEYWORDS, keyword
12288      Keywords to describe the document's content.  HTML exporter
12289      inserts these keywords as HTML meta tags.  For long keywords, use
12290      multiple =KEYWORDS= lines.
12292 - =LATEX_HEADER= ::
12294      #+cindex: LATEX_HEADER, keyword
12295      Arbitrary lines for appending to the preamble; HTML exporter
12296      appends when transcoding LaTeX fragments to images (see [[*Math
12297      formatting in HTML export]]).
12299 - =SUBTITLE= ::
12301      #+cindex: SUBTITLE, keyword
12302      The document's subtitle.  HTML exporter formats subtitle if
12303      document type is =HTML5= and the CSS has a =subtitle= class.
12305 Some of these keywords are explained in more detail in the following
12306 sections of the manual.
12308 *** HTML doctypes
12309 :PROPERTIES:
12310 :DESCRIPTION: Exporting various (X)HTML flavors.
12311 :END:
12313 Org can export to various (X)HTML flavors.
12315 #+vindex: org-html-doctype
12316 #+vindex: org-html-doctype-alist
12317 Set the ~org-html-doctype~ variable for different (X)HTML variants.
12318 Depending on the variant, the HTML exporter adjusts the syntax of HTML
12319 conversion accordingly.  Org includes the following ready-made
12320 variants:
12322 - ~"html4-strict"~
12323 - ~"html4-transitional"~
12324 - ~"html4-frameset"~
12325 - ~"xhtml-strict"~
12326 - ~"xhtml-transitional"~
12327 - ~"xhtml-frameset"~
12328 - ~"xhtml-11"~
12329 - ~"html5"~
12330 - ~"xhtml5"~
12332 #+texinfo: @noindent
12333 See the variable ~org-html-doctype-alist~ for details.  The default is
12334 ~"xhtml-strict"~.
12336 #+vindex: org-html-html5-fancy
12337 #+cindex: HTML5, export new elements
12338 Org's HTML exporter does not by default enable new block elements
12339 introduced with the HTML5 standard.  To enable them, set
12340 ~org-html-html5-fancy~ to non-~nil~.  Or use an =OPTIONS= line in the
12341 file to set =html5-fancy=.
12343 HTML5 documents can now have arbitrary =#+BEGIN= ... =#+END= blocks.
12344 For example:
12346 #+begin_example
12347   ,#+BEGIN_aside
12348     Lorem ipsum
12349   ,#+END_aside
12350 #+end_example
12352 #+texinfo: @noindent
12353 exports to:
12355 #+begin_src html
12356   <aside>
12357     <p>Lorem ipsum</p>
12358   </aside>
12359 #+end_src
12361 #+texinfo: @noindent
12362 while this:
12364 #+begin_example
12365   ,#+ATTR_HTML: :controls controls :width 350
12366   ,#+BEGIN_video
12367   ,#+HTML: <source src="movie.mp4" type="video/mp4">
12368   ,#+HTML: <source src="movie.ogg" type="video/ogg">
12369   Your browser does not support the video tag.
12370   ,#+END_video
12371 #+end_example
12373 #+texinfo: @noindent
12374 exports to:
12376 #+begin_src html
12377   <video controls="controls" width="350">
12378     <source src="movie.mp4" type="video/mp4">
12379       <source src="movie.ogg" type="video/ogg">
12380         <p>Your browser does not support the video tag.</p>
12381   </video>
12382 #+end_src
12384 #+vindex: org-html-html5-elements
12385 When special blocks do not have a corresponding HTML5 element, the
12386 HTML exporter reverts to standard translation (see
12387 ~org-html-html5-elements~).  For example, =#+BEGIN_lederhosen= exports
12388 to ~<div class="lederhosen">~.
12390 Special blocks cannot have headlines.  For the HTML exporter to wrap
12391 the headline and its contents in ~<section>~ or ~<article>~ tags, set
12392 the =HTML_CONTAINER= property for the headline.
12394 *** HTML preamble and postamble
12395 :PROPERTIES:
12396 :DESCRIPTION: Inserting preamble and postamble.
12397 :END:
12398 #+vindex: org-html-preamble
12399 #+vindex: org-html-postamble
12400 #+vindex: org-html-preamble-format
12401 #+vindex: org-html-postamble-format
12402 #+vindex: org-html-validation-link
12403 #+vindex: org-export-creator-string
12404 #+vindex: org-export-time-stamp-file
12406 The HTML exporter has delineations for preamble and postamble.  The
12407 default value for ~org-html-preamble~ is ~t~, which makes the HTML
12408 exporter insert the preamble.  See the variable
12409 ~org-html-preamble-format~ for the format string.
12411 Set ~org-html-preamble~ to a string to override the default format
12412 string.  If the string is a function, the HTML exporter expects the
12413 function to return a string upon execution.  The HTML exporter inserts
12414 this string in the preamble.  The HTML exporter does not insert
12415 a preamble if ~org-html-preamble~ is set ~nil~.
12417 The default value for ~org-html-postamble~ is ~auto~, which makes the
12418 HTML exporter build a postamble from looking up author's name, email
12419 address, creator's name, and date.  Set ~org-html-postamble~ to ~t~ to
12420 insert the postamble in the format specified in the
12421 ~org-html-postamble-format~ variable.  The HTML exporter does not
12422 insert a postamble if ~org-html-postamble~ is set to ~nil~.
12424 *** Quoting HTML tags
12425 :PROPERTIES:
12426 :DESCRIPTION: Using direct HTML in Org files.
12427 :END:
12429 The HTML export back-end transforms =<= and =>= to =&lt;= and =&gt;=.
12431 To include raw HTML code in the Org file so the HTML export back-end
12432 can insert that HTML code in the output, use this inline syntax:
12433 =@@html:...@@=.  For example:
12435 : @@html:<b>@@bold text@@html:</b>@@
12437 #+cindex: HTML, keyword
12438 #+cindex: BEGIN_EXPORT html
12439 For larger raw HTML code blocks, use these HTML export code blocks:
12441 #+begin_example
12442   ,#+HTML: Literal HTML code for export
12444   ,#+BEGIN_EXPORT html
12445     All lines between these markers are exported literally
12446   ,#+END_EXPORT
12447 #+end_example
12449 *** Links in HTML export
12450 :PROPERTIES:
12451 :DESCRIPTION: Inserting and formatting links.
12452 :END:
12453 #+cindex: links, in HTML export
12454 #+cindex: internal links, in HTML export
12455 #+cindex: external links, in HTML export
12457 The HTML export back-end transforms Org's internal links (see
12458 [[*Internal links]]) to equivalent HTML links in the output.  The back-end
12459 similarly handles Org's automatic links created by radio targets (see
12460 [[*Radio targets]]) similarly.  For Org links to external files, the
12461 back-end transforms the links to /relative/ paths.
12463 #+vindex: org-html-link-org-files-as-html
12464 For Org links to other =.org= files, the back-end automatically
12465 changes the file extension to =.html= and makes file paths relative.
12466 If the =.org= files have an equivalent =.html= version at the same
12467 location, then the converted links should work without any further
12468 manual intervention.  However, to disable this automatic path
12469 translation, set ~org-html-link-org-files-as-html~ to ~nil~.  When
12470 disabled, the HTML export back-end substitutes the ID-based links in
12471 the HTML output.  For more about linking files when publishing to
12472 a directory, see [[*Publishing links]].
12474 Org files can also have special directives to the HTML export
12475 back-end.  For example, by using =#+ATTR_HTML= lines to specify new
12476 format attributes to ~<a>~ or ~<img>~ tags.  This example shows
12477 changing the link's title and style:
12479 #+cindex: ATTR_HTML, keyword
12480 #+begin_example
12481   ,#+ATTR_HTML: :title The Org mode homepage :style color:red;
12482   [[https://orgmode.org]]
12483 #+end_example
12485 *** Tables in HTML export
12486 :PROPERTIES:
12487 :DESCRIPTION: How to modify the formatting of tables.
12488 :END:
12489 #+cindex: tables, in HTML
12490 #+vindex: org-export-html-table-tag
12492 The HTML export back-end uses ~org-html-table-default-attributes~ when
12493 exporting Org tables to HTML.  By default, the exporter does not draw
12494 frames and cell borders.  To change for this for a table, use the
12495 following lines before the table in the Org file:
12497 #+cindex: CAPTION, keyword
12498 #+cindex: ATTR_HTML, keyword
12499 #+begin_example
12500    ,#+CAPTION: This is a table with lines around and between cells
12501    ,#+ATTR_HTML: border="2" rules="all" frame="border"
12502 #+end_example
12504 The HTML export back-end preserves column groupings in Org tables (see
12505 [[*Column groups]]) when exporting to HTML.
12507 Additional options for customizing tables for HTML export.
12509 - ~org-html-table-align-individual-fields~ ::
12511      #+vindex: org-html-table-align-individual-fields
12512      Non-~nil~ attaches style attributes for alignment to each table
12513      field.
12515 - ~org-html-table-caption-above~ ::
12517      #+vindex: org-html-table-caption-above
12518      Non-~nil~ places caption string at the beginning of the table.
12520 - ~org-html-table-data-tags~ ::
12522      #+vindex: org-html-table-data-tags
12523      Opening and ending tags for table data fields.
12525 - ~org-html-table-default-attributes~ ::
12527      #+vindex: org-html-table-default-attributes
12528      Default attributes and values for table tags.
12530 - ~org-html-table-header-tags~ ::
12532      #+vindex: org-html-table-header-tags
12533      Opening and ending tags for table's header fields.
12535 - ~org-html-table-row-tags~ ::
12537      #+vindex: org-html-table-row-tags
12538      Opening and ending tags for table rows.
12540 - ~org-html-table-use-header-tags-for-first-column~ ::
12542      #+vindex: org-html-table-use-header-tags-for-first-column
12543      Non-~nil~ formats column one in tables with header tags.
12545 *** Images in HTML export
12546 :PROPERTIES:
12547 :DESCRIPTION: How to insert figures into HTML output.
12548 :END:
12549 #+cindex: images, inline in HTML
12550 #+cindex: inlining images in HTML
12552 The HTML export back-end has features to convert Org image links to
12553 HTML inline images and HTML clickable image links.
12555 #+vindex: org-html-inline-images
12556 When the link in the Org file has no description, the HTML export
12557 back-end by default in-lines that image.  For example:
12558 =[[file:myimg.jpg]]= is in-lined, while =[[file:myimg.jpg][the image]]= links to the text,
12559 =the image=.  For more details, see the variable
12560 ~org-html-inline-images~.
12562 On the other hand, if the description part of the Org link is itself
12563 another link, such as =file:= or =http:= URL pointing to an image, the
12564 HTML export back-end in-lines this image and links to the main image.
12565 This Org syntax enables the back-end to link low-resolution thumbnail
12566 to the high-resolution version of the image, as shown in this example:
12568 : [[file:highres.jpg][file:thumb.jpg]]
12570 To change attributes of in-lined images, use =#+ATTR_HTML= lines in
12571 the Org file.  This example shows realignment to right, and adds ~alt~
12572 and ~title~ attributes in support of text viewers and modern web
12573 accessibility standards.
12575 #+cindex: CAPTION, keyword
12576 #+cindex: ATTR_HTML, keyword
12577 #+begin_example
12578   ,#+CAPTION: A black cat stalking a spider
12579   ,#+ATTR_HTML: :alt cat/spider image :title Action! :align right
12580   [[./img/a.jpg]]
12581 #+end_example
12583 #+texinfo: @noindent
12584 The HTML export back-end copies the =http= links from the Org file as
12587 *** Math formatting in HTML export
12588 :PROPERTIES:
12589 :DESCRIPTION: Beautiful math also on the web.
12590 :END:
12591 #+cindex: MathJax
12592 #+cindex: dvipng
12593 #+cindex: dvisvgm
12594 #+cindex: ImageMagick
12596 #+vindex: org-html-mathjax-options~
12597 LaTeX math snippets (see [[*LaTeX fragments]]) can be displayed in two
12598 different ways on HTML pages.  The default is to use the [[http://www.mathjax.org][MathJax]],
12599 which should work out of the box with Org[fn:120].  Some MathJax
12600 display options can be configured via ~org-html-mathjax-options~, or
12601 in the buffer.  For example, with the following settings,
12603 #+begin_example
12604   ,#+HTML_MATHJAX: align: left indent: 5em tagside: left font: Neo-Euler
12605   ,#+HTML_MATHJAX: cancel.js noErrors.js
12606 #+end_example
12608 #+texinfo: @noindent
12609 equation labels are displayed on the left margin and equations are
12610 five em from the left margin.  In addition, it loads the two MathJax
12611 extensions =cancel.js= and =noErrors.js=[fn:121].
12613 #+vindex: org-html-mathjax-template
12614 See the docstring of ~org-html-mathjax-options~ for all supported
12615 variables.  The MathJax template can be configure via
12616 ~org-html-mathjax-template~.
12618 If you prefer, you can also request that LaTeX fragments are processed
12619 into small images that will be inserted into the browser page.  Before
12620 the availability of MathJax, this was the default method for Org
12621 files.  This method requires that the dvipng program, dvisvgm or
12622 ImageMagick suite is available on your system.  You can still get this
12623 processing with
12625 : #+OPTIONS: tex:dvipng
12627 : #+OPTIONS: tex:dvisvgm
12629 #+texinfo: @noindent
12632 : #+OPTIONS: tex:imagemagick
12634 *** Text areas in HTML export
12635 :PROPERTIES:
12636 :DESCRIPTION: An alternate way to show an example.
12637 :END:
12639 #+cindex: text areas, in HTML
12640 Before Org mode's Babel, one popular approach to publishing code in
12641 HTML was by using =:textarea=.  The advantage of this approach was
12642 that copying and pasting was built into browsers with simple
12643 JavaScript commands.  Even editing before pasting was made simple.
12645 The HTML export back-end can create such text areas.  It requires an
12646 =#+ATTR_HTML= line as shown in the example below with the =:textarea=
12647 option.  This must be followed by either an example or a source code
12648 block.  Other Org block types do not honor the =:textarea= option.
12650 By default, the HTML export back-end creates a text area 80 characters
12651 wide and height just enough to fit the content.  Override these
12652 defaults with =:width= and =:height= options on the =#+ATTR_HTML=
12653 line.
12655 #+begin_example
12656   ,#+ATTR_HTML: :textarea t :width 40
12657   ,#+BEGIN_EXAMPLE
12658     (defun org-xor (a b)
12659        "Exclusive or."
12660        (if a (not b) b))
12661   ,#+END_EXAMPLE
12662 #+end_example
12664 *** CSS support
12665 :PROPERTIES:
12666 :DESCRIPTION: Changing the appearance of the output.
12667 :END:
12668 #+cindex: CSS, for HTML export
12669 #+cindex: HTML export, CSS
12671 #+vindex: org-export-html-todo-kwd-class-prefix
12672 #+vindex: org-export-html-tag-class-prefix
12673 You can modify the CSS style definitions for the exported file.  The
12674 HTML exporter assigns the following special CSS classes[fn:122] to
12675 appropriate parts of the document---your style specifications may
12676 change these, in addition to any of the standard classes like for
12677 headlines, tables, etc.
12679 | ~p.author~           | author information, including email                    |
12680 | ~p.date~             | publishing date                                        |
12681 | ~p.creator~          | creator info, about org mode version                   |
12682 | ~.title~             | document title                                         |
12683 | ~.subtitle~          | document subtitle                                      |
12684 | ~.todo~              | TODO keywords, all not-done states                     |
12685 | ~.done~              | the DONE keywords, all states that count as done       |
12686 | ~.WAITING~           | each TODO keyword also uses a class named after itself |
12687 | ~.timestamp~         | timestamp                                              |
12688 | ~.timestamp-kwd~     | keyword associated with a timestamp, like =SCHEDULED=  |
12689 | ~.timestamp-wrapper~ | span around keyword plus timestamp                     |
12690 | ~.tag~               | tag in a headline                                      |
12691 | ~._HOME~             | each tag uses itself as a class, "@" replaced by "_"   |
12692 | ~.target~            | target for links                                       |
12693 | ~.linenr~            | the line number in a code example                      |
12694 | ~.code-highlighted~  | for highlighting referenced code lines                 |
12695 | ~div.outline-N~      | div for outline level N (headline plus text)           |
12696 | ~div.outline-text-N~ | extra div for text at outline level N                  |
12697 | ~.section-number-N~  | section number in headlines, different for each level  |
12698 | ~.figure-number~     | label like "Figure 1:"                                 |
12699 | ~.table-number~      | label like "Table 1:"                                  |
12700 | ~.listing-number~    | label like "Listing 1:"                                |
12701 | ~div.figure~         | how to format an in-lined image                        |
12702 | ~pre.src~            | formatted source code                                  |
12703 | ~pre.example~        | normal example                                         |
12704 | ~p.verse~            | verse paragraph                                        |
12705 | ~div.footnotes~      | footnote section headline                              |
12706 | ~p.footnote~         | footnote definition paragraph, containing a footnote   |
12707 | ~.footref~           | a footnote reference number (always a <sup>)           |
12708 | ~.footnum~           | footnote number in footnote definition (always <sup>)  |
12709 | ~.org-svg~           | default class for a linked =.svg= image                |
12711 #+vindex: org-html-style-default
12712 #+vindex: org-html-head
12713 #+vindex: org-html-head-extra
12714 #+cindex: HTML_INCLUDE_STYLE, keyword
12715 The HTML export back-end includes a compact default style in each
12716 exported HTML file.  To override the default style with another style,
12717 use these keywords in the Org file.  They will replace the global
12718 defaults the HTML exporter uses.
12720 #+cindex: HTML_HEAD, keyword
12721 #+cindex: HTML_HEAD_EXTRA, keyword
12722 #+begin_example
12723   ,#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="style1.css" />
12724   ,#+HTML_HEAD_EXTRA: <link rel="alternate stylesheet" type="text/css" href="style2.css" />
12725 #+end_example
12727 #+vindex: org-html-head-include-default-style
12728 To just turn off the default style, customize
12729 ~org-html-head-include-default-style~ variable, or use this option
12730 line in the Org file.
12732 #+cindex: html-style, OPTIONS item
12733 : #+OPTIONS: html-style:nil
12735 For longer style definitions, either use several =HTML_HEAD= and
12736 =HTML_HEAD_EXTRA= keywords, or use ~<style> ... </style>~ blocks
12737 around them.  Both of these approaches can avoid referring to an
12738 external file.
12740 #+cindex: HTML_CONTAINER_CLASS, property
12741 In order to add styles to a sub-tree, use the =HTML_CONTAINER_CLASS=
12742 property to assign a class to the tree.  In order to specify CSS
12743 styles for a particular headline, you can use the id specified in
12744 a =CUSTOM_ID= property.
12746 Never change the ~org-html-style-default~ constant.  Instead use other
12747 simpler ways of customizing as described above.
12749 *** JavaScript supported display of web pages
12750 :PROPERTIES:
12751 :DESCRIPTION: Info and folding in a web browser.
12752 :ALT_TITLE: JavaScript support
12753 :END:
12755 Sebastian Rose has written a JavaScript program especially designed to
12756 enhance the web viewing experience of HTML files created with Org.
12757 This program enhances large files in two different ways of viewing.
12758 One is an /Info/-like mode where each section is displayed separately
12759 and navigation can be done with the {{{kbd(n)}}} and {{{kbd(p)}}}
12760 keys, and some other keys as well, press {{{kbd(?)}}} for an overview
12761 of the available keys.  The second one has a /folding/ view, much like
12762 Org provides inside Emacs.  The script is available at
12763 https://orgmode.org/org-info.js and the documentation at
12764 https://orgmode.org/worg/code/org-info-js/.  The script is hosted on
12765 https://orgmode.org, but for reliability, prefer installing it on your
12766 own web server.
12768 To use this program, just add this line to the Org file:
12770 #+cindex: INFOJS_OPT, keyword
12771 : #+INFOJS_OPT: view:info toc:nil
12773 #+texinfo: @noindent
12774 The HTML header now has the code needed to automatically invoke the
12775 script.  For setting options, use the syntax from the above line for
12776 options described below:
12778 - =path:= ::
12780      The path to the script.  The default is to grab the script from
12781      [[https://orgmode.org/org-info.js]], but you might want to have
12782      a local copy and use a path like =../scripts/org-info.js=.
12784 - =view:= ::
12786      Initial view when the website is first shown.  Possible values are:
12788      | =info=     | Info-like interface with one section per page          |
12789      | =overview= | Folding interface, initially showing only top-level    |
12790      | =content=  | Folding interface, starting with all headlines visible |
12791      | =showall=  | Folding interface, all headlines and text visible      |
12793 - =sdepth:= ::
12795      Maximum headline level still considered as an independent section
12796      for info and folding modes.  The default is taken from
12797      ~org-export-headline-levels~, i.e., the =H= switch in =OPTIONS=.
12798      If this is smaller than in ~org-export-headline-levels~, each
12799      info/folding section can still contain child headlines.
12801 - =toc:= ::
12803      Should the table of contents /initially/ be visible?  Even when
12804      =nil=, you can always get to the "toc" with {{{kbd(i)}}}.
12806 - =tdepth:= ::
12808      The depth of the table of contents.  The defaults are taken from
12809      the variables ~org-export-headline-levels~ and
12810      ~org-export-with-toc~.
12812 - =ftoc:= ::
12814      Does the CSS of the page specify a fixed position for the "toc"?
12815      If yes, the toc is displayed as a section.
12817 - =ltoc:= ::
12819      Should there be short contents (children) in each section?  Make
12820      this =above= if the section should be above initial text.
12822 - =mouse:= ::
12824      Headings are highlighted when the mouse is over them.  Should be
12825      =underline= (default) or a background color like =#cccccc=.
12827 - =buttons:= ::
12829      Should view-toggle buttons be everywhere?  When =nil= (the
12830      default), only one such button is present.
12832 #+texinfo: @noindent
12833 #+vindex: org-infojs-options
12834 #+vindex: org-export-html-use-infojs
12835 You can choose default values for these options by customizing the
12836 variable ~org-infojs-options~.  If you always want to apply the script
12837 to your pages, configure the variable ~org-export-html-use-infojs~.
12839 ** LaTeX export
12840 :PROPERTIES:
12841 :DESCRIPTION: Exporting to @LaTeX{} and processing to PDF.
12842 :END:
12843 #+cindex: @LaTeX{} export
12844 #+cindex: PDF export
12846 The LaTeX export back-end can handle complex documents, incorporate
12847 standard or custom LaTeX document classes, generate documents using
12848 alternate LaTeX engines, and produce fully linked PDF files with
12849 indexes, bibliographies, and tables of contents, destined for
12850 interactive online viewing or high-quality print publication.
12852 While the details are covered in-depth in this section, here are some
12853 quick references to variables for the impatient: for engines, see
12854 ~org-latex-compiler~; for build sequences, see
12855 ~org-latex-pdf-process~; for packages, see
12856 ~org-latex-default-packages-alist~ and ~org-latex-packages-alist~.
12858 An important note about the LaTeX export back-end: it is sensitive to
12859 blank lines in the Org document.  That's because LaTeX itself depends
12860 on blank lines to tell apart syntactical elements, such as paragraphs.
12862 *** LaTeX/PDF export commands
12863 :PROPERTIES:
12864 :DESCRIPTION: For producing @LaTeX{} and PDF documents.
12865 :END:
12867 - {{{kbd(C-c C-e l l)}}} (~org-latex-export-to-latex~) ::
12869      #+kindex: C-c C-e l l
12870      #+findex: org-latex-export-to-latex~
12871      Export to a LaTeX file with a =.tex= extension.  For
12872      =myfile.org=, Org exports to =myfile.tex=, overwriting without
12873      warning.
12875 - {{{kbd(C-c C-e l L)}}} (~org-latex-export-as-latex~) ::
12877      #+kindex: C-c C-e l L
12878      #+findex: org-latex-export-as-latex
12879      Export to a temporary buffer.  Do not create a file.
12881 - {{{kbd(C-c C-e l p)}}} (~org-latex-export-to-pdf~) ::
12883      #+kindex: C-c C-e l p
12884      #+findex: org-latex-export-to-pdf
12885      Export as LaTeX file and convert it to PDF file.
12887 - {{{kbd(C-c C-e l o)}}} ::
12889      #+kindex: C-c C-e l o
12890      Export as LaTeX file and convert it to PDF, then open the PDF
12891      using the default viewer.
12893 - {{{kbd(M-x org-export-region-as-latex)}}} ::
12895      Convert the region to LaTeX under the assumption that it was in Org
12896      mode syntax before.  This is a global command that can be invoked in
12897      any buffer.
12899 #+vindex: org-latex-compiler
12900 #+vindex: org-latex-bibtex-compiler
12901 #+vindex: org-latex-default-packages-alist
12902 #+cindex: pdflatex
12903 #+cindex: xelatex
12904 #+cindex: lualatex
12905 #+cindex: LATEX_COMPILER, keyword
12906 The LaTeX export back-end can use any of these LaTeX engines:
12907 =pdflatex=, =xelatex=, and =lualatex=.  These engines compile LaTeX
12908 files with different compilers, packages, and output options.  The
12909 LaTeX export back-end finds the compiler version to use from
12910 ~org-latex-compiler~ variable or the =#+LATEX_COMPILER= keyword in the
12911 Org file.  See the docstring for the
12912 ~org-latex-default-packages-alist~ for loading packages with certain
12913 compilers.  Also see ~org-latex-bibtex-compiler~ to set the
12914 bibliography compiler[fn:123].
12916 *** LaTeX specific export settings
12917 :PROPERTIES:
12918 :DESCRIPTION: Unique to this @LaTeX{} back-end.
12919 :END:
12921 The LaTeX export back-end has several additional keywords for
12922 customizing LaTeX output.  Setting these keywords works similar to the
12923 general options (see [[*Export settings]]).
12925 #+attr_texinfo: :sep ,
12926 - =DESCRIPTION= ::
12927      #+cindex: DESCRIPTION, keyword
12928      #+vindex: org-latex-hyperref-template
12929      #+vindex: org-latex-title-command
12930      The document's description.  The description along with author
12931      name, keywords, and related file metadata are inserted in the
12932      output file by the hyperref package.  See
12933      ~org-latex-hyperref-template~ for customizing metadata items.
12934      See ~org-latex-title-command~ for typesetting description into
12935      the document's front matter.  Use multiple =DESCRIPTION= keywords
12936      for long descriptions.
12938 - =LATEX_CLASS= ::
12940      #+cindex: LATEX_CLASS, keyword
12941      #+vindex: org-latex-default-class
12942      #+vindex: org-latex-classes
12943      This is LaTeX document class, such as /article/, /report/,
12944      /book/, and so on, which contain predefined preamble and headline
12945      level mapping that the LaTeX export back-end needs.  The back-end
12946      reads the default class name from the ~org-latex-default-class~
12947      variable.  Org has /article/ as the default class.  A valid
12948      default class must be an element of ~org-latex-classes~.
12950 - =LATEX_CLASS_OPTIONS= ::
12952      #+cindex: LATEX_CLASS_OPTIONS, keyword
12953      Options the LaTeX export back-end uses when calling the LaTeX
12954      document class.
12956 - =LATEX_COMPILER= ::
12958      #+cindex: LATEX_COMPILER, keyword
12959      #+vindex: org-latex-compiler
12960      The compiler, such as =pdflatex=, =xelatex=, =lualatex=, for
12961      producing the PDF.  See ~org-latex-compiler~.
12963 - =LATEX_HEADER=, =LATEX_HEADER_EXTRA= ::
12965      #+cindex: LATEX_HEADER, keyword
12966      #+cindex: LATEX_HEADER_EXTRA, keyword
12967      #+vindex: org-latex-classes
12968      Arbitrary lines to add to the document's preamble, before the
12969      hyperref settings.  See ~org-latex-classes~ for adjusting the
12970      structure and order of the LaTeX headers.
12972 - =KEYWORDS= ::
12974      #+cindex: KEYWORDS, keyword
12975      #+vindex: org-latex-hyperref-template
12976      #+vindex: org-latex-title-command
12977      The keywords for the document.  The description along with author
12978      name, keywords, and related file metadata are inserted in the
12979      output file by the hyperref package.  See
12980      ~org-latex-hyperref-template~ for customizing metadata items.
12981      See ~org-latex-title-command~ for typesetting description into
12982      the document's front matter.  Use multiple =KEYWORDS= lines if
12983      necessary.
12985 - =SUBTITLE= ::
12987      #+cindex: SUBTITLE, keyword
12988      #+vindex: org-latex-subtitle-separate
12989      #+vindex: org-latex-subtitle-format
12990      The document's subtitle.  It is typeset as per
12991      ~org-latex-subtitle-format~.  If ~org-latex-subtitle-separate~ is
12992      non-~nil~, it is typed as part of the ~\title~ macro.  See
12993      ~org-latex-hyperref-template~ for customizing metadata items.
12994      See ~org-latex-title-command~ for typesetting description
12995      into the document's front matter.
12997 The following sections have further details.
12999 *** LaTeX header and sectioning structure
13000 :PROPERTIES:
13001 :DESCRIPTION: Setting up the export file structure.
13002 :ALT_TITLE: LaTeX header and sectioning
13003 :END:
13004 #+cindex: @LaTeX{} class
13005 #+cindex: @LaTeX{} sectioning structure
13006 #+cindex: @LaTeX{} header
13007 #+cindex: header, for @LaTeX{} files
13008 #+cindex: sectioning structure, for @LaTeX{} export
13010 The LaTeX export back-end converts the first three of Org's outline
13011 levels into LaTeX headlines.  The remaining Org levels are exported as
13012 lists.  To change this globally for the cut-off point between levels
13013 and lists, (see [[*Export settings]]).
13015 By default, the LaTeX export back-end uses the /article/ class.
13017 #+vindex: org-latex-default-class
13018 #+vindex: org-latex-classes
13019 #+vindex: org-latex-default-packages-alist
13020 #+vindex: org-latex-packages-alist
13021 To change the default class globally, edit ~org-latex-default-class~.
13022 To change the default class locally in an Org file, add option lines
13023 =#+LATEX_CLASS: myclass=.  To change the default class for just a part
13024 of the Org file, set a sub-tree property, =EXPORT_LATEX_CLASS=.  The
13025 class name entered here must be valid member of ~org-latex-classes~.
13026 This variable defines a header template for each class into which the
13027 exporter splices the values of ~org-latex-default-packages-alist~ and
13028 ~org-latex-packages-alist~.  Use the same three variables to define
13029 custom sectioning or custom classes.
13031 #+cindex: LATEX_CLASS, keyword
13032 #+cindex: LATEX_CLASS_OPTIONS, keyword
13033 #+cindex: EXPORT_LATEX_CLASS, property
13034 #+cindex: EXPORT_LATEX_CLASS_OPTIONS, property
13035 The LaTeX export back-end sends the =LATEX_CLASS_OPTIONS= keyword and
13036 =EXPORT_LATEX_CLASS_OPTIONS= property as options to the LaTeX
13037 ~\documentclass~ macro.  The options and the syntax for specifying
13038 them, including enclosing them in square brackets, follow LaTeX
13039 conventions.
13041 : #+LATEX_CLASS_OPTIONS: [a4paper,11pt,twoside,twocolumn]
13043 #+cindex: LATEX_HEADER, keyword
13044 #+cindex: LATEX_HEADER_EXTRA, keyword
13045 The LaTeX export back-end appends values from =LATEX_HEADER= and
13046 =LATEX_HEADER_EXTRA= keywords to the LaTeX header.  The docstring for
13047 ~org-latex-classes~ explains in more detail.  Also note that LaTeX
13048 export back-end does not append =LATEX_HEADER_EXTRA= to the header
13049 when previewing LaTeX snippets (see [[*Previewing LaTeX fragments]]).
13051 A sample Org file with the above headers:
13053 #+begin_example
13054   ,#+LATEX_CLASS: article
13055   ,#+LATEX_CLASS_OPTIONS: [a4paper]
13056   ,#+LATEX_HEADER: \usepackage{xyz}
13058   ,* Headline 1
13059     some text
13060   ,* Headline 2
13061     some more text
13062 #+end_example
13064 *** Quoting LaTeX code
13065 :PROPERTIES:
13066 :DESCRIPTION: Incorporating literal @LaTeX{} code.
13067 :END:
13069 The LaTeX export back-end can insert any arbitrary LaTeX code, see
13070 [[*Embedded LaTeX]].  There are three ways to embed such code in the Org
13071 file and they all use different quoting syntax.
13073 #+cindex: inline, in @LaTeX{} export
13074 Inserting in-line quoted with @ symbols:
13076 : Code embedded in-line @@latex:any arbitrary LaTeX code@@ in a paragraph.
13078 #+cindex: LATEX, keyword
13079 Inserting as one or more keyword lines in the Org file:
13081 : #+LATEX: any arbitrary LaTeX code
13083 #+cindex: BEGIN_EXPORT latex
13084 Inserting as an export block in the Org file, where the back-end
13085 exports any code between begin and end markers:
13087 #+begin_example
13088   ,#+BEGIN_EXPORT latex
13089     any arbitrary LaTeX code
13090   ,#+END_EXPORT
13091 #+end_example
13093 *** Tables in LaTeX export
13094 :PROPERTIES:
13095 :DESCRIPTION: Options for exporting tables to @LaTeX{}.
13096 :END:
13097 #+cindex: tables, in @LaTeX{} export
13099 The LaTeX export back-end can pass several LaTeX attributes for table
13100 contents and layout.  Besides specifying label and caption (see
13101 [[*Images and tables]]), the other valid LaTeX attributes include:
13103 #+attr_texinfo: :sep ,
13104 - =:mode= ::
13106      #+vindex: org-latex-default-table-mode
13107      The LaTeX export back-end wraps the table differently depending
13108      on the mode for accurate rendering of math symbols.  Mode is
13109      either =table=, =math=, =inline-math= or =verbatim=.
13111      For =math= or =inline-math= mode, LaTeX export back-end wraps the
13112      table in a math environment, but every cell in it is exported
13113      as-is.  The LaTeX export back-end determines the default mode
13114      from ~org-latex-default-table-mode~.  The LaTeX export back-end
13115      merges contiguous tables in the same mode into a single
13116      environment.
13118 - =:environment= ::
13120      #+vindex: org-latex-default-table-environment
13121      Set the default LaTeX table environment for the LaTeX export
13122      back-end to use when exporting Org tables.  Common LaTeX table
13123      environments are provided by these packages: tabularx, longtable,
13124      array, tabu, and bmatrix.  For packages, such as tabularx and
13125      tabu, or any newer replacements, include them in the
13126      ~org-latex-packages-alist~ variable so the LaTeX export back-end
13127      can insert the appropriate load package headers in the converted
13128      LaTeX file.  Look in the docstring for the
13129      ~org-latex-packages-alist~ variable for configuring these
13130      packages for LaTeX snippet previews, if any.
13132 - =:caption= ::
13134      Use =CAPTION= keyword to set a simple caption for a table (see
13135      [[*Images and tables]]).  For custom captions, use =:caption=
13136      attribute, which accepts raw LaTeX code.  =:caption= value
13137      overrides =CAPTION= value.
13139 - =:float=, =:placement= ::
13141      The table environments by default are not floats in LaTeX.  To
13142      make them floating objects use =:float= with one of the following
13143      options: =sideways=, =multicolumn=, =t=, and =nil=.
13145      LaTeX floats can also have additional layout =:placement=
13146      attributes.  These are the usual =[h t b p ! H]= permissions
13147      specified in square brackets.  Note that for =:float sideways=
13148      tables, the LaTeX export back-end ignores =:placement=
13149      attributes.
13151 - =:align=, =:font=, =:width= ::
13153      The LaTeX export back-end uses these attributes for regular
13154      tables to set their alignments, fonts, and widths.
13156 - =:spread= ::
13158      When =:spread= is non-~nil~, the LaTeX export back-end spreads or
13159      shrinks the table by the =:width= for tabu and longtabu
13160      environments.  =:spread= has no effect if =:width= is not set.
13162 - =:booktabs=, =:center=, =:rmlines= ::
13164      #+vindex: org-latex-tables-booktabs
13165      #+vindex: org-latex-tables-centered
13166      All three commands are toggles.  =:booktabs= brings in modern
13167      typesetting enhancements to regular tables.  The booktabs package
13168      has to be loaded through ~org-latex-packages-alist~.  =:center=
13169      is for centering the table.  =:rmlines= removes all but the very
13170      first horizontal line made of ASCII characters from "table.el"
13171      tables only.
13173 - =:math-prefix=, =:math-suffix=, =:math-arguments= ::
13175      The LaTeX export back-end inserts =:math-prefix= string value in
13176      a math environment before the table.  The LaTeX export back-end
13177      inserts =:math-suffix= string value in a math environment after
13178      the table.  The LaTeX export back-end inserts =:math-arguments=
13179      string value between the macro name and the table's contents.
13180      =:math-arguments= comes in use for matrix macros that require
13181      more than one argument, such as =qbordermatrix=.
13183 LaTeX table attributes help formatting tables for a wide range of
13184 situations, such as matrix product or spanning multiple pages:
13186 #+begin_example
13187   ,#+ATTR_LATEX: :environment longtable :align l|lp{3cm}r|l
13188   | ... | ... |
13189   | ... | ... |
13191   ,#+ATTR_LATEX: :mode math :environment bmatrix :math-suffix \times
13192   | a | b |
13193   | c | d |
13194   ,#+ATTR_LATEX: :mode math :environment bmatrix
13195   | 1 | 2 |
13196   | 3 | 4 |
13197 #+end_example
13199 Set the caption with the LaTeX command
13200 =\bicaption{HeadingA}{HeadingB}=:
13202 #+begin_example
13203   ,#+ATTR_LATEX: :caption \bicaption{HeadingA}{HeadingB}
13204   | ... | ... |
13205   | ... | ... |
13206 #+end_example
13208 *** Images in LaTeX export
13209 :PROPERTIES:
13210 :DESCRIPTION: How to insert figures into @LaTeX{} output.
13211 :END:
13212 #+cindex: images, inline in LaTeX
13213 #+cindex: inlining images in LaTeX
13214 #+cindex: ATTR_LATEX, keyword
13216 The LaTeX export back-end processes image links in Org files that do
13217 not have descriptions, such as these links =[[file:img.jpg]]= or
13218 =[[./img.jpg]]=, as direct image insertions in the final PDF output.  In
13219 the PDF, they are no longer links but actual images embedded on the
13220 page.  The LaTeX export back-end uses =\includegraphics= macro to
13221 insert the image.  But for TikZ (http://sourceforge.net/projects/pgf/)
13222 images, the back-end uses an ~\input~ macro wrapped within
13223 a ~tikzpicture~ environment.
13225 For specifying image =:width=, =:height=, and other =:options=, use
13226 this syntax:
13228 #+begin_example
13229   ,#+ATTR_LATEX: :width 5cm :options angle=90
13230   [[./img/sed-hr4049.pdf]]
13231 #+end_example
13233 For custom commands for captions, use the =:caption= attribute.  It
13234 overrides the default =#+CAPTION= value:
13236 #+begin_example
13237   ,#+ATTR_LATEX: :caption \bicaption{HeadingA}{HeadingB}
13238   [[./img/sed-hr4049.pdf]]
13239 #+end_example
13241 When captions follow the method as described in [[*Images and tables]],
13242 the LaTeX export back-end wraps the picture in a floating =figure=
13243 environment.  To float an image without specifying a caption, set the
13244 =:float= attribute to one of the following:
13246 - =t= ::
13248      For a standard =figure= environment; used by default whenever an
13249      image has a caption.
13251 - =multicolumn= ::
13253      To span the image across multiple columns of a page; the back-end
13254      wraps the image in a =figure*= environment.
13256 - =wrap= ::
13258      For text to flow around the image on the right; the figure
13259      occupies the left half of the page.
13261 - =sideways= ::
13263      For a new page with the image sideways, rotated ninety degrees,
13264      in a =sidewaysfigure= environment; overrides =:placement=
13265      setting.
13267 - =nil= ::
13269      To avoid a =:float= even if using a caption.
13271 #+texinfo: @noindent
13272 Use the =placement= attribute to modify a floating environment's
13273 placement.
13275 #+begin_example
13276   ,#+ATTR_LATEX: :float wrap :width 0.38\textwidth :placement {r}{0.4\textwidth}
13277   [[./img/hst.png]]
13278 #+end_example
13280 #+vindex: org-latex-images-centered
13281 #+cindex: center image in LaTeX export
13282 #+cindex: image, centering in LaTeX export
13283 The LaTeX export back-end centers all images by default.  Setting
13284 =:center= to =nil= disables centering.  To disable centering globally,
13285 set ~org-latex-images-centered~ to =t=.
13287 Set the =:comment-include= attribute to non-~nil~ value for the LaTeX
13288 export back-end to comment out the =\includegraphics= macro.
13290 *** Plain lists in LaTeX export
13291 :PROPERTIES:
13292 :DESCRIPTION: Attributes specific to lists.
13293 :END:
13295 #+cindex: plain lists, in @LaTeX{} export
13296 #+cindex: ATTR_LATEX, keyword
13297 The LaTeX export back-end accepts the =environment= and =options=
13298 attributes for plain lists.  Both attributes work together for
13299 customizing lists, as shown in the examples:
13301 #+begin_example
13302   ,#+LATEX_HEADER: \usepackage[inline]{enumitem}
13303   Some ways to say "Hello":
13304   ,#+ATTR_LATEX: :environment itemize*
13305   ,#+ATTR_LATEX: :options [label={}, itemjoin={,}, itemjoin*={, and}]
13306   - Hola
13307   - Bonjour
13308   - Guten Tag.
13309 #+end_example
13311 Since LaTeX supports only four levels of nesting for lists, use an
13312 external package, such as =enumitem= in LaTeX, for levels deeper than
13313 four:
13315 #+begin_example
13316   ,#+LATEX_HEADER: \usepackage{enumitem}
13317   ,#+LATEX_HEADER: \renewlist{itemize}{itemize}{9}
13318   ,#+LATEX_HEADER: \setlist[itemize]{label=$\circ$}
13319   - One
13320     - Two
13321       - Three
13322         - Four
13323           - Five
13324 #+end_example
13326 *** Source blocks in LaTeX export
13327 :PROPERTIES:
13328 :DESCRIPTION: Attributes specific to source code blocks.
13329 :END:
13330 #+cindex: source blocks, in @LaTeX{} export
13331 #+cindex: ATTR_LATEX, keyword
13333 The LaTeX export back-end can make source code blocks into floating
13334 objects through the attributes =:float= and =:options=.  For =:float=:
13336 - =t= ::
13338      Makes a source block float; by default floats any source block
13339      with a caption.
13341 - =multicolumn= ::
13343      Spans the source block across multiple columns of a page.
13345 - =nil= ::
13347      Avoids a =:float= even if using a caption; useful for source code
13348      blocks that may not fit on a page.
13350 #+begin_example
13351   ,#+ATTR_LATEX: :float nil
13352   ,#+BEGIN_SRC emacs-lisp
13353     Lisp code that may not fit in a single page.
13354   ,#+END_SRC
13355 #+end_example
13357 #+vindex: org-latex-listings-options
13358 #+vindex: org-latex-minted-options
13359 The LaTeX export back-end passes string values in =:options= to LaTeX
13360 packages for customization of that specific source block.  In the
13361 example below, the =:options= are set for Minted.  Minted is a source
13362 code highlighting LaTeX package with many configurable options.
13364 #+begin_example
13365   ,#+ATTR_LATEX: :options commentstyle=\bfseries
13366   ,#+BEGIN_SRC emacs-lisp
13367     (defun Fib (n)
13368       (if (< n 2) n (+ (Fib (- n 1)) (Fib (- n 2)))))
13369   ,#+END_SRC
13370 #+end_example
13372 To apply similar configuration options for all source blocks in
13373 a file, use the ~org-latex-listings-options~ and
13374 ~org-latex-minted-options~ variables.
13376 *** Example blocks in LaTeX export
13377 :PROPERTIES:
13378 :DESCRIPTION: Attributes specific to example blocks.
13379 :END:
13380 #+cindex: example blocks, in @LaTeX{} export
13381 #+cindex: verbatim blocks, in @LaTeX{} export
13382 #+cindex: ATTR_LATEX, keyword
13384 The LaTeX export back-end wraps the contents of example blocks in
13385 a =verbatim= environment.  To change this behavior to use another
13386 environment globally, specify an appropriate export filter (see
13387 [[*Advanced configuration]]).  To change this behavior to use another
13388 environment for each block, use the =:environment= parameter to
13389 specify a custom environment.
13391 #+begin_example
13392   ,#+ATTR_LATEX: :environment myverbatim
13393   ,#+BEGIN_EXAMPLE
13394     This sentence is false.
13395   ,#+END_EXAMPLE
13396 #+end_example
13398 *** Special blocks in LaTeX export
13399 :PROPERTIES:
13400 :DESCRIPTION: Attributes specific to special blocks.
13401 :END:
13403 #+cindex: special blocks, in @LaTeX{} export
13404 #+cindex: abstract, in @LaTeX{} export
13405 #+cindex: proof, in @LaTeX{} export
13406 #+cindex: ATTR_LATEX, keyword
13408 For other special blocks in the Org file, the LaTeX export back-end
13409 makes a special environment of the same name.  The back-end also takes
13410 =:options=, if any, and appends as-is to that environment's opening
13411 string.  For example:
13413 #+begin_example
13414   ,#+BEGIN_abstract
13415     We demonstrate how to solve the Syracuse problem.
13416   ,#+END_abstract
13418   ,#+ATTR_LATEX: :options [Proof of important theorem]
13419   ,#+BEGIN_proof
13420     ...
13421     Therefore, any even number greater than 2 is the sum of two primes.
13422   ,#+END_proof
13423 #+end_example
13425 #+texinfo: @noindent
13426 exports to
13428 #+begin_example
13429   \begin{abstract}
13430     We demonstrate how to solve the Syracuse problem.
13431   \end{abstract}
13433   \begin{proof}[Proof of important theorem]
13434     ...
13435     Therefore, any even number greater than 2 is the sum of two primes.
13436   \end{proof}
13437 #+end_example
13439 If you need to insert a specific caption command, use =:caption=
13440 attribute.  It overrides standard =CAPTION= value, if any.  For
13441 example:
13443 #+begin_example
13444   ,#+ATTR_LATEX: :caption \MyCaption{HeadingA}
13445   ,#+BEGIN_proof
13446     ...
13447   ,#+END_proof
13448 #+end_example
13450 *** Horizontal rules in LaTeX export
13451 :PROPERTIES:
13452 :DESCRIPTION: Attributes specific to horizontal rules.
13453 :END:
13454 #+cindex: horizontal rules, in @LaTeX{} export
13455 #+cindex: ATTR_LATEX, keyword
13457 The LaTeX export back-end converts horizontal rules by the specified
13458 =:width= and =:thickness= attributes.  For example:
13460 #+begin_example
13461   ,#+ATTR_LATEX: :width .6\textwidth :thickness 0.8pt
13462   -----
13463 #+end_example
13465 ** Markdown export
13466 :PROPERTIES:
13467 :DESCRIPTION: Exporting to Markdown.
13468 :END:
13469 #+cindex: Markdown export
13471 The Markdown export back-end, "md", converts an Org file to a Markdown
13472 format, as defined at http://daringfireball.net/projects/markdown/.
13474 Since "md" is built on top of the HTML back-end, any Org constructs
13475 not supported by Markdown, such as tables, the underlying "html"
13476 back-end (see [[*HTML export]]) converts them.
13478 *** Markdown export commands
13479 :PROPERTIES:
13480 :UNNUMBERED: notoc
13481 :END:
13483 - {{{kbd(C-c C-e m m)}}} (~org-md-export-to-markdown~) ::
13485      #+kindex: C-c C-c m m
13486      #+findex: org-md-export-to-markdown
13487      Export to a text file with Markdown syntax.  For =myfile.org=,
13488      Org exports to =myfile.md=, overwritten without warning.
13490 - {{{kbd(C-c C-e m M)}}} (~org-md-export-as-markdown~) ::
13492      #+kindex: C-c C-c m M
13493      #+findex: org-md-export-as-markdown
13494      Export to a temporary buffer.  Does not create a file.
13496 - {{{kbd(C-c C-e m o)}}} ::
13498      #+kindex: C-c C-e m o
13499      Export as a text file with Markdown syntax, then open it.
13501 *** Header and sectioning structure
13502 :PROPERTIES:
13503 :UNNUMBERED: notoc
13504 :END:
13506 #+vindex: org-md-headline-style
13507 Based on ~org-md-headline-style~, Markdown export can generate
13508 headlines of both /atx/ and /setext/ types.  /atx/ limits headline
13509 levels to two whereas /setext/ limits headline levels to six.  Beyond
13510 these limits, the export back-end converts headlines to lists.  To set
13511 a limit to a level before the absolute limit (see [[*Export settings]]).
13513 ** OpenDocument Text export
13514 :PROPERTIES:
13515 :DESCRIPTION: Exporting to OpenDocument Text.
13516 :END:
13517 #+cindex: ODT
13518 #+cindex: OpenDocument
13519 #+cindex: export, OpenDocument
13520 #+cindex: LibreOffice
13522 The ODT export back-end handles creating of OpenDocument Text (ODT)
13523 format.  Documents created by this exporter use the
13524 {{{cite(OpenDocument-v1.2 specification)}}}[fn:124] and are compatible
13525 with LibreOffice 3.4.
13527 *** Pre-requisites for ODT export
13528 :PROPERTIES:
13529 :DESCRIPTION: Required packages.
13530 :END:
13531 #+cindex: zip
13533 The ODT export back-end relies on the zip program to create the final
13534 compressed ODT output.  Check if =zip= is locally available and
13535 executable.  Without it, export cannot finish.
13537 *** ODT export commands
13538 :PROPERTIES:
13539 :DESCRIPTION: Invoking export.
13540 :END:
13542 - {{{kbd(C-c C-e o o)}}} (~org-export-to-odt~) ::
13544      #+kindex: C-c C-e o o
13545      #+findex: org-export-to-odt
13546      Export as OpenDocument Text file.
13548      #+cindex: EXPORT_FILE_NAME, property
13549      #+vindex: org-odt-preferred-output-format
13551      If ~org-odt-preferred-output-format~ is specified, the ODT export
13552      back-end automatically converts the exported file to that format.
13554      For =myfile.org=, Org exports to =myfile.odt=, overwriting
13555      without warning.  The ODT export back-end exports a region only
13556      if a region was active.
13558      If the selected region is a single tree, the ODT export back-end
13559      makes the tree head the document title.  Incidentally, {{{kbd(C-c
13560      @)}}} selects the current sub-tree.  If the tree head entry has,
13561      or inherits, an =EXPORT_FILE_NAME= property, the ODT export
13562      back-end uses that for file name.
13564 - {{{kbd(C-c C-e o O)}}} ::
13566      #+kindex: C-c C-e o O
13567      Export as an OpenDocument Text file and open the resulting file.
13569      #+vindex: org-export-odt-preferred-output-format
13570      If ~org-export-odt-preferred-output-format~ is specified, open
13571      the converted file instead.  See [[*Automatically exporting to
13572      other formats]].
13574 *** ODT specific export settings
13575 :PROPERTIES:
13576 :DESCRIPTION: Configuration options.
13577 :END:
13579 The ODT export back-end has several additional keywords for
13580 customizing ODT output.  Setting these keywords works similar to the
13581 general options (see [[*Export settings]]).
13583 - =DESCRIPTION= ::
13585      #+cindex: DESCRIPTION, keyword
13586      This is the document's description, which the ODT export back-end
13587      inserts as document metadata.  For long descriptions, use
13588      multiple lines, prefixed with =DESCRIPTION=.
13590 - =KEYWORDS= ::
13592      #+cindex: KEYWORDS, keyword
13593      The keywords for the document.  The ODT export back-end inserts
13594      the description along with author name, keywords, and related
13595      file metadata as metadata in the output file.  Use multiple
13596      =KEYWORDS= if necessary.
13598 - =ODT_STYLES_FILE= ::
13600      #+cindex: ODT_STYLES_FILE, keyword
13601      #+vindex: org-odt-styles-file
13602      The ODT export back-end uses the ~org-odt-styles-file~ by
13603      default.  See [[*Applying custom styles]] for details.
13605 - =SUBTITLE= ::
13607      #+cindex: SUBTITLE, keyword
13608      The document subtitle.
13610 *** Extending ODT export
13611 :PROPERTIES:
13612 :DESCRIPTION: Producing DOC, PDF files.
13613 :END:
13615 The ODT export back-end can produce documents in other formats besides
13616 ODT using a specialized ODT converter process.  Its common interface
13617 works with popular converters to produce formats such as =doc=, or
13618 convert a document from one format, say =csv=, to another format, say
13619 =xls=.
13621 #+cindex: @file{unoconv}
13622 #+vindex: org-odt-convert-process
13623 Customize ~org-odt-convert-process~ variable to point to =unoconv=,
13624 which is the ODT's preferred converter.  Working installations of
13625 LibreOffice would already have =unoconv= installed.  Alternatively,
13626 other converters may be substituted here.  See [[*Configuring
13627 a document converter]].
13629 **** Automatically exporting to other formats
13630 :PROPERTIES:
13631 :UNNUMBERED: notoc
13632 :END:
13634 #+vindex: org-odt-preferred-output-format
13635 If ODT format is just an intermediate step to get to other formats,
13636 such as =doc=, =docx=, =rtf=, or =pdf=, etc., then extend the ODT
13637 export back-end to directly produce that format.  Specify the final
13638 format in the ~org-odt-preferred-output-format~ variable.  This is one
13639 way to extend (see [[*ODT export commands]]).
13641 **** Converting between document formats
13642 :PROPERTIES:
13643 :UNNUMBERED: notoc
13644 :END:
13646 The Org export back-end is made to be inter-operable with a wide range
13647 of text document format converters.  Newer generation converters, such
13648 as LibreOffice and Pandoc, can handle hundreds of formats at once.
13649 Org provides a consistent interaction with whatever converter is
13650 installed.  Here are some generic commands:
13652 - {{{kbd(M-x org-odt-convert)}}} ::
13654      #+findex: org-odt-convert
13655      Convert an existing document from one format to another.  With
13656      a prefix argument, opens the newly produced file.
13658 *** Applying custom styles
13659 :PROPERTIES:
13660 :DESCRIPTION: Styling the output.
13661 :END:
13662 #+cindex: styles, custom
13663 #+cindex: template, custom
13665 The ODT export back-end comes with many OpenDocument styles (see
13666 [[*Working with OpenDocument style files]]).  To expand or further
13667 customize these built-in style sheets, either edit the style sheets
13668 directly or generate them using an application such as LibreOffice.
13669 The example here shows creating a style using LibreOffice.
13671 **** Applying custom styles: the easy way
13672 :PROPERTIES:
13673 :UNNUMBERED: notoc
13674 :END:
13676 1. Create a sample =example.org= file with settings as shown below,
13677    and export it to ODT format.
13679    : #+OPTIONS: H:10 num:t
13681 2. Open the above =example.odt= using LibreOffice.  Use the /Stylist/
13682    to locate the target styles, which typically have the "Org" prefix.
13683    Open one, modify, and save as either OpenDocument Text (ODT) or
13684    OpenDocument Template (OTT) file.
13687    #+vindex: org-odt-styles-file
13688    Customize the variable ~org-odt-styles-file~ and point it to the
13689    newly created file.  For additional configuration options, see
13690    [[x-overriding-factory-styles][Overriding factory styles]].
13692    #+cindex: ODT_STYLES_FILE, keyword
13693    To apply an ODT style to a particular file, use the
13694    =ODT_STYLES_FILE= keyword as shown in the example below:
13696    : #+ODT_STYLES_FILE: "/path/to/example.ott"
13698    #+texinfo: @noindent
13699    or
13701    : #+ODT_STYLES_FILE: ("/path/to/file.ott" ("styles.xml" "image/hdr.png"))
13703 **** Using third-party styles and templates
13704 :PROPERTIES:
13705 :UNNUMBERED: notoc
13706 :END:
13708 The ODT export back-end relies on many templates and style names.
13709 Using third-party styles and templates can lead to mismatches.
13710 Templates derived from built in ODT templates and styles seem to have
13711 fewer problems.
13713 *** Links in ODT export
13714 :PROPERTIES:
13715 :DESCRIPTION: Handling and formatting links.
13716 :END:
13717 #+cindex: links, in ODT export
13719 ODT exporter creates native cross-references for internal links.  It
13720 creates Internet-style links for all other links.
13722 A link with no description and pointing to a regular, un-itemized,
13723 outline heading is replaced with a cross-reference and section number
13724 of the heading.
13726 A =\ref{label}=-style reference to an image, table etc., is replaced
13727 with a cross-reference and sequence number of the labeled entity.  See
13728 [[*Labels and captions in ODT export]].
13730 *** Tables in ODT export
13731 :PROPERTIES:
13732 :DESCRIPTION: Org tables conversions.
13733 :END:
13735 #+cindex: tables, in ODT export
13737 The ODT export back-end handles native Org mode tables (see [[*Tables]])
13738 and simple =table.el= tables.  Complex =table.el= tables having column
13739 or row spans are not supported.  Such tables are stripped from the
13740 exported document.
13742 By default, the ODT export back-end exports a table with top and
13743 bottom frames and with ruled lines separating row and column groups
13744 (see [[*Column groups]]).  All tables are typeset to occupy the same
13745 width.  The ODT export back-end honors any table alignments and
13746 relative widths for columns (see [[*Column width and alignment]]).
13748 Note that the ODT export back-end interprets column widths as weighted
13749 ratios, the default weight being 1.
13751 #+cindex: ATTR_ODT, keyword
13752 Specifying =:rel-width= property on an =ATTR_ODT= line controls the
13753 width of the table.  For example:
13755 #+begin_example
13756   ,#+ATTR_ODT: :rel-width 50
13757   | Area/Month    |   Jan |   Feb |   Mar |   Sum |
13758   |---------------+-------+-------+-------+-------|
13759   | /             |     < |       |       |     < |
13760   | <l13>         |  <r5> |  <r5> |  <r5> |  <r6> |
13761   | North America |     1 |    21 |   926 |   948 |
13762   | Middle East   |     6 |    75 |   844 |   925 |
13763   | Asia Pacific  |     9 |    27 |   790 |   826 |
13764   |---------------+-------+-------+-------+-------|
13765   | Sum           |    16 |   123 |  2560 |  2699 |
13766 #+end_example
13768 On export, the above table takes 50% of text width area.  The exporter
13769 sizes the columns in the ratio: 13:5:5:5:6.  The first column is
13770 left-aligned and rest of the columns, right-aligned.  Vertical rules
13771 separate the header and the last column.  Horizontal rules separate
13772 the header and the last row.
13774 For even more customization, create custom table styles and associate
13775 them with a table using the =ATTR_ODT= keyword.  See [[*Customizing
13776 tables in ODT export]].
13778 *** Images in ODT export
13779 :PROPERTIES:
13780 :DESCRIPTION: Inserting images.
13781 :END:
13782 #+cindex: images, embedding in ODT
13783 #+cindex: embedding images in ODT
13785 **** Embedding images
13786 :PROPERTIES:
13787 :UNNUMBERED: notoc
13788 :END:
13790 The ODT export back-end processes image links in Org files that do not
13791 have descriptions, such as these links =[[file:img.jpg]]= or =[[./img.jpg]]=,
13792 as direct image insertions in the final output.  Either of these
13793 examples works:
13795 : [[file:img.png]]
13797 : [[./img.png]]
13799 **** Embedding clickable images
13800 :PROPERTIES:
13801 :UNNUMBERED: notoc
13802 :END:
13804 For clickable images, provide a link whose description is another link
13805 to an image file.  For example, to embed a image
13806 =org-mode-unicorn.png= which when clicked jumps to https://orgmode.org
13807 website, do the following
13809 : [[https://orgmode.org][./org-mode-unicorn.png]]
13811 **** Sizing and scaling of embedded images
13812 :PROPERTIES:
13813 :UNNUMBERED: notoc
13814 :END:
13816 #+cindex: ATTR_ODT, keyword
13818 Control the size and scale of the embedded images with the =ATTR_ODT=
13819 attribute.
13821 #+cindex: identify, ImageMagick
13822 #+vindex: org-odt-pixels-per-inch
13823 The ODT export back-end starts with establishing the size of the image
13824 in the final document.  The dimensions of this size are measured in
13825 centimeters.  The back-end then queries the image file for its
13826 dimensions measured in pixels.  For this measurement, the back-end
13827 relies on ImageMagick's identify program or Emacs ~create-image~ and
13828 ~image-size~ API.  ImageMagick is the preferred choice for large file
13829 sizes or frequent batch operations.  The back-end then converts the
13830 pixel dimensions using ~org-odt-pixels-per-inch~ into the familiar 72
13831 dpi or 96 dpi.  The default value for this is in
13832 ~display-pixels-per-inch~, which can be tweaked for better results
13833 based on the capabilities of the output device.  Here are some common
13834 image scaling operations:
13836 - Explicitly size the image ::
13838      To embed =img.png= as a 10 cm x 10 cm image, do the following:
13840      #+begin_example
13841        ,#+ATTR_ODT: :width 10 :height 10
13842        [[./img.png]]
13843      #+end_example
13845 - Scale the image ::
13847      To embed =img.png= at half its size, do the following:
13849      #+begin_example
13850        ,#+ATTR_ODT: :scale 0.5
13851        [[./img.png]]
13852      #+end_example
13854 - Scale the image to a specific width ::
13856      To embed =img.png= with a width of 10 cm while retaining the
13857      original height:width ratio, do the following:
13859      #+begin_example
13860        ,#+ATTR_ODT: :width 10
13861        [[./img.png]]
13862      #+end_example
13864 - Scale the image to a specific height ::
13866      To embed =img.png= with a height of 10 cm while retaining the
13867      original height:width ratio, do the following:
13869      #+begin_example
13870        ,#+ATTR_ODT: :height 10
13871        [[./img.png]]
13872      #+end_example
13874 **** Anchoring of images
13875 :PROPERTIES:
13876 :UNNUMBERED: notoc
13877 :END:
13879 #+cindex: ATTR_ODT, keyword
13880 The ODT export back-end can anchor images to ="as-char"=,
13881 ="paragraph"=, or ="page"=.  Set the preferred anchor using the
13882 =:anchor= property of the =ATTR_ODT= line.
13884 To create an image that is anchored to a page:
13886 #+begin_example
13887   ,#+ATTR_ODT: :anchor "page"
13888   [[./img.png]]
13889 #+end_example
13891 *** Math formatting in ODT export
13892 :PROPERTIES:
13893 :DESCRIPTION: Formatting @LaTeX{} fragments.
13894 :END:
13896 The ODT exporter has special support for handling math.
13898 **** LaTeX math snippets
13899 :PROPERTIES:
13900 :DESCRIPTION: Embedding in @LaTeX{} format.
13901 :END:
13903 LaTeX math snippets (see [[*LaTeX fragments]]) can be embedded in the ODT
13904 document in one of the following ways:
13906 - MathML ::
13908      #+cindex: MathML
13909      Add this line to the Org file.  This option is activated on
13910      a per-file basis.
13912      : #+OPTIONS: tex:t
13914      With this option, LaTeX fragments are first converted into MathML
13915      fragments using an external LaTeX-to-MathML converter program.
13916      The resulting MathML fragments are then embedded as an
13917      OpenDocument Formula in the exported document.
13919      #+vindex: org-latex-to-mathml-convert-command
13920      #+vindex: org-latex-to-mathml-jar-file
13921      You can specify the LaTeX-to-MathML converter by customizing the
13922      variables ~org-latex-to-mathml-convert-command~ and
13923      ~org-latex-to-mathml-jar-file~.
13925      If you prefer to use MathToWeb[fn:125] as your converter, you can
13926      configure the above variables as shown below.
13928      #+begin_src emacs-lisp
13929        (setq org-latex-to-mathml-convert-command
13930              "java -jar %j -unicode -force -df %o %I"
13931              org-latex-to-mathml-jar-file
13932              "/path/to/mathtoweb.jar")
13933      #+end_src
13935      To use LaTeX​ML[fn:126] use
13937      #+begin_src emacs-lisp
13938        (setq org-latex-to-mathml-convert-command
13939              "latexmlmath \"%i\" --presentationmathml=%o")
13940      #+end_src
13942      To quickly verify the reliability of the LaTeX-to-MathML
13943      converter, use the following commands:
13945      - {{{kbd(M-x org-export-as-odf)}}} ::
13947           Convert a LaTeX math snippet to an OpenDocument formula
13948           (=.odf=) file.
13950      - {{{kbd(M-x org-export-as-odf-and-open)}}} ::
13952           Convert a LaTeX math snippet to an OpenDocument formula
13953           (=.odf=) file and open the formula file with the
13954           system-registered application.
13956 - PNG images ::
13958      #+cindex: dvipng
13959      #+cindex: dvisvgm
13960      #+cindex: ImageMagick
13961      Add this line to the Org file.  This option is activated on
13962      a per-file basis.
13964      : #+OPTIONS: tex:dvipng
13966      : #+OPTIONS: tex:dvisvgm
13968      #+texinfo: @noindent
13969      or
13971      : #+OPTIONS: tex:imagemagick
13973      Under this option, LaTeX fragments are processed into PNG or SVG
13974      images and the resulting images are embedded in the exported
13975      document.  This method requires dvipng program, dvisvgm or
13976      ImageMagick programs.
13978 **** MathML and OpenDocument formula files
13979 :PROPERTIES:
13980 :DESCRIPTION: Embedding in native format.
13981 :END:
13983 When embedding LaTeX math snippets in ODT documents is not reliable,
13984 there is one more option to try.  Embed an equation by linking to its
13985 MathML (=.mml=) source or its OpenDocument formula (=.odf=) file as
13986 shown below:
13988 : [[./equation.mml]]
13990 #+texinfo: @noindent
13993 : [[./equation.odf]]
13995 *** Labels and captions in ODT export
13996 :PROPERTIES:
13997 :DESCRIPTION: Rendering objects.
13998 :END:
14000 ODT format handles labeling and captioning of objects based on their
14001 types.  Inline images, tables, LaTeX fragments, and Math formulas are
14002 numbered and captioned separately.  Each object also gets a unique
14003 sequence number based on its order of first appearance in the Org
14004 file.  Each category has its own sequence.  A caption is just a label
14005 applied to these objects.
14007 #+begin_example
14008   ,#+CAPTION: Bell curve
14009   ,#+NAME:   fig:SED-HR4049
14010   [[./img/a.png]]
14011 #+end_example
14013 When rendered, it may show as follows in the exported document:
14015 : Figure 2: Bell curve
14017 #+vindex: org-odt-category-map-alist
14018 To modify the category component of the caption, customize the option
14019 ~org-odt-category-map-alist~.  For example, to tag embedded images
14020 with the string "Illustration" instead of the default string "Figure",
14021 use the following setting:
14023 #+begin_src emacs-lisp
14024   (setq org-odt-category-map-alist
14025         '(("__Figure__" "Illustration" "value" "Figure" org-odt--enumerable-image-p)))
14026 #+end_src
14028 With the above modification, the previous example changes to:
14030 : Illustration 2: Bell curve
14032 *** Literal examples in ODT export
14033 :PROPERTIES:
14034 :DESCRIPTION: For source code and example blocks.
14035 :END:
14037 The ODT export back-end supports literal examples (see [[*Literal
14038 examples]]) with full fontification.  Internally, the ODT export
14039 back-end relies on =htmlfontify.el= to generate the style definitions
14040 needed for fancy listings.  The auto-generated styles get =OrgSrc=
14041 prefix and inherit colors from the faces used by Emacs Font Lock
14042 library for that source language.
14044 #+vindex: org-odt-fontify-srcblocks
14045 For custom fontification styles, customize the
14046 ~org-odt-create-custom-styles-for-srcblocks~ option.
14048 #+vindex: org-odt-create-custom-styles-for-srcblocks
14049 To turn off fontification of literal examples, customize the
14050 ~org-odt-fontify-srcblocks~ option.
14052 *** Advanced topics in ODT export
14053 :PROPERTIES:
14054 :DESCRIPTION: For power users.
14055 :END:
14057 The ODT export back-end has extensive features useful for power users
14058 and frequent uses of ODT formats.
14060 **** Configuring a document converter
14061 :PROPERTIES:
14062 :DESCRIPTION: Registering a document converter.
14063 :UNNUMBERED: notoc
14064 :END:
14065 #+cindex: convert
14066 #+cindex: doc, docx, rtf
14067 #+cindex: converter
14069 The ODT export back-end works with popular converters with little or
14070 no extra configuration.  See [[*Extending ODT export]].  The following is
14071 for unsupported converters or tweaking existing defaults.
14073 - Register the converter ::
14075      #+vindex: org-export-odt-convert-processes
14076      Add the name of the converter to the ~org-odt-convert-processes~
14077      variable.  Note that it also requires how the converter is
14078      invoked on the command line.  See the variable's docstring for
14079      details.
14081 - Configure its capabilities ::
14083      #+vindex: org-export-odt-convert-capabilities
14084      Specify which formats the converter can handle by customizing the
14085      variable ~org-odt-convert-capabilities~.  Use the entry for the
14086      default values in this variable for configuring the new
14087      converter.  Also see its docstring for details.
14089 - Choose the converter ::
14091      #+vindex: org-export-odt-convert-process
14092      Select the newly added converter as the preferred one by
14093      customizing the option ~org-odt-convert-process~.
14095 **** Working with OpenDocument style files
14096 :PROPERTIES:
14097 :DESCRIPTION: Exploring internals.
14098 :UNNUMBERED: notoc
14099 :END:
14100 #+cindex: styles, custom
14101 #+cindex: template, custom
14103 This section explores the internals of the ODT exporter; the means by which
14104 it produces styled documents; the use of automatic and custom OpenDocument
14105 styles.
14107 The ODT exporter relies on two files for generating its output.  These
14108 files are bundled with the distribution under the directory pointed to
14109 by the variable ~org-odt-styles-dir~.  The two files are:
14111 - =OrgOdtStyles.xml= <<x-orgodtstyles-xml>> ::
14113      This file contributes to the =styles.xml= file of the final ODT
14114      document.  This file gets modified for the following purposes:
14116      1. To control outline numbering based on user settings;
14118      2. To add styles generated by =htmlfontify.el= for fontification of
14119         code blocks.
14121 - =OrgOdtContentTemplate.xml= <<x-orgodtcontenttemplate-xml>> ::
14123      This file contributes to the =content.xml= file of the final ODT
14124      document.  The contents of the Org outline are inserted between the
14125      =<office:text>= ... =</office:text>= elements of this file.
14127      Apart from serving as a template file for the final =content.xml=,
14128      the file serves the following purposes:
14130      1. It contains automatic styles for formatting of tables which are
14131         referenced by the exporter;
14133      2. It contains =<text:sequence-decl>= ... =</text:sequence-decl>=
14134         elements that control numbering of tables, images, equations, and
14135         similar entities.
14137 <<x-overriding-factory-styles>> The following two variables control
14138 the location from where the ODT exporter picks up the custom styles
14139 and content template files.  Customize these variables to override the
14140 factory styles used by the exporter.
14142 - ~org-odt-styles-file~ ::
14144      The ODT export back-end uses the file pointed to by this
14145      variable, such as =styles.xml=, for the final output.  It can
14146      take one of the following values:
14148      - =FILE.xml= ::
14150           Use this file instead of the default =styles.xml=
14152      - =FILE.odt= or =FILE.ott= ::
14154           Use the =styles.xml= contained in the specified OpenDocument
14155           Text or Template file
14157      - =FILE.odt= or =FILE.ott= and a subset of included files ::
14159           Use the =styles.xml= contained in the specified OpenDocument
14160           Text or Template file.  Additionally extract the specified
14161           member files and embed those within the final ODT document.
14163           Use this option if the =styles.xml= file references additional
14164           files like header and footer images.
14166      - ~nil~ ::
14168           Use the default =styles.xml=.
14170 - ~org-odt-content-template-file~ ::
14172      Use this variable to specify the blank =content.xml= used in the
14173      final output.
14175 **** Creating one-off styles
14176 :PROPERTIES:
14177 :DESCRIPTION: Customizing styles, highlighting...
14178 :UNNUMBERED: notoc
14179 :END:
14181 The ODT export back-end can read embedded raw OpenDocument XML from
14182 the Org file.  Such direct formatting is useful for one-off instances.
14184 - Embedding ODT tags as part of regular text ::
14186      Enclose OpenDocument syntax in =@@odt:...@@= for inline markup.
14187      For example, to highlight a region of text do the following:
14189      #+begin_example
14190        @@odt:<text:span text:style-name="Highlight">This is highlighted
14191        text</text:span>@@.  But this is regular text.
14192      #+end_example
14194      *Hint:* To see the above example in action, edit the =styles.xml=
14195      (see [[x-orgodtstyles-xml][Factory styles]]) and add a custom /Highlight/ style as shown
14196      below:
14198      #+begin_example
14199        <style:style style:name="Highlight" style:family="text">
14200          <style:text-properties fo:background-color="#ff0000"/>
14201        </style:style>
14202      #+end_example
14204 - Embedding a one-line OpenDocument XML ::
14206      #+cindex: ODT, keyword
14207      The ODT export back-end can read one-liner options with =#+ODT:=
14208      in the Org file.  For example, to force a page break:
14210      #+begin_example
14211        ,#+ODT: <text:p text:style-name="PageBreak"/>
14212      #+end_example
14214      *Hint:* To see the above example in action, edit your
14215      =styles.xml= (see [[x-orgodtstyles-xml][Factory styles]]) and add a custom =PageBreak=
14216      style as shown below.
14218      #+begin_example
14219        <style:style style:name="PageBreak" style:family="paragraph"
14220                     style:parent-style-name="Text_20_body">
14221          <style:paragraph-properties fo:break-before="page"/>
14222        </style:style>
14223      #+end_example
14225 - Embedding a block of OpenDocument XML ::
14227      The ODT export back-end can also read ODT export blocks for
14228      OpenDocument XML.  Such blocks use the =#+BEGIN_EXPORT odt=
14229      ... =#+END_EXPORT= constructs.
14231      For example, to create a one-off paragraph that uses bold text,
14232      do the following:
14234      #+begin_example
14235        ,#+BEGIN_EXPORT odt
14236          <text:p text:style-name="Text_20_body_20_bold">
14237          This paragraph is specially formatted and uses bold text.
14238          </text:p>
14239        ,#+END_EXPORT
14240      #+end_example
14242 **** Customizing tables in ODT export
14243 :PROPERTIES:
14244 :DESCRIPTION: Defining table templates.
14245 :UNNUMBERED: notoc
14246 :END:
14247 #+cindex: tables, in ODT export
14248 #+cindex: ATTR_ODT, keyword
14250 Override the default table format by specifying a custom table style
14251 with the =#+ATTR_ODT= line.  For a discussion on default formatting of
14252 tables, see [[*Tables in ODT export]].
14254 This feature closely mimics the way table templates are defined in the
14255 OpenDocument-v1.2 specification.[fn:127]
14257 #+vindex: org-odt-table-styles
14258 For quick preview of this feature, install the settings below and export the
14259 table that follows:
14261 #+begin_src emacs-lisp
14262   (setq org-export-odt-table-styles
14263         (append org-export-odt-table-styles
14264                 '(("TableWithHeaderRowAndColumn" "Custom"
14265                    ((use-first-row-styles . t)
14266                     (use-first-column-styles . t)))
14267                   ("TableWithFirstRowandLastRow" "Custom"
14268                    ((use-first-row-styles . t)
14269                     (use-last-row-styles . t))))))
14270 #+end_src
14272 #+begin_example
14273   ,#+ATTR_ODT: :style TableWithHeaderRowAndColumn
14274   | Name  | Phone | Age |
14275   | Peter |  1234 |  17 |
14276   | Anna  |  4321 |  25 |
14277 #+end_example
14279 The example above used =Custom= template and installed two table
14280 styles =TableWithHeaderRowAndColumn= and
14281 =TableWithFirstRowandLastRow=.  *Important:* The OpenDocument styles
14282 needed for producing the above template were pre-defined.  They are
14283 available in the section marked =Custom Table Template= in
14284 =OrgOdtContentTemplate.xml= (see [[x-orgodtcontenttemplate-xml][Factory styles]]).  For adding new
14285 templates, define new styles there.
14287 To use this feature proceed as follows:
14289 1. Create a table template[fn:128].
14291    A table template is set of =table-cell= and =paragraph= styles for
14292    each of the following table cell categories:
14294    - Body
14295    - First column
14296    - Last column
14297    - First row
14298    - Last row
14299    - Even row
14300    - Odd row
14301    - Even column
14302    - Odd Column
14304    The names for the above styles must be chosen based on the name of
14305    the table template using a well-defined convention.
14307    The naming convention is better illustrated with an example.  For
14308    a table template with the name =Custom=, the needed style names are
14309    listed in the following table.
14311    | Cell type    | Cell style                   | Paragraph style                   |
14312    |--------------+------------------------------+-----------------------------------|
14313    | Body         | =CustomTableCell=            | =CustomTableParagraph=            |
14314    | First column | =CustomFirstColumnTableCell= | =CustomFirstColumnTableParagraph= |
14315    | Last column  | =CustomLastColumnTableCell=  | =CustomLastColumnTableParagraph=  |
14316    | First row    | =CustomFirstRowTableCell=    | =CustomFirstRowTableParagraph=    |
14317    | Last row     | =CustomLastRowTableCell=     | =CustomLastRowTableParagraph=     |
14318    | Even row     | =CustomEvenRowTableCell=     | =CustomEvenRowTableParagraph=     |
14319    | Odd row      | =CustomOddRowTableCell=      | =CustomOddRowTableParagraph=      |
14320    | Even column  | =CustomEvenColumnTableCell=  | =CustomEvenColumnTableParagraph=  |
14321    | Odd column   | =CustomOddColumnTableCell=   | =CustomOddColumnTableParagraph=   |
14323    To create a table template with the name =Custom=, define the above
14324    styles in the =<office:automatic-styles>= ...
14325    =</office:automatic-styles>= element of the content template file
14326    (see [[x-orgodtcontenttemplate-xml][Factory styles]]).
14328 2. Define a table style[fn:129].
14330    #+vindex: org-odt-table-styles
14331    To define a table style, create an entry for the style in the
14332    variable ~org-odt-table-styles~ and specify the following:
14334    - the name of the table template created in step (1),
14335    - the set of cell styles in that template that are to be activated.
14337    For example, the entry below defines two different table styles
14338    =TableWithHeaderRowAndColumn= and =TableWithFirstRowandLastRow=
14339    based on the same template =Custom=.  The styles achieve their
14340    intended effect by selectively activating the individual cell
14341    styles in that template.
14343    #+begin_src emacs-lisp
14344      (setq org-export-odt-table-styles
14345            (append org-export-odt-table-styles
14346                    '(("TableWithHeaderRowAndColumn" "Custom"
14347                       ((use-first-row-styles . t)
14348                        (use-first-column-styles . t)))
14349                      ("TableWithFirstRowandLastRow" "Custom"
14350                       ((use-first-row-styles . t)
14351                        (use-last-row-styles . t))))))
14352    #+end_src
14354 3. Associate a table with the table style.
14356    To do this, specify the table style created in step (2) as part of
14357    the =ATTR_ODT= line as shown below.
14359    #+begin_example
14360      ,#+ATTR_ODT: :style TableWithHeaderRowAndColumn
14361      | Name  | Phone | Age |
14362      | Peter |  1234 |  17 |
14363      | Anna  |  4321 |  25 |
14364    #+end_example
14366 **** Validating OpenDocument XML
14367 :PROPERTIES:
14368 :DESCRIPTION: Debugging corrupted OpenDocument files.
14369 :UNNUMBERED: notoc
14370 :END:
14372 Sometimes ODT format files may not open due to =.odt= file corruption.
14373 To verify if such a file is corrupt, validate it against the
14374 OpenDocument Relax NG Compact (RNC) syntax schema.  But first the
14375 =.odt= files have to be decompressed using =zip=.  Note that =.odt=
14376 files are ZIP archives: [[info:emacs::File Archives]].  The contents of
14377 ODT files are in XML.  For general help with validation---and
14378 schema-sensitive editing---of XML files:
14379 [[info:nxml-mode::Introduction]].
14381 #+vindex: org-export-odt-schema-dir
14382 Customize ~org-odt-schema-dir~ to point to a directory with
14383 OpenDocument RNC files and the needed schema-locating rules.  The ODT
14384 export back-end takes care of updating the
14385 ~rng-schema-locating-files~.
14387 ** Org export
14388 :PROPERTIES:
14389 :DESCRIPTION: Exporting to Org.
14390 :END:
14392 #+cindex: Org export
14393 /org/ export back-end creates a normalized version of the Org document
14394 in current buffer.  The exporter evaluates Babel code (see [[*Evaluating
14395 code blocks]]) and removes content specific to other back-ends.
14397 *** Org export commands
14398 :PROPERTIES:
14399 :UNNUMBERED: notoc
14400 :END:
14402 - {{{kbd(C-c C-e O o)}}} (~org-org-export-to-org~) ::
14404      #+kindex: C-c C-e O o
14405      #+findex: org-org-export-to-org
14406      Export as an Org file with a =.org= extension.  For =myfile.org=,
14407      Org exports to =myfile.org.org=, overwriting without warning.
14409 - {{{kbd(C-c C-e O v)}}} (~~) ::
14411      #+kindex: C-c C-e O v
14412      Export to an Org file, then open it.
14414 ** Texinfo export
14415 :PROPERTIES:
14416 :DESCRIPTION: Exporting to Texinfo.
14417 :END:
14419 *** Texinfo export commands
14420 :PROPERTIES:
14421 :DESCRIPTION: Invoking commands.
14422 :END:
14424 - {{{kbd(C-c C-e i t)}}} (~org-texinfo-export-to-texinfo~) ::
14426      #+kindex: C-c C-e i t
14427      #+findex: org-texinfo-export-to-texinfo
14428      Export as a Texinfo file with =.texi= extension.  For
14429      =myfile.org=, Org exports to =myfile.texi=, overwriting without
14430      warning.
14432 - {{{kbd(C-c C-e i i)}}} (~org-texinfo-export-to-info~) ::
14434      #+kindex: C-c C-e i i
14435      #+findex: org-texinfo-export-to-info
14436      #+vindex: org-texinfo-info-process
14437      Export to Texinfo format first and then process it to make an
14438      Info file.  To generate other formats, such as DocBook, customize
14439      the ~org-texinfo-info-process~ variable.
14441 *** Texinfo specific export settings
14442 :PROPERTIES:
14443 :DESCRIPTION: Setting the environment.
14444 :END:
14446 The Texinfo export back-end has several additional keywords for
14447 customizing Texinfo output.  Setting these keywords works similar to
14448 the general options (see [[*Export settings]]).
14450 - =SUBTITLE= ::
14452      #+cindex: SUBTITLE, keyword
14453      The document subtitle.
14455 - =SUBAUTHOR= ::
14457      #+cindex: SUBAUTHOR, keyword
14458      Additional authors for the document.
14460 - =TEXINFO_FILENAME= ::
14462      #+cindex: TEXINFO_FILENAME, keyword
14463      The Texinfo filename.
14465 - =TEXINFO_CLASS= ::
14467      #+cindex: TEXINFO_CLASS, keyword
14468      #+vindex: org-texinfo-default-class
14469      The default document class (~org-texinfo-default-class~), which
14470      must be a member of ~org-texinfo-classes~.
14472 - =TEXINFO_HEADER= ::
14474      #+cindex: TEXINFO_HEADER, keyword
14475      Arbitrary lines inserted at the end of the header.
14477 - =TEXINFO_POST_HEADER= ::
14479      #+cindex: TEXINFO_POST_HEADER, keyword
14480      Arbitrary lines inserted after the end of the header.
14482 - =TEXINFO_DIR_CATEGORY= ::
14484      #+cindex: TEXINFO_DIR_CATEGORY, keyword
14485      The directory category of the document.
14487 - =TEXINFO_DIR_TITLE= ::
14489      #+cindex: TEXINFO_DIR_TITLE, keyword
14490      The directory title of the document.
14492 - =TEXINFO_DIR_DESC= ::
14494      #+cindex: TEXINFO_DIR_DESC, keyword
14495      The directory description of the document.
14497 - =TEXINFO_PRINTED_TITLE= ::
14499      #+cindex: TEXINFO_PRINTED_TITLE, keyword
14500      The printed title of the document.
14502 *** Texinfo file header
14503 :PROPERTIES:
14504 :DESCRIPTION: Generating the header.
14505 :END:
14507 #+cindex: TEXINFO_FILENAME, keyword
14508 After creating the header for a Texinfo file, the Texinfo back-end
14509 automatically generates a name and destination path for the Info file.
14510 To override this default with a more sensible path and name, specify
14511 the =TEXINFO_FILENAME= keyword.
14513 #+vindex: org-texinfo-coding-system
14514 #+cindex: TEXINFO_HEADER, keyword
14515 Along with the output's file name, the Texinfo header also contains
14516 language details (see [[*Export settings]]) and encoding system as set in
14517 the ~org-texinfo-coding-system~ variable.  Insert =TEXINFO_HEADER=
14518 keywords for each additional command in the header, for example:
14520 : #+TEXINFO_HEADER: @synindex
14522 #+cindex: TEXINFO_CLASS, keyword
14523 #+vindex: org-texinfo-classes
14524 Instead of repeatedly installing the same set of commands, define
14525 a class in ~org-texinfo-classes~ once, and then activate it in the
14526 document by setting the =TEXINFO_CLASS= keyword to that class.
14528 *** Texinfo title and copyright page
14529 :PROPERTIES:
14530 :DESCRIPTION: Creating preamble pages.
14531 :END:
14533 #+cindex: TEXINFO_PRINTED_TITLE, keyword
14534 The default template for hard copy output has a title page with
14535 =TITLE= and =AUTHOR= keywords (see [[*Export settings]]).  To replace the
14536 regular title with something different for the printed version, use
14537 the =TEXINFO_PRINTED_TITLE= and =SUBTITLE= keywords.  Both expect raw
14538 Texinfo code for setting their values.
14540 #+cindex: SUBAUTHOR, keyword
14541 If one =AUTHOR= line is not sufficient, add multiple =SUBAUTHOR=
14542 keywords.  They have to be set in raw Texinfo code.
14544 #+begin_example
14545   ,#+AUTHOR: Jane Smith
14546   ,#+SUBAUTHOR: John Doe
14547   ,#+TEXINFO_PRINTED_TITLE: This Long Title@@inlinefmt{tex,@*} Is Broken in @TeX{}
14548 #+end_example
14550 #+cindex: COPYING, property
14551 Copying material is defined in a dedicated headline with a non-~nil~
14552 =COPYING= property.  The back-end inserts the contents within
14553 a =@copying= command at the beginning of the document.  The heading
14554 itself does not appear in the structure of the document.
14556 Copyright information is printed on the back of the title page.
14558 #+begin_example
14559   ,* Legalese
14560     :PROPERTIES:
14561     :COPYING: t
14562     :END:
14564     This is a short example of a complete Texinfo file, version 1.0.
14566     Copyright \copy 2016 Free Software Foundation, Inc.
14567 #+end_example
14569 *** Info directory file
14570 :PROPERTIES:
14571 :DESCRIPTION: Installing a manual in Info file hierarchy.
14572 :END:
14574 #+cindex: @samp{dir} file, in Texinfo export
14575 #+cindex: Info directory file, in Texinfo export
14576 #+cindex: @code{install-info}, in Texinfo export
14578 #+cindex: TEXINFO_DIR_CATEGORY, keyword
14579 #+cindex: TEXINFO_DIR_TITLE, keyword
14580 #+cindex: TEXINFO_DIR_DESC, keyword
14581 The end result of the Texinfo export process is the creation of an
14582 Info file.  This Info file's metadata has variables for category,
14583 title, and description: =TEXINFO_DIR_CATEGORY=, =TEXINFO_DIR_TITLE=,
14584 and =TEXINFO_DIR_DESC= keywords that establish where in the Info
14585 hierarchy the file fits.
14587 Here is an example that writes to the Info directory file:
14589 #+begin_example
14590   ,#+TEXINFO_DIR_CATEGORY: Emacs
14591   ,#+TEXINFO_DIR_TITLE: Org Mode: (org)
14592   ,#+TEXINFO_DIR_DESC: Outline-based notes management and organizer
14593 #+end_example
14595 *** Headings and sectioning structure
14596 :PROPERTIES:
14597 :DESCRIPTION: Building document structure.
14598 :END:
14600 #+vindex: org-texinfo-classes
14601 #+vindex: org-texinfo-default-class
14602 #+cindex: TEXINFO_CLASS, keyword
14603 The Texinfo export back-end uses a pre-defined scheme to convert Org
14604 headlines to equivalent Texinfo structuring commands.  A scheme like
14605 this maps top-level headlines to numbered chapters tagged as
14606 ~@chapter~ and lower-level headlines to unnumbered chapters tagged as
14607 ~@unnumbered~.  To override such mappings to introduce ~@part~ or
14608 other Texinfo structuring commands, define a new class in
14609 ~org-texinfo-classes~.  Activate the new class with the
14610 =TEXINFO_CLASS= keyword.  When no new class is defined and activated,
14611 the Texinfo export back-end defaults to the
14612 ~org-texinfo-default-class~.
14614 If an Org headline's level has no associated Texinfo structuring
14615 command, or is below a certain threshold (see [[*Export settings]]), then
14616 the Texinfo export back-end makes it into a list item.
14618 #+cindex: APPENDIX, property
14619 The Texinfo export back-end makes any headline with a non-~nil~
14620 =APPENDIX= property into an appendix.  This happens independent of the
14621 Org headline level or the =TEXINFO_CLASS= keyword.
14623 #+cindex: ALT_TITLE, property
14624 #+cindex: DESCRIPTION, property
14625 The Texinfo export back-end creates a menu entry after the Org
14626 headline for each regular sectioning structure.  To override this with
14627 a shorter menu entry, use the =ALT_TITLE= property (see [[*Table of
14628 contents]]).  Texinfo menu entries also have an option for a longer
14629 =DESCRIPTION= property.  Here's an example that uses both to override
14630 the default menu entry:
14632 #+begin_example
14633 ,* Controlling Screen Display
14634   :PROPERTIES:
14635   :ALT_TITLE: Display
14636   :DESCRIPTION: Controlling Screen Display
14637   :END:
14638 #+end_example
14640 #+cindex: Top node, in Texinfo export
14641 The text before the first headline belongs to the /Top/ node, i.e.,
14642 the node in which a reader enters an Info manual.  As such, it is
14643 expected not to appear in printed output generated from the =.texi=
14644 file.  See [[info:texinfo::The%20Top%20Node]], for more information.
14646 *** Indices
14647 :PROPERTIES:
14648 :DESCRIPTION: Creating indices.
14649 :END:
14651 #+cindex: CINDEX, keyword
14652 #+cindex: concept index, in Texinfo export
14653 #+cindex: FINDEX, keyword
14654 #+cindex: function index, in Texinfo export
14655 #+cindex: KINDEX, keyword
14656 #+cindex: keystroke index, in Texinfo export
14657 #+cindex: PINDEX, keyword
14658 #+cindex: program index, in Texinfo export
14659 #+cindex: TINDEX, keyword
14660 #+cindex: data type index, in Texinfo export
14661 #+cindex: VINDEX, keyword
14662 #+cindex: variable index, in Texinfo export
14663 The Texinfo export back-end recognizes these indexing keywords if used
14664 in the Org file: =CINDEX=, =FINDEX=, =KINDEX=, =PINDEX=, =TINDEX= and
14665 =VINDEX=.  Write their value as verbatim Texinfo code; in particular,
14666 ={=, =}= and =@= characters need to be escaped with =@= if they do not
14667 belong to a Texinfo command.
14669 : #+CINDEX: Defining indexing entries
14671 #+cindex: INDEX, property
14672 For the back-end to generate an index entry for a headline, set the
14673 =INDEX= property to =cp= or =vr=.  These abbreviations come from
14674 Texinfo that stand for concept index and variable index.  The Texinfo
14675 manual has abbreviations for all other kinds of indexes.  The back-end
14676 exports the headline as an unnumbered chapter or section command, and
14677 then inserts the index after its contents.
14679 #+begin_example
14680   ,* Concept Index
14681     :PROPERTIES:
14682     :INDEX: cp
14683     :END:
14684 #+end_example
14686 *** Quoting Texinfo code
14687 :PROPERTIES:
14688 :DESCRIPTION: Incorporating literal Texinfo code.
14689 :END:
14691 Use any of the following three methods to insert or escape raw Texinfo
14692 code:
14694 #+cindex: TEXINFO, keyword
14695 #+cindex: BEGIN_EXPORT texinfo
14696 #+begin_example
14697   Richard @@texinfo:@sc{@@Stallman@@texinfo:}@@ commence' GNU.
14699   ,#+TEXINFO: @need800
14700   This paragraph is preceded by...
14702   ,#+BEGIN_EXPORT texinfo
14703     @auindex Johnson, Mark
14704     @auindex Lakoff, George
14705   ,#+END_EXPORT
14706 #+end_example
14708 *** Plain lists in Texinfo export
14709 :PROPERTIES:
14710 :DESCRIPTION: List attributes.
14711 :END:
14713 #+cindex: ATTR_TEXINFO, keyword
14714 #+cindex: two-column tables, in Texinfo export
14716 #+cindex: table types, in Texinfo export
14717 The Texinfo export back-end by default converts description lists in
14718 the Org file using the default command =@table=, which results in
14719 a table with two columns.  To change this behavior, specify
14720 =:table-type= with =ftable= or =vtable= attributes.  For more
14721 information, see [[info:texinfo::Two-column Tables]].
14723 #+vindex: org-texinfo-table-default-markup
14724 The Texinfo export back-end by default also applies a text highlight
14725 based on the defaults stored in ~org-texinfo-table-default-markup~.
14726 To override the default highlight command, specify another one with
14727 the =:indic= attribute.
14729 #+cindex: multiple items in Texinfo lists
14730 Org syntax is limited to one entry per list item.  Nevertheless, the
14731 Texinfo export back-end can split that entry according to any text
14732 provided through the =:sep= attribute.  Each part then becomes a new
14733 entry in the first column of the table.
14735 The following example illustrates all the attributes above:
14737 #+begin_example
14738   ,#+ATTR_TEXINFO: :table-type vtable :sep , :indic asis
14739   - foo, bar :: This is the common text for variables foo and bar.
14740 #+end_example
14742 #+texinfo: @noindent
14743 becomes
14745 #+begin_example
14746   @vtable @asis
14747   @item foo
14748   @itemx bar
14749   This is the common text for variables foo and bar.
14750   @end table
14751 #+end_example
14753 *** Tables in Texinfo export
14754 :PROPERTIES:
14755 :DESCRIPTION: Table attributes.
14756 :END:
14758 #+cindex: ATTR_TEXINFO, keyword
14759 When exporting tables, the Texinfo export back-end uses the widest
14760 cell width in each column.  To override this and instead specify as
14761 fractions of line length, use the =:columns= attribute.  See example
14762 below.
14764 #+begin_example
14765 #+ATTR_TEXINFO: :columns .5 .5
14766 | a cell | another cell |
14767 #+end_example
14769 *** Images in Texinfo export
14770 :PROPERTIES:
14771 :DESCRIPTION: Image attributes.
14772 :END:
14774 #+cindex: ATTR_TEXINFO, keyword
14775 Insert a file link to the image in the Org file, and the Texinfo
14776 export back-end inserts the image.  These links must have the usual
14777 supported image extensions and no descriptions.  To scale the image,
14778 use =:width= and =:height= attributes.  For alternate text, use =:alt=
14779 and specify the text using Texinfo code, as shown in the example:
14781 #+begin_example
14782   ,#+ATTR_TEXINFO: :width 1in :alt Alternate @i{text}
14783   [[ridt.pdf]]
14784 #+end_example
14786 *** Special blocks in Texinfo export
14787 :PROPERTIES:
14788 :DESCRIPTION: Special block attributes.
14789 :END:
14791 #+cindex: ATTR_TEXINFO, keyword
14793 The Texinfo export back-end converts special blocks to commands with
14794 the same name.  It also adds any =:options= attributes to the end of
14795 the command, as shown in this example:
14797 #+begin_example
14798   ,#+ATTR_TEXINFO: :options org-org-export-to-org ...
14799   ,#+BEGIN_defun
14800     A somewhat obsessive function name.
14801   ,#+END_defun
14802 #+end_example
14804 #+texinfo: @noindent
14805 becomes
14807 #+begin_example
14808   @defun org-org-export-to-org ...
14809     A somewhat obsessive function name.
14810   @end defun
14811 #+end_example
14813 *** A Texinfo example
14814 :PROPERTIES:
14815 :DESCRIPTION: Processing Org to Texinfo.
14816 :END:
14818 Here is a more detailed example Org file.  See
14819 [[info:texinfo::GNU%20Sample%20Texts]] for an equivalent example using
14820 Texinfo code.
14822 #+begin_example
14823   ,#+TITLE: GNU Sample {{{version}}}
14824   ,#+SUBTITLE: for version {{{version}}}, {{{updated}}}
14825   ,#+AUTHOR: A.U. Thor
14826   ,#+EMAIL: bug-sample@gnu.org
14828   ,#+OPTIONS: ':t toc:t author:t email:t
14829   ,#+LANGUAGE: en
14831   ,#+MACRO: version 2.0
14832   ,#+MACRO: updated last updated 4 March 2014
14834   ,#+TEXINFO_FILENAME: sample.info
14835   ,#+TEXINFO_HEADER: @syncodeindex pg cp
14837   ,#+TEXINFO_DIR_CATEGORY: Texinfo documentation system
14838   ,#+TEXINFO_DIR_TITLE: sample: (sample)
14839   ,#+TEXINFO_DIR_DESC: Invoking sample
14841   ,#+TEXINFO_PRINTED_TITLE: GNU Sample
14843   This manual is for GNU Sample (version {{{version}}},
14844   {{{updated}}}).
14846   ,* Copying
14847     :PROPERTIES:
14848     :COPYING:  t
14849     :END:
14851     This manual is for GNU Sample (version {{{version}}},
14852     {{{updated}}}), which is an example in the Texinfo documentation.
14854     Copyright \copy 2016 Free Software Foundation, Inc.
14856     ,#+BEGIN_QUOTE
14857     Permission is granted to copy, distribute and/or modify this
14858     document under the terms of the GNU Free Documentation License,
14859     Version 1.3 or any later version published by the Free Software
14860     Foundation; with no Invariant Sections, with no Front-Cover Texts,
14861     and with no Back-Cover Texts.  A copy of the license is included in
14862     the section entitled "GNU Free Documentation License".
14863     ,#+END_QUOTE
14865   ,* Invoking sample
14867     ,#+PINDEX: sample
14868     ,#+CINDEX: invoking @command{sample}
14870     This is a sample manual.  There is no sample program to invoke, but
14871     if there were, you could see its basic usage and command line
14872     options here.
14874   ,* GNU Free Documentation License
14875     :PROPERTIES:
14876     :APPENDIX: t
14877     :END:
14879     ,#+TEXINFO: @include fdl.texi
14881   ,* Index
14882     :PROPERTIES:
14883     :INDEX:    cp
14884     :END:
14885 #+end_example
14887 ** iCalendar export
14888 :PROPERTIES:
14889 :DESCRIPTION: Exporting to iCalendar.
14890 :END:
14891 #+cindex: iCalendar export
14893 A large part of Org mode's interoperability success is its ability to
14894 easily export to or import from external applications.  The iCalendar
14895 export back-end takes calendar data from Org files and exports to the
14896 standard iCalendar format.
14898 #+vindex: org-icalendar-include-todo
14899 #+vindex: org-icalendar-use-deadline
14900 #+vindex: org-icalendar-use-scheduled
14901 The iCalendar export back-end can also incorporate TODO entries based
14902 on the configuration of the ~org-icalendar-include-todo~ variable.
14903 The back-end exports plain timestamps as =VEVENT=, TODO items as
14904 =VTODO=, and also create events from deadlines that are in non-TODO
14905 items.  The back-end uses the deadlines and scheduling dates in Org
14906 TODO items for setting the start and due dates for the iCalendar TODO
14907 entry.  Consult the ~org-icalendar-use-deadline~ and
14908 ~org-icalendar-use-scheduled~ variables for more details.
14910 #+vindex: org-icalendar-categories
14911 #+vindex: org-icalendar-alarm-time
14912 For tags on the headline, the iCalendar export back-end makes them
14913 into iCalendar categories.  To tweak the inheritance of tags and TODO
14914 states, configure the variable ~org-icalendar-categories~.  To assign
14915 clock alarms based on time, configure the ~org-icalendar-alarm-time~
14916 variable.
14918 #+vindex: org-icalendar-store-UID
14919 #+cindex: ID, property
14920 The iCalendar format standard requires globally unique identifier---or
14921 UID---for each entry.  The iCalendar export back-end creates UIDs
14922 during export.  To save a copy of the UID in the Org file set the
14923 variable ~org-icalendar-store-UID~.  The back-end looks for the =ID=
14924 property of the entry for re-using the same UID for subsequent
14925 exports.
14927 Since a single Org entry can result in multiple iCalendar
14928 entries---timestamp, deadline, scheduled item, or TODO item---Org adds
14929 prefixes to the UID, depending on which part of the Org entry
14930 triggered the creation of the iCalendar entry.  Prefixing ensures UIDs
14931 remains unique, yet enable synchronization programs trace the
14932 connections.
14934 - {{{kbd(C-c C-e c f)}}} (~org-icalendar-export-to-ics~) ::
14936      #+kindex: C-c C-e c f
14937      #+findex: org-icalendar-export-to-ics
14938      Create iCalendar entries from the current Org buffer and store
14939      them in the same directory, using a file extension =.ics=.
14941 - {{{kbd(C-c C-e c a)}}} (~org-icalendar-export-agenda-files~) ::
14943      #+kindex: C-c C-e c a
14944      #+findex: org-icalendar-export-agenda-files
14945      Create iCalendar entries from Org files in ~org-agenda-files~ and
14946      store in a separate iCalendar file for each Org file.
14948 - {{{kbd(C-c C-e c c)}}} (~org-icalendar-combine-agenda-files~) ::
14950      #+kindex: C-c C-e c c
14951      #+findex: org-icalendar-combine-agenda-files
14952      #+vindex: org-icalendar-combined-agenda-file
14953      Create a combined iCalendar file from Org files in
14954      ~org-agenda-files~ and write it to
14955      ~org-icalendar-combined-agenda-file~ file name.
14957 #+cindex: SUMMARY, property
14958 #+cindex: DESCRIPTION, property
14959 #+cindex: LOCATION, property
14960 #+cindex: TIMEZONE, property
14961 The iCalendar export back-end includes =SUMMARY=, =DESCRIPTION=,
14962 =LOCATION= and =TIMEZONE= properties from the Org entries when
14963 exporting.  To force the back-end to inherit the =LOCATION= and
14964 =TIMEZONE= properties, configure the ~org-use-property-inheritance~
14965 variable.
14967 #+vindex: org-icalendar-include-body
14968 When Org entries do not have =SUMMARY=, =DESCRIPTION= and =LOCATION=
14969 properties, the iCalendar export back-end derives the summary from the
14970 headline, and derives the description from the body of the Org item.
14971 The ~org-icalendar-include-body~ variable limits the maximum number of
14972 characters of the content are turned into its description.
14974 The =TIMEZONE= property can be used to specify a per-entry time zone,
14975 and is applied to any entry with timestamp information.  Time zones
14976 should be specified as per the IANA time zone database format, e.g.,
14977 =Asia/Almaty=.  Alternately, the property value can be =UTC=, to force
14978 UTC time for this entry only.
14980 Exporting to iCalendar format depends in large part on the
14981 capabilities of the destination application.  Some are more lenient
14982 than others.  Consult the Org mode FAQ for advice on specific
14983 applications.
14985 ** Other built-in back-ends
14986 :PROPERTIES:
14987 :DESCRIPTION: Exporting to a man page.
14988 :END:
14990 Other export back-ends included with Org are:
14992 - =ox-man.el=: Export to a man page.
14994 To activate such back-ends, either customize ~org-export-backends~ or
14995 load directly with ~(require 'ox-man)~.  On successful load, the
14996 back-end adds new keys in the export dispatcher (see [[*The export
14997 dispatcher]]).
14999 Follow the comment section of such files, for example, =ox-man.el=,
15000 for usage and configuration details.
15002 ** Advanced configuration
15003 :PROPERTIES:
15004 :DESCRIPTION: Fine-tuning the export output.
15005 :END:
15007 *** Hooks
15008 :PROPERTIES:
15009 :UNNUMBERED: notoc
15010 :END:
15012 #+vindex: org-export-before-processing-hook
15013 #+vindex: org-export-before-parsing-hook
15014 The export process executes two hooks before the actual exporting
15015 begins.  The first hook, ~org-export-before-processing-hook~, runs
15016 before any expansions of macros, Babel code, and include keywords in
15017 the buffer.  The second hook, ~org-export-before-parsing-hook~, runs
15018 before the buffer is parsed.
15020 Functions added to these hooks are called with a single argument: the
15021 export back-end actually used, as a symbol.  You may use them for
15022 heavy duty structural modifications of the document.  For example, you
15023 can remove every headline in the buffer during export like this:
15025 #+begin_src emacs-lisp
15026   (defun my-headline-removal (backend)
15027     "Remove all headlines in the current buffer.
15028   BACKEND is the export back-end being used, as a symbol."
15029     (org-map-entries
15030      (lambda () (delete-region (point) (line-beginning-position 2)))))
15032   (add-hook 'org-export-before-parsing-hook 'my-headline-removal)
15033 #+end_src
15035 *** Filters
15036 :PROPERTIES:
15037 :UNNUMBERED: notoc
15038 :END:
15040 #+cindex: Filters, exporting
15041 Filters are lists of functions to be applied to certain parts for
15042 a given back-end.  The output from the first function in the filter is
15043 passed on to the next function in the filter.  The final output is the
15044 output from the final function in the filter.
15046 The Org export process has many filter sets applicable to different
15047 types of objects, plain text, parse trees, export options, and final
15048 output formats.  The filters are named after the element type or
15049 object type: ~org-export-filter-TYPE-functions~, where {{{var(TYPE)}}}
15050 is the type targeted by the filter.  Valid types are:
15052 #+attr_texinfo: :columns 0.33 0.33 0.33
15053 | body                | bold               | babel-call       |
15054 | center-block        | clock              | code             |
15055 | diary-sexp          | drawer             | dynamic-block    |
15056 | entity              | example-block      | export-block     |
15057 | export-snippet      | final-output       | fixed-width      |
15058 | footnote-definition | footnote-reference | headline         |
15059 | horizontal-rule     | inline-babel-call  | inline-src-block |
15060 | inlinetask          | italic             | item             |
15061 | keyword             | latex-environment  | latex-fragment   |
15062 | line-break          | link               | node-property    |
15063 | options             | paragraph          | parse-tree       |
15064 | plain-list          | plain-text         | planning         |
15065 | property-drawer     | quote-block        | radio-target     |
15066 | section             | special-block      | src-block        |
15067 | statistics-cookie   | strike-through     | subscript        |
15068 | superscript         | table              | table-cell       |
15069 | table-row           | target             | timestamp        |
15070 | underline           | verbatim           | verse-block      |
15072 Here is an example filter that replaces non-breaking spaces ~ ~ in the
15073 Org buffer with =~= for the LaTeX back-end.
15075 #+begin_src emacs-lisp
15076   (defun my-latex-filter-nobreaks (text backend info)
15077     "Ensure \" \" are properly handled in LaTeX export."
15078     (when (org-export-derived-backend-p backend 'latex)
15079       (replace-regexp-in-string " " "~" text)))
15081   (add-to-list 'org-export-filter-plain-text-functions
15082                'my-latex-filter-nobreaks)
15083 #+end_src
15085 A filter requires three arguments: the code to be transformed, the
15086 name of the back-end, and some optional information about the export
15087 process.  The third argument can be safely ignored.  Note the use of
15088 ~org-export-derived-backend-p~ predicate that tests for /latex/
15089 back-end or any other back-end, such as /beamer/, derived from
15090 /latex/.
15092 *** Defining filters for individual files
15093 :PROPERTIES:
15094 :UNNUMBERED: notoc
15095 :END:
15097 The Org export can filter not just for back-ends, but also for
15098 specific files through the =BIND= keyword.  Here is an example with
15099 two filters; one removes brackets from time stamps, and the other
15100 removes strike-through text.  The filter functions are defined in
15101 a code block in the same Org file, which is a handy location for
15102 debugging.
15104 #+begin_example
15105   ,#+BIND: org-export-filter-timestamp-functions (tmp-f-timestamp)
15106   ,#+BIND: org-export-filter-strike-through-functions (tmp-f-strike-through)
15107   ,#+BEGIN_SRC emacs-lisp :exports results :results none
15108     (defun tmp-f-timestamp (s backend info)
15109       (replace-regexp-in-string "&[lg]t;\\|[][]" "" s))
15110     (defun tmp-f-strike-through (s backend info) "")
15111   ,#+END_SRC
15112 #+end_example
15114 *** Extending an existing back-end
15115 :PROPERTIES:
15116 :UNNUMBERED: notoc
15117 :END:
15119 Some parts of the conversion process can be extended for certain
15120 elements so as to introduce a new or revised translation.  That is how
15121 the HTML export back-end was extended to handle Markdown format.  The
15122 extensions work seamlessly so any aspect of filtering not done by the
15123 extended back-end is handled by the original back-end.  Of all the
15124 export customization in Org, extending is very powerful as it operates
15125 at the parser level.
15127 For this example, make the /ascii/ back-end display the language used
15128 in a source code block.  Also make it display only when some attribute
15129 is non-~nil~, like the following:
15131 : #+ATTR_ASCII: :language t
15133 Then extend /ascii/ back-end with a custom "my-ascii" back-end.
15135 #+begin_src emacs-lisp
15136   (defun my-ascii-src-block (src-block contents info)
15137     "Transcode a SRC-BLOCK element from Org to ASCII.
15138   CONTENTS is nil.  INFO is a plist used as a communication
15139   channel."
15140     (if (not (org-export-read-attribute :attr_ascii src-block :language))
15141         (org-export-with-backend 'ascii src-block contents info)
15142       (concat
15143        (format ",--[ %s ]--\n%s`----"
15144                (org-element-property :language src-block)
15145                (replace-regexp-in-string
15146                 "^" "| "
15147                 (org-element-normalize-string
15148                  (org-export-format-code-default src-block info)))))))
15150   (org-export-define-derived-backend 'my-ascii 'ascii
15151     :translate-alist '((src-block . my-ascii-src-block)))
15152 #+end_src
15154 The ~my-ascii-src-block~ function looks at the attribute above the
15155 current element.  If not true, hands over to /ascii/ back-end.  If
15156 true, which it is in this example, it creates a box around the code
15157 and leaves room for the inserting a string for language.  The last
15158 form creates the new back-end that springs to action only when
15159 translating ~src-block~ type elements.
15161 To use the newly defined back-end, evaluate the following from an Org
15162 buffer:
15164 #+begin_src emacs-lisp
15165   (org-export-to-buffer 'my-ascii "*Org MY-ASCII Export*")
15166 #+end_src
15168 Further steps to consider would be an interactive function,
15169 self-installing an item in the export dispatcher menu, and other
15170 user-friendly improvements.
15172 ** Export in foreign buffers
15173 :PROPERTIES:
15174 :DESCRIPTION: Author tables and lists in Org syntax.
15175 :END:
15177 The export back-ends in Org often include commands to convert selected
15178 regions.  A convenient feature of this in-place conversion is that the
15179 exported output replaces the original source.  Here are such
15180 functions:
15182 - ~org-html-convert-region-to-html~ ::
15184      #+findex: org-html-convert-region-to-html
15185      Convert the selected region into HTML.
15187 - ~org-latex-convert-region-to-latex~ ::
15189      #+findex: org-latex-convert-region-to-latex
15190      Convert the selected region into LaTeX.
15192 - ~org-texinfo-convert-region-to-texinfo~ ::
15194      #+findex: org-texinfo-convert-region-to-texinfo
15195      Convert the selected region into Texinfo.
15197 - ~org-md-convert-region-to-md~ ::
15199      #+findex: org-md-convert-region-to-md
15200      Convert the selected region into Markdown.
15202 In-place conversions are particularly handy for quick conversion of
15203 tables and lists in foreign buffers.  For example, turn on the minor
15204 mode {{{kbd(M-x orgstruct-mode)}}} in an HTML buffer, then use the
15205 convenient Org keyboard commands to create a list, select it, and
15206 covert it to HTML with {{{kbd(M-x org-html-convert-region-to-html)}}}.
15208 * Publishing
15209 :PROPERTIES:
15210 :DESCRIPTION: Create a web site of linked Org files.
15211 :END:
15212 #+cindex: publishing
15214 Org includes a publishing management system that allows you to
15215 configure automatic HTML conversion of /projects/ composed of
15216 interlinked org files.  You can also configure Org to automatically
15217 upload your exported HTML pages and related attachments, such as
15218 images and source code files, to a web server.
15220 You can also use Org to convert files into PDF, or even combine HTML
15221 and PDF conversion so that files are available in both formats on the
15222 server.
15224 Publishing has been contributed to Org by David O'Toole.
15226 ** Configuration
15227 :PROPERTIES:
15228 :DESCRIPTION: Defining projects.
15229 :END:
15230 Publishing needs significant configuration to specify files,
15231 destination and many other properties of a project.
15233 *** The variable ~org-publish-project-alist~
15234 :PROPERTIES:
15235 :DESCRIPTION: The central configuration variable.
15236 :ALT_TITLE: Project alist
15237 :END:
15238 #+cindex: projects, for publishing
15240 #+cindex: org-publish-project-alist
15241 Publishing is configured almost entirely through setting the value of
15242 one variable, called ~org-publish-project-alist~.  Each element of the
15243 list configures one project, and may be in one of the two following
15244 forms:
15246 #+begin_src emacs-lisp
15247   ("project-name" :property value :property value ...)
15248 #+end_src
15250 #+texinfo: @noindent
15251 i.e., a well-formed property list with alternating keys and values,
15254 #+begin_src emacs-lisp
15255   ("project-name" :components ("project-name" "project-name" ...))
15256 #+end_src
15258 In both cases, projects are configured by specifying property values.
15259 A project defines the set of files that are to be published, as well
15260 as the publishing configuration to use when publishing those files.
15261 When a project takes the second form listed above, the individual
15262 members of the ~:components~ property are taken to be sub-projects,
15263 which group together files requiring different publishing options.
15264 When you publish such a "meta-project", all the components are also
15265 published, in the sequence given.
15267 *** Sources and destinations for files
15268 :PROPERTIES:
15269 :DESCRIPTION: From here to there.
15270 :ALT_TITLE: Sources and destinations
15271 :END:
15272 #+cindex: directories, for publishing
15274 Most properties are optional, but some should always be set.  In
15275 particular, Org needs to know where to look for source files, and
15276 where to put published files.
15278 - ~:base-directory~ ::
15280      Directory containing publishing source files.
15282 - ~:publishing-directory~ ::
15284      Directory where output files are published.  You can directly
15285      publish to a webserver using a file name syntax appropriate for
15286      the Emacs tramp package.  Or you can publish to a local directory
15287      and use external tools to upload your website (see [[*Uploading
15288      files]]).
15290 - ~:preparation-function~ ::
15292      Function or list of functions to be called before starting the
15293      publishing process, for example, to run =make= for updating files
15294      to be published.  Each preparation function is called with
15295      a single argument, the project property list.
15297 - ~:completion-function~ ::
15299      Function or list of functions called after finishing the
15300      publishing process, for example, to change permissions of the
15301      resulting files.  Each completion function is called with
15302      a single argument, the project property list.
15304 *** Selecting files
15305 :PROPERTIES:
15306 :DESCRIPTION: What files are part of the project?
15307 :END:
15308 #+cindex: files, selecting for publishing
15310 By default, all files with extension =.org= in the base directory are
15311 considered part of the project.  This can be modified by setting the
15312 following properties
15314 - ~:base-extension~ ::
15316      Extension---without the dot---of source files.  This actually
15317      is a regular expression.  Set this to the symbol ~any~ if you
15318      want to get all files in ~:base-directory~, even without
15319      extension.
15321 - ~:exclude~ ::
15323      Regular expression to match file names that should not be published,
15324      even though they have been selected on the basis of their extension.
15326 - ~:include~ ::
15328      List of files to be included regardless of ~:base-extension~ and
15329      ~:exclude~.
15331 - ~:recursive~ ::
15333      Non-~nil~ means, check base-directory recursively for files to
15334      publish.
15336 *** Publishing action
15337 :PROPERTIES:
15338 :DESCRIPTION: Setting the function doing the publishing.
15339 :END:
15340 #+cindex: action, for publishing
15342 Publishing means that a file is copied to the destination directory
15343 and possibly transformed in the process.  The default transformation
15344 is to export Org files as HTML files, and this is done by the function
15345 ~org-publish-org-to-html~ which calls the HTML exporter (see [[*HTML
15346 export]]).  But you can also publish your content as PDF files using
15347 ~org-publish-org-to-pdf~, or as ASCII, Texinfo, etc., using the
15348 corresponding functions.
15350 If you want to publish the Org file as an =.org= file but with
15351 /archived/, /commented/, and /tag-excluded/ trees removed, use
15352 ~org-publish-org-to-org~.  This produces =file.org= and put it in the
15353 publishing directory.  If you want a htmlized version of this file,
15354 set the parameter ~:htmlized-source~ to ~t~.  It produces
15355 =file.org.html= in the publishing directory[fn:130].
15357 Other files like images only need to be copied to the publishing
15358 destination; for this you can use ~org-publish-attachment~.  For
15359 non-Org files, you always need to specify the publishing function:
15361 - ~:publishing-function~ ::
15363      Function executing the publication of a file.  This may also be
15364      a list of functions, which are all called in turn.
15366 - ~:plain-source~ ::
15368      Non-~nil~ means, publish plain source.
15370 - ~:htmlized-source~ ::
15372      Non-~nil~ means, publish htmlized source.
15374 The function must accept three arguments: a property list containing
15375 at least a ~:publishing-directory~ property, the name of the file to
15376 be published, and the path to the publishing directory of the output
15377 file.  It should take the specified file, make the necessary
15378 transformation, if any, and place the result into the destination
15379 folder.
15381 *** Options for the exporters
15382 :PROPERTIES:
15383 :DESCRIPTION: Tweaking HTML/@LaTeX{} export.
15384 :ALT_TITLE: Publishing options
15385 :END:
15386 #+cindex: options, for publishing
15387 #+cindex: publishing options
15389 The property list can be used to set many export options for the HTML
15390 and LaTeX exporters.  In most cases, these properties correspond to
15391 user variables in Org.  The table below lists these properties along
15392 with the variable they belong to.  See the documentation string for
15393 the respective variable for details.
15395 #+vindex: org-publish-project-alist
15396 When a property is given a value in ~org-publish-project-alist~, its
15397 setting overrides the value of the corresponding user variable, if
15398 any, during publishing.  Options set within a file (see [[*Export
15399 settings]]), however, override everything.
15401 **** Generic properties
15402 :PROPERTIES:
15403 :UNNUMBERED: notoc
15404 :END:
15406 | ~:archived-trees~       | ~org-export-with-archived-trees~   |
15407 | ~:exclude-tags~         | ~org-export-exclude-tags~          |
15408 | ~:headline-levels~      | ~org-export-headline-levels~       |
15409 | ~:language~             | ~org-export-default-language~      |
15410 | ~:preserve-breaks~      | ~org-export-preserve-breaks~       |
15411 | ~:section-numbers~      | ~org-export-with-section-numbers~  |
15412 | ~:select-tags~          | ~org-export-select-tags~           |
15413 | ~:with-author~          | ~org-export-with-author~           |
15414 | ~:with-broken-links~    | ~org-export-with-broken-links~     |
15415 | ~:with-clocks~          | ~org-export-with-clocks~           |
15416 | ~:with-creator~         | ~org-export-with-creator~          |
15417 | ~:with-date~            | ~org-export-with-date~             |
15418 | ~:with-drawers~         | ~org-export-with-drawers~          |
15419 | ~:with-email~           | ~org-export-with-email~            |
15420 | ~:with-emphasize~       | ~org-export-with-emphasize~        |
15421 | ~:with-fixed-width~     | ~org-export-with-fixed-width~      |
15422 | ~:with-footnotes~       | ~org-export-with-footnotes~        |
15423 | ~:with-latex~           | ~org-export-with-latex~            |
15424 | ~:with-planning~        | ~org-export-with-planning~         |
15425 | ~:with-priority~        | ~org-export-with-priority~         |
15426 | ~:with-properties~      | ~org-export-with-properties~       |
15427 | ~:with-special-strings~ | ~org-export-with-special-strings~  |
15428 | ~:with-sub-superscript~ | ~org-export-with-sub-superscripts~ |
15429 | ~:with-tables~          | ~org-export-with-tables~           |
15430 | ~:with-tags~            | ~org-export-with-tags~             |
15431 | ~:with-tasks~           | ~org-export-with-tasks~            |
15432 | ~:with-timestamps~      | ~org-export-with-timestamps~       |
15433 | ~:with-title~           | ~org-export-with-title~            |
15434 | ~:with-toc~             | ~org-export-with-toc~              |
15435 | ~:with-todo-keywords~   | ~org-export-with-todo-keywords~    |
15437 **** ASCII specific properties
15438 :PROPERTIES:
15439 :UNNUMBERED: notoc
15440 :END:
15442 | ~:ascii-bullets~                       | ~org-ascii-bullets~                       |
15443 | ~:ascii-caption-above~                 | ~org-ascii-caption-above~                 |
15444 | ~:ascii-charset~                       | ~org-ascii-charset~                       |
15445 | ~:ascii-global-margin~                 | ~org-ascii-global-margin~                 |
15446 | ~:ascii-format-drawer-function~        | ~org-ascii-format-drawer-function~        |
15447 | ~:ascii-format-inlinetask-function~    | ~org-ascii-format-inlinetask-function~    |
15448 | ~:ascii-headline-spacing~              | ~org-ascii-headline-spacing~              |
15449 | ~:ascii-indented-line-width~           | ~org-ascii-indented-line-width~           |
15450 | ~:ascii-inlinetask-width~              | ~org-ascii-inlinetask-width~              |
15451 | ~:ascii-inner-margin~                  | ~org-ascii-inner-margin~                  |
15452 | ~:ascii-links-to-notes~                | ~org-ascii-links-to-notes~                |
15453 | ~:ascii-list-margin~                   | ~org-ascii-list-margin~                   |
15454 | ~:ascii-paragraph-spacing~             | ~org-ascii-paragraph-spacing~             |
15455 | ~:ascii-quote-margin~                  | ~org-ascii-quote-margin~                  |
15456 | ~:ascii-table-keep-all-vertical-lines~ | ~org-ascii-table-keep-all-vertical-lines~ |
15457 | ~:ascii-table-use-ascii-art~           | ~org-ascii-table-use-ascii-art~           |
15458 | ~:ascii-table-widen-columns~           | ~org-ascii-table-widen-columns~           |
15459 | ~:ascii-text-width~                    | ~org-ascii-text-width~                    |
15460 | ~:ascii-underline~                     | ~org-ascii-underline~                     |
15461 | ~:ascii-verbatim-format~               | ~org-ascii-verbatim-format~               |
15463 **** Beamer specific properties
15464 :PROPERTIES:
15465 :UNNUMBERED: notoc
15466 :END:
15468 | ~:beamer-theme~                 | ~org-beamer-theme~                 |
15469 | ~:beamer-column-view-format~    | ~org-beamer-column-view-format~    |
15470 | ~:beamer-environments-extra~    | ~org-beamer-environments-extra~    |
15471 | ~:beamer-frame-default-options~ | ~org-beamer-frame-default-options~ |
15472 | ~:beamer-outline-frame-options~ | ~org-beamer-outline-frame-options~ |
15473 | ~:beamer-outline-frame-title~   | ~org-beamer-outline-frame-title~   |
15474 | ~:beamer-subtitle-format~       | ~org-beamer-subtitle-format~       |
15476 **** HTML specific properties
15477 :PROPERTIES:
15478 :UNNUMBERED: notoc
15479 :END:
15481 | ~:html-allow-name-attribute-in-anchors~        | ~org-html-allow-name-attribute-in-anchors~        |
15482 | ~:html-checkbox-type~                          | ~org-html-checkbox-type~                          |
15483 | ~:html-container~                              | ~org-html-container-element~                      |
15484 | ~:html-divs~                                   | ~org-html-divs~                                   |
15485 | ~:html-doctype~                                | ~org-html-doctype~                                |
15486 | ~:html-extension~                              | ~org-html-extension~                              |
15487 | ~:html-footnote-format~                        | ~org-html-footnote-format~                        |
15488 | ~:html-footnote-separator~                     | ~org-html-footnote-separator~                     |
15489 | ~:html-footnotes-section~                      | ~org-html-footnotes-section~                      |
15490 | ~:html-format-drawer-function~                 | ~org-html-format-drawer-function~                 |
15491 | ~:html-format-headline-function~               | ~org-html-format-headline-function~               |
15492 | ~:html-format-inlinetask-function~             | ~org-html-format-inlinetask-function~             |
15493 | ~:html-head-extra~                             | ~org-html-head-extra~                             |
15494 | ~:html-head-include-default-style~             | ~org-html-head-include-default-style~             |
15495 | ~:html-head-include-scripts~                   | ~org-html-head-include-scripts~                   |
15496 | ~:html-head~                                   | ~org-html-head~                                   |
15497 | ~:html-home/up-format~                         | ~org-html-home/up-format~                         |
15498 | ~:html-html5-fancy~                            | ~org-html-html5-fancy~                            |
15499 | ~:html-indent~                                 | ~org-html-indent~                                 |
15500 | ~:html-infojs-options~                         | ~org-html-infojs-options~                         |
15501 | ~:html-infojs-template~                        | ~org-html-infojs-template~                        |
15502 | ~:html-inline-image-rules~                     | ~org-html-inline-image-rules~                     |
15503 | ~:html-inline-images~                          | ~org-html-inline-images~                          |
15504 | ~:html-link-home~                              | ~org-html-link-home~                              |
15505 | ~:html-link-org-files-as-html~                 | ~org-html-link-org-files-as-html~                 |
15506 | ~:html-link-up~                                | ~org-html-link-up~                                |
15507 | ~:html-link-use-abs-url~                       | ~org-html-link-use-abs-url~                       |
15508 | ~:html-mathjax-options~                        | ~org-html-mathjax-options~                        |
15509 | ~:html-mathjax-template~                       | ~org-html-mathjax-template~                       |
15510 | ~:html-metadata-timestamp-format~              | ~org-html-metadata-timestamp-format~              |
15511 | ~:html-postamble-format~                       | ~org-html-postamble-format~                       |
15512 | ~:html-postamble~                              | ~org-html-postamble~                              |
15513 | ~:html-preamble-format~                        | ~org-html-preamble-format~                        |
15514 | ~:html-preamble~                               | ~org-html-preamble~                               |
15515 | ~:html-table-align-individual-field~           | ~de{org-html-table-align-individual-fields~       |
15516 | ~:html-table-attributes~                       | ~org-html-table-default-attributes~               |
15517 | ~:html-table-caption-above~                    | ~org-html-table-caption-above~                    |
15518 | ~:html-table-data-tags~                        | ~org-html-table-data-tags~                        |
15519 | ~:html-table-header-tags~                      | ~org-html-table-header-tags~                      |
15520 | ~:html-table-row-tags~                         | ~org-html-table-row-tags~                         |
15521 | ~:html-table-use-header-tags-for-first-column~ | ~org-html-table-use-header-tags-for-first-column~ |
15522 | ~:html-tag-class-prefix~                       | ~org-html-tag-class-prefix~                       |
15523 | ~:html-text-markup-alist~                      | ~org-html-text-markup-alist~                      |
15524 | ~:html-todo-kwd-class-prefix~                  | ~org-html-todo-kwd-class-prefix~                  |
15525 | ~:html-toplevel-hlevel~                        | ~org-html-toplevel-hlevel~                        |
15526 | ~:html-use-infojs~                             | ~org-html-use-infojs~                             |
15527 | ~:html-validation-link~                        | ~org-html-validation-link~                        |
15528 | ~:html-viewport~                               | ~org-html-viewport~                               |
15529 | ~:html-xml-declaration~                        | ~org-html-xml-declaration~                        |
15531 **** LaTeX specific properties
15532 :PROPERTIES:
15533 :UNNUMBERED: notoc
15534 :END:
15536 | ~:latex-active-timestamp-format~       | ~org-latex-active-timestamp-format~       |
15537 | ~:latex-caption-above~                 | ~org-latex-caption-above~                 |
15538 | ~:latex-classes~                       | ~org-latex-classes~                       |
15539 | ~:latex-class~                         | ~org-latex-default-class~                 |
15540 | ~:latex-compiler~                      | ~org-latex-compiler~                      |
15541 | ~:latex-default-figure-position~       | ~org-latex-default-figure-position~       |
15542 | ~:latex-default-table-environment~     | ~org-latex-default-table-environment~     |
15543 | ~:latex-default-table-mode~            | ~org-latex-default-table-mode~            |
15544 | ~:latex-diary-timestamp-format~        | ~org-latex-diary-timestamp-format~        |
15545 | ~:latex-footnote-defined-format~       | ~org-latex-footnote-defined-format~       |
15546 | ~:latex-footnote-separator~            | ~org-latex-footnote-separator~            |
15547 | ~:latex-format-drawer-function~        | ~org-latex-format-drawer-function~        |
15548 | ~:latex-format-headline-function~      | ~org-latex-format-headline-function~      |
15549 | ~:latex-format-inlinetask-function~    | ~org-latex-format-inlinetask-function~    |
15550 | ~:latex-hyperref-template~             | ~org-latex-hyperref-template~             |
15551 | ~:latex-image-default-height~          | ~org-latex-image-default-height~          |
15552 | ~:latex-image-default-option~          | ~org-latex-image-default-option~          |
15553 | ~:latex-image-default-width~           | ~org-latex-image-default-width~           |
15554 | ~:latex-images-centered~               | ~org-latex-images-centered~               |
15555 | ~:latex-inactive-timestamp-format~     | ~org-latex-inactive-timestamp-format~     |
15556 | ~:latex-inline-image-rules~            | ~org-latex-inline-image-rules~            |
15557 | ~:latex-link-with-unknown-path-format~ | ~org-latex-link-with-unknown-path-format~ |
15558 | ~:latex-listings-langs~                | ~org-latex-listings-langs~                |
15559 | ~:latex-listings-options~              | ~org-latex-listings-options~              |
15560 | ~:latex-listings~                      | ~org-latex-listings~                      |
15561 | ~:latex-minted-langs~                  | ~org-latex-minted-langs~                  |
15562 | ~:latex-minted-options~                | ~org-latex-minted-options~                |
15563 | ~:latex-prefer-user-labels~            | ~org-latex-prefer-user-labels~            |
15564 | ~:latex-subtitle-format~               | ~org-latex-subtitle-format~               |
15565 | ~:latex-subtitle-separate~             | ~org-latex-subtitle-separate~             |
15566 | ~:latex-table-scientific-notation~     | ~org-latex-table-scientific-notation~     |
15567 | ~:latex-tables-booktabs~               | ~org-latex-tables-booktabs~               |
15568 | ~:latex-tables-centered~               | ~org-latex-tables-centered~               |
15569 | ~:latex-text-markup-alist~             | ~org-latex-text-markup-alist~             |
15570 | ~:latex-title-command~                 | ~org-latex-title-command~                 |
15571 | ~:latex-toc-command~                   | ~org-latex-toc-command~                   |
15573 **** Markdown specific properties
15574 :PROPERTIES:
15575 :UNNUMBERED: notoc
15576 :END:
15578 | ~:md-footnote-format~   | ~org-md-footnote-format~   |
15579 | ~:md-footnotes-section~ | ~org-md-footnotes-section~ |
15580 | ~:md-headline-style~    | ~org-md-headline-style~    |
15582 **** ODT specific properties
15583 :PROPERTIES:
15584 :UNNUMBERED: notoc
15585 :END:
15587 | ~:odt-content-template-file~      | ~org-odt-content-template-file~      |
15588 | ~:odt-display-outline-level~      | ~org-odt-display-outline-level~      |
15589 | ~:odt-fontify-srcblocks~          | ~org-odt-fontify-srcblocks~          |
15590 | ~:odt-format-drawer-function~     | ~org-odt-format-drawer-function~     |
15591 | ~:odt-format-headline-function~   | ~org-odt-format-headline-function~   |
15592 | ~:odt-format-inlinetask-function~ | ~org-odt-format-inlinetask-function~ |
15593 | ~:odt-inline-formula-rules~       | ~org-odt-inline-formula-rules~       |
15594 | ~:odt-inline-image-rules~         | ~org-odt-inline-image-rules~         |
15595 | ~:odt-pixels-per-inch~            | ~org-odt-pixels-per-inch~            |
15596 | ~:odt-styles-file~                | ~org-odt-styles-file~                |
15597 | ~:odt-table-styles~               | ~org-odt-table-styles~               |
15598 | ~:odt-use-date-fields~            | ~org-odt-use-date-fields~            |
15600 **** Texinfo specific properties
15601 :PROPERTIES:
15602 :UNNUMBERED: notoc
15603 :END:
15605 | ~:texinfo-active-timestamp-format~       | ~org-texinfo-active-timestamp-format~       |
15606 | ~:texinfo-classes~                       | ~org-texinfo-classes~                       |
15607 | ~:texinfo-class~                         | ~org-texinfo-default-class~                 |
15608 | ~:texinfo-table-default-markup~          | ~org-texinfo-table-default-markup~          |
15609 | ~:texinfo-diary-timestamp-format~        | ~org-texinfo-diary-timestamp-format~        |
15610 | ~:texinfo-filename~                      | ~org-texinfo-filename~                      |
15611 | ~:texinfo-format-drawer-function~        | ~org-texinfo-format-drawer-function~        |
15612 | ~:texinfo-format-headline-function~      | ~org-texinfo-format-headline-function~      |
15613 | ~:texinfo-format-inlinetask-function~    | ~org-texinfo-format-inlinetask-function~    |
15614 | ~:texinfo-inactive-timestamp-format~     | ~org-texinfo-inactive-timestamp-format~     |
15615 | ~:texinfo-link-with-unknown-path-format~ | ~org-texinfo-link-with-unknown-path-format~ |
15616 | ~:texinfo-node-description-column~       | ~org-texinfo-node-description-column~       |
15617 | ~:texinfo-table-scientific-notation~     | ~org-texinfo-table-scientific-notation~     |
15618 | ~:texinfo-tables-verbatim~               | ~org-texinfo-tables-verbatim~               |
15619 | ~:texinfo-text-markup-alist~             | ~org-texinfo-text-markup-alist~             |
15621 *** Publishing links
15622 :PROPERTIES:
15623 :DESCRIPTION: Which links keep working after publishing?
15624 :END:
15625 #+cindex: links, publishing
15627 To create a link from one Org file to another, you would use something
15628 like =[[file:foo.org][The foo]]= or simply =[[file:foo.org]]= (see [[*External links]]).  When
15629 published, this link becomes a link to =foo.html=.  You can thus
15630 interlink the pages of your "Org web" project and the links will work
15631 as expected when you publish them to HTML.  If you also publish the
15632 Org source file and want to link to it, use an =http= link instead of
15633 a =file:= link, because =file= links are converted to link to the
15634 corresponding =.html= file.
15636 You may also link to related files, such as images.  Provided you are
15637 careful with relative file names, and provided you have also
15638 configured Org to upload the related files, these links will work too.
15639 See [[*Example: complex publishing configuration]], for an example of this
15640 usage.
15642 Eventually, links between published documents can contain some search
15643 options (see [[*Search options in file links]]), which will be resolved to
15644 the appropriate location in the linked file.  For example, once
15645 published to HTML, the following links all point to a dedicated anchor
15646 in =foo.html=.
15648 #+begin_example
15649   [[file:foo.org::*heading]]
15650   [[file:foo.org::#custom-id]]
15651   [[file:foo.org::target]]
15652 #+end_example
15654 *** Generating a sitemap
15655 :PROPERTIES:
15656 :DESCRIPTION: Generating a list of all pages.
15657 :ALT_TITLE: Site map
15658 :END:
15659 #+cindex: sitemap, of published pages
15661 The following properties may be used to control publishing of
15662 a map of files for a given project.
15664 - ~:auto-sitemap~ ::
15666      When non-~nil~, publish a sitemap during
15667      ~org-publish-current-project~ or ~org-publish-all~.
15669 - ~:sitemap-filename~ ::
15671      Filename for output of sitemap.  Defaults to =sitemap.org=, which
15672      becomes =sitemap.html=.
15674 - ~:sitemap-title~ ::
15676      Title of sitemap page.  Defaults to name of file.
15678 - ~:sitemap-format-entry~ ::
15680      #+findex: org-publish-find-date
15681      #+findex: org-publish-find-property
15682      #+findex: org-publish-find-title
15683      With this option one can tell how a site-map entry is formatted
15684      in the site-map.  It is a function called with three arguments:
15685      the file or directory name relative to base directory of the
15686      project, the site-map style and the current project.  It is
15687      expected to return a string.  Default value turns file names into
15688      links and use document titles as descriptions.  For specific
15689      formatting needs, one can use ~org-publish-find-date~,
15690      ~org-publish-find-title~ and ~org-publish-find-property~, to
15691      retrieve additional information about published documents.
15693 - ~:sitemap-function~ ::
15695      Plug-in function to use for generation of the sitemap.  It is
15696      called with two arguments: the title of the site-map and
15697      a representation of the files and directories involved in the
15698      project as a nested list, which can further be transformed using
15699      ~org-list-to-generic~, ~org-list-to-subtree~ and alike.  Default
15700      value generates a plain list of links to all files in the
15701      project.
15703 - ~:sitemap-sort-folders~ ::
15705      Where folders should appear in the sitemap.  Set this to ~first~
15706      (default) or ~last~ to display folders first or last,
15707      respectively.  When set to ~ignore~, folders are ignored
15708      altogether.  Any other value mixes files and folders.  This
15709      variable has no effect when site-map style is ~tree~.
15711 - ~:sitemap-sort-files~ ::
15713      How the files are sorted in the site map.  Set this to
15714      ~alphabetically~ (default), ~chronologically~ or
15715      ~anti-chronologically~.  ~chronologically~ sorts the files with
15716      older date first while ~anti-chronologically~ sorts the files
15717      with newer date first.  ~alphabetically~ sorts the files
15718      alphabetically.  The date of a file is retrieved with
15719      ~org-publish-find-date~.
15721 - ~:sitemap-ignore-case~ ::
15723      Should sorting be case-sensitive?  Default ~nil~.
15725 - ~:sitemap-file-entry-format~ ::
15727      With this option one can tell how a sitemap's entry is formatted
15728      in the sitemap.  This is a format string with some escape
15729      sequences: ~%t~ stands for the title of the file, ~%a~ stands for
15730      the author of the file and ~%d~ stands for the date of the file.
15731      The date is retrieved with the ~org-publish-find-date~ function
15732      and formatted with ~org-publish-sitemap-date-format~.  Default
15733      ~%t~.
15735 - ~:sitemap-date-format~ ::
15737      Format string for the ~format-time-string~ function that tells
15738      how a sitemap entry's date is to be formatted.  This property
15739      bypasses ~org-publish-sitemap-date-format~ which defaults to
15740      ~%Y-%m-%d~.
15742 *** Generating an index
15743 :PROPERTIES:
15744 :DESCRIPTION: An index that reaches across pages.
15745 :END:
15746 #+cindex: index, in a publishing project
15748 Org mode can generate an index across the files of a publishing project.
15750 - ~:makeindex~ ::
15752      When non-~nil~, generate in index in the file =theindex.org= and
15753      publish it as =theindex.html=.
15755 The file is created when first publishing a project with the
15756 ~:makeindex~ set.  The file only contains a statement =#+INCLUDE:
15757 "theindex.inc"=.  You can then build around this include statement by
15758 adding a title, style information, etc.
15760 #+cindex: INDEX, keyword
15761 Index entries are specified with =INDEX= keyword.  An entry that
15762 contains an exclamation mark creates a sub item.
15764 #+begin_example
15765   ,*** Curriculum Vitae
15766   ,#+INDEX: CV
15767   ,#+INDEX: Application!CV
15768 #+end_example
15770 ** Uploading files
15771 :PROPERTIES:
15772 :DESCRIPTION: How to get files up on the server.
15773 :END:
15774 #+cindex: rsync
15775 #+cindex: unison
15777 For those people already utilizing third party sync tools such as
15778 Rsync or Unison, it might be preferable not to use the built-in remote
15779 publishing facilities of Org mode which rely heavily on Tramp.  Tramp,
15780 while very useful and powerful, tends not to be so efficient for
15781 multiple file transfer and has been known to cause problems under
15782 heavy usage.
15784 Specialized synchronization utilities offer several advantages.  In
15785 addition to timestamp comparison, they also do content and
15786 permissions/attribute checks.  For this reason you might prefer to
15787 publish your web to a local directory---possibly even /in place/ with
15788 your Org files---and then use Unison or Rsync to do the
15789 synchronization with the remote host.
15791 Since Unison, for example, can be configured as to which files to
15792 transfer to a certain remote destination, it can greatly simplify the
15793 project publishing definition.  Simply keep all files in the correct
15794 location, process your Org files with ~org-publish~ and let the
15795 synchronization tool do the rest.  You do not need, in this scenario,
15796 to include attachments such as JPG, CSS or PNG files in the project
15797 definition since the third-party tool syncs them.
15799 Publishing to a local directory is also much faster than to a remote
15800 one, so that you can afford more easily to republish entire projects.
15801 If you set ~org-publish-use-timestamps-flag~ to ~nil~, you gain the
15802 main benefit of re-including any changed external files such as source
15803 example files you might include with =INCLUDE= keyword.  The timestamp
15804 mechanism in Org is not smart enough to detect if included files have
15805 been modified.
15807 ** Sample configuration
15808 :PROPERTIES:
15809 :DESCRIPTION: Example projects.
15810 :END:
15812 Below we provide two example configurations.  The first one is
15813 a simple project publishing only a set of Org files.  The second
15814 example is more complex, with a multi-component project.
15816 *** Example: simple publishing configuration
15817 :PROPERTIES:
15818 :DESCRIPTION: One-component publishing.
15819 :ALT_TITLE: Simple example
15820 :END:
15822 This example publishes a set of Org files to the =public_html=
15823 directory on the local machine.
15825 #+begin_src emacs-lisp
15826   (setq org-publish-project-alist
15827         '(("org"
15828            :base-directory "~/org/"
15829            :publishing-directory "~/public_html"
15830            :section-numbers nil
15831            :table-of-contents nil
15832            :style "<link rel=\"stylesheet\"
15833                   href=\"../other/mystyle.css\"
15834                   type=\"text/css\"/>")))
15835 #+end_src
15837 *** Example: complex publishing configuration
15838 :PROPERTIES:
15839 :DESCRIPTION: A multi-component publishing example.
15840 :ALT_TITLE: Complex example
15841 :END:
15843 This more complicated example publishes an entire website, including
15844 Org files converted to HTML, image files, Emacs Lisp source code, and
15845 style sheets.  The publishing directory is remote and private files
15846 are excluded.
15848 To ensure that links are preserved, care should be taken to replicate
15849 your directory structure on the web server, and to use relative file
15850 paths.  For example, if your Org files are kept in =~/org/= and your
15851 publishable images in =~/images/=, you would link to an image with
15853 : file:../images/myimage.png
15855 On the web server, the relative path to the image should be the same.
15856 You can accomplish this by setting up an =images/= folder in the right
15857 place on the web server, and publishing images to it.
15859 #+begin_src emacs-lisp
15860   (setq org-publish-project-alist
15861         '(("orgfiles"
15862            :base-directory "~/org/"
15863            :base-extension "org"
15864            :publishing-directory "/ssh:user@host:~/html/notebook/"
15865            :publishing-function org-html-publish-to-html
15866            :exclude "PrivatePage.org" ;; regexp
15867            :headline-levels 3
15868            :section-numbers nil
15869            :with-toc nil
15870            :html-head "<link rel=\"stylesheet\"
15871                     href=\"../other/mystyle.css\" type=\"text/css\"/>"
15872            :html-preamble t)
15874           ("images"
15875            :base-directory "~/images/"
15876            :base-extension "jpg\\|gif\\|png"
15877            :publishing-directory "/ssh:user@host:~/html/images/"
15878            :publishing-function org-publish-attachment)
15880           ("other"
15881            :base-directory "~/other/"
15882            :base-extension "css\\|el"
15883            :publishing-directory "/ssh:user@host:~/html/other/"
15884            :publishing-function org-publish-attachment)
15885           ("website" :components ("orgfiles" "images" "other"))))
15886 #+end_src
15888 ** Triggering publication
15889 :PROPERTIES:
15890 :DESCRIPTION: Publication commands.
15891 :END:
15893 Once properly configured, Org can publish with the following commands:
15895 - {{{kbd(C-c C-e X)}}} (~org-publish~) ::
15897      #+kindex: C-c C-e X
15898      #+findex: org-publish
15899      Prompt for a specific project and publish all files that belong
15900      to it.
15902 - {{{kbd(C-c C-e P)}}} (~org-publish-current-project~) ::
15904      #+kindex: C-c C-e P
15905      #+findex: org-publish-current-project
15906      Publish the project containing the current file.
15908 - {{{kbd(C-c C-e F)}}} (~org-publish-current-file~) ::
15910      #+kindex: C-c C-e F
15911      #+findex: org-publish-current-file
15912      Publish only the current file.
15914 - {{{kbd(C-c C-e E)}}} (~org-publish-all~) ::
15916      #+kindex: C-c C-e E
15917      #+findex: org-publish-all
15918      Publish every project.
15920 #+vindex: org-publish-use-timestamps-flag
15921 Org uses timestamps to track when a file has changed.  The above
15922 functions normally only publish changed files.  You can override this
15923 and force publishing of all files by giving a prefix argument to any
15924 of the commands above, or by customizing the variable
15925 ~org-publish-use-timestamps-flag~.  This may be necessary in
15926 particular if files include other files via =SETUPFILE= or =INCLUDE=
15927 keywords.
15929 * Working with source code
15930 :PROPERTIES:
15931 :DESCRIPTION: Export, evaluate, and tangle code blocks.
15932 :END:
15933 #+cindex: source code, working with
15935 Source code here refers to any plain text collection of computer
15936 instructions, possibly with comments, written using a human-readable
15937 programming language.  Org can manage source code in an Org document
15938 when the source code is identified with begin and end markers.
15939 Working with source code begins with identifying source code blocks.
15940 A source code block can be placed almost anywhere in an Org document;
15941 it is not restricted to the preamble or the end of the document.
15942 However, Org cannot manage a source code block if it is placed inside
15943 an Org comment or within a fixed width section.
15945 Here is an example source code block in the Emacs Lisp language:
15947 #+begin_example
15948   ,#+BEGIN_SRC emacs-lisp
15949     (defun org-xor (a b)
15950        "Exclusive or."
15951        (if a (not b) b))
15952   ,#+END_SRC
15953 #+end_example
15955 Org can manage the source code in the block delimited by =#+BEGIN_SRC=
15956 ... =#+END_SRC= in several ways that can simplify housekeeping tasks
15957 essential to modern source code maintenance.  Org can edit, format,
15958 extract, export, and publish source code blocks.  Org can also compile
15959 and execute a source code block, then capture the results.  The Org
15960 mode literature sometimes refers to source code blocks as /live code/
15961 blocks because they can alter the content of the Org document or the
15962 material that it exports.  Users can control how live they want each
15963 source code block by tweaking the header arguments (see [[*Using
15964 header arguments]]) for compiling, execution, extraction, and
15965 exporting.
15967 Source code blocks are one of many Org block types, which also include
15968 =quote=, =export=, =verse=, =latex=, =example=, and =verbatim=.  This
15969 section pertains to blocks between =#+BEGIN_SRC= and =#+END_SRC=.
15971 For editing and formatting a source code block, Org uses an
15972 appropriate Emacs major mode that includes features specifically
15973 designed for source code in that language.
15975 Org can extract one or more source code blocks and write them to one
15976 or more source files---a process known as /tangling/ in literate
15977 programming terminology.
15979 For exporting and publishing, Org's back-ends can format a source code
15980 block appropriately, often with native syntax highlighting.
15982 For executing and compiling a source code block, the user can
15983 configure Org to select the appropriate compiler.  Org provides
15984 facilities to collect the result of the execution or compiler output,
15985 insert it into the Org document, and/or export it.  In addition to
15986 text results, Org can insert links to other data types, including
15987 audio, video, and graphics.  Org can also link a compiler error
15988 message to the appropriate line in the source code block.
15990 An important feature of Org's management of source code blocks is the
15991 ability to pass variables, functions, and results to one another using
15992 a common syntax for source code blocks in any language.  Although most
15993 literate programming facilities are restricted to one language or
15994 another, Org's language-agnostic approach lets the literate programmer
15995 match each programming task with the appropriate computer language and
15996 to mix them all together in a single Org document.  This
15997 interoperability among languages explains why Org's source code
15998 management facility was named /Org Babel/ by its originators, Eric
15999 Schulte and Dan Davison.
16001 Org mode fulfills the promise of easy verification and maintenance of
16002 publishing reproducible research by keeping text, data, code,
16003 configuration settings of the execution environment, the results of
16004 the execution, and associated narratives, claims, references, and
16005 internal and external links in a single Org document.
16007 Details of Org's facilities for working with source code are described
16008 in the following sections.
16010 ** Structure of code blocks
16011 :PROPERTIES:
16012 :DESCRIPTION: Code block syntax described.
16013 :END:
16014 #+cindex: code block, structure
16015 #+cindex: source code, block structure
16016 #+cindex: NAME keyword, in source blocks
16017 #+cindex: BEGIN_SRC
16019 Org offers two ways to structure source code in Org documents: in
16020 a source code block, and directly inline.  Both specifications are
16021 shown below.
16023 A source code block conforms to this structure:
16025 #+begin_example
16026   ,#+NAME: <name>
16027   ,#+BEGIN_SRC <language> <switches> <header arguments>
16028     <body>
16029   ,#+END_SRC
16030 #+end_example
16032 Do not be put-off by having to remember the source block syntax.  Org
16033 mode offers a command for wrapping existing text in a block (see
16034 [[*Structure templates]]).  Org also works with other completion systems
16035 in Emacs, some of which predate Org and have custom domain-specific
16036 languages for defining templates.  Regular use of templates reduces
16037 errors, increases accuracy, and maintains consistency.
16039 #+cindex: source code, inline
16040 An inline code block conforms to this structure:
16042 : src_<language>{<body>}
16044 #+texinfo: @noindent
16047 : src_<language>[<header arguments>]{<body>}
16049 - =#+NAME: <name>= ::
16051      Optional.  Names the source block so it can be called, like
16052      a function, from other source blocks or inline code to evaluate
16053      or to capture the results.  Code from other blocks, other files,
16054      and from table formulas (see [[*The spreadsheet]]) can use the name
16055      to reference a source block.  This naming serves the same purpose
16056      as naming Org tables.  Org mode requires unique names.  For
16057      duplicate names, Org mode's behavior is undefined.
16059 - =#+BEGIN_SRC= ... =#+END_SRC= ::
16061      Mandatory.  They mark the start and end of a block that Org
16062      requires.  The =#+BEGIN_SRC= line takes additional arguments, as
16063      described next.
16065 - =<language>= ::
16067      #+cindex: language, in code blocks
16068      Mandatory.  It is the identifier of the source code language in
16069      the block.  See [[*Languages]], for identifiers of supported
16070      languages.
16072 - =<switches>= ::
16074      #+cindex: switches, in code blocks
16075      Optional.  Switches provide finer control of the code execution,
16076      export, and format (see the discussion of switches in [[*Literal
16077      examples]]).
16079 - =<header arguments>= ::
16081      #+cindex: header arguments, in code blocks
16082      Optional.  Heading arguments control many aspects of evaluation,
16083      export and tangling of code blocks (see [[*Using header arguments]]).
16084      Using Org's properties feature, header arguments can be
16085      selectively applied to the entire buffer or specific sub-trees of
16086      the Org document.
16088 - =<body>= ::
16090      Source code in the dialect of the specified language identifier.
16092 ** Using header arguments
16093 :PROPERTIES:
16094 :DESCRIPTION: Different ways to set header arguments.
16095 :END:
16097 Org comes with many header arguments common to all languages.  New
16098 header arguments are added for specific languages as they become
16099 available for use in source code blocks.  A header argument is
16100 specified with an initial colon followed by the argument's name in
16101 lowercase.
16103 Since header arguments can be set in several ways, Org prioritizes
16104 them in case of overlaps or conflicts by giving local settings
16105 a higher priority.  Header values in function calls, for example,
16106 override header values from global defaults.
16108 *** System-wide header arguments
16109 :PROPERTIES:
16110 :UNNUMBERED: notoc
16111 :END:
16112 #+vindex: org-babel-default-header-args
16114 #+vindex: org-babel-default-header-args
16115 System-wide values of header arguments can be specified by customizing
16116 the ~org-babel-default-header-args~ variable, which defaults to the
16117 following values:
16119 #+begin_example
16120   :session    => "none"
16121   :results    => "replace"
16122   :exports    => "code"
16123   :cache      => "no"
16124   :noweb      => "no"
16125 #+end_example
16127 The example below sets =:noweb= header arguments to =yes=, which makes
16128 Org expand =:noweb= references by default.
16130 #+begin_src emacs-lisp
16131   (setq org-babel-default-header-args
16132         (cons '(:noweb . "yes")
16133               (assq-delete-all :noweb org-babel-default-header-args)))
16134 #+end_src
16136 #+cindex: language specific default header arguments
16137 #+cindex: default header arguments per language
16138 Each language can have separate default header arguments by
16139 customizing the variable ~org-babel-default-header-args:<LANG>~, where
16140 {{{var(<LANG>)}}} is the name of the language.  For details, see the
16141 language-specific online documentation at
16142 https://orgmode.org/worg/org-contrib/babel.
16144 *** Header arguments in Org mode properties
16145 :PROPERTIES:
16146 :UNNUMBERED: notoc
16147 :END:
16149 For header arguments applicable to the buffer, use =PROPERTY= keyword
16150 anywhere in the Org file (see [[*Property syntax]]).
16152 The following example makes all the R code blocks execute in the same
16153 session.  Setting =:results= to =silent= ignores the results of
16154 executions for all blocks, not just R code blocks; no results inserted
16155 for any block.
16157 #+begin_example
16158   ,#+PROPERTY: header-args:R  :session *R*
16159   ,#+PROPERTY: header-args    :results silent
16160 #+end_example
16162 #+vindex: org-use-property-inheritance
16163 Header arguments set through Org's property drawers (see [[*Property
16164 syntax]]) apply at the sub-tree level on down.  Since these property
16165 drawers can appear anywhere in the file hierarchy, Org uses outermost
16166 call or source block to resolve the values.  Org ignores
16167 ~org-use-property-inheritance~ setting.
16169 In this example, =:cache= defaults to =yes= for all code blocks in the
16170 sub-tree.
16172 #+begin_example
16173   ,* sample header
16174     :PROPERTIES:
16175     :header-args:    :cache yes
16176     :END:
16177 #+end_example
16179 #+kindex: C-c C-x p
16180 #+findex: org-set-property
16181 Properties defined through ~org-set-property~ function, bound to
16182 {{{kbd(C-c C-x p)}}}, apply to all active languages.  They override
16183 properties set in ~org-babel-default-header-args~.
16185 #+cindex: language specific header arguments properties
16186 #+cindex: header arguments per language
16187 Language-specific header arguments are also read from properties
16188 =header-args:<LANG>= where {{{var(<LANG>)}}} is the language
16189 identifier.  For example,
16191 #+begin_example
16192   ,* Heading
16193     :PROPERTIES:
16194     :header-args:clojure:    :session *clojure-1*
16195     :header-args:R:          :session *R*
16196     :END:
16197   ,** Subheading
16198     :PROPERTIES:
16199     :header-args:clojure:    :session *clojure-2*
16200     :END:
16201 #+end_example
16203 #+texinfo: @noindent
16204 would force separate sessions for Clojure blocks in =Heading= and
16205 =Subheading=, but use the same session for all R blocks.  Blocks in
16206 =Subheading= inherit settings from =Heading=.
16208 *** Code block specific header arguments
16209 :PROPERTIES:
16210 :UNNUMBERED: notoc
16211 :END:
16213 Header arguments are most commonly set at the source code block level,
16214 on the =#+BEGIN_SRC= line.  Arguments set at this level take
16215 precedence over those set in the ~org-babel-default-header-args~
16216 variable, and also those set as header properties.
16218 In the following example, setting =:results= to =silent= makes it
16219 ignore results of the code execution.  Setting =:exports= to =code=
16220 exports only the body of the code block to HTML or LaTeX.
16222 #+begin_example
16223   ,#+NAME: factorial
16224   ,#+BEGIN_SRC haskell :results silent :exports code :var n=0
16225     fac 0 = 1
16226     fac n = n * fac (n-1)
16227   ,#+END_SRC
16228 #+end_example
16230 The same header arguments in an inline code block:
16232 : src_haskell[:exports both]{fac 5}
16234 #+cindex: HEADER, keyword
16235 Code block header arguments can span multiple lines using =#+HEADER:=
16236 on each line.  Note that Org currently accepts the plural spelling of
16237 =#+HEADER:= only as a convenience for backward-compatibility.  It may
16238 be removed at some point.
16240 Multi-line header arguments on an unnamed code block:
16242 #+begin_example
16243   ,#+HEADER: :var data1=1
16244   ,#+BEGIN_SRC emacs-lisp :var data2=2
16245      (message "data1:%S, data2:%S" data1 data2)
16246   ,#+END_SRC
16248   ,#+RESULTS:
16249   : data1:1, data2:2
16250 #+end_example
16252 Multi-line header arguments on a named code block:
16254 #+begin_example
16255   ,#+NAME: named-block
16256   ,#+HEADER: :var data=2
16257   ,#+BEGIN_SRC emacs-lisp
16258     (message "data:%S" data)
16259   ,#+END_SRC
16261   ,#+RESULTS: named-block
16262     : data:2
16263 #+end_example
16265 *** Header arguments in function calls
16266 :PROPERTIES:
16267 :UNNUMBERED: notoc
16268 :END:
16270 Header arguments in function calls are the most specific and override
16271 all other settings in case of an overlap.  They get the highest
16272 priority.  Two =#+CALL:= examples are shown below.  For the complete
16273 syntax of =CALL= keyword, see [[*Evaluating code blocks]].
16275 In this example, =:exports results= header argument is applied to the
16276 evaluation of the =#+CALL:= line.
16278 : #+CALL: factorial(n=5) :exports results
16280 In this example, =:session special= header argument is applied to the
16281 evaluation of =factorial= code block.
16283 : #+CALL: factorial[:session special](n=5)
16285 ** Environment of a code block
16286 :PROPERTIES:
16287 :DESCRIPTION: Arguments, sessions, working directory...
16288 :END:
16290 *** Passing arguments
16291 :PROPERTIES:
16292 :UNNUMBERED: notoc
16293 :END:
16295 #+cindex: passing arguments to code blocks
16296 #+cindex: arguments, in code blocks
16297 #+cindex: @samp{var}, header argument
16298 Use =var= for passing arguments to source code blocks.  The specifics
16299 of variables in code blocks vary by the source language and are
16300 covered in the language-specific documentation.  The syntax for =var=,
16301 however, is the same for all languages.  This includes declaring
16302 a variable, and assigning a default value.
16304 The following syntax is used to pass arguments to code blocks using
16305 the =var= header argument.
16307 : :var NAME=ASSIGN
16309 #+texinfo: @noindent
16310 {{{var(NAME)}}} is the name of the variable bound in the code block
16311 body.  {{{var(ASSIGN)}}} is a literal value, such as a string,
16312 a number, a reference to a table, a list, a literal example, another
16313 code block---with or without arguments---or the results of evaluating
16314 a code block.
16316 Here are examples of passing values by reference:
16318 - table ::
16320      A table named with a =NAME= keyword.
16322      #+begin_example
16323        ,#+NAME: example-table
16324        | 1 |
16325        | 2 |
16326        | 3 |
16327        | 4 |
16329        ,#+NAME: table-length
16330        ,#+BEGIN_SRC emacs-lisp :var table=example-table
16331          (length table)
16332        ,#+END_SRC
16334        ,#+RESULTS: table-length
16335        : 4
16336      #+end_example
16338      When passing a table, you can treat specially the row, or the
16339      column, containing labels for the columns, or the rows, in the
16340      table.
16342      #+cindex: @samp{colnames}, header argument
16343      The =colnames= header argument accepts =yes=, =no=, or =nil=
16344      values.  The default value is =nil=: if an input table has column
16345      names---because the second row is a horizontal rule---then Org
16346      removes the column names, processes the table, puts back the
16347      column names, and then writes the table to the results block.
16348      Using =yes=, Org does the same to the first row, even if the
16349      initial table does not contain any horizontal rule.  When set to
16350      =no=, Org does not pre-process column names at all.
16352      #+begin_example
16353        ,#+NAME: less-cols
16354        | a |
16355        |---|
16356        | b |
16357        | c |
16359        ,#+BEGIN_SRC python :var tab=less-cols :colnames nil
16360          return [[val + '*' for val in row] for row in tab]
16361        ,#+END_SRC
16363        ,#+RESULTS:
16364        | a  |
16365        |----|
16366        | b* |
16367        | c* |
16368      #+end_example
16370      #+cindex: @samp{rownames}, header argument
16371      Similarly, the =rownames= header argument can take two values:
16372      =yes= or =no=.  When set to =yes=, Org removes the first column,
16373      processes the table, puts back the first column, and then writes
16374      the table to the results block.  The default is =no=, which means
16375      Org does not pre-process the first column.  Note that Emacs Lisp
16376      code blocks ignore =rownames= header argument because of the ease
16377      of table-handling in Emacs.
16379      #+begin_example
16380        ,#+NAME: with-rownames
16381        | one | 1 | 2 | 3 | 4 |  5 |
16382        | two | 6 | 7 | 8 | 9 | 10 |
16384        ,#+BEGIN_SRC python :var tab=with-rownames :rownames yes
16385          return [[val + 10 for val in row] for row in tab]
16386        ,#+END_SRC
16388        ,#+RESULTS:
16389        | one | 11 | 12 | 13 | 14 | 15 |
16390        | two | 16 | 17 | 18 | 19 | 20 |
16391      #+end_example
16393 - list ::
16395      A simple named list.
16397      #+begin_example
16398        ,#+NAME: example-list
16399        - simple
16400          - not
16401          - nested
16402        - list
16404        ,#+BEGIN_SRC emacs-lisp :var x=example-list
16405          (print x)
16406        ,#+END_SRC
16408        ,#+RESULTS:
16409        | simple | list |
16410      #+end_example
16412      Note that only the top level list items are passed along.  Nested
16413      list items are ignored.
16415 - code block without arguments ::
16417      A code block name, as assigned by =NAME= keyword from the example
16418      above, optionally followed by parentheses.
16420      #+begin_example
16421        ,#+BEGIN_SRC emacs-lisp :var length=table-length()
16422          (* 2 length)
16423        ,#+END_SRC
16425        ,#+RESULTS:
16426        : 8
16427      #+end_example
16429 - code block with arguments ::
16431      A code block name, as assigned by =NAME= keyword, followed by
16432      parentheses and optional arguments passed within the parentheses.
16434      #+begin_example
16435        ,#+NAME: double
16436        ,#+BEGIN_SRC emacs-lisp :var input=8
16437          (* 2 input)
16438        ,#+END_SRC
16440        ,#+RESULTS: double
16441        : 16
16443        ,#+NAME: squared
16444        ,#+BEGIN_SRC emacs-lisp :var input=double(input=1)
16445          (* input input)
16446        ,#+END_SRC
16448        ,#+RESULTS: squared
16449        : 4
16450      #+end_example
16452 - literal example ::
16454      A literal example block named with a =NAME= keyword.
16456      #+begin_example
16457        ,#+NAME: literal-example
16458        ,#+BEGIN_EXAMPLE
16459          A literal example
16460          on two lines
16461        ,#+END_EXAMPLE
16463        ,#+NAME: read-literal-example
16464        ,#+BEGIN_SRC emacs-lisp :var x=literal-example
16465          (concatenate #'string x " for you.")
16466        ,#+END_SRC
16468        ,#+RESULTS: read-literal-example
16469        : A literal example
16470        : on two lines for you.
16471      #+end_example
16473 Indexing variable values enables referencing portions of a variable.
16474 Indexes are 0 based with negative values counting backwards from the
16475 end.  If an index is separated by commas then each subsequent section
16476 indexes as the next dimension.  Note that this indexing occurs
16477 /before/ other table-related header arguments are applied, such as
16478 =hlines=, =colnames= and =rownames=.  The following example assigns
16479 the last cell of the first row the table =example-table= to the
16480 variable =data=:
16482 #+begin_example
16483   ,#+NAME: example-table
16484   | 1 | a |
16485   | 2 | b |
16486   | 3 | c |
16487   | 4 | d |
16489   ,#+BEGIN_SRC emacs-lisp :var data=example-table[0,-1]
16490     data
16491   ,#+END_SRC
16493   ,#+RESULTS:
16494   : a
16495 #+end_example
16497 Two integers separated by a colon reference a range of variable
16498 values.  In that case the entire inclusive range is referenced.  For
16499 example the following assigns the middle three rows of =example-table=
16500 to =data=.
16502 #+begin_example
16503   ,#+NAME: example-table
16504   | 1 | a |
16505   | 2 | b |
16506   | 3 | c |
16507   | 4 | d |
16508   | 5 | 3 |
16510   ,#+BEGIN_SRC emacs-lisp :var data=example-table[1:3]
16511     data
16512   ,#+END_SRC
16514   ,#+RESULTS:
16515   | 2 | b |
16516   | 3 | c |
16517   | 4 | d |
16518 #+end_example
16520 To pick the entire range, use an empty index, or the single character
16521 =*=.  =0:-1= does the same thing.  Example below shows how to
16522 reference the first column only.
16524 #+begin_example
16525   ,#+NAME: example-table
16526   | 1 | a |
16527   | 2 | b |
16528   | 3 | c |
16529   | 4 | d |
16531   ,#+BEGIN_SRC emacs-lisp :var data=example-table[,0]
16532     data
16533   ,#+END_SRC
16535   ,#+RESULTS:
16536   | 1 | 2 | 3 | 4 |
16537 #+end_example
16539 Index referencing can be used for tables and code blocks.  Index
16540 referencing can handle any number of dimensions.  Commas delimit
16541 multiple dimensions, as shown below.
16543 #+begin_example
16544   ,#+NAME: 3D
16545   ,#+BEGIN_SRC emacs-lisp
16546     '(((1  2  3)  (4  5  6)  (7  8  9))
16547       ((10 11 12) (13 14 15) (16 17 18))
16548       ((19 20 21) (22 23 24) (25 26 27)))
16549   ,#+END_SRC
16551   ,#+BEGIN_SRC emacs-lisp :var data=3D[1,,1]
16552     data
16553   ,#+END_SRC
16555   ,#+RESULTS:
16556   | 11 | 14 | 17 |
16557 #+end_example
16559 Note that row names and column names are not removed prior to variable
16560 indexing.  You need to take them into account, even when =colnames= or
16561 =rownames= header arguments remove them.
16563 Emacs lisp code can also set the values for variables.  To
16564 differentiate a value from Lisp code, Org interprets any value
16565 starting with =(=, =[=, ='= or =`= as Emacs Lisp code.  The result of
16566 evaluating that code is then assigned to the value of that variable.
16567 The following example shows how to reliably query and pass the file
16568 name of the Org mode buffer to a code block using headers.  We need
16569 reliability here because the file's name could change once the code in
16570 the block starts executing.
16572 #+begin_example
16573   ,#+BEGIN_SRC sh :var filename=(buffer-file-name) :exports both
16574     wc -w $filename
16575   ,#+END_SRC
16576 #+end_example
16578 Note that values read from tables and lists are not mistakenly
16579 evaluated as Emacs Lisp code, as illustrated in the following example.
16581 #+begin_example
16582   ,#+NAME: table
16583   | (a b c) |
16585   ,#+HEADERS: :var data=table[0,0]
16586   ,#+BEGIN_SRC perl
16587     $data
16588   ,#+END_SRC
16590   ,#+RESULTS:
16591   : (a b c)
16592 #+end_example
16594 *** Using sessions
16595 :PROPERTIES:
16596 :UNNUMBERED: notoc
16597 :END:
16599 #+cindex: using sessions in code blocks
16600 #+cindex: @samp{session}, header argument
16601 Two code blocks can share the same environment.  The =session= header
16602 argument is for running multiple source code blocks under one session.
16603 Org runs code blocks with the same session name in the same
16604 interpreter process.
16606 - =none= ::
16608      Default.  Each code block gets a new interpreter process to
16609      execute.  The process terminates once the block is evaluated.
16611 - {{{var(STRING)}}} ::
16613      Any string besides =none= turns that string into the name of that
16614      session.  For example, =:session STRING= names it =STRING=.  If
16615      =session= has no value, then the session name is derived from the
16616      source language identifier.  Subsequent blocks with the same
16617      source code language use the same session.  Depending on the
16618      language, state variables, code from other blocks, and the
16619      overall interpreted environment may be shared.  Some interpreted
16620      languages support concurrent sessions when subsequent source code
16621      language blocks change session names.
16623 Only languages that provide interactive evaluation can have session
16624 support.  Not all languages provide this support, such as C and ditaa.
16625 Even languages, such as Python and Haskell, that do support
16626 interactive evaluation impose limitations on allowable language
16627 constructs that can run interactively.  Org inherits those limitations
16628 for those code blocks running in a session.
16630 *** Choosing a working directory
16631 :PROPERTIES:
16632 :UNNUMBERED: notoc
16633 :END:
16635 #+cindex: working directory, in a code block
16636 #+cindex: @samp{dir}, header argument
16637 The =dir= header argument specifies the default directory during code
16638 block execution.  If it is absent, then the directory associated with
16639 the current buffer is used.  In other words, supplying =:dir PATH=
16640 temporarily has the same effect as changing the current directory with
16641 {{{kbd(M-x cd PATH)}}}, and then not setting =dir=.  Under the
16642 surface, =dir= simply sets the value of the Emacs variable
16643 ~default-directory~.
16645 For example, to save the plot file in the =Work/= folder of the home
16646 directory---notice tilde is expanded:
16648 #+begin_example
16649   ,#+BEGIN_SRC R :file myplot.png :dir ~/Work
16650     matplot(matrix(rnorm(100), 10), type="l")
16651   ,#+END_SRC
16652 #+end_example
16654 To evaluate the code block on a remote machine, supply a remote
16655 directory name using Tramp syntax.  For example:
16657 #+begin_example
16658   ,#+BEGIN_SRC R :file plot.png :dir /scp:dand@yakuba.princeton.edu:
16659     plot(1:10, main=system("hostname", intern=TRUE))
16660   ,#+END_SRC
16661 #+end_example
16663 Org first captures the text results as usual for insertion in the Org
16664 file.  Then Org also inserts a link to the remote file, thanks to
16665 Emacs Tramp.  Org constructs the remote path to the file name from
16666 =dir= and ~default-directory~, as illustrated here:
16668 : [[file:/scp:dand@yakuba.princeton.edu:/home/dand/plot.png][plot.png]]
16670 When =dir= is used with =session=, Org sets the starting directory for
16671 a new session.  But Org does not alter the directory of an already
16672 existing session.
16674 Do not use =dir= with =:exports results= or with =:exports both= to
16675 avoid Org inserting incorrect links to remote files.  That is because
16676 Org does not expand ~default directory~ to avoid some underlying
16677 portability issues.
16679 *** Inserting headers and footers
16680 :PROPERTIES:
16681 :UNNUMBERED: notoc
16682 :END:
16684 #+cindex: headers, in code blocks
16685 #+cindex: footers, in code blocks
16686 #+cindex: @samp{prologue}, header argument
16687 The =prologue= header argument is for appending to the top of the code
16688 block for execution, like a reset instruction.  For example, you may
16689 use =:prologue "reset"= in a Gnuplot code block or, for every such
16690 block:
16692 #+begin_src emacs-lisp
16693   (add-to-list 'org-babel-default-header-args:gnuplot
16694                '((:prologue . "reset")))
16696 #+end_src
16698 #+cindex: @samp{epilogue}, header argument
16699 Likewise, the value of the =epilogue= header argument is for appending
16700 to the end of the code block for execution.
16702 ** Evaluating code blocks
16703 :PROPERTIES:
16704 :DESCRIPTION: Place results of evaluation in the Org buffer.
16705 :END:
16706 #+cindex: code block, evaluating
16707 #+cindex: source code, evaluating
16708 #+cindex: RESULTS, keyword
16710 A note about security: With code evaluation comes the risk of harm.
16711 Org safeguards by prompting for user's permission before executing any
16712 code in the source block.  To customize this safeguard, or disable it,
16713 see [[*Code evaluation and security issues]].
16715 *** How to evaluate source code
16716 :PROPERTIES:
16717 :UNNUMBERED: notoc
16718 :END:
16720 Org captures the results of the code block evaluation and inserts them
16721 in the Org file, right after the code block.  The insertion point is
16722 after a newline and the =RESULTS= keyword.  Org creates the =RESULTS=
16723 keyword if one is not already there.
16725 By default, Org enables only Emacs Lisp code blocks for execution.
16726 See [[*Languages]] to enable other languages.
16728 #+kindex: C-c C-c
16729 #+kindex: C-c C-v e
16730 #+findex: org-babel-execute-src-block
16731 Org provides many ways to execute code blocks.  {{{kbd(C-c C-c)}}} or
16732 {{{kbd(C-c C-v e)}}} with the point on a code block[fn:131] calls the
16733 ~org-babel-execute-src-block~ function, which executes the code in the
16734 block, collects the results, and inserts them in the buffer.
16736 #+cindex: CALL, keyword
16737 #+vindex: org-babel-inline-result-wrap
16738 By calling a named code block[fn:132] from an Org mode buffer or
16739 a table.  Org can call the named code blocks from the current Org mode
16740 buffer or from the "Library of Babel" (see [[*Library of Babel]]).
16742 The syntax for =CALL= keyword is:
16744 #+begin_example
16745   ,#+CALL: <name>(<arguments>)
16746   ,#+CALL: <name>[<inside header arguments>](<arguments>) <end header arguments>
16747 #+end_example
16749 The syntax for inline named code blocks is:
16751 #+begin_example
16752   ... call_<name>(<arguments>) ...
16753   ... call_<name>[<inside header arguments>](<arguments>)[<end header arguments>] ...
16754 #+end_example
16756 When inline syntax is used, the result is wrapped based on the
16757 variable ~org-babel-inline-result-wrap~, which by default is set to
16758 ~"=%s="~ to produce verbatim text suitable for markup.
16760 - =<name>= ::
16762      This is the name of the code block to be evaluated (see
16763      [[*Structure of code blocks]]).
16765 - =<arguments>= ::
16767      Org passes arguments to the code block using standard function
16768      call syntax.  For example, a =#+CALL:= line that passes =4= to
16769      a code block named =double=, which declares the header argument
16770      =:var n=2=, would be written as:
16772      : #+CALL: double(n=4)
16774      #+texinfo: @noindent
16775      Note how this function call syntax is different from the header
16776      argument syntax.
16778 - =<inside header arguments>= ::
16780      Org passes inside header arguments to the named code block using
16781      the header argument syntax.  Inside header arguments apply to
16782      code block evaluation.  For example, =[:results output]= collects
16783      results printed to stdout during code execution of that block.
16784      Note how this header argument syntax is different from the
16785      function call syntax.
16787 - =<end header arguments>= ::
16789      End header arguments affect the results returned by the code
16790      block.  For example, =:results html= wraps the results in
16791      a =#+BEGIN_EXPORT html= block before inserting the results in the
16792      Org buffer.
16794 *** Limit code block evaluation
16795 :PROPERTIES:
16796 :UNNUMBERED: notoc
16797 :END:
16799 #+cindex: @samp{eval}, header argument
16800 #+cindex: control code block evaluation
16801 The =eval= header argument can limit evaluation of specific code
16802 blocks and =CALL= keyword.  It is useful for protection against
16803 evaluating untrusted code blocks by prompting for a confirmation.
16805 - =never= or =no= ::
16807      Org never evaluates the source code.
16809 - =query= ::
16811      Org prompts the user for permission to evaluate the source code.
16813 - =never-export= or =no-export= ::
16815      Org does not evaluate the source code when exporting, yet the
16816      user can evaluate it interactively.
16818 - =query-export= ::
16820      Org prompts the user for permission to evaluate the source code
16821      during export.
16823 If =eval= header argument is not set, then Org determines whether to
16824 evaluate the source code from the ~org-confirm-babel-evaluate~
16825 variable (see [[*Code evaluation and security issues]]).
16827 *** Cache results of evaluation
16828 :PROPERTIES:
16829 :UNNUMBERED: notoc
16830 :END:
16832 #+cindex: @samp{cache}, header argument
16833 #+cindex: cache results of code evaluation
16834 The =cache= header argument is for caching results of evaluating code
16835 blocks.  Caching results can avoid re-evaluating a code block that
16836 have not changed since the previous run.  To benefit from the cache
16837 and avoid redundant evaluations, the source block must have a result
16838 already present in the buffer, and neither the header
16839 arguments---including the value of =var= references---nor the text of
16840 the block itself has changed since the result was last computed.  This
16841 feature greatly helps avoid long-running calculations.  For some edge
16842 cases, however, the cached results may not be reliable.
16844 The caching feature is best for when code blocks are pure functions,
16845 that is functions that return the same value for the same input
16846 arguments (see [[*Environment of a code block]]), and that do not have
16847 side effects, and do not rely on external variables other than the
16848 input arguments.  Functions that depend on a timer, file system
16849 objects, and random number generators are clearly unsuitable for
16850 caching.
16852 A note of warning: when =cache= is used in a session, caching may
16853 cause unexpected results.
16855 When the caching mechanism tests for any source code changes, it does
16856 not expand Noweb style references (see [[*Noweb reference syntax]]).  For
16857 reasons why, see http://thread.gmane.org/gmane.emacs.orgmode/79046.
16859 The =cache= header argument can have one of two values: =yes= or =no=.
16861 - =no= ::
16863      Default.  No caching of results; code block evaluated every
16864      time.
16866 - =yes= ::
16868      Whether to run the code or return the cached results is
16869      determined by comparing the SHA1 hash value of the combined code
16870      block and arguments passed to it.  This hash value is packed on
16871      the =#+RESULTS:= line from previous evaluation.  When hash values
16872      match, Org does not evaluate the code block.  When hash values
16873      mismatch, Org evaluates the code block, inserts the results,
16874      recalculates the hash value, and updates =#+RESULTS:= line.
16876 In this example, both functions are cached.  But =caller= runs only if
16877 the result from =random= has changed since the last run.
16879 #+begin_example
16880   ,#+NAME: random
16881   ,#+BEGIN_SRC R :cache yes
16882     runif(1)
16883   ,#+END_SRC
16885   ,#+RESULTS[a2a72cd647ad44515fab62e144796432793d68e1]: random
16886   0.4659510825295
16888   ,#+NAME: caller
16889   ,#+BEGIN_SRC emacs-lisp :var x=random :cache yes
16890     x
16891   ,#+END_SRC
16893   ,#+RESULTS[bec9c8724e397d5df3b696502df3ed7892fc4f5f]: caller
16894   0.254227238707244
16895 #+end_example
16897 ** Results of evaluation
16898 :PROPERTIES:
16899 :DESCRIPTION: Choosing a results type, post-processing...
16900 :END:
16901 #+cindex: code block, results of evaluation
16902 #+cindex: source code, results of evaluation
16904 #+cindex: @samp{results}, header argument
16905 How Org handles results of a code block execution depends on many
16906 header arguments working together.  The primary determinant, however,
16907 is the =results= header argument.  It accepts four classes of options.
16908 Each code block can take only one option per class:
16910 - collection ::
16912      For how the results should be collected from the code block;
16914 - type ::
16916      For which type of result the code block will return; affects how
16917      Org processes and inserts results in the Org buffer;
16919 - format ::
16921      For the result; affects how Org processes and inserts results in
16922      the Org buffer;
16924 - handling ::
16926      For processing results after evaluation of the code block;
16928 *** Collection
16929 :PROPERTIES:
16930 :UNNUMBERED: notoc
16931 :END:
16933 Collection options specify the results.  Choose one of the options;
16934 they are mutually exclusive.
16936 - =value= ::
16938      Default.  Functional mode.  Org gets the value by wrapping the
16939      code in a function definition in the language of the source
16940      block.  That is why when using =:results value=, code should
16941      execute like a function and return a value.  For languages like
16942      Python, an explicit ~return~ statement is mandatory when using
16943      =:results value=.  Result is the value returned by the last
16944      statement in the code block.
16946      When evaluating the code block in a session (see [[*Environment of
16947      a code block]]), Org passes the code to an interpreter running as
16948      an interactive Emacs inferior process. Org gets the value from
16949      the source code interpreter's last statement output.  Org has to
16950      use language-specific methods to obtain the value.  For example,
16951      from the variable ~_~ in Python and Ruby, and the value of
16952      ~.Last.value~ in R.
16954 - =output= ::
16956      Scripting mode.  Org passes the code to an external process
16957      running the interpreter.  Org returns the contents of the
16958      standard output stream as text results.
16960      When using a session, Org passes the code to the interpreter
16961      running as an interactive Emacs inferior process.  Org
16962      concatenates any text output from the interpreter and returns the
16963      collection as a result.
16965      Note that this collection is not the same as that would be
16966      collected from stdout of a non-interactive interpreter running as
16967      an external process.  Compare for example these two blocks:
16969      #+begin_example
16970        ,#+BEGIN_SRC python :results output
16971          print "hello"
16972          2
16973          print "bye"
16974        ,#+END_SRC
16976        ,#+RESULTS:
16977        : hello
16978        : bye
16979      #+end_example
16981      In the above non-session mode, the "2" is not printed; so it does
16982      not appear in results.
16984      #+begin_example
16985        ,#+BEGIN_SRC python :results output :session
16986          print "hello"
16987          2
16988          print "bye"
16989        ,#+END_SRC
16991        ,#+RESULTS:
16992        : hello
16993        : 2
16994        : bye
16995      #+end_example
16997      In the above session, the interactive interpreter receives and
16998      prints "2".  Results show that.
17000 *** Type
17001 :PROPERTIES:
17002 :UNNUMBERED: notoc
17003 :END:
17005 Type tells what result types to expect from the execution of the code
17006 block.  Choose one of the options; they are mutually exclusive.  The
17007 default behavior is to automatically determine the result type.
17009 #+attr_texinfo: :sep ,
17010 - =table=, =vector= ::
17012      Interpret the results as an Org table.  If the result is a single
17013      value, create a table with one row and one column.  Usage
17014      example: =:results value table=.
17016      #+cindex: @samp{hlines}, header argument
17017      In-between each table row or below the table headings, sometimes
17018      results have horizontal lines, which are also known as "hlines".
17019      The =hlines= argument with the default =no= value strips such
17020      lines from the input table.  For most code, this is desirable, or
17021      else those =hline= symbols raise unbound variable errors.
17022      A =yes= accepts such lines, as demonstrated in the following
17023      example.
17025      #+begin_example
17026        ,#+NAME: many-cols
17027        | a | b | c |
17028        |---+---+---|
17029        | d | e | f |
17030        |---+---+---|
17031        | g | h | i |
17033        ,#+NAME: no-hline
17034        ,#+BEGIN_SRC python :var tab=many-cols :hlines no
17035          return tab
17036        ,#+END_SRC
17038        ,#+RESULTS: no-hline
17039        | a | b | c |
17040        | d | e | f |
17041        | g | h | i |
17043        ,#+NAME: hlines
17044        ,#+BEGIN_SRC python :var tab=many-cols :hlines yes
17045          return tab
17046        ,#+END_SRC
17048        ,#+RESULTS: hlines
17049        | a | b | c |
17050        |---+---+---|
17051        | d | e | f |
17052        |---+---+---|
17053        | g | h | i |
17054      #+end_example
17056 - =list= ::
17058      Interpret the results as an Org list.  If the result is a single
17059      value, create a list of one element.
17061 - =scalar=, =verbatim= ::
17063      Interpret literally and insert as quoted text.  Do not create
17064      a table.  Usage example: =:results value verbatim=.
17066 - =file= ::
17068      Interpret as a filename.  Save the results of execution of the
17069      code block to that file, then insert a link to it.  You can
17070      control both the filename and the description associated to the
17071      link.
17073      #+cindex: @samp{file}, header argument
17074      #+cindex: @samp{output-dir}, header argument
17075      Org first tries to generate the filename from the value of the
17076      =file= header argument and the directory specified using the
17077      =output-dir= header arguments.  If =output-dir= is not specified,
17078      Org assumes it is the current directory.
17080      #+begin_example
17081        ,#+BEGIN_SRC asymptote :results value file :file circle.pdf :output-dir img/
17082          size(2cm);
17083          draw(unitcircle);
17084        ,#+END_SRC
17085      #+end_example
17087      #+cindex: @samp{file-ext}, header argument
17088      If =file= is missing, Org generates the base name of the output
17089      file from the name of the code block, and its extension from the
17090      =file-ext= header argument.  In that case, both the name and the
17091      extension are mandatory.
17093      #+begin_example
17094        ,#+name: circle
17095        ,#+BEGIN_SRC asymptote :results value file :file-ext pdf
17096          size(2cm);
17097          draw(unitcircle);
17098        ,#+END_SRC
17099      #+end_example
17101      #+cindex: @samp{file-desc}, header argument
17102      The =file-desc= header argument defines the description (see
17103      [[*Link format]]) for the link.  If =file-desc= has no value, Org
17104      uses the generated file name for both the "link" and
17105      "description" parts of the link.
17107 *** Format
17108 :PROPERTIES:
17109 :UNNUMBERED: notoc
17110 :END:
17112 Format pertains to the type of the result returned by the code block.
17113 Choose one of the options; they are mutually exclusive.  The default
17114 follows from the type specified above.
17116 - =raw= ::
17118      Interpreted as raw Org mode.  Inserted directly into the buffer.
17119      Aligned if it is a table.  Usage example: =:results value raw=.
17121 - =org= ::
17123      Results enclosed in a =BEGIN_SRC org= block.  For comma-escape,
17124      either {{{kbd(TAB)}}} in the block, or export the file.  Usage
17125      example: =:results value org=.
17127 - =html= ::
17129      Results enclosed in a =BEGIN_EXPORT html= block.  Usage example:
17130      =:results value html=.
17132 - =latex= ::
17134      Results enclosed in a =BEGIN_EXPORT latex= block.  Usage example:
17135      =:results value latex=.
17137 - =code= ::
17139      Result enclosed in a code block.  Useful for parsing.  Usage
17140      example: =:results value code=.
17142 - =pp= ::
17144      Result converted to pretty-print source code.  Enclosed in a code
17145      block.  Languages supported: Emacs Lisp, Python, and Ruby.  Usage
17146      example: =:results value pp=.
17148 - =drawer= ::
17150      Result wrapped in a =RESULTS= drawer.  Useful for containing
17151      =raw= or =org= results for later scripting and automated
17152      processing.  Usage example: =:results value drawer=.
17154 *** Handling
17155 :PROPERTIES:
17156 :UNNUMBERED: notoc
17157 :END:
17159 Handling options after collecting the results.
17161 - =silent= ::
17163      Do not insert results in the Org mode buffer, but echo them in
17164      the minibuffer.  Usage example: =:results output silent=.
17166 - =replace= ::
17168      Default.  Insert results in the Org buffer.  Remove previous
17169      results.  Usage example: =:results output replace=.
17171 - =append= ::
17173      Append results to the Org buffer.  Latest results are at the
17174      bottom.  Does not remove previous results.  Usage example:
17175      =:results output append=.
17177 - =prepend= ::
17179      Prepend results to the Org buffer.  Latest results are at the
17180      top.  Does not remove previous results.  Usage example: =:results
17181      output prepend=.
17183 *** Post-processing
17184 :PROPERTIES:
17185 :UNNUMBERED: notoc
17186 :END:
17188 #+cindex: @samp{post}, header argument
17189 #+cindex: @samp{*this*}, in @samp{post} header argument
17190 The =post= header argument is for post-processing results from block
17191 evaluation.  When =post= has any value, Org binds the results to
17192 ~*this*~ variable for easy passing to =var= header argument
17193 specifications (see [[*Environment of a code block]]).  That makes results
17194 available to other code blocks, or even for direct Emacs Lisp code
17195 execution.
17197 The following two examples illustrate =post= header argument in
17198 action.  The first one shows how to attach an =ATTR_LATEX= keyword
17199 using =post=.
17201 #+begin_example
17202   ,#+NAME: attr_wrap
17203   ,#+BEGIN_SRC sh :var data="" :var width="\\textwidth" :results output
17204     echo "#+ATTR_LATEX: :width $width"
17205     echo "$data"
17206   ,#+END_SRC
17208   ,#+HEADER: :file /tmp/it.png
17209   ,#+BEGIN_SRC dot :post attr_wrap(width="5cm", data=*this*) :results drawer
17210     digraph{
17211             a -> b;
17212             b -> c;
17213             c -> a;
17214     }
17215   ,#+end_src
17217   ,#+RESULTS:
17218   :RESULTS:
17219   ,#+ATTR_LATEX :width 5cm
17220   [[file:/tmp/it.png]]
17221   :END:
17222 #+end_example
17224 The second example shows use of =colnames= header argument in =post=
17225 to pass data between code blocks.
17227 #+begin_example
17228   ,#+NAME: round-tbl
17229   ,#+BEGIN_SRC emacs-lisp :var tbl="" fmt="%.3f"
17230     (mapcar (lambda (row)
17231               (mapcar (lambda (cell)
17232                         (if (numberp cell)
17233                             (format fmt cell)
17234                           cell))
17235                       row))
17236             tbl)
17237   ,#+end_src
17239   ,#+BEGIN_SRC R :colnames yes :post round-tbl[:colnames yes](*this*)
17240     set.seed(42)
17241     data.frame(foo=rnorm(1))
17242   ,#+END_SRC
17244   ,#+RESULTS:
17245   |   foo |
17246   |-------|
17247   | 1.371 |
17248 #+end_example
17250 ** Exporting code blocks
17251 :PROPERTIES:
17252 :DESCRIPTION: Export contents and/or results.
17253 :END:
17254 #+cindex: code block, exporting
17255 #+cindex: source code, exporting
17257 It is possible to export the /code/ of code blocks, the /results/ of
17258 code block evaluation, /both/ the code and the results of code block
17259 evaluation, or /none/.  Org defaults to exporting /code/ for most
17260 languages.  For some languages, such as ditaa, Org defaults to
17261 /results/.  To export just the body of code blocks, see [[*Literal
17262 examples]].  To selectively export sub-trees of an Org document, see
17263 [[*Exporting]].
17265 #+cindex: @samp{export}, header argument
17266 The =exports= header argument is to specify if that part of the Org
17267 file is exported to, say, HTML or LaTeX formats.
17269 - =code= ::
17271      The default.  The body of code is included into the exported
17272      file.  Example: =:exports code=.
17274 - =results= ::
17276      The results of evaluation of the code is included in the exported
17277      file.  Example: =:exports results=.
17279 - =both= ::
17281      Both the code and results of evaluation are included in the
17282      exported file.  Example: =:exports both=.
17284 - =none= ::
17286      Neither the code nor the results of evaluation is included in the
17287      exported file.  Whether the code is evaluated at all depends on
17288      other options.  Example: =:exports none=.
17290 #+vindex: org-export-use-babel
17291 To stop Org from evaluating code blocks to speed exports, use the
17292 header argument =:eval never-export= (see [[*Evaluating code blocks]]).
17293 To stop Org from evaluating code blocks for greater security, set the
17294 ~org-export-use-babel~ variable to ~nil~, but understand that header
17295 arguments will have no effect.
17297 Turning off evaluation comes in handy when batch processing.  For
17298 example, markup languages for wikis, which have a high risk of
17299 untrusted code.  Stopping code block evaluation also stops evaluation
17300 of all header arguments of the code block.  This may not be desirable
17301 in some circumstances.  So during export, to allow evaluation of just
17302 the header arguments but not any code evaluation in the source block,
17303 set =:eval never-export= (see [[*Evaluating code blocks]]).
17305 Org never evaluates code blocks in commented sub-trees when exporting
17306 (see [[*Comment lines]]).  On the other hand, Org does evaluate code
17307 blocks in sub-trees excluded from export (see [[*Export settings]]).
17309 ** Extracting source code
17310 :PROPERTIES:
17311 :DESCRIPTION: Create pure source code files.
17312 :END:
17313 #+cindex: tangling
17314 #+cindex: source code, extracting
17315 #+cindex: code block, extracting source code
17317 Extracting source code from code blocks is a basic task in literate
17318 programming.  Org has features to make this easy.  In literate
17319 programming parlance, documents on creation are /woven/ with code and
17320 documentation, and on export, the code is tangled for execution by
17321 a computer.  Org facilitates weaving and tangling for producing,
17322 maintaining, sharing, and exporting literate programming documents.
17323 Org provides extensive customization options for extracting source
17324 code.
17326 When Org tangles code blocks, it expands, merges, and transforms them.
17327 Then Org recomposes them into one or more separate files, as
17328 configured through the options.  During this tangling process, Org
17329 expands variables in the source code, and resolves any Noweb style
17330 references (see [[*Noweb reference syntax]]).
17332 *** Header arguments
17333 :PROPERTIES:
17334 :UNNUMBERED: notoc
17335 :END:
17337 #+cindex: @samp{tangle}, header argument
17338 The =tangle= header argument specifies if the code block is exported
17339 to source file(s).
17341 - =yes= ::
17343      Export the code block to source file.  The file name for the
17344      source file is derived from the name of the Org file, and the
17345      file extension is derived from the source code language
17346      identifier.  Example: =:tangle yes=.
17348 - =no= ::
17350      The default.  Do not extract the code in a source code file.
17351      Example: =:tangle no=.
17353 - {{{var(FILENAME)}}} ::
17355      Export the code block to source file whose file name is derived
17356      from any string passed to the =tangle= header argument.  Org
17357      derives the file name as being relative to the directory of the
17358      Org file's location.  Example: =:tangle FILENAME=.
17360 #+cindex: @samp{mkdirp}, header argument
17361 The =mkdirp= header argument creates parent directories for tangled
17362 files if the directory does not exist.  =yes= enables directory
17363 creation and =no= inhibits directory creation.
17365 #+cindex: @samp{comments}, header argument
17366 The =comments= header argument controls inserting comments into
17367 tangled files.  These are above and beyond whatever comments may
17368 already exist in the code block.
17370 - =no= ::
17372      The default.  Do not insert any extra comments during tangling.
17374 - =link= ::
17376      Wrap the code block in comments.  Include links pointing back to
17377      the place in the Org file from where the code was tangled.
17379 - =yes= ::
17381      Kept for backward compatibility; same as =link=.
17383 - =org= ::
17385      Nearest headline text from Org file is inserted as comment.  The
17386      exact text that is inserted is picked from the leading context of
17387      the source block.
17389 - =both= ::
17391      Includes both =link= and =org= options.
17393 - =noweb= ::
17395      Includes =link= option, expands Noweb references (see [[*Noweb
17396      reference syntax]]), and wraps them in link comments inside the
17397      body of the code block.
17399 #+cindex: @samp{padline}, header argument
17400 The =padline= header argument controls insertion of newlines to pad
17401 source code in the tangled file.
17403 - =yes= ::
17405      Default.  Insert a newline before and after each code block in
17406      the tangled file.
17408 - =no= ::
17410      Do not insert newlines to pad the tangled code blocks.
17412 #+cindex: @samp{shebang}, header argument
17413 The =shebang= header argument can turn results into executable script
17414 files.  By setting it to a string value---for example, =:shebang
17415 "#!/bin/bash"=---Org inserts that string as the first line of the
17416 tangled file that the code block is extracted to.  Org then turns on
17417 the tangled file's executable permission.
17419 #+cindex: @samp{no-expand}, header argument
17420 By default Org expands code blocks during tangling.  The =no-expand=
17421 header argument turns off such expansions.  Note that one side-effect
17422 of expansion by ~org-babel-expand-src-block~ also assigns values (see
17423 [[*Environment of a code block]]) to variables.  Expansions also replace
17424 Noweb references with their targets (see [[*Noweb reference syntax]]).
17425 Some of these expansions may cause premature assignment, hence this
17426 option.  This option makes a difference only for tangling.  It has no
17427 effect when exporting since code blocks for execution have to be
17428 expanded anyway.
17430 *** Functions
17431 :PROPERTIES:
17432 :UNNUMBERED: notoc
17433 :END:
17435 - ~org-babel-tangle~ ::
17437      #+findex: org-babel-tangle
17438      #+kindex: C-c C-v t
17439      Tangle the current file.  Bound to {{{kbd(C-c C-v t)}}}.
17441      With prefix argument only tangle the current code block.
17443 - ~org-babel-tangle-file~ ::
17445      #+findex: org-babel-tangle-file
17446      #+kindex: C-c C-v f
17447      Choose a file to tangle.  Bound to {{{kbd(C-c C-v f)}}}.
17449 *** Hooks
17450 :PROPERTIES:
17451 :UNNUMBERED: notoc
17452 :END:
17454 - ~org-babel-post-tangle-hook~ ::
17456      #+vindex: org-babel-post-tangle-hook
17457      This hook is run from within code files tangled by
17458      ~org-babel-tangle~, making it suitable for post-processing,
17459      compilation, and evaluation of code in the tangled files.
17461 *** Jumping between code and Org
17462 :PROPERTIES:
17463 :UNNUMBERED: notoc
17464 :END:
17466 #+findex: org-babel-tangle-jump-to-org
17467 Debuggers normally link errors and messages back to the source code.
17468 But for tangled files, we want to link back to the Org file, not to
17469 the tangled source file.  To make this extra jump, Org uses
17470 ~org-babel-tangle-jump-to-org~ function with two additional source
17471 code block header arguments:
17473 1. Set =padline= to true---this is the default setting.
17474 2. Set =comments= to =link=, which makes Org insert links to the Org
17475    file.
17477 ** Languages
17478 :PROPERTIES:
17479 :DESCRIPTION: List of supported code block languages.
17480 :END:
17481 #+cindex: babel, languages
17482 #+cindex: source code, languages
17483 #+cindex: code block, languages
17485 Code blocks in the following languages are supported.
17487 | Language   | Identifier | Language       | Identifier |
17488 |------------+------------+----------------+------------|
17489 | Asymptote  | asymptote  | Awk            | awk        |
17490 | C          | C          | C++            | C++        |
17491 | Clojure    | clojure    | CSS            | css        |
17492 | D          | d          | ditaa          | ditaa      |
17493 | Graphviz   | dot        | Emacs Calc     | calc       |
17494 | Emacs Lisp | emacs-lisp | Fortran        | fortran    |
17495 | Gnuplot    | gnuplot    | Haskell        | haskell    |
17496 | Java       | java       | Javascript     | js         |
17497 | LaTeX      | latex      | Ledger         | ledger     |
17498 | Lisp       | lisp       | Lilypond       | lilypond   |
17499 | Lua        | lua        | MATLAB         | matlab     |
17500 | Mscgen     | mscgen     | Objective Caml | ocaml      |
17501 | Octave     | octave     | Org mode       | org        |
17502 | Oz         | oz         | Perl           | perl       |
17503 | Plantuml   | plantuml   | Processing.js  | processing |
17504 | Python     | python     | R              | R          |
17505 | Ruby       | ruby       | Sass           | sass       |
17506 | Scheme     | scheme     | GNU Screen     | screen     |
17507 | Sed        | sed        | shell          | sh         |
17508 | SQL        | sql        | SQLite         | sqlite     |
17509 | Vala       | vala       |                |            |
17511 Additional documentation for some languages is at
17512 https://orgmode.org/worg/org-contrib/babel/languages.html.
17514 #+vindex: org-babel-load-languages
17515 By default, only Emacs Lisp is enabled for evaluation.  To enable or
17516 disable other languages, customize the ~org-babel-load-languages~
17517 variable either through the Emacs customization interface, or by
17518 adding code to the init file as shown next.
17520 In this example, evaluation is disabled for Emacs Lisp, and enabled
17521 for R.
17523 #+begin_src emacs-lisp
17524   (org-babel-do-load-languages
17525    'org-babel-load-languages
17526    '((emacs-lisp . nil)
17527      (R . t)))
17528 #+end_src
17530 Note that this is not the only way to enable a language.  Org also
17531 enables languages when loaded with ~require~ statement.  For example,
17532 the following enables execution of Clojure code blocks:
17534 #+begin_src emacs-lisp
17535   (require 'ob-clojure)
17536 #+end_src
17538 ** Editing source code
17539 :PROPERTIES:
17540 :DESCRIPTION: Language major-mode editing.
17541 :END:
17542 #+cindex: code block, editing
17543 #+cindex: source code, editing
17545 #+kindex: C-c '
17546 Use {{{kbd(C-c ')}}} to edit the current code block.  It opens a new
17547 major-mode edit buffer containing the body of the source code block,
17548 ready for any edits.  Use {{{kbd(C-c ')}}} again to close the buffer
17549 and return to the Org buffer.
17551 #+kindex: C-x C-s
17552 #+vindex: org-edit-src-auto-save-idle-delay
17553 #+cindex: auto-save, in code block editing
17554 {{{kbd(C-x C-s)}}} saves the buffer and updates the contents of the
17555 Org buffer.  Set ~org-edit-src-auto-save-idle-delay~ to save the base
17556 buffer after a certain idle delay time.  Set
17557 ~org-edit-src-turn-on-auto-save~ to auto-save this buffer into
17558 a separate file using Auto-save mode.
17560 While editing the source code in the major mode, the Org Src minor
17561 mode remains active.  It provides these customization variables as
17562 described below.  For even more variables, look in the customization
17563 group ~org-edit-structure~.
17565 - ~org-src-lang-modes~ ::
17567      #+vindex: org-src-lang-modes
17568      If an Emacs major-mode named ~<LANG>-mode~ exists, where
17569      {{{var(<LANG>)}}} is the language identifier from code block's
17570      header line, then the edit buffer uses that major mode.  Use this
17571      variable to arbitrarily map language identifiers to major modes.
17573 - ~org-src-window-setup~ ::
17575      #+vindex: org-src-window-setup
17576      For specifying Emacs window arrangement when the new edit buffer
17577      is created.
17579 - ~org-src-preserve-indentation~ ::
17581      #+cindex: indentation, in code blocks
17582      #+vindex: org-src-preserve-indentation
17583      Default is ~nil~.  Source code is indented.  This indentation
17584      applies during export or tangling, and depending on the context,
17585      may alter leading spaces and tabs.  When non-~nil~, source code
17586      is aligned with the leftmost column.  No lines are modified
17587      during export or tangling, which is very useful for white-space
17588      sensitive languages, such as Python.
17590 - ~org-src-ask-before-returning-to-edit-buffer~ ::
17592      #+vindex: org-src-ask-before-returning-to-edit-buffer
17593      When ~nil~, Org returns to the edit buffer without further
17594      prompts.  The default prompts for a confirmation.
17596 #+vindex: org-src-fontify-natively
17597 #+vindex: org-src-block-faces
17598 Set ~org-src-fontify-natively~ to non-~nil~ to turn on native code
17599 fontification in the /Org/ buffer.  Fontification of code blocks can
17600 give visual separation of text and code on the display page.  To
17601 further customize the appearance of ~org-block~ for specific
17602 languages, customize ~org-src-block-faces~.  The following example
17603 shades the background of regular blocks, and colors source blocks only
17604 for Python and Emacs Lisp languages.
17606 #+begin_src emacs-lisp
17607   (require 'color)
17608   (set-face-attribute 'org-block nil :background
17609                       (color-darken-name
17610                        (face-attribute 'default :background) 3))
17612   (setq org-src-block-faces '(("emacs-lisp" (:background "#EEE2FF"))
17613                               ("python" (:background "#E5FFB8"))))
17614 #+end_src
17616 ** Noweb reference syntax
17617 :PROPERTIES:
17618 :DESCRIPTION: Literate programming in Org mode.
17619 :END:
17620 #+cindex: code block, Noweb reference
17621 #+cindex: syntax, Noweb
17622 #+cindex: source code, Noweb reference
17624 Org supports named blocks in Noweb[fn:133] style syntax:
17626 : <<CODE-BLOCK-ID>>
17628 Org can replace the construct with the source code, or the results of
17629 evaluation, of the code block identified as {{{var(CODE-BLOCK-ID)}}}.
17631 #+cindex: @samp{noweb}, header argument
17632 The =noweb= header argument controls expansion of Noweb syntax
17633 references.  Expansions occur when source code blocks are evaluated,
17634 tangled, or exported.
17636 - =no= ::
17638      Default.  No expansion of Noweb syntax references in the body of
17639      the code when evaluating, tangling, or exporting.
17641 - =yes= ::
17643      Expansion of Noweb syntax references in the body of the code
17644      block when evaluating, tangling, or exporting.
17646 - =tangle= ::
17648      Expansion of Noweb syntax references in the body of the code
17649      block when tangling.  No expansion when evaluating or exporting.
17651 - =no-export= ::
17653      Expansion of Noweb syntax references in the body of the code
17654      block when evaluating or tangling.  No expansion when exporting.
17656 - =strip-export= ::
17658      Expansion of Noweb syntax references in the body of the code
17659      block when expanding prior to evaluating or tangling.  Removes
17660      Noweb syntax references when exporting.
17662 - =eval= ::
17664      Expansion of Noweb syntax references in the body of the code
17665      block only before evaluating.
17667 In the following example,
17669 #+begin_example
17670   ,#+NAME: initialization
17671   ,#+BEGIN_SRC emacs-lisp
17672     (setq sentence "Never a foot too far, even.")
17673   ,#+END_SRC
17675   ,#+BEGIN_SRC emacs-lisp :noweb yes
17676     <<initialization>>
17677     (reverse sentence)
17678   ,#+END_SRC
17679 #+end_example
17681 #+texinfo: @noindent
17682 the second code block is expanded as
17684 #+begin_example
17685   ,#+BEGIN_SRC emacs-lisp :noweb yes
17686     (setq sentence "Never a foot too far, even.")
17687     (reverse sentence)
17688   ,#+END_SRC
17689 #+end_example
17691 Noweb insertions honor prefix characters that appear before the Noweb
17692 syntax reference.  This behavior is illustrated in the following
17693 example.  Because the =<<example>>= Noweb reference appears behind the
17694 SQL comment syntax, each line of the expanded Noweb reference is
17695 commented.  With:
17697 #+begin_example
17698   ,#+NAME: example
17699   ,#+BEGIN_SRC text
17700     this is the
17701     multi-line body of example
17702   ,#+END_SRC
17703 #+end_example
17705 #+texinfo: @noindent
17706 this code block:
17708 #+begin_example
17709   ,#+BEGIN_SRC sql :noweb yes
17710    ---<<example>>
17711   ,#+END_SRC
17712 #+end_example
17714 #+texinfo: @noindent
17715 expands to:
17717 #+begin_example
17718   ,#+BEGIN_SRC sql :noweb yes
17719    ---this is the
17720    ---multi-line body of example
17721   ,#+END_SRC
17722 #+end_example
17724 Since this change does not affect Noweb replacement text without
17725 newlines in them, inline Noweb references are acceptable.
17727 This feature can also be used for management of indentation in
17728 exported code snippets.  With:
17730 #+begin_example
17731   ,#+NAME: if-true
17732   ,#+BEGIN_SRC python :exports none
17733     print('do things when true')
17734   ,#+end_src
17736   ,#+name: if-false
17737   ,#+begin_src python :exports none
17738     print('do things when false')
17739   ,#+end_src
17740 #+end_example
17742 #+texinfo: @noindent
17743 this code block:
17745 #+begin_example
17746   ,#+begin_src python :noweb yes :results output
17747     if true:
17748         <<if-true>>
17749     else:
17750         <<if-false>>
17751   ,#+end_src
17752 #+end_example
17754 #+texinfo: @noindent
17755 expands to:
17757 #+begin_example
17758   if true:
17759       print('do things when true')
17760   else:
17761       print('do things when false')
17762 #+end_example
17764 #+cindex: @samp{noweb-ref}, header argument
17765 When expanding Noweb style references, Org concatenates code blocks by
17766 matching the reference name to either the code block name or, if none
17767 is found, to the =noweb-ref= header argument.
17769 For simple concatenation, set this =noweb-ref= header argument at the
17770 sub-tree or file level.  In the example Org file shown next, the body
17771 of the source code in each block is extracted for concatenation to
17772 a pure code file when tangled.
17774 #+begin_example
17775   ,#+BEGIN_SRC sh :tangle yes :noweb yes :shebang #!/bin/sh
17776     <<fullest-disk>>
17777   ,#+END_SRC
17778   ,* the mount point of the fullest disk
17779     :PROPERTIES:
17780     :header-args: :noweb-ref fullest-disk
17781     :END:
17783   ,** query all mounted disks
17784   ,#+BEGIN_SRC sh
17785     df \
17786   ,#+END_SRC
17788   ,** strip the header row
17789   ,#+BEGIN_SRC sh
17790     |sed '1d' \
17791   ,#+END_SRC
17793   ,** output mount point of fullest disk
17794   ,#+BEGIN_SRC sh
17795     |awk '{if (u < +$5) {u = +$5; m = $6}} END {print m}'
17796   ,#+END_SRC
17797 #+end_example
17799 #+cindex: @samp{noweb-sep}, header argument
17800 By default a newline separates each noweb reference concatenation.  To
17801 change this newline separator, edit the =noweb-sep= header argument.
17803 Eventually, Org can include the results of a code block rather than
17804 its body.  To that effect, append parentheses, possibly including
17805 arguments, to the code block name, as shown below.
17807 : <<code-block-name(optional arguments)>>
17809 Note that when using the above approach to a code block's results, the
17810 code block name set by =NAME= keyword is required; the reference set
17811 by =noweb-ref= does not work in that case.
17813 Here is an example that demonstrates how the exported content changes
17814 when Noweb style references are used with parentheses versus without.
17815 With:
17817 #+begin_example
17818   ,#+NAME: some-code
17819   ,#+BEGIN_SRC python :var num=0 :results output :exports none
17820     print(num*10)
17821   ,#+END_SRC
17822 #+end_example
17824 #+texinfo: @noindent
17825 this code block:
17827 #+begin_example
17828   ,#+BEGIN_SRC text :noweb yes
17829     <<some-code>>
17830   ,#+END_SRC
17831 #+end_example
17833 #+texinfo: @noindent
17834 expands to:
17836 : print(num*10)
17838 Below, a similar Noweb style reference is used, but with parentheses,
17839 while setting a variable =num= to 10:
17841 #+begin_example
17842   ,#+BEGIN_SRC text :noweb yes
17843     <<some-code(num=10)>>
17844   ,#+END_SRC
17845 #+end_example
17847 #+texinfo: @noindent
17848 Note that now the expansion contains the results of the code block
17849 =some-code=, not the code block itself:
17851 : 100
17853 ** Library of Babel
17854 :PROPERTIES:
17855 :DESCRIPTION: Use and contribute to a library of useful code blocks.
17856 :END:
17857 #+cindex: babel, library of
17858 #+cindex: source code, library
17859 #+cindex: code block, library
17861 The "Library of Babel" is a collection of code blocks.  Like
17862 a function library, these code blocks can be called from other Org
17863 files.  A collection of useful code blocks is available on [[https://orgmode.org/worg/library-of-babel.html][Worg]].  For
17864 remote code block evaluation syntax, see [[*Evaluating code blocks]].
17866 #+kindex: C-c C-v i
17867 #+findex: org-babel-lob-ingest
17868 For any user to add code to the library, first save the code in
17869 regular code blocks of an Org file, and then load the Org file with
17870 ~org-babel-lob-ingest~, which is bound to {{{kbd(C-c C-v i)}}}.
17872 ** Key bindings and useful functions
17873 :PROPERTIES:
17874 :DESCRIPTION: Work quickly with code blocks.
17875 :END:
17876 #+cindex: code block, key bindings
17878 Many common Org mode key sequences are re-bound depending on
17879 the context.
17881 Active key bindings in code blocks:
17883 #+kindex: C-c C-c
17884 #+findex: org-babel-execute-src-block
17885 #+kindex: C-c C-o
17886 #+findex: org-babel-open-src-block-result
17887 #+kindex: M-up
17888 #+findex: org-babel-load-in-session
17889 #+kindex: M-down
17890 #+findex: org-babel-pop-to-session
17891 #+attr_texinfo: :columns 0.2 0.55
17892 | Key binding        | Function                          |
17893 |--------------------+-----------------------------------|
17894 | {{{kbd(C-c C-c)}}} | ~org-babel-execute-src-block~     |
17895 | {{{kbd(C-c C-o)}}} | ~org-babel-open-src-block-result~ |
17896 | {{{kbd(M-up)}}}    | ~org-babel-load-in-session~       |
17897 | {{{kbd(M-down)}}}  | ~org-babel-pop-to-session~        |
17899 Active key bindings in Org mode buffer:
17901 #+kindex: C-c C-v p
17902 #+kindex: C-c C-v C-p
17903 #+kindex: C-c C-v n
17904 #+kindex: C-c C-v C-n
17905 #+kindex: C-c C-v e
17906 #+kindex: C-c C-v C-e
17907 #+kindex: C-c C-v o
17908 #+kindex: C-c C-v C-o
17909 #+kindex: C-c C-v v
17910 #+kindex: C-c C-v C-v
17911 #+kindex: C-c C-v u
17912 #+kindex: C-c C-v C-u
17913 #+kindex: C-c C-v g
17914 #+kindex: C-c C-v C-g
17915 #+kindex: C-c C-v r
17916 #+kindex: C-c C-v C-r
17917 #+kindex: C-c C-v b
17918 #+kindex: C-c C-v C-b
17919 #+kindex: C-c C-v s
17920 #+kindex: C-c C-v C-s
17921 #+kindex: C-c C-v d
17922 #+kindex: C-c C-v C-d
17923 #+kindex: C-c C-v t
17924 #+kindex: C-c C-v C-t
17925 #+kindex: C-c C-v f
17926 #+kindex: C-c C-v C-f
17927 #+kindex: C-c C-v c
17928 #+kindex: C-c C-v C-c
17929 #+kindex: C-c C-v j
17930 #+kindex: C-c C-v C-j
17931 #+kindex: C-c C-v l
17932 #+kindex: C-c C-v C-l
17933 #+kindex: C-c C-v i
17934 #+kindex: C-c C-v C-i
17935 #+kindex: C-c C-v I
17936 #+kindex: C-c C-v C-I
17937 #+kindex: C-c C-v z
17938 #+kindex: C-c C-v C-z
17939 #+kindex: C-c C-v a
17940 #+kindex: C-c C-v C-a
17941 #+kindex: C-c C-v h
17942 #+kindex: C-c C-v C-h
17943 #+kindex: C-c C-v x
17944 #+kindex: C-c C-v C-x
17945 #+findex: org-babel-previous-src-block
17946 #+findex: org-babel-next-src-block
17947 #+findex: org-babel-execute-maybe
17948 #+findex: org-babel-open-src-block-result
17949 #+findex: org-babel-expand-src-block
17950 #+findex: org-babel-goto-src-block-head
17951 #+findex: org-babel-goto-named-src-block
17952 #+findex: org-babel-goto-named-result
17953 #+findex: org-babel-execute-buffer
17954 #+findex: org-babel-execute-subtree
17955 #+findex: org-babel-demarcate-block
17956 #+findex: org-babel-tangle
17957 #+findex: org-babel-tangle-file
17958 #+findex: org-babel-check-src-block
17959 #+findex: org-babel-insert-header-arg
17960 #+findex: org-babel-load-in-session
17961 #+findex: org-babel-lob-ingest
17962 #+findex: org-babel-view-src-block-info
17963 #+findex: org-babel-switch-to-session-with-code
17964 #+findex: org-babel-sha1-hash
17965 #+findex: org-babel-describe-bindings
17966 #+findex: org-babel-do-key-sequence-in-edit-buffer
17967 #+attr_texinfo: :columns 0.45 0.55
17968 | Key binding                                    | Function                                   |
17969 |------------------------------------------------+--------------------------------------------|
17970 | {{{kbd(C-c C-v p)}}} or {{{kbd(C-c C-v C-p)}}} | ~org-babel-previous-src-block~             |
17971 | {{{kbd(C-c C-v n)}}} or {{{kbd(C-c C-v C-n)}}} | ~org-babel-next-src-block~                 |
17972 | {{{kbd(C-c C-v e)}}} or {{{kbd(C-c C-v C-e)}}} | ~org-babel-execute-maybe~                  |
17973 | {{{kbd(C-c C-v o)}}} or {{{kbd(C-c C-v C-o)}}} | ~org-babel-open-src-block-result~          |
17974 | {{{kbd(C-c C-v v)}}} or {{{kbd(C-c C-v C-v)}}} | ~org-babel-expand-src-block~               |
17975 | {{{kbd(C-c C-v u)}}} or {{{kbd(C-c C-v C-u)}}} | ~org-babel-goto-src-block-head~            |
17976 | {{{kbd(C-c C-v g)}}} or {{{kbd(C-c C-v C-g)}}} | ~org-babel-goto-named-src-block~           |
17977 | {{{kbd(C-c C-v r)}}} or {{{kbd(C-c C-v C-r)}}} | ~org-babel-goto-named-result~              |
17978 | {{{kbd(C-c C-v b)}}} or {{{kbd(C-c C-v C-b)}}} | ~org-babel-execute-buffer~                 |
17979 | {{{kbd(C-c C-v s)}}} or {{{kbd(C-c C-v C-s)}}} | ~org-babel-execute-subtree~                |
17980 | {{{kbd(C-c C-v d)}}} or {{{kbd(C-c C-v C-d)}}} | ~org-babel-demarcate-block~                |
17981 | {{{kbd(C-c C-v t)}}} or {{{kbd(C-c C-v C-t)}}} | ~org-babel-tangle~                         |
17982 | {{{kbd(C-c C-v f)}}} or {{{kbd(C-c C-v C-f)}}} | ~org-babel-tangle-file~                    |
17983 | {{{kbd(C-c C-v c)}}} or {{{kbd(C-c C-v C-c)}}} | ~org-babel-check-src-block~                |
17984 | {{{kbd(C-c C-v j)}}} or {{{kbd(C-c C-v C-j)}}} | ~org-babel-insert-header-arg~              |
17985 | {{{kbd(C-c C-v l)}}} or {{{kbd(C-c C-v C-l)}}} | ~org-babel-load-in-session~                |
17986 | {{{kbd(C-c C-v i)}}} or {{{kbd(C-c C-v C-i)}}} | ~org-babel-lob-ingest~                     |
17987 | {{{kbd(C-c C-v I)}}} or {{{kbd(C-c C-v C-I)}}} | ~org-babel-view-src-block-info~            |
17988 | {{{kbd(C-c C-v z)}}} or {{{kbd(C-c C-v C-z)}}} | ~org-babel-switch-to-session-with-code~    |
17989 | {{{kbd(C-c C-v a)}}} or {{{kbd(C-c C-v C-a)}}} | ~org-babel-sha1-hash~                      |
17990 | {{{kbd(C-c C-v h)}}} or {{{kbd(C-c C-v C-h)}}} | ~org-babel-describe-bindings~              |
17991 | {{{kbd(C-c C-v x)}}} or {{{kbd(C-c C-v C-x)}}} | ~org-babel-do-key-sequence-in-edit-buffer~ |
17993 ** Batch execution
17994 :PROPERTIES:
17995 :DESCRIPTION: Call functions from the command line.
17996 :END:
17997 #+cindex: code block, batch execution
17998 #+cindex: source code, batch execution
18000 Org mode features, including working with source code facilities can
18001 be invoked from the command line.  This enables building shell scripts
18002 for batch processing, running automated system tasks, and expanding
18003 Org mode's usefulness.
18005 The sample script shows batch processing of multiple files using
18006 ~org-babel-tangle~.
18008 #+begin_example
18009   #!/bin/sh
18010   # Tangle files with Org mode
18011   #
18012   emacs -Q --batch --eval "
18013       (progn
18014         (require 'ob-tangle)
18015         (dolist (file command-line-args-left)
18016           (with-current-buffer (find-file-noselect file)
18017             (org-babel-tangle))))
18018     " "$@"
18019 #+end_example
18021 * Miscellaneous
18022 :PROPERTIES:
18023 :DESCRIPTION: All the rest which did not fit elsewhere.
18024 :END:
18026 ** Completion
18027 :PROPERTIES:
18028 :DESCRIPTION: M-TAB guesses completions.
18029 :END:
18030 #+cindex: completion, of @TeX{} symbols
18031 #+cindex: completion, of TODO keywords
18032 #+cindex: completion, of dictionary words
18033 #+cindex: completion, of option keywords
18034 #+cindex: completion, of tags
18035 #+cindex: completion, of property keys
18036 #+cindex: completion, of link abbreviations
18037 #+cindex: @TeX{} symbol completion
18038 #+cindex: TODO keywords completion
18039 #+cindex: dictionary word completion
18040 #+cindex: option keyword completion
18041 #+cindex: tag completion
18042 #+cindex: link abbreviations, completion of
18044 Org has in-buffer completions.  Unlike minibuffer completions, which
18045 are useful for quick command interactions, Org's in-buffer completions
18046 are more suitable for content creation in Org documents.  Type one or
18047 more letters and invoke the hot key to complete the text in-place.
18048 Depending on the context and the keys, Org offers different types of
18049 completions.  No minibuffer is involved.  Such mode-specific hot keys
18050 have become an integral part of Emacs and Org provides several
18051 shortcuts.
18053 - {{{kbd(M-TAB)}}} ::
18054      #+kindex: M-TAB
18056      Complete word at point.
18058      - At the beginning of a headline, complete TODO keywords.
18060      - After =\=, complete TeX symbols supported by the exporter.
18062      - After =*=, complete headlines in the current buffer so that
18063        they can be used in search links like:
18065        : [[*find this headline]]
18067      - After =:= in a headline, complete tags.  Org deduces the list
18068        of tags from the =TAGS= in-buffer option (see [[*Setting tags]]),
18069        the variable ~org-tag-alist~, or from all tags used in the
18070        current buffer.
18072      - After =:= and not in a headline, complete property keys.  The
18073        list of keys is constructed dynamically from all keys used in
18074        the current buffer.
18076      - After =[=, complete link abbreviations (see [[*Link
18077        abbreviations]]).
18079      - After =#+=, complete the special keywords like =TYP_TODO= or
18080        file-specific =OPTIONS=.  After option keyword is complete,
18081        pressing {{{kbd(M-TAB)}}} again inserts example settings for
18082        this keyword.
18084      - After =STARTUP= keyword, complete startup items.
18086      - When point is anywhere else, complete dictionary words using
18087        Ispell.
18089 ** Structure templates
18090 :PROPERTIES:
18091 :DESCRIPTION: Quick insertion of structural elements.
18092 :END:
18093 #+cindex: template insertion
18094 #+cindex: insertion, of templates
18096 With just a few keystrokes, it is possible to insert empty structural
18097 blocks, such as =#+BEGIN_SRC= ... =#+END_SRC=, or to wrap existing
18098 text in such a block.
18100 - {{{kbd(C-c C-x w)}}} (~org-insert-structure-template~) ::
18102      Prompt for a type of block structure, and insert the block at
18103      point.  If the region is active, it is wrapped in the block.
18104      First prompts the user for a key, which is used to look up
18105      a structure type from the values below.  If the key is
18106      {{{kbd(TAB)}}}, the user is prompted to enter a type.
18108 #+vindex: org-structure-template-alist
18109 Available structure types are defined in
18110 ~org-structure-template-alist~, see the docstring for adding or
18111 changing values.
18113 #+cindex: Tempo
18114 #+cindex: template expansion
18115 #+cindex: insertion, of templates
18116 #+vindex: org-tempo-keywords-alist
18117 #+vindex: org-structure-template-alist
18118 Org Tempo expands snippets to structures defined in
18119 ~org-structure-template-alist~ and ~org-tempo-keywords-alist~.  For
18120 example, {{{kbd(< s TAB)}}} creates a code block.  Enable it by
18121 customizing ~org-modules~ or add ~(require 'org-tempo)~ to your Emacs
18122 init file[fn:134].
18125 #+attr_texinfo: :columns 0.1 0.9
18126 | {{{kbd(a)}}} | =#+BEGIN_EXPORT ascii= ... =#+END_EXPORT= |
18127 | {{{kbd(c)}}} | =#+BEGIN_CENTER= ... =#+END_CENTER=       |
18128 | {{{kbd(C)}}} | =#+BEGIN_COMMENT= ... =#+END_COMMENT=     |
18129 | {{{kbd(e)}}} | =#+BEGIN_EXAMPLE= ... =#+END_EXAMPLE=     |
18130 | {{{kbd(h)}}} | =#+BEGIN_EXPORT html= ... =#+END_EXPORT=  |
18131 | {{{kbd(l)}}} | =#+BEGIN_EXPORT latex= ... =#+END_EXPORT= |
18132 | {{{kbd(q)}}} | =#+BEGIN_QUOTE= ... =#+END_QUOTE=         |
18133 | {{{kbd(s)}}} | =#+BEGIN_SRC= ... =#+END_SRC=             |
18134 | {{{kbd(v)}}} | =#+BEGIN_VERSE= ... =#+END_VERSE=         |
18136 ** Speed keys
18137 :PROPERTIES:
18138 :DESCRIPTION: Electric commands at the beginning of a headline.
18139 :END:
18140 #+cindex: speed keys
18142 Single keystrokes can execute custom commands in an Org file when the
18143 cursor is on a headline.  Without the extra burden of a meta or
18144 modifier key, Speed Keys can speed navigation or execute custom
18145 commands.  Besides faster navigation, Speed Keys may come in handy on
18146 small mobile devices that do not have full keyboards.  Speed Keys may
18147 also work on TTY devices known for their problems when entering Emacs
18148 key chords.
18150 #+vindex: org-use-speed-commands
18151 By default, Org has Speed Keys disabled.  To activate Speed Keys, set
18152 the variable ~org-use-speed-commands~ to a non-~nil~ value.  To
18153 trigger a Speed Key, the cursor must be at the beginning of an Org
18154 headline, before any of the stars.
18156 #+vindex: org-speed-commands-user
18157 #+findex: org-speed-command-help
18158 Org comes with a pre-defined list of Speed Keys.  To add or modify
18159 Speed Keys, customize the variable, ~org-speed-commands-user~.  For
18160 more details, see the variable's docstring.  With Speed Keys
18161 activated, {{{kbd(M-x org-speed-command-help)}}}, or {{{kbd(?)}}} when
18162 cursor is at the beginning of an Org headline, shows currently active
18163 Speed Keys, including the user-defined ones.
18165 ** Code evaluation and security issues
18166 :PROPERTIES:
18167 :DESCRIPTION: Org files evaluate in-line code.
18168 :ALT_TITLE: Code evaluation security
18169 :END:
18171 Unlike plain text, running code comes with risk.  Each =src= code
18172 block, in terms of risk, is equivalent to an executable file.  Org
18173 therefore puts a few confirmation prompts by default.  This is to
18174 alert the casual user from accidentally running untrusted code.
18176 For users who do not run code blocks or write code regularly, Org's
18177 default settings should suffice.  However, some users may want to
18178 tweak the prompts for fewer interruptions.  To weigh the risks of
18179 automatic execution of code blocks, here are some details about code
18180 evaluation.
18182 Org evaluates code in the following circumstances:
18184 - /Source code blocks/ ::
18186      Org evaluates =src= code blocks in an Org file during export.
18187      Org also evaluates a =src= code block with the {{{kbd(C-c C-c)}}}
18188      key chord.  Users exporting or running code blocks must load
18189      files only from trusted sources.  Be wary of customizing
18190      variables that remove or alter default security measures.
18192      #+attr_texinfo: :options org-confirm-babel-evaluate
18193      #+begin_defopt
18194      When ~t~, Org prompts the user for confirmation before executing
18195      each code block.  When ~nil~, Org executes code blocks without
18196      prompting the user for confirmation.  When this option is set to
18197      a custom function, Org invokes the function with these two
18198      arguments: the source code language and the body of the code
18199      block.  The custom function must return either a ~t~ or ~nil~,
18200      which determines if the user is prompted.  Each source code
18201      language can be handled separately through this function
18202      argument.
18203      #+end_defopt
18205      For example, here is how to execute ditaa code blocks without
18206      prompting:
18208      #+begin_src emacs-lisp
18209        (defun my-org-confirm-babel-evaluate (lang body)
18210          (not (string= lang "ditaa")))  ;don't ask for ditaa
18211        (setq org-confirm-babel-evaluate #'my-org-confirm-babel-evaluate)
18212      #+end_src
18214 - /Following =shell= and =elisp= links/ ::
18216      Org has two link types that can directly evaluate code (see
18217      [[*External links]]).  Because such code is not visible, these links
18218      have a potential risk.  Org therefore prompts the user when it
18219      encounters such links.  The customization variables are:
18221      #+attr_texinfo: :options org-confirm-shell-link-function
18222      #+begin_defopt
18223      Function that prompts the user before executing a shell link.
18224      #+end_defopt
18226      #+attr_texinfo: :options org-confirm-elisp-link-function
18227      #+begin_defopt
18228      Function that prompts the user before executing an Emacs Lisp link.
18229      #+end_defopt
18231 - /Formulas in tables/ ::
18233      Formulas in tables (see [[*The spreadsheet]]) are code that is
18234      evaluated either by the Calc interpreter, or by the Emacs Lisp
18235      interpreter.
18237 ** Customization
18238 :PROPERTIES:
18239 :DESCRIPTION: Adapting Org to your taste.
18240 :END:
18241 #+cindex: customization
18242 #+cindex: options, for customization
18243 #+cindex: variables, for customization
18245 Org has more than 500 variables for customization.  They can be
18246 accessed through the usual {{{kbd(M-x org-customize)}}} command.  Or
18247 through the Org menu: Org \rarr Customization \rarr Browse Org Group.
18249 Org also has per-file settings for some variables (see [[*Summary of
18250 in-buffer settings]]).
18252 ** Summary of in-buffer settings
18253 :PROPERTIES:
18254 :DESCRIPTION: Overview of the #+KEYWORDS.
18255 :ALT_TITLE: In-buffer settings
18256 :END:
18257 #+cindex: in-buffer settings
18258 #+cindex: special keywords
18260 In-buffer settings start with =#+=, followed by a keyword, a colon,
18261 and then a word for each setting.  Org accepts multiple settings on
18262 the same line.  Org also accepts multiple lines for a keyword.  This
18263 manual describes these settings throughout.  A summary follows here.
18265 #+cindex: refresh set-up
18266 {{{kbd(C-c C-c)}}} activates any changes to the in-buffer settings.
18267 Closing and reopening the Org file in Emacs also activates the
18268 changes.
18270 #+attr_texinfo: :sep ,
18271 - =#+ARCHIVE: %s_done= ::
18273      #+cindex: ARCHIVE, keyword
18274      #+vindex: org-archive-location
18275      Sets the archive location of the agenda file.  The corresponding
18276      variable is ~org-archive-location~.
18278 - =#+CATEGORY= ::
18280      #+cindex: CATEGORY, keyword
18281      Sets the category of the agenda file, which applies to the entire
18282      document.
18284 - =#+COLUMNS: %25ITEM ...= ::
18286      #+cindex: COLUMNS, property
18287      Set the default format for columns view.  This format applies
18288      when columns view is invoked in locations where no =COLUMNS=
18289      property applies.
18291 - =#+CONSTANTS: name1=value1 ...= ::
18293      #+cindex: CONSTANTS, keyword
18294      #+vindex: org-table-formula-constants
18295      #+vindex: org-table-formula
18296      Set file-local values for constants that table formulas can use.
18297      This line sets the local variable
18298      ~org-table-formula-constants-local~.  The global version of this
18299      variable is ~org-table-formula-constants~.
18301 - =#+FILETAGS: :tag1:tag2:tag3:= ::
18303      #+cindex: FILETAGS, keyword
18304      Set tags that all entries in the file inherit from, including the
18305      top-level entries.
18307 - =#+LINK: linkword replace= ::
18309      #+cindex: LINK, keyword
18310      #+vindex: org-link-abbrev-alist
18311      Each line specifies one abbreviation for one link.  Use multiple
18312      =LINK= keywords for more, see [[*Link abbreviations]].  The
18313      corresponding variable is ~org-link-abbrev-alist~.
18315 - =#+PRIORITIES: highest lowest default= ::
18317      #+cindex: PRIORITIES, keyword
18318      #+vindex: org-highest-priority
18319      #+vindex: org-lowest-priority
18320      #+vindex: org-default-priority
18321      This line sets the limits and the default for the priorities.
18322      All three must be either letters A--Z or numbers 0--9.  The
18323      highest priority must have a lower ASCII number than the lowest
18324      priority.
18326 - =#+PROPERTY: Property_Name Value= ::
18328      #+cindex: PROPERTY, keyword
18329      This line sets a default inheritance value for entries in the
18330      current buffer, most useful for specifying the allowed values of
18331      a property.
18333 - =#+SETUPFILE: file= ::
18335      #+cindex: SETUPFILE, keyword
18336      The setup file or a URL pointing to such file is for additional
18337      in-buffer settings.  Org loads this file and parses it for any
18338      settings in it only when Org opens the main file.  If URL is
18339      specified, the contents are downloaded and stored in a temporary
18340      file cache.  {{{kbd(C-c C-c)}}} on the settings line parses and
18341      loads the file, and also resets the temporary file cache.  Org
18342      also parses and loads the document during normal exporting
18343      process.  Org parses the contents of this document as if it was
18344      included in the buffer.  It can be another Org file.  To visit
18345      the file---not a URL---use {{{kbd(C-c ')}}} while the cursor is
18346      on the line with the file name.
18348 - =#+STARTUP:= ::
18350      #+cindex: STARTUP, keyword
18351      Startup options Org uses when first visiting a file.
18353      #+vindex: org-startup-folded
18354      The first set of options deals with the initial visibility of the
18355      outline tree.  The corresponding variable for global default
18356      settings is ~org-startup-folded~ with a default value of ~t~,
18357      which is the same as ~overview~.
18359      - =overview= ::
18361           Top-level headlines only.
18363      - =content= ::
18365           All headlines.
18367      - =showall= ::
18369           No folding on any entry.
18371      - =showeverything= ::
18373           Show even drawer contents.
18375      #+vindex: org-startup-indented
18376      Dynamic virtual indentation is controlled by the variable
18377      ~org-startup-indented~.[fn:135]
18379      - =indent= ::
18381           Start with ~org-indent-mode~ turned on.
18383      - =noindent= ::
18385           Start with ~org-indent-mode~ turned off.
18387      #+vindex: org-startup-align-all-tables
18388      Aligns tables consistently upon visiting a file.  The corresponding
18389      variable is ~org-startup-align-all-tables~ with ~nil~ as default
18390      value.
18392      - =align= ::
18394           Align all tables.
18396      - =noalign= ::
18398           Do not align tables on startup.
18400      #+vindex: org-startup-shrink-all-tables
18401      Shrink table columns with a width cookie.  The corresponding
18402      variable is ~org-startup-shrink-all-tables~ with ~nil~ as default
18403      value.
18405      #+vindex: org-startup-with-inline-images
18406      When visiting a file, inline images can be automatically displayed.
18407      The corresponding variable is ~org-startup-with-inline-images~,
18408      with a default value ~nil~ to avoid delays when visiting a file.
18410      - =inlineimages= ::
18412           Show inline images.
18414      - =noinlineimages= ::
18416           Do not show inline images on startup.
18418      #+vindex: org-log-done
18419      #+vindex: org-log-note-clock-out
18420      #+vindex: org-log-repeat
18421      Logging the closing and reopening of TODO items and clock
18422      intervals can be configured using these options (see variables
18423      ~org-log-done~, ~org-log-note-clock-out~, and ~org-log-repeat~).
18425      - =logdone= ::
18427           Record a timestamp when an item is marked DONE.
18429      - =lognotedone= ::
18431           Record timestamp and a note when DONE.
18433      - =nologdone= ::
18435           Do not record when items are marked DONE.
18437      - =logrepeat= ::
18439           Record a time when reinstating a repeating item.
18441      - =lognoterepeat= ::
18443           Record a note when reinstating a repeating item.
18445      - =nologrepeat= ::
18447           Do not record when reinstating repeating item.
18449      - =lognoteclock-out= ::
18451           Record a note when clocking out.
18453      - =nolognoteclock-out= ::
18455           Do not record a note when clocking out.
18457      - =logreschedule= ::
18459           Record a timestamp when scheduling time changes.
18461      - =lognotereschedule= ::
18463           Record a note when scheduling time changes.
18465      - =nologreschedule= ::
18467           Do not record when a scheduling date changes.
18469      - =logredeadline= ::
18471           Record a timestamp when deadline changes.
18473      - =lognoteredeadline= ::
18475           Record a note when deadline changes.
18477      - =nologredeadline= ::
18479           Do not record when a deadline date changes.
18481      - =logrefile= ::
18483           Record a timestamp when refiling.
18485      - =lognoterefile= ::
18487           Record a note when refiling.
18489      - =nologrefile= ::
18491           Do not record when refiling.
18493      #+vindex: org-hide-leading-stars
18494      #+vindex: org-odd-levels-only
18495      Here are the options for hiding leading stars in outline headings,
18496      and for indenting outlines.  The corresponding variables are
18497      ~org-hide-leading-stars~ and ~org-odd-levels-only~, both with
18498      a default setting ~nil~ (meaning =showstars= and =oddeven=).
18500      - =hidestars= ::
18502           Make all but one of the stars starting a headline invisible.
18504      - =showstars= ::
18506           Show all stars starting a headline.
18508      - =indent= ::
18510           Virtual indentation according to outline level.
18512      - =noindent= ::
18514           No virtual indentation according to outline level.
18516      - =odd= ::
18518           Allow only odd outline levels (1, 3, ...).
18520      - =oddeven= ::
18522           Allow all outline levels.
18524      #+vindex: org-put-time-stamp-overlays
18525      #+vindex: org-time-stamp-overlay-formats
18526      To turn on custom format overlays over timestamps (variables
18527      ~org-put-time-stamp-overlays~ and ~org-time-stamp-overlay-formats~),
18528      use:
18530      - =customtime= ::
18532           Overlay custom time format.
18534      #+vindex: constants-unit-system
18535      The following options influence the table spreadsheet (variable
18536      ~constants-unit-system~).
18538      - =constcgs= ::
18540           =constants.el= should use the c-g-s unit system.
18542      - =constSI= ::
18544           =constants.el= should use the SI unit system.
18546      #+vindex: org-footnote-define-inline
18547      #+vindex: org-footnote-auto-label
18548      #+vindex: org-footnote-auto-adjust
18549      To influence footnote settings, use the following keywords.  The
18550      corresponding variables are ~org-footnote-define-inline~,
18551      ~org-footnote-auto-label~, and ~org-footnote-auto-adjust~.
18553      - =fninline= ::
18555           Define footnotes inline.
18557      - =fnnoinline= ::
18559           Define footnotes in separate section.
18561      - =fnlocal= ::
18563           Define footnotes near first reference, but not inline.
18565      - =fnprompt= ::
18567           Prompt for footnote labels.
18569      - =fnauto= ::
18571           Create =[fn:1]=-like labels automatically (default).
18573      - =fnconfirm= ::
18575           Offer automatic label for editing or confirmation.
18577      - =fnadjust= ::
18579           Automatically renumber and sort footnotes.
18581      - =nofnadjust= ::
18583           Do not renumber and sort automatically.
18585      #+cindex: org-hide-block-startup
18586      To hide blocks on startup, use these keywords.  The corresponding
18587      variable is ~org-hide-block-startup~.
18589      - =hideblocks= ::
18591           Hide all begin/end blocks on startup.
18593      - =nohideblocks= ::
18595           Do not hide blocks on startup.
18597      #+cindex: org-pretty-entities
18598      The display of entities as UTF-8 characters is governed by the
18599      variable ~org-pretty-entities~ and the keywords
18601      - =entitiespretty= ::
18603           Show entities as UTF-8 characters where possible.
18605      - =entitiesplain= ::
18607           Leave entities plain.
18609 - =#+TAGS: TAG1(c1) TAG2(c2)= ::
18611      #+cindex: TAGS, keyword
18612      #+vindex: org-tag-alist
18613      These lines (several such lines are allowed) specify the valid
18614      tags in this file, and (potentially) the corresponding /fast tag
18615      selection/ keys.  The corresponding variable is ~org-tag-alist~.
18617 - =#+TODO:=, =#+SEQ_TODO:=, =#+TYP_TODO:= ::
18619      #+cindex: SEQ_TODO, keyword
18620      #+cindex: TODO, keyword
18621      #+cindex: TYP_TODO, keyword
18622      #+vindex: org-todo-keywords
18623      These lines set the TODO keywords and their interpretation in the
18624      current file.  The corresponding variable is ~org-todo-keywords~.
18626 ** The very busy {{{kbd(C-c C-c)}}} key
18627 :PROPERTIES:
18628 :DESCRIPTION: When in doubt, press @kbd{C-c C-c}.
18629 :END:
18630 #+kindex: C-c C-c
18631 #+cindex: C-c C-c, overview
18633 The {{{kbd(C-c C-c)}}} key in Org serves many purposes depending on
18634 the context.  It is probably the most over-worked, multi-purpose key
18635 combination in Org.  Its uses are well documented throughout this
18636 manual, but here is a consolidated list for easy reference.
18638 - If any highlights shown in the buffer from the creation of a sparse
18639   tree, or from clock display, remove such highlights.
18641 - If the cursor is in one of the special =KEYWORD= lines, scan the
18642   buffer for these lines and update the information.  Also reset the
18643   Org file cache used to temporary store the contents of URLs used as
18644   values for keywords like =SETUPFILE=.
18646 - If the cursor is inside a table, realign the table.  The table
18647   realigns even if automatic table editor is turned off.
18649 - If the cursor is on a =TBLFM= keyword, re-apply the formulas to the
18650   entire table.
18652 - If the current buffer is a capture buffer, close the note and file
18653   it.  With a prefix argument, also jump to the target location after
18654   saving the note.
18656 - If the cursor is on a =<<<target>>>=, update radio targets and
18657   corresponding links in this buffer.
18659 - If the cursor is on a property line or at the start or end of
18660   a property drawer, offer property commands.
18662 - If the cursor is at a footnote reference, go to the corresponding
18663   definition, and /vice versa/.
18665 - If the cursor is on a statistics cookie, update it.
18667 - If the cursor is in a plain list item with a checkbox, toggle the
18668   status of the checkbox.
18670 - If the cursor is on a numbered item in a plain list, renumber the
18671   ordered list.
18673 - If the cursor is on the =#+BEGIN= line of a dynamic block, the block
18674   is updated.
18676 - If the cursor is at a timestamp, fix the day name in the timestamp.
18678 ** A cleaner outline view
18679 :PROPERTIES:
18680 :DESCRIPTION: Getting rid of leading stars in the outline.
18681 :ALT_TITLE: Clean view
18682 :END:
18683 #+cindex: hiding leading stars
18684 #+cindex: dynamic indentation
18685 #+cindex: odd-levels-only outlines
18686 #+cindex: clean outline view
18688 Org's default outline with stars and no indents can become too
18689 cluttered for short documents.  For /book-like/ long documents, the
18690 effect is not as noticeable.  Org provides an alternate stars and
18691 indentation scheme, as shown on the right in the following table.  It
18692 uses only one star and indents text to line with the heading:
18694 #+begin_example
18695   ,* Top level headline             |    * Top level headline
18696   ,** Second level                  |      * Second level
18697   ,*** Third level                  |        * Third level
18698       some text                    |          some text
18699   ,*** Third level                  |        * Third level
18700       more text                    |          more text
18701   ,* Another top level headline     |    * Another top level headline
18702 #+end_example
18704 #+texinfo: @noindent
18705 #+cindex: Indent mode
18706 #+findex: org-indent-mode
18707 To turn this mode on, use the minor mode, ~org-indent-mode~.  Text
18708 lines that are not headlines are prefixed with spaces to vertically
18709 align with the headline text[fn:136].
18711 #+vindex: org-indent-indentation-per-level
18712 To make more horizontal space, the headlines are shifted by two stars.
18713 This can be configured by the ~org-indent-indentation-per-level~
18714 variable.  Only one star on each headline is visible, the rest are
18715 masked with the same font color as the background.
18717 Note that turning on ~org-indent-mode~ sets ~org-hide-leading-stars~
18718 to ~t~ and ~org-adapt-indentation~ to ~nil~.
18720 #+vindex: org-startup-indented
18721 To globally turn on ~org-indent-mode~ for all files, customize the
18722 variable ~org-startup-indented~.
18724 To turn on indenting for individual files, use =STARTUP= keyword as
18725 follows:
18727 : #+STARTUP: indent
18729 Indent on startup makes Org use hard spaces to align text with
18730 headings as shown in examples below.
18732 - /Indentation of text below headlines/ ::
18734      Indent text to align with the headline.
18736      #+begin_example
18737        ,*** Third level
18738            more text, now indented
18739      #+end_example
18741      #+vindex: org-adapt-indentation
18742      Org supports this with paragraph filling, line wrapping, and
18743      structure editing, preserving or adapting the indentation as
18744      appropriate[fn:137].
18746 - /Hiding leading stars/ ::
18748      #+vindex: org-hide-leading-stars
18749      Org can make leading stars invisible.  For global preference,
18750      configure the variable ~org-hide-leading-stars~.  For per-file
18751      preference, use these file =STARTUP= options:
18753      #+begin_example
18754        ,#+STARTUP: hidestars
18755        ,#+STARTUP: showstars
18756      #+end_example
18758      With stars hidden, the tree is shown as:
18760      #+begin_example
18761        ,* Top level headline
18762         ,* Second level
18763          ,* Third level
18764          ...
18765      #+end_example
18767      #+texinfo: @noindent
18768      #+vindex: org-hide, face
18769      Because Org makes the font color the same as the background color
18770      to hide to stars, sometimes ~org-hide~ face may need tweaking to
18771      get the effect right.  For some black and white combinations,
18772      ~grey90~ on a white background might mask the stars better.
18774 - /Odd levels/ ::
18776      #+vindex: org-odd-levels-only
18777      Using stars for only odd levels, 1, 3, 5, ..., can also clean up
18778      the clutter.  This removes two stars from each level[fn:138].
18779      For Org to properly handle this cleaner structure during edits
18780      and exports, configure the variable ~org-odd-levels-only~.  To
18781      set this per-file, use either one of the following lines:
18783      #+begin_example
18784        ,#+STARTUP: odd
18785        ,#+STARTUP: oddeven
18786      #+end_example
18788      To switch between single and double stars layouts, use {{{kbd(M-x
18789      org-convert-to-odd-levels)}}} and {{{kbd(M-x
18790      org-convert-to-oddeven-levels)}}}.
18792 ** Using Org on a TTY
18793 :PROPERTIES:
18794 :DESCRIPTION: Using Org on a tty.
18795 :ALT_TITLE: TTY keys
18796 :END:
18797 #+cindex: tty key bindings
18799 Org provides alternative key bindings for TTY and modern mobile
18800 devices that cannot handle cursor keys and complex modifier key
18801 chords.  Some of these workarounds may be more cumbersome than
18802 necessary.  Users should look into customizing these further based on
18803 their usage needs.  For example, the normal {{{kbd(S-cursor)}}} for
18804 editing timestamp might be better with {{{kbd(C-c .)}}} chord.
18806 #+attr_texinfo: :columns 0.2 0.25 0.1 0.25
18807 | Default              | Alternative 1            | Speed key    | Alternative 2        |
18808 |----------------------+--------------------------+--------------+----------------------|
18809 | {{{kbd(S-TAB)}}}     | {{{kbd(C-u TAB)}}}       | {{{kbd(C)}}} |                      |
18810 | {{{kbd(M-left)}}}    | {{{kbd(C-c C-x l)}}}     | {{{kbd(l)}}} | {{{kbd(Esc left)}}}  |
18811 | {{{kbd(M-S-left)}}}  | {{{kbd(C-c C-x L)}}}     | {{{kbd(L)}}} |                      |
18812 | {{{kbd(M-right)}}}   | {{{kbd(C-c C-x r)}}}     | {{{kbd(r)}}} | {{{kbd(Esc right)}}} |
18813 | {{{kbd(M-S-right)}}} | {{{kbd(C-c C-x R)}}}     | {{{kbd(R)}}} |                      |
18814 | {{{kbd(M-up)}}}      | {{{kbd(C-c C-x u)}}}     |              | {{{kbd(Esc up)}}}    |
18815 | {{{kbd(M-S-up)}}}    | {{{kbd(C-c C-x U)}}}     | {{{kbd(U)}}} |                      |
18816 | {{{kbd(M-down)}}}    | {{{kbd(C-c C-x d)}}}     |              | {{{kbd(Esc down)}}}  |
18817 | {{{kbd(M-S-down)}}}  | {{{kbd(C-c C-x D)}}}     | {{{kbd(D)}}} |                      |
18818 | {{{kbd(S-RET)}}}     | {{{kbd(C-c C-x c)}}}     |              |                      |
18819 | {{{kbd(M-RET)}}}     | {{{kbd(C-c C-x m)}}}     |              | {{{kbd(Esc RET)}}}   |
18820 | {{{kbd(M-S-RET)}}}   | {{{kbd(C-c C-x M)}}}     |              |                      |
18821 | {{{kbd(S-left)}}}    | {{{kbd(C-c left)}}}      |              |                      |
18822 | {{{kbd(S-right)}}}   | {{{kbd(C-c right)}}}     |              |                      |
18823 | {{{kbd(S-up)}}}      | {{{kbd(C-c up)}}}        |              |                      |
18824 | {{{kbd(S-down)}}}    | {{{kbd(C-c down)}}}      |              |                      |
18825 | {{{kbd(C-S-left)}}}  | {{{kbd(C-c C-x left)}}}  |              |                      |
18826 | {{{kbd(C-S-right)}}} | {{{kbd(C-c C-x right)}}} |              |                      |
18828 ** Interaction with other packages
18829 :PROPERTIES:
18830 :DESCRIPTION: With other Emacs packages.
18831 :ALT_TITLE: Interaction
18832 :END:
18833 #+cindex: packages, interaction with other
18835 Org's compatibility and the level of interaction with other Emacs
18836 packages are documented here.
18838 *** Packages that Org cooperates with
18839 :PROPERTIES:
18840 :DESCRIPTION: Packages Org cooperates with.
18841 :ALT_TITLE: Cooperation
18842 :END:
18844 - =calc.el= by Dave Gillespie ::
18845      #+cindex: @file{calc.el}
18847      Org uses the Calc package for implementing spreadsheet
18848      functionality in its tables (see [[*The spreadsheet]]).  Org also
18849      uses Calc for embedded calculations.  See [[info:calc:Embedded%20Mode][GNU Emacs Calc Manual]].
18851 - =constants.el= by Carsten Dominik ::
18852      #+cindex: @file{constants.el}
18853      #+vindex: org-table-formula-constants
18855      Org can use names for constants in formulas in tables.  Org can
18856      also use calculation suffixes for units, such as =M= for =Mega=.
18857      For a standard collection of such constants, install the
18858      =constants= package.  Install version 2.0 of this package,
18859      available at [[http://www.astro.uva.nl/~dominik/Tools]].  Org checks
18860      if the function ~constants-get~ has been autoloaded.
18861      Installation instructions are in the file =constants.el=.
18863 - =cdlatex.el= by Carsten Dominik ::
18864      #+cindex: @file{cdlatex.el}
18866      Org mode can make use of the CDLaTeX package to efficiently enter
18867      LaTeX fragments into Org files.  See [[*Using CDLaTeX to enter
18868      math]].
18870 - =imenu.el= by Ake Stenhoff and Lars Lindberg ::
18871      #+cindex: @file{imenu.el}
18873      Imenu creates dynamic menus based on an index of items in a file.
18874      Org mode supports Imenu menus.  Enable it with a mode hook as
18875      follows:
18877      #+begin_src emacs-lisp
18878        (add-hook 'org-mode-hook
18879                  (lambda () (imenu-add-to-menubar "Imenu")))
18880      #+end_src
18882      #+vindex: org-imenu-depth
18883      By default the index is two levels deep---you can modify the
18884      depth using the option ~org-imenu-depth~.
18886 - =speedbar.el= by Eric M. Ludlam ::
18887      #+cindex: @file{speedbar.el}
18889      Speedbar package creates a special Emacs frame for displaying
18890      files and index items in files.  Org mode supports Speedbar;
18891      users can drill into Org files directly from the Speedbar.  The
18892      {{{kbd(<)}}} in the Speedbar frame tweaks the agenda commands to
18893      that file or to a subtree.
18895 - =table.el= by Takaaki Ota ::
18896      #+cindex: table editor, @file{table.el}
18897      #+cindex: @file{table.el}
18899      Complex ASCII tables with automatic line wrapping, column- and
18900      row-spanning, and alignment can be created using the Emacs table
18901      package by Takaaki Ota.  Org mode recognizes such tables and
18902      exports them properly.  {{{kbd(C-c ')}}} to edit these tables in
18903      a special buffer, much like Org's code blocks.  Because of
18904      interference with other Org mode functionality, Takaaki Ota
18905      tables cannot be edited directly in the Org buffer.
18907      - {{{kbd(C-c ')}}} (~org-edit-special~) ::
18909           #+kindex: C-c '
18910           #+findex: org-edit-special
18911           Edit a =table.el= table.  Works when the cursor is in
18912           a =table.el= table.
18914      - {{{kbd(C-c ~ )}}} (~org-table-create-with-table.el~) ::
18916           #+kindex: C-c ~
18917           #+findex: org-table-create-with-table.el
18918           Insert a =table.el= table.  If there is already a table at
18919           point, this command converts it between the =table.el=
18920           format and the Org mode format.  See the documentation
18921           string of the command ~org-convert-table~ for the
18922           restrictions under which this is possible.
18924 *** Packages that conflict with Org mode
18925 :PROPERTIES:
18926 :DESCRIPTION: Packages that lead to conflicts.
18927 :ALT_TITLE: Conflicts
18928 :END:
18930 #+cindex: shift-selection-mode
18931 #+vindex: org-support-shift-select
18932 In Emacs, ~shift-selection-mode~ combines cursor motions with shift
18933 key to enlarge regions.  Emacs sets this mode by default.  This
18934 conflicts with Org's use of {{{kbd(S-<cursor>)}}} commands to change
18935 timestamps, TODO keywords, priorities, and item bullet types, etc.
18936 Since {{{kbd(S-<cursor>)}}} commands outside of specific contexts do
18937 not do anything, Org offers the variable ~org-support-shift-select~
18938 for customization.  Org mode accommodates shift selection by (i)
18939 making it available outside of the special contexts where special
18940 commands apply, and (ii) extending an existing active region even if
18941 the cursor moves across a special context.
18943 - =cua.el= by Kim. F. Storm ::
18945      #+cindex: @file{cua.el}
18946      #+vindex: org-replace-disputed-keys
18947      Org key bindings conflict with {{{kbd(S-cursor)}}} keys used by
18948      CUA mode.  For Org to relinquish these bindings to CUA mode,
18949      configure the variable ~org-replace-disputed-keys~.  When set,
18950      Org moves the following key bindings in Org files, and in the
18951      agenda buffer---but not during date selection.
18953      | S-UP      \rArr{}  M-p   | S-DOWN     \rArr{}  M-n   |
18954      | S-LEFT    \rArr{}  M--   | S-RIGHT    \rArr{}  M-+   |
18955      | C-S-LEFT  \rArr{}  M-S-- | C-S-RIGHT  \rArr{}  M-S-+ |
18957      #+vindex: org-disputed-keys
18958      Yes, these are unfortunately more difficult to remember.  If you
18959      want to have other replacement keys, look at the variable
18960      ~org-disputed-keys~.
18962 - =ecomplete.el= by Lars Magne Ingebrigtsen ::
18964      #+cindex: @file{ecomplete.el}
18965      Ecomplete provides "electric" address completion in address
18966      header lines in message buffers.  Sadly Orgtbl mode cuts
18967      Ecomplete's power supply: no completion happens when Orgtbl mode
18968      is enabled in message buffers while entering text in address
18969      header lines.  If one wants to use ecomplete one should /not/
18970      follow the advice to automagically turn on Orgtbl mode in message
18971      buffers (see [[*The Orgtbl minor mode]]), but instead---after
18972      filling in the message headers---turn on Orgtbl mode manually
18973      when needed in the messages body.
18975 - =filladapt.el= by Kyle Jones ::
18977      #+cindex: @file{filladapt.el}
18978      Org mode tries to do the right thing when filling paragraphs,
18979      list items and other elements.  Many users reported problems
18980      using both =filladapt.el= and Org mode, so a safe thing to do is
18981      to disable filladapt like this:
18983      #+begin_src emacs-lisp
18984        (add-hook 'org-mode-hook 'turn-off-filladapt-mode)
18985      #+end_src
18987 - =viper.el= by Michael Kifer ::
18988      #+cindex: @file{viper.el}
18989      #+kindex: C-c /
18991      Viper uses {{{kbd(C-c /)}}} and therefore makes this key not
18992      access the corresponding Org mode command ~org-sparse-tree~.  You
18993      need to find another key for this command, or override the key in
18994      ~viper-vi-global-user-map~ with
18996      #+begin_src emacs-lisp
18997        (define-key viper-vi-global-user-map "C-c /" 'org-sparse-tree)
18998      #+end_src
19000 - =windmove.el= by Hovav Shacham ::
19001      #+cindex: @file{windmove.el}
19003      This package also uses the {{{kbd(S-<cursor>)}}} keys, so
19004      everything written in the paragraph above about CUA mode also
19005      applies here.  If you want to make the windmove function active
19006      in locations where Org mode does not have special functionality
19007      on {{{kbd(S-<cursor>)}}}, add this to your configuration:
19009      #+begin_src emacs-lisp
19010        ;; Make windmove work in Org mode:
19011        (add-hook 'org-shiftup-final-hook 'windmove-up)
19012        (add-hook 'org-shiftleft-final-hook 'windmove-left)
19013        (add-hook 'org-shiftdown-final-hook 'windmove-down)
19014        (add-hook 'org-shiftright-final-hook 'windmove-right)
19015      #+end_src
19017 - =yasnippet.el= ::
19019      #+cindex: @file{yasnippet.el}
19020      The way Org mode binds the {{{kbd(TAB)}}} key (binding to ~[tab]~
19021      instead of ~"\t"~) overrules YASnippet's access to this key.  The
19022      following code fixed this problem:
19024      #+begin_src emacs-lisp
19025        (add-hook 'org-mode-hook
19026                  (lambda ()
19027                    (setq-local yas/trigger-key [tab])
19028                    (define-key yas/keymap [tab] 'yas/next-field-or-maybe-expand)))
19029      #+end_src
19031      The latest version of YASnippet does not play well with Org mode.
19032      If the above code does not fix the conflict, start by defining
19033      the following function:
19035      #+begin_src emacs-lisp
19036        (defun yas/org-very-safe-expand ()
19037          (let ((yas/fallback-behavior 'return-nil)) (yas/expand)))
19038      #+end_src
19040      Then, tell Org mode to use that function:
19042      #+begin_src emacs-lisp
19043        (add-hook 'org-mode-hook
19044                  (lambda ()
19045                    (make-variable-buffer-local 'yas/trigger-key)
19046                    (setq yas/trigger-key [tab])
19047                    (add-to-list 'org-tab-first-hook 'yas/org-very-safe-expand)
19048                    (define-key yas/keymap [tab] 'yas/next-field)))
19049      #+end_src
19051 ** Org Crypt
19052 :PROPERTIES:
19053 :DESCRIPTION: Encrypting Org files.
19054 :END:
19056 Org Crypt encrypts the text of an entry, but not the headline, or
19057 properties.  Behind the scene, it uses the Emacs EasyPG library to
19058 encrypt and decrypt files.
19060 #+vindex: org-crypt-tag-matcher
19061 Any text below a headline that has a =crypt= tag is automatically
19062 encrypted when the file is saved.  To use a different tag, customize
19063 the ~org-crypt-tag-matcher~ setting.
19065 Here is a suggestion for Org Crypt settings in Emacs init file:
19067 #+begin_src emacs-lisp
19068   (require 'org-crypt)
19069   (org-crypt-use-before-save-magic)
19070   (setq org-tags-exclude-from-inheritance '("crypt"))
19072   (setq org-crypt-key nil)
19073   ;; GPG key to use for encryption
19074   ;; Either the Key ID or set to nil to use symmetric encryption.
19076   (setq auto-save-default nil)
19077   ;; Auto-saving does not cooperate with org-crypt.el: so you need to
19078   ;; turn it off if you plan to use org-crypt.el quite often.  Otherwise,
19079   ;; you'll get an (annoying) message each time you start Org.
19081   ;; To turn it off only locally, you can insert this:
19082   ;;
19083   ;; # -*- buffer-auto-save-file-name: nil; -*-
19084 #+end_src
19086 Excluding the =crypt= tag from inheritance prevents already encrypted
19087 text from being encrypted again.
19089 * Hacking
19090 :PROPERTIES:
19091 :DESCRIPTION: How to hack your way around.
19092 :APPENDIX: Appendix
19093 :END:
19094 #+cindex: hacking
19096 This appendix describes some ways a user can extend the functionality
19097 of Org.
19099 ** Hooks
19100 :PROPERTIES:
19101 :DESCRIPTION: How to reach into Org's internals.
19102 :END:
19103 #+cindex: hooks
19105 Org has a large number of hook variables for adding functionality.
19106 This appendix illustrates using a few.  A complete list of hooks with
19107 documentation is maintained by the Worg project at
19108 https://orgmode.org/worg/doc.html#hooks.
19110 ** Add-on packages
19111 :PROPERTIES:
19112 :DESCRIPTION: Available extensions.
19113 :END:
19114 #+cindex: add-on packages
19116 Various authors wrote a large number of add-on packages for Org.
19118 These packages are not part of Emacs, but they are distributed as
19119 contributed packages with the separate release available at
19120 https://orgmode.org.  See the =contrib/README= file in the source code
19121 directory for a list of contributed files.  Worg page with more
19122 information is at: https://orgmode.org/worg/org-contrib/.
19124 ** Adding hyperlink types
19125 :PROPERTIES:
19126 :DESCRIPTION: New custom link types.
19127 :END:
19128 #+cindex: hyperlinks, adding new types
19130 Org has many built-in hyperlink types (see [[*Hyperlinks]]), and an
19131 interface for adding new link types.  The example file, =org-man.el=,
19132 shows the process of adding Org links to Unix man pages, which look
19133 like this
19135 : [[man:printf][The printf manual]]
19137 #+begin_src emacs-lisp
19138   ;;; org-man.el - Support for links to manpages in Org
19140   (require 'org)
19142   (org-add-link-type "man" 'org-man-open)
19143   (add-hook 'org-store-link-functions 'org-man-store-link)
19145   (defcustom org-man-command 'man
19146     "The Emacs command to be used to display a man page."
19147     :group 'org-link
19148     :type '(choice (const man) (const woman)))
19150   (defun org-man-open (path)
19151     "Visit the manpage on PATH.
19152   PATH should be a topic that can be thrown at the man command."
19153     (funcall org-man-command path))
19155   (defun org-man-store-link ()
19156     "Store a link to a manpage."
19157     (when (memq major-mode '(Man-mode woman-mode))
19158       ;; This is a man page, we do make this link
19159       (let* ((page (org-man-get-page-name))
19160              (link (concat "man:" page))
19161              (description (format "Manpage for %s" page)))
19162         (org-store-link-props
19163          :type "man"
19164          :link link
19165          :description description))))
19167   (defun org-man-get-page-name ()
19168     "Extract the page name from the buffer name."
19169     ;; This works for both `Man-mode' and `woman-mode'.
19170     (if (string-match " \\(\\S-+\\)\\*" (buffer-name))
19171         (match-string 1 (buffer-name))
19172       (error "Cannot create link to this man page")))
19174   (provide 'org-man)
19176   ;;; org-man.el ends here
19177 #+end_src
19179 #+texinfo: @noindent
19180 To activate links to man pages in Org, enter this in the init file:
19182 #+begin_src emacs-lisp
19183   (require 'org-man)
19184 #+end_src
19186 #+texinfo: @noindent
19187 A review of =org-man.el=:
19189 1. First, ~(require 'org)~ ensures =org.el= is loaded.
19191 2. Then ~org-add-link-type~ defines a new link type with =man= prefix.
19192    The call contains the function to call that follows the link type.
19195    #+vindex: org-store-link-functions
19196    The next line adds a function to ~org-store-link-functions~ that
19197    records a useful link with the command {{{kbd(C-c l)}}} in a buffer
19198    displaying a man page.
19200 The rest of the file defines necessary variables and functions.  First
19201 is the customization variable ~org-man-command~.  It has two options,
19202 ~man~ and ~woman~.  Next is a function whose argument is the link
19203 path, which for man pages is the topic of the man command.  To follow
19204 the link, the function calls the ~org-man-command~ to display the man
19205 page.
19207 {{{kbd(C-c l)}}} constructs and stores the link.
19209 {{{kbd(C-c l)}}} calls the function ~org-man-store-link~, which first
19210 checks if the ~major-mode~ is appropriate.  If check fails, the
19211 function returns ~nil~.  Otherwise the function makes a link string by
19212 combining the =man:= prefix with the man topic.  The function then
19213 calls ~org-store-link-props~ with ~:type~ and ~:link~ properties.
19214 A ~:description~ property is an optional string that is displayed when
19215 the function inserts the link in the Org buffer.
19217 {{{kbd(C-c C-l)}}} inserts the stored link.
19219 To define new link types, define a function that implements completion
19220 support with {{{kbd(C-c C-l)}}}.  This function should not accept any
19221 arguments but return the appropriate prefix and complete link string.
19223 ** Adding export back-ends
19224 :PROPERTIES:
19225 :DESCRIPTION: How to write new export back-ends.
19226 :END:
19227 #+cindex: Export, writing back-ends
19229 Org's export engine makes it easy for writing new back-ends.  The
19230 framework on which the engine was built makes it easy to derive new
19231 back-ends from existing ones.
19233 #+findex: org-export-define-backend
19234 #+findex: org-export-define-derived-backend
19235 The two main entry points to the export engine are:
19236 ~org-export-define-backend~ and ~org-export-define-derived-backend~.
19237 To grok these functions, see =ox-latex.el= for an example of defining
19238 a new back-end from scratch, and =ox-beamer.el= for an example of
19239 deriving from an existing engine.
19241 For creating a new back-end from scratch, first set its name as
19242 a symbol in an alist consisting of elements and export functions.  To
19243 make the back-end visible to the export dispatcher, set ~:menu-entry~
19244 keyword.  For export options specific to this back-end, set the
19245 ~:options-alist~.
19247 For creating a new back-end from an existing one, set
19248 ~:translate-alist~ to an alist of export functions.  This alist
19249 replaces the parent back-end functions.
19251 For complete documentation, see [[https://orgmode.org/worg/dev/org-export-reference.html][the Org Export Reference on Worg]].
19253 ** Tables in arbitrary syntax
19254 :PROPERTIES:
19255 :DESCRIPTION: Orgtbl for LaTeX and other programs.
19256 :END:
19257 #+cindex: tables, in other modes
19258 #+cindex: lists, in other modes
19259 #+cindex: Orgtbl mode
19261 Due to Org's success in handling tables with Orgtbl, a frequently
19262 requested feature is the use of Org's table functions in other modes,
19263 e.g., LaTeX.  This would be hard to do in a general way without
19264 complicated customization nightmares.  Moreover, that would take Org
19265 away from its simplicity roots that Orgtbl has proven.  There is,
19266 however, an alternate approach to accomplishing the same.
19268 This approach involves implementing a custom /translate/ function that
19269 operates on a native Org /source table/ to produce a table in another
19270 format.  This strategy would keep the excellently working Orgtbl
19271 simple and isolate complications, if any, confined to the translate
19272 function.  To add more alien table formats, we just add more translate
19273 functions.  Also the burden of developing custom translate functions
19274 for new table formats is in the hands of those who know those formats
19275 best.
19277 *** Radio tables
19278 :PROPERTIES:
19279 :DESCRIPTION: Sending and receiving radio tables.
19280 :END:
19281 #+cindex: radio tables
19283 Radio tables are target locations for translated tables that are not near
19284 their source.  Org finds the target location and inserts the translated
19285 table.
19287 The key to finding the target location is the magic words =BEGIN/END
19288 RECEIVE ORGTBL=.  They have to appear as comments in the current mode.
19289 If the mode is C, then:
19291 #+begin_example
19292    /* BEGIN RECEIVE ORGTBL table_name */
19293    /* END RECEIVE ORGTBL table_name */
19294 #+end_example
19296 #+texinfo: @noindent
19297 At the location of source, Org needs a special line to direct Orgtbl
19298 to translate and to find the target for inserting the translated
19299 table.  For example:
19301 #+cindex: ORGTBL, keyword
19302 : #+ORGTBL: SEND table_name translation_function arguments ...
19304 #+texinfo: @noindent
19305 =table_name= is the table's reference name, which is also used in the
19306 receiver lines, and the =translation_function= is the Lisp function
19307 that translates.  This line, in addition, may also contain alternating
19308 key and value arguments at the end.  The translation function gets
19309 these values as a property list.  A few standard parameters are
19310 already recognized and acted upon before the translation function is
19311 called:
19313 - =:skip N= ::
19315      Skip the first N lines of the table.  Hlines do count; include
19316      them if they are to be skipped.
19318 - =:skipcols (n1 n2 ...)= ::
19320      List of columns to be skipped.  First Org automatically discards
19321      columns with calculation marks and then sends the table to the
19322      translator function, which then skips columns as specified in
19323      =skipcols=.
19325 #+texinfo: @noindent
19326 To keep the source table intact in the buffer without being disturbed
19327 when the source file is compiled or otherwise being worked on, use one
19328 of these strategies:
19330 - Place the table in a block comment.  For example, in C mode you
19331   could wrap the table between =/*= and =*/= lines.
19333 - Put the table after an "end" statement.  For example ~\bye~ in TeX
19334   and ~\end{document}~ in LaTeX.
19336 - Comment and un-comment each line of the table during edits.  The
19337   {{{kbd(M-x orgtbl-toggle-comment)}}} command makes toggling easy.
19339 *** A LaTeX example of radio tables
19340 :PROPERTIES:
19341 :DESCRIPTION: Step by step, almost a tutorial.
19342 :ALT_TITLE: A LaTeX example
19343 :END:
19344 #+cindex: @LaTeX{}, and Orgtbl mode
19346 To wrap a source table in LaTeX, use the =comment= environment
19347 provided by =comment.sty=[fn:139].  To activate it, put
19348 ~\usepackage{comment}~ in the document header.  Orgtbl mode inserts
19349 a radio table skeleton[fn:138] with the command {{{kbd(M-x
19350 orgtbl-insert-radio-table)}}}, which prompts for a table name.  For
19351 example, if =salesfigures= is the name, the template inserts:
19353 #+begin_example
19354   % BEGIN RECEIVE ORGTBL salesfigures
19355   % END RECEIVE ORGTBL salesfigures
19356   \begin{comment}
19357   ,#+ORGTBL: SEND salesfigures orgtbl-to-latex
19358   | | |
19359   \end{comment}
19360 #+end_example
19362 #+vindex: @LaTeX{}-verbatim-environments
19363 #+texinfo: @noindent
19364 The line =#+ORGTBL: SEND= tells Orgtbl mode to use the function
19365 ~orgtbl-to-latex~ to convert the table to LaTeX format, then insert
19366 the table at the target (receive) location named =salesfigures=.  Now
19367 the table is ready for data entry.  It can even use spreadsheet
19368 features[fn:140]:
19370 #+begin_example
19371   % BEGIN RECEIVE ORGTBL salesfigures
19372   % END RECEIVE ORGTBL salesfigures
19373   \begin{comment}
19374   ,#+ORGTBL: SEND salesfigures orgtbl-to-latex
19375   | Month | Days | Nr sold | per day |
19376   |-------+------+---------+---------|
19377   | Jan   |   23 |      55 |     2.4 |
19378   | Feb   |   21 |      16 |     0.8 |
19379   | March |   22 |     278 |    12.6 |
19380   ,#+TBLFM: $4=$3/$2;%.1f
19381   % $ (optional extra dollar to keep Font Lock happy, see footnote)
19382   \end{comment}
19383 #+end_example
19385 #+texinfo: @noindent
19386 After editing, {{{kbd(C-c C-c)}}} inserts the translated table at the
19387 target location, between the two marker lines.
19389 For hand-made custom tables, note that the translator needs to skip
19390 the first two lines of the source table.  Also the command has to
19391 /splice/ out the target table without the header and footer.
19393 #+begin_example
19394   \begin{tabular}{lrrr}
19395   Month & \multicolumn{1}{c}{Days} & Nr.\ sold & per day\\
19396   % BEGIN RECEIVE ORGTBL salesfigures
19397   % END RECEIVE ORGTBL salesfigures
19398   \end{tabular}
19399   %
19400   \begin{comment}
19401   ,#+ORGTBL: SEND salesfigures orgtbl-to-latex :splice t :skip 2
19402   | Month | Days | Nr sold | per day |
19403   |-------+------+---------+---------|
19404   | Jan   |   23 |      55 |     2.4 |
19405   | Feb   |   21 |      16 |     0.8 |
19406   | March |   22 |     278 |    12.6 |
19407   ,#+TBLFM: $4=$3/$2;%.1f
19408   \end{comment}
19409 #+end_example
19411 The LaTeX translator function ~orgtbl-to-latex~ is already part of
19412 Orgtbl mode and uses a =tabular= environment to typeset the table and
19413 marks horizontal lines with ~\hline~.  For additional parameters to
19414 control output, see [[*Translator functions]]:
19416 - ~:splice nil/t~ ::
19418      When non-~nil~, return only table body lines; not wrapped in
19419      tabular environment.  Default is ~nil~.
19421 - ~:fmt FMT~ ::
19423      Format to warp each field.  It should contain =%s= for the
19424      original field value.  For example, to wrap each field value in
19425      dollar symbol, you could use =:fmt "$%s$"=.  Format can also wrap
19426      a property list with column numbers and formats, for example
19427      =:fmt (2 "$%s$" 4 "%s\\%%")=.  In place of a string, a function
19428      of one argument can be used; the function must return a formatted
19429      string.
19431 - ~:efmt EFMT~ ::
19433      Format numbers as exponentials.  The spec should have =%s= twice
19434      for inserting mantissa and exponent, for example
19435      ="%s\\times10^{%s}"=.  This may also be a property list with
19436      column numbers and formats, for example =:efmt (2
19437      "$%s\\times10^{%s}$" 4 "$%s\\cdot10^{%s}$")=.  After
19438      {{{var(EFMT)}}} has been applied to a value, {{{var(FMT)}}}---see
19439      above---is also be applied.  Functions with two arguments can be
19440      supplied instead of strings.  By default, no special formatting
19441      is applied.
19443 *** Translator functions
19444 :PROPERTIES:
19445 :DESCRIPTION: Copy and modify.
19446 :END:
19447 #+cindex: HTML, and Orgtbl mode
19448 #+cindex: translator function
19450 #+findex: orgtbl-to-csv
19451 #+findex: orgtbl-to-tsv
19452 #+findex: orgtbl-to-latex
19453 #+findex: orgtbl-to-html
19454 #+findex: orgtbl-to-texinfo
19455 #+findex: orgtbl-to-unicode
19456 #+findex: orgtbl-to-orgtbl
19457 #+findex: orgtbl-to-generic
19458 Orgtbl mode has built-in translator functions: ~orgtbl-to-csv~
19459 (comma-separated values), ~orgtbl-to-tsv~ (TAB-separated values),
19460 ~orgtbl-to-latex~, ~orgtbl-to-html~, ~orgtbl-to-texinfo~,
19461 ~orgtbl-to-unicode~ and ~orgtbl-to-orgtbl~.  They use the generic
19462 translator, ~orgtbl-to-generic~, which delegates translations to
19463 various export back-ends.
19465 Properties passed to the function through the =ORGTBL SEND= line take
19466 precedence over properties defined inside the function.  For example,
19467 this overrides the default LaTeX line endings, ~\\~, with ~\\[2mm]~:
19469 : #+ORGTBL: SEND test orgtbl-to-latex :lend " \\\\[2mm]"
19471 For a new language translator, define a converter function.  It can be
19472 a generic function, such as shown in this example.  It marks
19473 a beginning and ending of a table with =!BTBL!= and =!ETBL!=;
19474 a beginning and ending of lines with =!BL!= and =!EL!=; and uses a TAB
19475 for a field separator:
19477 #+begin_src emacs-lisp
19478   (defun orgtbl-to-language (table params)
19479     "Convert the orgtbl-mode TABLE to language."
19480     (orgtbl-to-generic
19481      table
19482      (org-combine-plists
19483       '(:tstart "!BTBL!" :tend "!ETBL!" :lstart "!BL!" :lend "!EL!" :sep "\t")
19484       params)))
19485 #+end_src
19487 #+texinfo: @noindent
19488 The documentation for the ~orgtbl-to-generic~ function shows
19489 a complete list of parameters, each of which can be passed through to
19490 ~orgtbl-to-latex~, ~orgtbl-to-texinfo~, and any other function using
19491 that generic function.
19493 For complicated translations the generic translator function could be
19494 replaced by a custom translator function.  Such a custom function must
19495 take two arguments and return a single string containing the formatted
19496 table.  The first argument is the table whose lines are a list of
19497 fields or the symbol ~hline~.  The second argument is the property
19498 list consisting of parameters specified in the =#+ORGTBL: SEND= line.
19499 Please share your translator functions by posting them to the Org
19500 users mailing list, at mailto:emacs-orgmode@gnu.org.
19502 ** Dynamic blocks
19503 :PROPERTIES:
19504 :DESCRIPTION: Automatically filled blocks.
19505 :END:
19506 #+cindex: dynamic blocks
19508 Org supports /dynamic blocks/ in Org documents.  They are inserted
19509 with begin and end markers like any other code block, but the contents
19510 are updated automatically by a user function.  For example, {{{kbd(C-c
19511 C-x C-r)}}} inserts a dynamic table that updates the work time (see
19512 [[*Clocking work time]]).
19514 Dynamic blocks can have names and function parameters.  The syntax is
19515 similar to source code block specifications:
19517 #+begin_example
19518   ,#+BEGIN: myblock :parameter1 value1 :parameter2 value2 ...
19519     ...
19520   ,#+END:
19521 #+end_example
19523 These commands update dynamic blocks:
19525 - {{{kbd(C-c C-x C-u)}}} (~org-dblock-update~) ::
19527      #+kindex: C-c C-x C-u
19528      #+findex: org-dblock-update
19529      Update dynamic block at point.
19531 - {{{kbd(C-u C-c C-x C-u)}}} ::
19533      #+kindex: C-u C-c C-x C-u
19534      Update all dynamic blocks in the current file.
19536 Before updating a dynamic block, Org removes content between the
19537 =BEGIN= and =END= markers.  Org then reads the parameters on the
19538 =BEGIN= line for passing to the writer function.  If the function
19539 expects to access the removed content, then Org expects an extra
19540 parameter, =:content=, on the =BEGIN= line.
19542 The syntax for naming a writer function with a dynamic block labelled
19543 =myblock= is: ~org-dblock-write:myblock~.  Parameters come from the
19544 =BEGIN= line.
19546 The following is an example of a dynamic block and a block writer function
19547 that updates the time when the function was last run:
19549 #+begin_example
19550   ,#+BEGIN: block-update-time :format "on %m/%d/%Y at %H:%M"
19551     ...
19552   ,#+END:
19553 #+end_example
19555 #+texinfo: @noindent
19556 The dynamic block's writer function:
19558 #+begin_src emacs-lisp
19559   (defun org-dblock-write:block-update-time (params)
19560     (let ((fmt (or (plist-get params :format) "%d. %m. %Y")))
19561       (insert "Last block update at: "
19562               (format-time-string fmt))))
19563 #+end_src
19565 To keep dynamic blocks up-to-date in an Org file, use the function,
19566 ~org-update-all-dblocks~ in hook, such as ~before-save-hook~.  The
19567 ~org-update-all-dblocks~ function does not run if the file is not in
19568 Org mode.
19570 #+findex: org-narrow-to-block
19571 Dynamic blocks, like any other block, can be narrowed with
19572 ~org-narrow-to-block~.
19574 ** Special agenda views
19575 :PROPERTIES:
19576 :DESCRIPTION: Customized views.
19577 :END:
19578 #+cindex: agenda views, user-defined
19580 #+vindex: org-agenda-skip-function
19581 #+vindex: org-agenda-skip-function-global
19582 Org provides a special hook to further limit items in agenda views:
19583 ~agenda~, ~agenda*~[fn:141], ~todo~, ~alltodo~, ~tags~, ~tags-todo~,
19584 ~tags-tree~.  Specify a custom function that tests inclusion of every
19585 matched item in the view.  This function can also skip as much as is
19586 needed.
19588 For a global condition applicable to agenda views, use the
19589 ~org-agenda-skip-function-global~ variable.  Org uses a global
19590 condition with ~org-agenda-skip-function~ for custom searching.
19592 This example defines a function for a custom view showing TODO items
19593 with =waiting= status.  Manually this is a multi-step search process,
19594 but with a custom view, this can be automated as follows:
19596 The custom function searches the subtree for the =waiting= tag and
19597 returns ~nil~ on match.  Otherwise it gives the location from where
19598 the search continues.
19600 #+begin_src emacs-lisp
19601   (defun my-skip-unless-waiting ()
19602     "Skip trees that are not waiting"
19603     (let ((subtree-end (save-excursion (org-end-of-subtree t))))
19604       (if (re-search-forward ":waiting:" subtree-end t)
19605           nil          ; tag found, do not skip
19606         subtree-end))) ; tag not found, continue after end of subtree
19607 #+end_src
19609 To use this custom function in a custom agenda command:
19611 #+begin_src emacs-lisp
19612   (org-add-agenda-custom-command
19613    '("b" todo "PROJECT"
19614      ((org-agenda-skip-function 'my-skip-unless-waiting)
19615       (org-agenda-overriding-header "Projects waiting for something: "))))
19616 #+end_src
19618 #+vindex: org-agenda-overriding-header
19619 Note that this also binds ~org-agenda-overriding-header~ to a more
19620 meaningful string suitable for the agenda view.
19622 #+vindex: org-odd-levels-only
19623 #+vindex: org-agenda-skip-function
19624 Search for entries with a limit set on levels for the custom search.
19625 This is a general approach to creating custom searches in Org.  To
19626 include all levels, use =LEVEL>0=[fn:142].  Then to selectively pick
19627 the matched entries, use ~org-agenda-skip-function~, which also
19628 accepts Lisp forms, such as ~org-agenda-skip-entry-if~ and
19629 ~org-agenda-skip-subtree-if~.  For example:
19631 - ~(org-agenda-skip-entry-if 'scheduled)~ ::
19633      Skip current entry if it has been scheduled.
19635 - ~(org-agenda-skip-entry-if 'notscheduled)~ ::
19637      Skip current entry if it has not been scheduled.
19639 - ~(org-agenda-skip-entry-if 'deadline)~ ::
19641      Skip current entry if it has a deadline.
19643 - ~(org-agenda-skip-entry-if 'scheduled 'deadline)~ ::
19645      Skip current entry if it has a deadline, or if it is scheduled.
19647 - ~(org-agenda-skip-entry-if 'todo '("TODO" "WAITING"))~ ::
19649      Skip current entry if the TODO keyword is TODO or WAITING.
19651 - ~(org-agenda-skip-entry-if 'todo 'done)~ ::
19653      Skip current entry if the TODO keyword marks a DONE state.
19655 - ~(org-agenda-skip-entry-if 'timestamp)~ ::
19657      Skip current entry if it has any timestamp, may also be deadline
19658      or scheduled.
19660 - ~(org-agenda-skip-entry-if 'regexp "regular expression")~ ::
19662      Skip current entry if the regular expression matches in the
19663      entry.
19665 - ~(org-agenda-skip-entry-if 'notregexp "regular expression")~ ::
19667      Skip current entry unless the regular expression matches.
19669 - ~(org-agenda-skip-subtree-if 'regexp "regular expression")~ ::
19671      Same as above, but check and skip the entire subtree.
19673 The following is an example of a search for =waiting= without the
19674 special function:
19676 #+begin_src emacs-lisp
19677   (org-add-agenda-custom-command
19678    '("b" todo "PROJECT"
19679      ((org-agenda-skip-function '(org-agenda-skip-subtree-if
19680                                   'regexp ":waiting:"))
19681       (org-agenda-overriding-header "Projects waiting for something: "))))
19682 #+end_src
19684 ** Speeding up your agendas
19685 :PROPERTIES:
19686 :DESCRIPTION: Tips on how to speed up your agendas.
19687 :END:
19688 #+cindex: agenda views, optimization
19690 Some agenda commands slow down when the Org files grow in size or
19691 number.  Here are tips to speed up:
19693 - Reduce the number of Org agenda files to avoid slowdowns due to hard drive
19694   accesses.
19696 - Reduce the number of DONE and archived headlines so agenda
19697   operations that skip over these can finish faster.
19699 - Do not dim blocked tasks:
19700   #+vindex: org-agenda-dim-blocked-tasks
19702   #+begin_src emacs-lisp
19703     (setq org-agenda-dim-blocked-tasks nil)
19704   #+end_src
19706 - Stop preparing agenda buffers on startup:
19707   #+vindex: org-startup-folded
19708   #+vindex: org-agenda-inhibit-startup
19710   #+begin_src emacs-lisp
19711     (setq org-agenda-inhibit-startup nil)
19712   #+end_src
19714 - Disable tag inheritance for agendas:
19715   #+vindex: org-agenda-show-inherited-tags
19716   #+vindex: org-agenda-use-tag-inheritance
19718   #+begin_src emacs-lisp
19719     (setq org-agenda-use-tag-inheritance nil)
19720   #+end_src
19722 These options can be applied to selected agenda views.  For more
19723 details about generation of agenda views, see the docstrings for the
19724 relevant variables, and this [[https://orgmode.org/worg/agenda-optimization.html][dedicated Worg page]] for agenda
19725 optimization.
19727 ** Extracting agenda information
19728 :PROPERTIES:
19729 :DESCRIPTION: Post-processing agenda information.
19730 :END:
19731 #+cindex: agenda, pipe
19732 #+cindex: scripts, for agenda processing
19734 Org provides commands to access agendas through Emacs batch mode.
19735 Through this command-line interface, agendas are automated for further
19736 processing or printing.
19738 #+vindex: org-agenda-custom-commands
19739 #+findex: org-batch-agenda
19740 ~org-batch-agenda~ creates an agenda view in ASCII and outputs to
19741 standard output.  This command takes one string parameter.  When
19742 string consists of a single character, Org uses it as a key to
19743 ~org-agenda-custom-commands~.  These are the same ones available
19744 through {{{kbd(C-c a)}}}.
19746 This example command line directly prints the TODO list to the printer:
19748 : emacs -batch -l ~/.emacs -eval '(org-batch-agenda "t")' | lpr
19750 When the string parameter length is two or more characters, Org
19751 matches it with tags/TODO strings.  For example, this example command
19752 line prints items tagged with =shop=, but excludes items tagged with
19753 =NewYork=:
19755 #+begin_example
19756   emacs -batch -l ~/.emacs                                      \
19757         -eval '(org-batch-agenda "+shop-NewYork")' | lpr
19758 #+end_example
19760 #+texinfo: @noindent
19761 An example showing on-the-fly parameter modifications:
19763 #+begin_example
19764   emacs -batch -l ~/.emacs                                      \
19765      -eval '(org-batch-agenda "a"                               \
19766              org-agenda-span (quote month)                      \
19767              org-agenda-include-diary nil                       \
19768              org-agenda-files (quote ("~/org/project.org")))'   \
19769      | lpr
19770 #+end_example
19772 #+texinfo: @noindent
19773 which produces an agenda for the next 30 days from just the
19774 =~/org/projects.org= file.
19776 #+findex: org-batch-agenda-csv
19777 For structured processing of agenda output, use ~org-batch-agenda-csv~
19778 with the following fields:
19780 - category :: The category of the item
19781 - head :: The headline, without TODO keyword, TAGS and PRIORITY
19782 - type :: The type of the agenda entry, can be
19784      | ~todo~              | selected in TODO match              |
19785      | ~tagsmatch~         | selected in tags match              |
19786      | ~diary~             | imported from diary                 |
19787      | ~deadline~          | a deadline                          |
19788      | ~scheduled~         | scheduled                           |
19789      | ~timestamp~         | appointment, selected by timestamp  |
19790      | ~closed~            | entry was closed on date            |
19791      | ~upcoming-deadline~ | warning about nearing deadline      |
19792      | ~past-scheduled~    | forwarded scheduled item            |
19793      | ~block~             | entry has date block including date |
19795 - todo :: The TODO keyword, if any
19796 - tags :: All tags including inherited ones, separated by colons
19797 - date :: The relevant date, like =2007-2-14=
19798 - time :: The time, like =15:00-16:50=
19799 - extra :: String with extra planning info
19800 - priority-l :: The priority letter if any was given
19801 - priority-n :: The computed numerical priority
19803 #+texinfo: @noindent
19804 If the selection of the agenda item was based on a timestamp,
19805 including those items with =DEADLINE= and =SCHEDULED= keywords, then
19806 Org includes date and time in the output.
19808 If the selection of the agenda item was based on a timestamp  (or
19809 deadline/scheduled), then Org includes date and time in the output.
19811 Here is an example of a post-processing script in Perl.  It takes the
19812 CSV output from Emacs and prints with a checkbox:
19814 #+begin_src perl
19815   #!/usr/bin/perl
19817   # define the Emacs command to run
19818   $cmd = "emacs -batch -l ~/.emacs -eval '(org-batch-agenda-csv \"t\")'";
19820   # run it and capture the output
19821   $agenda = qx{$cmd 2>/dev/null};
19823   # loop over all lines
19824   foreach $line (split(/\n/,$agenda)) {
19825       # get the individual values
19826       ($category,$head,$type,$todo,$tags,$date,$time,$extra,
19827        $priority_l,$priority_n) = split(/,/,$line);
19828       # process and print
19829       print "[ ] $head\n";
19830   }
19831 #+end_src
19833 ** Using the property API
19834 :PROPERTIES:
19835 :DESCRIPTION: Writing programs that use entry properties.
19836 :END:
19837 #+cindex: API, for properties
19838 #+cindex: properties, API
19840 Here is a description of the functions that can be used to work with
19841 properties.
19843 #+attr_texinfo: :options org-entry-properties &optional pom which
19844 #+begin_defun
19845 Get all properties of the entry at point-or-marker {{{var(POM)}}}.
19846 This includes the TODO keyword, the tags, time strings for deadline,
19847 scheduled, and clocking, and any additional properties defined in the
19848 entry.  The return value is an alist.  Keys may occur multiple times
19849 if the property key was used several times.  {{{var(POM)}}} may also
19850 be ~nil~, in which case the current entry is used.  If
19851 {{{var(WHICH)}}} is ~nil~ or ~all~, get all properties.  If
19852 {{{var(WHICH)}}} is ~special~ or ~standard~, only get that subclass.
19853 #+end_defun
19855 #+vindex: org-use-property-inheritance
19856 #+findex: org-insert-property-drawer
19857 #+attr_texinfo: :options org-entry-get pom property &optional inherit
19858 #+begin_defun
19859 Get value of {{{var(PROPERTY)}}} for entry at point-or-marker
19860 {{{var(POM)}}}.  By default, this only looks at properties defined
19861 locally in the entry.  If {{{var(INHERIT)}}} is non-~nil~ and the
19862 entry does not have the property, then also check higher levels of the
19863 hierarchy.  If {{{var(INHERIT)}}} is the symbol ~selective~, use
19864 inheritance if and only if the setting of
19865 ~org-use-property-inheritance~ selects {{{var(PROPERTY)}}} for
19866 inheritance.
19867 #+end_defun
19869 #+attr_texinfo: :options org-entry-delete pom property
19870 #+begin_defun
19871 Delete the property {{{var(PROPERTY)}}} from entry at point-or-marker
19872 {{{var(POM)}}}.
19873 #+end_defun
19875 #+attr_texinfo: :options org-entry-put pom property value
19876 #+begin_defun
19877 Set {{{var(PROPERTY)}}} to {{{var(VALUES)}}} for entry at
19878 point-or-marker POM.
19879 #+end_defun
19881 #+attr_texinfo: :options org-buffer-property-keys &optional include-specials
19882 #+begin_defun
19883 Get all property keys in the current buffer.
19884 #+end_defun
19886 #+attr_texinfo: :options org-insert-property-drawer
19887 #+begin_defun
19888 Insert a property drawer for the current entry.  Also
19889 #+end_defun
19891 #+attr_texinfo: :options org-entry-put-multivalued-property pom property &rest values
19892 #+begin_defun
19893 Set {{{var(PROPERTY)}}} at point-or-marker {{{var(POM)}}} to
19894 {{{var(VALUES)}}}.  {{{var(VALUES)}}} should be a list of strings.
19895 They are concatenated, with spaces as separators.
19896 #+end_defun
19898 #+attr_texinfo: :options org-entry-get-multivalued-property pom property
19899 #+begin_defun
19900 Treat the value of the property {{{var(PROPERTY)}}} as
19901 a whitespace-separated list of values and return the values as a list
19902 of strings.
19903 #+end_defun
19905 #+attr_texinfo: :options org-entry-add-to-multivalued-property pom property value
19906 #+begin_defun
19907 Treat the value of the property {{{var(PROPERTY)}}} as
19908 a whitespace-separated list of values and make sure that
19909 {{{var(VALUE)}}} is in this list.
19910 #+end_defun
19912 #+attr_texinfo: :options org-entry-remove-from-multivalued-property pom property value
19913 #+begin_defun
19914 Treat the value of the property {{{var(PROPERTY)}}} as
19915 a whitespace-separated list of values and make sure that
19916 {{{var(VALUE)}}} is /not/ in this list.
19917 #+end_defun
19919 #+attr_texinfo: :options org-entry-member-in-multivalued-property pom property value
19920 #+begin_defun
19921 Treat the value of the property {{{var(PROPERTY)}}} as
19922 a whitespace-separated list of values and check if {{{var(VALUE)}}} is
19923 in this list.
19924 #+end_defun
19926 #+attr_texinfo: :options org-property-allowed-value-functions
19927 #+begin_defopt
19928 Hook for functions supplying allowed values for a specific property.
19929 The functions must take a single argument, the name of the property,
19930 and return a flat list of allowed values.  If =:ETC= is one of the
19931 values, use the values as completion help, but allow also other values
19932 to be entered.  The functions must return ~nil~ if they are not
19933 responsible for this property.
19934 #+end_defopt
19936 ** Using the mapping API
19937 :PROPERTIES:
19938 :DESCRIPTION: Mapping over all or selected entries.
19939 :END:
19940 #+cindex: API, for mapping
19941 #+cindex: mapping entries, API
19943 Org has sophisticated mapping capabilities to find all entries
19944 satisfying certain criteria.  Internally, this functionality is used
19945 to produce agenda views, but there is also an API that can be used to
19946 execute arbitrary functions for each or selected entries.  The main
19947 entry point for this API is:
19949 #+attr_texinfo: :options org-map-entries func &optional match scope &rest skip
19950 #+begin_defun
19951 Call {{{(var(FUNC))}}} at each headline selected by {{{var(MATCH)}}}
19952 in {{{var(SCOPE)}}}.
19954 {{{var(FUNC)}}} is a function or a Lisp form.  With the cursor
19955 positioned at the beginning of the headline, call the function without
19956 arguments.  Org returns an alist of return values of calls to the
19957 function.
19959 To avoid preserving point, Org wraps the call to {{{var(FUNC)}}} in
19960 save-excursion form.  After evaluation, Org moves the cursor to the
19961 end of the line that was just processed.  Search continues from that
19962 point forward.  This may not always work as expected under some
19963 conditions, such as if the current sub-tree was removed by a previous
19964 archiving operation.  In such rare circumstances, Org skips the next
19965 entry entirely when it should not.  To stop Org from such skips, make
19966 {{{var(FUNC)}}} set the variable ~org-map-continue-from~ to a specific
19967 buffer position.
19969 {{{var(MATCH)}}} is a tags/property/TODO match.  Org iterates only
19970 matched headlines.  Org iterates over all headlines when
19971 {{{var(MATCH)}}} is ~nil~ or ~t~.
19973 {{{var(SCOPE)}}} determines the scope of this command.  It can be any
19976 - ~nil~ ::
19978      The current buffer, respecting the restriction, if any.
19980 - ~tree~ ::
19982      The subtree started with the entry at point.
19984 - ~region~ ::
19986      The entries within the active region, if any.
19988 - ~file~ ::
19990      The current buffer, without restriction.
19992 - ~file-with-archives~ ::
19994      The current buffer, and any archives associated with it.
19996 - ~agenda~ ::
19998      All agenda files.
20000 - ~agenda-with-archives~ ::
20002      All agenda files with any archive files associated with them.
20004 - ~(file1 file2 ...)~ ::
20006      If this is a list, all files in the list are scanned.
20008 #+texinfo: @noindent
20009 The remaining arguments are treated as settings for the scanner's
20010 skipping facilities.  Valid arguments are:
20012 - ~archive~ ::
20014      Skip trees with the archive tag.
20016 - ~comment~ ::
20018      Skip trees with the COMMENT keyword.
20020 - function or Lisp form ::
20022      #+vindex: org-agenda-skip-function
20023      Used as value for ~org-agenda-skip-function~, so whenever the
20024      function returns ~t~, {{{var(FUNC)}}} is called for that entry
20025      and search continues from the point where the function leaves it.
20026 #+end_defun
20028 The mapping routine can call any arbitrary function, even functions
20029 that change meta data or query the property API (see [[*Using the
20030 property API]]).  Here are some handy functions:
20032 #+attr_texinfo: :options org-todo &optional arg
20033 #+begin_defun
20034 Change the TODO state of the entry.  See the docstring of the
20035 functions for the many possible values for the argument
20036 {{{var(ARG)}}}.
20037 #+end_defun
20039 #+attr_texinfo: :options org-priority &optional action
20040 #+begin_defun
20041 Change the priority of the entry.  See the docstring of this function
20042 for the possible values for {{{var(ACTION)}}}.
20043 #+end_defun
20045 #+attr_texinfo: :options org-toggle-tag tag &optional onoff
20046 #+begin_defun
20047 Toggle the tag {{{var(TAG)}}} in the current entry.  Setting
20048 {{{var(ONOFF)}}} to either ~on~ or ~off~ does not toggle tag, but
20049 ensure that it is either on or off.
20050 #+end_defun
20052 #+attr_texinfo: :options org-promote
20053 #+begin_defun
20054 Promote the current entry.
20055 #+end_defun
20057 #+attr_texinfo: :options org-demote
20058 #+begin_defun
20059 Demote the current entry.
20060 #+end_defun
20062 This example turns all entries tagged with =TOMORROW= into TODO
20063 entries with keyword =UPCOMING=.  Org ignores entries in comment trees
20064 and archive trees.
20066 #+begin_src emacs-lisp
20067   (org-map-entries '(org-todo "UPCOMING")
20068                    "+TOMORROW" 'file 'archive 'comment)
20069 #+end_src
20071 The following example counts the number of entries with TODO keyword
20072 =WAITING=, in all agenda files.
20074 #+begin_src emacs-lisp
20075   (length (org-map-entries t "/+WAITING" 'agenda))
20076 #+end_src
20078 * MobileOrg
20079 :PROPERTIES:
20080 :DESCRIPTION: Viewing and capture on a mobile device.
20081 :APPENDIX: Appendix
20082 :END:
20083 #+cindex: iPhone
20084 #+cindex: smartphone
20085 #+cindex: android
20086 #+cindex: MobileOrg
20088 MobileOrg is a companion mobile app that runs on iOS and Android
20089 devices.  MobileOrg enables offline-views and capture support for an
20090 Org mode system that is rooted on a "real" computer.  MobileOrg can
20091 record changes to existing entries.
20093 The [[https://github.com/MobileOrg/][iOS implementation]] for the /iPhone/iPod Touch/iPad/ series of
20094 devices, was started by Richard Moreland and is now in the hands of
20095 Sean Escriva.  Android users should check out [[http://wiki.github.com/matburt/mobileorg-android/][MobileOrg Android]] by
20096 Matt Jones.  Though the two implementations are not identical, they
20097 offer similar features.
20099 This appendix describes Org's support for agenda view formats
20100 compatible with MobileOrg.  It also describes synchronizing changes,
20101 such as to notes, between MobileOrg and the computer.
20103 To change tags and TODO states in MobileOrg, first customize the
20104 variables ~org-todo-keywords~ and ~org-tag-alist~.  These should cover
20105 all the important tags and TODO keywords, even if Org files use only
20106 some of them.  Though MobileOrg has in-buffer settings, it understands
20107 TODO states /sets/ (see [[*Setting up keywords for individual files]]) and
20108 /mutually exclusive/ tags (see [[*Setting tags]]) only for those set in
20109 these variables.
20111 ** Setting up the staging area
20112 :PROPERTIES:
20113 :DESCRIPTION: For the mobile device.
20114 :END:
20116 MobileOrg needs access to a file directory on a server to interact
20117 with Emacs.  With a public server, consider encrypting the files.
20118 MobileOrg version 1.5 supports encryption for the iPhone.  Org also
20119 requires =openssl= installed on the local computer.  To turn on
20120 encryption, set the same password in MobileOrg and in Emacs.  Set the
20121 password in the variable ~org-mobile-use-encryption~[fn:143].  Note
20122 that even after MobileOrg encrypts the file contents, the file name
20123 remains visible on the file systems of the local computer, the server,
20124 and the mobile device.
20126 For a server to host files, consider options like [[http://dropbox.com][Dropbox.com]]
20127 account[fn:144].  On first connection, MobileOrg creates a directory
20128 =MobileOrg= on Dropbox.  Pass its location to Emacs through an
20129 initialisation file variable as follows:
20131 #+begin_src emacs-lisp
20132   (setq org-mobile-directory "~/Dropbox/MobileOrg")
20133 #+end_src
20135 Org copies files to the above directory for MobileOrg.  Org also uses
20136 the same directory for sharing notes between Org and MobileOrg.
20138 ** Pushing to MobileOrg
20139 :PROPERTIES:
20140 :DESCRIPTION: Uploading Org files and agendas.
20141 :END:
20143 #+vindex: org-mobile-files
20144 #+vindex: org-directory
20145 Org pushes files listed in ~org-mobile-files~ to
20146 ~org-mobile-directory~.  Files include agenda files (as listed in
20147 ~org-agenda-files~).  Customize ~org-mobile-files~ to add other files.
20148 File names are staged with paths relative to ~org-directory~, so all
20149 files should be inside this directory[fn:145].
20151 Push creates a special Org file =agendas.org= with custom agenda views
20152 defined by the user[fn:146].
20154 Finally, Org writes the file =index.org=, containing links to other
20155 files.  MobileOrg reads this file first from the server to determine
20156 what other files to download for agendas.  For faster downloads,
20157 MobileOrg only reads files whose checksums[fn:147] have changed.
20159 ** Pulling from MobileOrg
20160 :PROPERTIES:
20161 :DESCRIPTION: Integrating captured and flagged items.
20162 :END:
20164 When MobileOrg synchronizes with the server, it pulls the Org files
20165 for viewing.  It then appends to the file =mobileorg.org= on the
20166 server the captured entries, pointers to flagged and changed entries.
20167 Org integrates its data in an inbox file format.
20170    #+vindex: org-mobile-inbox-for-pull
20171    Org moves all entries found in =mobileorg.org=[fn:148] and appends
20172    them to the file pointed to by the variable
20173    ~org-mobile-inbox-for-pull~.  Each captured entry and each editing
20174    event is a top-level entry in the inbox file.
20176 2. After moving the entries, Org attempts changes to MobileOrg.  Some
20177    changes are applied directly and without user interaction.
20178    Examples include changes to tags, TODO state, headline and body
20179    text.  Entries for further action are tagged as =FLAGGED=.  Org
20180    marks entries with problems with an error message in the inbox.
20181    They have to be resolved manually.
20183 3. Org generates an agenda view for flagged entries for user
20184    intervention to clean up.  For notes stored in flagged entries,
20185    MobileOrg displays them in the echo area when the cursor is on the
20186    corresponding agenda item.
20188    - {{{kbd(?)}}} ::
20189         #+kindex: ?
20191         Pressing {{{kbd(?)}}} displays the entire flagged note in
20192         another window.  Org also pushes it to the kill ring.  To
20193         store flagged note as a normal note, use {{{kbd(? z C-y C-c
20194         C-c)}}}.  Pressing{{{kbd(?)}}} twice does these things: first
20195         it removes the =FLAGGED= tag; second, it removes the flagged
20196         note from the property drawer; third, it signals that manual
20197         editing of the flagged entry is now finished.
20199 #+kindex: C-c a ?
20200 {{{kbd(C-c a ?)}}} returns to the agenda view to finish processing
20201 flagged entries.  Note that these entries may not be the most recent
20202 since MobileOrg searches files that were last pulled.  To get an
20203 updated agenda view with changes since the last pull, pull again.
20205 * History and acknowledgments
20206 :PROPERTIES:
20207 :DESCRIPTION: How Org came into being.
20208 :APPENDIX: t
20209 :END:
20211 ** From Carsten
20212 :PROPERTIES:
20213 :UNNUMBERED: notoc
20214 :END:
20216 Org was born in 2003, out of frustration over the user interface of
20217 the Emacs Outline mode.  I was trying to organize my notes and
20218 projects, and using Emacs seemed to be the natural way to go.
20219 However, having to remember eleven different commands with two or
20220 three keys per command, only to hide and show parts of the outline
20221 tree, that seemed entirely unacceptable to me.  Also, when using
20222 outlines to take notes, I constantly wanted to restructure the tree,
20223 organizing it parallel to my thoughts and plans.  /Visibility cycling/
20224 and /structure editing/ were originally implemented in the package
20225 =outline-magic.el=, but quickly moved to the more general =org.el=.
20226 As this environment became comfortable for project planning, the next
20227 step was adding /TODO entries/, basic /timestamps/, and /table
20228 support/.  These areas highlighted the two main goals that Org still
20229 has today: to be a new, outline-based, plain text mode with innovative
20230 and intuitive editing features, and to incorporate project planning
20231 functionality directly into a notes file.
20233 Since the first release, literally thousands of emails to me or to the
20234 [[mailto:emacs-orgmode@gnu.org][mailing list]] have provided a constant stream of bug reports, feedback,
20235 new ideas, and sometimes patches and add-on code.  Many thanks to
20236 everyone who has helped to improve this package.  I am trying to keep
20237 here a list of the people who had significant influence in shaping one
20238 or more aspects of Org.  The list may not be complete, if I have
20239 forgotten someone, please accept my apologies and let me know.
20241 Before I get to this list, a few special mentions are in order:
20243 - Bastien Guerry ::
20245      Bastien has written a large number of extensions to Org (most of
20246      them integrated into the core by now), including the LaTeX
20247      exporter and the plain list parser.  His support during the early
20248      days was central to the success of this project.  Bastien also
20249      invented Worg, helped establishing the Web presence of Org, and
20250      sponsored hosting costs for the orgmode.org website.  Bastien
20251      stepped in as maintainer of Org between 2011 and 2013, at a time
20252      when I desperately needed a break.
20254 - Eric Schulte and Dan Davison ::
20256      Eric and Dan are jointly responsible for the Org-babel system,
20257      which turns Org into a multi-language environment for evaluating
20258      code and doing literate programming and reproducible research.
20259      This has become one of Org's killer features that define what Org
20260      is today.
20262 - John Wiegley ::
20264      John has contributed a number of great ideas and patches directly
20265      to Org, including the attachment system (=org-attach.el=),
20266      integration with Apple Mail (=org-mac-message.el=), hierarchical
20267      dependencies of TODO items, habit tracking (=org-habits.el=), and
20268      encryption (=org-crypt.el=).  Also, the capture system is really
20269      an extended copy of his great =remember.el=.
20271 - Sebastian Rose ::
20273      Without Sebastian, the HTML/XHTML publishing of Org would be the
20274      pitiful work of an ignorant amateur.  Sebastian has pushed this
20275      part of Org onto a much higher level.  He also wrote
20276      =org-info.js=, a Java script for displaying webpages derived from
20277      Org using an Info-like or a folding interface with single-key
20278      navigation.
20280 #+texinfo: @noindent
20281 See below for the full list of contributions! Again, please let me
20282 know what I am missing here!
20284 ** From Bastien
20285 :PROPERTIES:
20286 :UNNUMBERED: notoc
20287 :END:
20289 I (Bastien) have been maintaining Org between 2011 and 2013.  This
20290 appendix would not be complete without adding a few more
20291 acknowledgments and thanks.
20293 I am first grateful to Carsten for his trust while handing me over the
20294 maintainership of Org.  His unremitting support is what really helped
20295 me getting more confident over time, with both the community and the
20296 code.
20298 When I took over maintainership, I knew I would have to make Org more
20299 collaborative than ever, as I would have to rely on people that are
20300 more knowledgeable than I am on many parts of the code.  Here is
20301 a list of the persons I could rely on, they should really be
20302 considered co-maintainers, either of the code or the community:
20304 - Eric Schulte ::
20306      Eric is maintaining the Babel parts of Org.  His reactivity here
20307      kept me away from worrying about possible bugs here and let me
20308      focus on other parts.
20310 - Nicolas Goaziou ::
20312      Nicolas is maintaining the consistency of the deepest parts of
20313      Org.  His work on =org-element.el= and =ox.el= has been
20314      outstanding, and it opened the doors for many new ideas and
20315      features.  He rewrote many of the old exporters to use the new
20316      export engine, and helped with documenting this major change.
20317      More importantly (if that's possible), he has been more than
20318      reliable during all the work done for Org 8.0, and always very
20319      reactive on the mailing list.
20321 - Achim Gratz ::
20323      Achim rewrote the building process of Org, turning some /ad hoc/
20324      tools into a flexible and conceptually clean process.  He
20325      patiently coped with the many hiccups that such a change can
20326      create for users.
20328 - Nick Dokos ::
20330      The Org mode mailing list would not be such a nice place without
20331      Nick, who patiently helped users so many times.  It is impossible
20332      to overestimate such a great help, and the list would not be so
20333      active without him.
20335 I received support from so many users that it is clearly impossible to
20336 be fair when shortlisting a few of them, but Org's history would not
20337 be complete if the ones above were not mentioned in this manual.
20339 ** List of contributions
20340 :PROPERTIES:
20341 :UNNUMBERED: notoc
20342 :END:
20344 - Russel Adams came up with the idea for drawers.
20346 - Thomas Baumann wrote =org-bbdb.el= and =org-mhe.el=.
20348 - Christophe Bataillon created the great unicorn logo that we use on
20349   the Org mode website.
20351 - Alex Bochannek provided a patch for rounding timestamps.
20353 - Jan Böcker wrote =org-docview.el=.
20355 - Brad Bozarth showed how to pull RSS feed data into Org files.
20357 - Tom Breton wrote =org-choose.el=.
20359 - Charles Cave's suggestion sparked the implementation of templates
20360   for Remember, which are now templates for capture.
20362 - Pavel Chalmoviansky influenced the agenda treatment of items with
20363   specified time.
20365 - Gregory Chernov patched support for Lisp forms into table
20366   calculations and improved XEmacs compatibility, in particular by
20367   porting =nouline.el= to XEmacs.
20369 - Sacha Chua suggested copying some linking code from Planner.
20371 - Baoqiu Cui contributed the DocBook exporter.
20373 - Eddward DeVilla proposed and tested checkbox statistics.  He also
20374   came up with the idea of properties, and that there should be an API
20375   for them.
20377 - Nick Dokos tracked down several nasty bugs.
20379 - Kees Dullemond used to edit projects lists directly in HTML and so
20380   inspired some of the early development, including HTML export.  He
20381   also asked for a way to narrow wide table columns.
20383 - Thomas S. Dye contributed documentation on Worg and helped
20384   integrating the Org Babel documentation into the manual.
20386 - Christian Egli converted the documentation into Texinfo format,
20387   inspired the agenda, patched CSS formatting into the HTML exporter,
20388   and wrote =org-taskjuggler.el=.
20390 - David Emery provided a patch for custom CSS support in exported HTML
20391   agendas.
20393 - Nic Ferrier contributed mailcap and XOXO support.
20395 - Miguel A.  Figueroa-Villanueva implemented hierarchical checkboxes.
20397 - John Foerch figured out how to make incremental search show context
20398   around a match in a hidden outline tree.
20400 - Raimar Finken wrote =org-git-line.el=.
20402 - Mikael Fornius works as a mailing list moderator.
20404 - Austin Frank works as a mailing list moderator.
20406 - Eric Fraga drove the development of Beamer export with ideas and
20407   testing.
20409 - Barry Gidden did proofreading the manual in preparation for the book
20410   publication through Network Theory Ltd.
20412 - Niels Giesen had the idea to automatically archive DONE trees.
20414 - Nicolas Goaziou rewrote much of the plain list code.
20416 - Kai Grossjohann pointed out key-binding conflicts with other
20417   packages.
20419 - Brian Gough of Network Theory Ltd publishes the Org mode manual as
20420   a book.
20422 - Bernt Hansen has driven much of the support for auto-repeating
20423   tasks, task state change logging, and the clocktable.  His clear
20424   explanations have been critical when we started to adopt the Git
20425   version control system.
20427 - Manuel Hermenegildo has contributed various ideas, small fixes and
20428   patches.
20430 - Phil Jackson wrote =org-irc.el=.
20432 - Scott Jaderholm proposed footnotes, control over whitespace between
20433   folded entries, and column view for properties.
20435 - Matt Jones wrote MobileOrg Android.
20437 - Tokuya Kameshima wrote =org-wl.el= and =org-mew.el=.
20439 - Shidai Liu ("Leo") asked for embedded LaTeX and tested it.  He also
20440   provided frequent feedback and some patches.
20442 - Matt Lundin has proposed last-row references for table formulas and
20443   named invisible anchors.  He has also worked a lot on the FAQ.
20445 - David Maus wrote =org-atom.el=, maintains the issues file for Org,
20446   and is a prolific contributor on the mailing list with competent
20447   replies, small fixes and patches.
20449 - Jason F. McBrayer suggested agenda export to CSV format.
20451 - Max Mikhanosha came up with the idea of refiling.
20453 - Dmitri Minaev sent a patch to set priority limits on a per-file
20454   basis.
20456 - Stefan Monnier provided a patch to keep the Emacs Lisp compiler
20457   happy.
20459 - Richard Moreland wrote MobileOrg for the iPhone.
20461 - Rick Moynihan proposed allowing multiple TODO sequences in a file
20462   and being able to quickly restrict the agenda to a subtree.
20464 - Todd Neal provided patches for links to Info files and Elisp forms.
20466 - Greg Newman refreshed the unicorn logo into its current form.
20468 - Tim O'Callaghan suggested in-file links, search options for general
20469   file links, and tags.
20471 - Osamu Okano wrote =orgcard2ref.pl=, a Perl program to create a text
20472   version of the reference card.
20474 - Takeshi Okano translated the manual and David O'Toole's tutorial
20475   into Japanese.
20477 - Oliver Oppitz suggested multi-state TODO items.
20479 - Scott Otterson sparked the introduction of descriptive text for
20480   links, among other things.
20482 - Pete Phillips helped during the development of the TAGS feature,
20483   and provided frequent feedback.
20485 - Martin Pohlack provided the code snippet to bundle character
20486   insertion into bundles of 20 for undo.
20488 - T.V. Raman reported bugs and suggested improvements.
20490 - Matthias Rempe (Oelde) provided ideas, Windows support, and quality
20491   control.
20493 - Paul Rivier provided the basic implementation of named footnotes.
20494   He also acted as mailing list moderator for some time.
20496 - Kevin Rogers contributed code to access VM files on remote hosts.
20498 - Frank Ruell solved the mystery of the =keymapp nil= bug, a conflict
20499   with =allout.el=.
20501 - Jason Riedy generalized the send-receive mechanism for Orgtbl
20502   tables with extensive patches.
20504 - Philip Rooke created the Org reference card, provided lots of
20505   feedback, developed and applied standards to the Org documentation.
20507 - Christian Schlauer proposed angular brackets around links, among
20508   other things.
20510 - Paul Sexton wrote =org-ctags.el=.
20512 - Tom Shannon's =organizer-mode.el= inspired linking to VM/BBDB/Gnus.
20514 - Ilya Shlyakhter proposed the Archive Sibling, line numbering in
20515   literal examples, and remote highlighting for referenced code lines.
20517 - Stathis Sideris wrote the =ditaa.jar= ASCII to PNG converter that is
20518   now packaged into Org's =contrib/= directory.
20520 - Daniel Sinder came up with the idea of internal archiving by locking
20521   subtrees.
20523 - Dale Smith proposed link abbreviations.
20525 - James TD Smith has contributed a large number of patches for
20526   useful tweaks and features.
20528 - Adam Spiers asked for global linking commands, inspired the link
20529   extension system, added support for Mairix, and proposed the mapping
20530   API.
20532 - Ulf Stegemann created the table to translate special symbols to
20533   HTML, LaTeX, UTF-8, Latin-1 and ASCII.
20535 - Andy Stewart contributed code to =org-w3m.el=, to copy
20536   HTML content with links transformation to Org syntax.
20538 - David O'Toole wrote =org-publish.el= and drafted the
20539   manual chapter about publishing.
20541 - Jambunathan K. contributed the ODT exporter.
20543 - Sebastien Vauban reported many issues with LaTeX and Beamer export
20544   and enabled source code highlighting in Gnus.
20546 - Stefan Vollmar organized a video-recorded talk at the
20547   Max-Planck-Institute for Neurology.  He also inspired the creation
20548   of a concept index for HTML export.
20550 - Jürgen Vollmer contributed code generating the table of contents in
20551   HTML output.
20553 - Samuel Wales has provided important feedback and bug reports.
20555 - Chris Wallace provided a patch implementing the =QUOTE= block.
20557 - David Wainberg suggested archiving, and improvements to the
20558   linking system.
20560 - Carsten Wimmer suggested some changes and helped fix a bug in
20561   linking to Gnus.
20563 - Roland Winkler requested additional key bindings to make Org work on
20564   a TTY.
20566 - Piotr Zielinski wrote =org-mouse.el=, proposed agenda
20567   blocks and contributed various ideas and code snippets.
20569 * GNU Free Documentation License
20570 :PROPERTIES:
20571 :APPENDIX: t
20572 :DESCRIPTION: The license for this documentation.
20573 :END:
20575 #+TEXINFO: @include ../doc/doclicense.texi
20577 * Concept index
20578 :PROPERTIES:
20579 :ALT_TITLE: Main Index
20580 :INDEX:    cp
20581 :DESCRIPTION: An index of Org's concepts and features.
20582 :END:
20584 * Key index
20585 :PROPERTIES:
20586 :DESCRIPTION: Key bindings and where they are described.
20587 :ALT_TITLE: Key Index
20588 :INDEX:    ky
20589 :END:
20591 * Command and function index
20592 :PROPERTIES:
20593 :DESCRIPTION: Command names and some internal functions.
20594 :ALT_TITLE: Command and Function Index
20595 :INDEX:    fn
20596 :END:
20598 * Variable index
20599 :PROPERTIES:
20600 :DESCRIPTION: Variables mentioned in the manual.
20601 :ALT_TITLE: Variable Index
20602 :INDEX:    vr
20603 :END:
20605 This is not a complete index of variables and faces, only the ones
20606 that are mentioned in the manual.  For a more complete list, use
20607 {{{kbd(M-x org-customize)}}} and then click yourself through the tree.
20609 * Copying
20610 :PROPERTIES:
20611 :copying:  t
20612 :END:
20614 This manual is for Org version {{{version}}}.
20616 Copyright \copy 2004--2018  Free Software Foundation, Inc.
20618 #+begin_quote
20619 Permission is granted to copy, distribute and/or modify this document
20620 under the terms of the GNU Free Documentation License, Version 1.3 or
20621 any later version published by the Free Software Foundation; with no
20622 Invariant Sections, with the Front-Cover texts being "A GNU Manual",
20623 and with the Back-Cover Texts as in (a) below.  A copy of the license
20624 is included in the section entitled "GNU Free Documentation License".
20626 (a) The FSF's Back-Cover Text is: "You have the freedom to copy and
20627 modify this GNU manual."
20628 #+end_quote
20630 * Export setup                                                          :noexport:
20632 #+subtitle:  Release {{{version}}}
20633 #+author:    by Carsten Dominik
20634 #+subauthor: with contributions by Bastien Guerry, Nicolas Goaziou, Eric Schulte, Jambunathan K, Dan Davison, Thomas Dye, David O'Toole, and Philip Rooke.
20635 #+date:      {{{modification-time}}}
20636 #+email:     tsd@tsdye.com
20637 #+language:  en
20639 # XXX: We cannot use TODO keyword as a node starts with "TODO".
20640 #+todo: REVIEW FIXME | DONE
20641 #+property: header-args :eval no
20642 #+startup: overview nologdone
20644 #+texinfo_dir_category: Emacs editing modes
20645 #+texinfo_dir_title: Org Mode: (org)
20646 #+texinfo_dir_desc: Outline-based notes management and organizer
20648 # Use proper quote and backtick for code sections in PDF output
20649 # Cf. Texinfo manual 14.2
20650 #+texinfo_header: @set txicodequoteundirected
20651 #+texinfo_header: @set txicodequotebacktick
20653 # Contact Info
20654 #+texinfo_header: @set MAINTAINERSITE @uref{https://orgmode.org,maintainers webpage}
20655 #+texinfo_header: @set MAINTAINER Carsten Dominik
20656 #+texinfo_header: @set MAINTAINEREMAIL @email{carsten at orgmode dot org}
20657 #+texinfo_header: @set MAINTAINERCONTACT @uref{mailto:carsten at orgmode dot org,contact the maintainer}
20659 #+options: H:4 num:t toc:t author:t \n:nil ::t |:t ^:nil -:t f:t *:t <:t e:t ':t
20660 #+options: d:nil todo:nil pri:nil tags:not-in-toc stat:nil broken-links:mark
20661 #+select_tags: export
20662 #+exclude_tags: noexport
20664 #+macro: cite @@texinfo:@cite{@@$1@@texinfo:}@@
20665 #+macro: var @@texinfo:@var{@@$1@@texinfo:}@@
20667 # The "version" macro returns major.minor version number.  This is
20668 # sufficient since bugfix releases are not expected to add features
20669 # and therefore imply manual modifications.
20670 #+macro: version (eval (mapconcat #'identity (cl-subseq (split-string (org-version) "\\.") 0 -1) "."))
20672 # The "kbd" macro turns KBD into @kbd{KBD}.  Additionnally, it
20673 # encloses case-sensitive special keys (SPC, RET...) within @key{...}.
20674 #+macro: kbd (eval (let ((case-fold-search nil) (regexp (regexp-opt '("SPC" "RET" "LFD" "TAB" "BS" "ESC" "DELETE" "SHIFT" "CTRL" "META" "up" "left" "right" "down") 'words))) (format "@@texinfo:@kbd{@@%s@@texinfo:}@@" (replace-regexp-in-string regexp "@@texinfo:@key{@@\\&@@texinfo:}@@" $1 t))))
20676 * Footnotes
20678 [fn:1] If you do not use Font Lock globally turn it on in Org buffer
20679 with ~(add-hook 'org-mode-hook 'turn-on-font-lock)~.
20681 [fn:2] Please consider subscribing to the mailing list in order to
20682 minimize the work the mailing list moderators have to do.
20684 [fn:3] See the variables ~org-special-ctrl-a/e~, ~org-special-ctrl-k~,
20685 and ~org-ctrl-k-protect-subtree~ to configure special behavior of
20686 {{{kbd(C-a)}}}, {{{kbd(C-e)}}}, and {{{kbd(C-k)}}} in headlines.  Note
20687 also that clocking only works with headings indented less than 30
20688 stars.
20690 [fn:4] See, however, the option ~org-cycle-emulate-tab~.
20692 [fn:5] The indirect buffer contains the entire buffer, but is narrowed
20693 to the current tree.  Editing the indirect buffer also changes the
20694 original buffer, but without affecting visibility in that buffer.  For
20695 more information about indirect buffers, see [[info:emacs:Indirect%20Buffers][GNU Emacs Manual]].
20697 [fn:6] When ~org-agenda-inhibit-startup~ is non-~nil~, Org does not
20698 honor the default visibility state when first opening a file for the
20699 agenda (see [[*Speeding up your agendas]]).
20701 [fn:7] See also the variable ~org-show-context-detail~ to decide how
20702 much context is shown around each match.
20704 [fn:8] This depends on the option ~org-remove-highlights-with-change~.
20706 [fn:9] When using =*= as a bullet, lines must be indented so that they
20707 are not interpreted as headlines.  Also, when you are hiding leading
20708 stars to get a clean outline view, plain list items starting with
20709 a star may be hard to distinguish from true headlines.  In short: even
20710 though =*= is supported, it may be better to not use it for plain list
20711 items.
20713 [fn:10] You can filter out any of them by configuring
20714 ~org-plain-list-ordered-item-terminator~.
20716 [fn:11] You can also get =a.=, =A.=, =a)= and =A)= by configuring
20717 ~org-list-allow-alphabetical~.  To minimize confusion with normal
20718 text, those are limited to one character only.  Beyond that limit,
20719 bullets automatically become numbers.
20721 [fn:12] If there's a checkbox in the item, the cookie must be put
20722 /before/ the checkbox.  If you have activated alphabetical lists, you
20723 can also use counters like =[@b]=.
20725 [fn:13] If you do not want the item to be split, customize the
20726 variable ~org-M-RET-may-split-line~.
20728 [fn:14] If you want to cycle around items that way, you may customize
20729 ~org-list-use-circular-motion~.
20731 [fn:15] See ~org-list-use-circular-motion~ for a cyclic behavior.
20733 [fn:16] Many desktops intercept {{{kbd(M-TAB)}}} to switch windows.
20734 Use {{{kbd(C-M-i)}}} or {{{kbd(ESC TAB)}}} instead.
20736 [fn:17] The corresponding in-buffer setting is: =#+STARTUP: fninline=
20737 or =#+STARTUP: nofninline=.
20739 [fn:18] The corresponding in-buffer options are =#+STARTUP: fnadjust=
20740 and =#+STARTUP: nofnadjust=.
20742 [fn:19] To insert a vertical bar into a table field, use =\vert= or,
20743 inside a word =abc\vert{}def=.
20745 [fn:20] Org understands references typed by the user as =B4=, but it
20746 does not use this syntax when offering a formula for editing.  You can
20747 customize this behavior using the variable
20748 ~org-table-use-standard-references~.
20750 [fn:21] The computation time scales as O(N^2) because table
20751 {{{var(FOO)}}} is parsed for each field to be copied.
20753 [fn:22] The file =constants.el= can supply the values of constants in
20754 two different unit systems, =SI= and =cgs=.  Which one is used depends
20755 on the value of the variable ~constants-unit-system~.  You can use the
20756 =STARTUP= options =constSI= and =constcgs= to set this value for the
20757 current buffer.
20759 [fn:23] The printf reformatting is limited in precision because the
20760 value passed to it is converted into an "integer" or "double".  The
20761 "integer" is limited in size by truncating the signed value to 32
20762 bits.  The "double" is limited in precision to 64 bits overall which
20763 leaves approximately 16 significant decimal digits.
20765 [fn:24] Such names must start with an alphabetic character and use
20766 only alphanumeric/underscore characters.
20768 [fn:25] To insert a link targeting a headline, in-buffer completion
20769 can be used.  Just type a star followed by a few optional letters into
20770 the buffer and press {{{kbd(M-TAB)}}}.  All headlines in the current
20771 buffer are offered as completions.
20773 [fn:26] When targeting a =NAME= keyword, =CAPTION= keyword is
20774 mandatory in order to get proper numbering (see [[*Images and tables]]).
20776 [fn:27] The actual behavior of the search depends on the value of the
20777 variable ~org-link-search-must-match-exact-headline~.  If its value is
20778 ~nil~, then a fuzzy text search is done.  If it is ~t~, then only the
20779 exact headline is matched, ignoring spaces and statistic cookies.  If
20780 the value is ~query-to-create~, then an exact headline is searched; if
20781 it is not found, then the user is queried to create it.
20783 [fn:28] If the headline contains a timestamp, it is removed from the
20784 link, which results in a wrong link---you should avoid putting
20785 a timestamp in the headline.
20787 [fn:29] The Org Id library must first be loaded, either through
20788 ~org-customize~, by enabling ~id~ in ~org-modules~, or by adding
20789 ~(require 'org-id)~ in your Emacs init file.
20791 [fn:30] Note that you do not have to use this command to insert
20792 a link.  Links in Org are plain text, and you can type or paste them
20793 straight into the buffer.  By using this command, the links are
20794 automatically enclosed in double brackets, and you will be asked for
20795 the optional descriptive text.
20797 [fn:31] After insertion of a stored link, the link will be removed
20798 from the list of stored links.  To keep it in the list later use, use
20799 a triple {{{kbd(C-u)}}} prefix argument to {{{kbd(C-c C-l)}}}, or
20800 configure the option ~org-keep-stored-link-after-insertion~.
20802 [fn:32] This works if a function has been defined in the ~:complete~
20803 property of a link in ~org-link-parameters~.
20805 [fn:33] See the variable ~org-display-internal-link-with-indirect-buffer~.
20807 [fn:34] The variable ~org-startup-with-inline-images~ can be set
20808 within a buffer with the =STARTUP= options =inlineimages= and
20809 =noinlineimages=.
20811 [fn:35] For backward compatibility, line numbers can also follow a
20812 single colon.
20814 [fn:36] Of course, you can make a document that contains only long
20815 lists of TODO items, but this is not required.
20817 [fn:37] Changing the variable ~org-todo-keywords~ only becomes
20818 effective after restarting Org mode in a buffer.
20820 [fn:38] This is also true for the {{{kbd(t)}}} command in the timeline
20821 and agenda buffers.
20823 [fn:39] All characters are allowed except =@=, =^= and =!=, which have
20824 a special meaning here.
20826 [fn:40] Check also the variable ~org-fast-tag-selection-include-todo~,
20827 it allows you to change the TODO state through the tags interface
20828 ([[*Setting tags]]), in case you like to mingle the two concepts.  Note
20829 that this means you need to come up with unique keys across both sets
20830 of keywords.
20832 [fn:41] Org mode parses these lines only when Org mode is activated
20833 after visiting a file.  {{{kbd(C-c C-c)}}} with the cursor in a line
20834 starting with =#+= is simply restarting Org mode for the current
20835 buffer.
20837 [fn:42] The corresponding in-buffer setting is: =#+STARTUP: logdone=.
20839 [fn:43] The corresponding in-buffer setting is: =#+STARTUP:
20840 lognotedone=.
20842 [fn:44] See the variable ~org-log-states-order-reversed~.
20844 [fn:45] Note that the =LOGBOOK= drawer is unfolded when pressing
20845 {{{kbd(SPC)}}} in the agenda to show an entry---use {{{kbd(C-u
20846 SPC)}}} to keep it folded here.
20848 [fn:46] It is possible that Org mode records two timestamps when you
20849 are using both ~org-log-done~ and state change logging.  However, it
20850 never prompts for two notes: if you have configured both, the state
20851 change recording note takes precedence and cancel the closing note.
20853 [fn:47] See also the option ~org-priority-start-cycle-with-default~.
20855 [fn:48] To keep subtasks out of the global TODO list, see the
20856 ~org-agenda-todo-list-sublevels~.
20858 [fn:49] With the exception of description lists.  But you can allow it
20859 by modifying ~org-list-automatic-rules~ accordingly.
20861 [fn:50] Set the variable ~org-hierarchical-checkbox-statistics~ if you
20862 want such cookies to count all checkboxes below the cookie, not just
20863 those belonging to direct children.
20865 [fn:51] {{{kbd(C-u C-c C-c)}}} on the /first/ item of a list with no
20866 checkbox adds checkboxes to the rest of the list.
20868 [fn:52] As with all these in-buffer settings, pressing {{{kbd(C-c
20869 C-c)}}} activates any changes in the line.
20871 [fn:53] This is only true if the search does not involve more complex
20872 tests including properties (see [[*Property searches]]).
20874 [fn:54] Keys are automatically assigned to tags that have no
20875 configured keys.
20877 [fn:55] If more than one summary type applies to the same property,
20878 the parent values are computed according to the first of them.
20880 [fn:56] An age is defined as a duration, using effort modifiers
20881 defined in ~org-effort-durations~, e.g., =3d 1h=.  If any value in the
20882 column is as such, the summary is also an effort duration.
20884 [fn:57] Please note that the =COLUMNS= definition must be on a single
20885 line; it is wrapped here only because of formatting constraints.
20887 [fn:58] Contributed packages are not part of Emacs, but are
20888 distributed with the main distribution of Org---visit
20889 [[https://orgmode.org]].
20891 [fn:59] The Org date format is inspired by the standard ISO 8601
20892 date/time format.  To use an alternative format, see [[*Custom time
20893 format]].  The day name is optional when you type the date yourself.
20894 However, any date inserted or modified by Org adds that day name, for
20895 reading convenience.
20897 [fn:60] When working with the standard diary sexp functions, you need
20898 to be very careful with the order of the arguments.  That order
20899 depends evilly on the variable ~calendar-date-style~.  For example, to
20900 specify a date December 12, 2005, the call might look like
20901 =(diary-date 12 1 2005)= or =(diary-date 1 12 2005)= or =(diary-date
20902 2005 12 1)=, depending on the settings.  This has been the source of
20903 much confusion.  Org mode users can resort to special versions of
20904 these functions like ~org-date~ or ~org-anniversary~.  These work just
20905 like the corresponding ~diary-~ functions, but with stable ISO order
20906 of arguments (year, month, day) wherever applicable, independent of
20907 the value of ~calendar-date-style~.
20909 [fn:61] See the variable ~org-read-date-prefer-future~.  You may set
20910 that variable to the symbol ~time~ to even make a time before now
20911 shift the date to tomorrow.
20913 [fn:62] If you do not need/want the calendar, configure the variable
20914 ~org-popup-calendar-for-date-prompt~.
20916 [fn:63] If you find this distracting, turn off the display with
20917 ~org-read-date-display-live~.
20919 [fn:64] It will still be listed on that date after it has been marked
20920 DONE.  If you do not like this, set the variable
20921 ~org-agenda-skip-scheduled-if-done~.
20923 [fn:65] The =SCHEDULED= and =DEADLINE= dates are inserted on the line
20924 right below the headline.  Do not put any text between this line and
20925 the headline.
20927 [fn:66] Note the corresponding =STARTUP= options =logredeadline=,
20928 =lognoteredeadline=, and =nologredeadline=.
20930 [fn:67] Note the corresponding =STARTUP= options =logreschedule=,
20931 =lognotereschedule=, and =nologreschedule=.
20933 [fn:68] In fact, the target state is taken from, in this sequence, the
20934 =REPEAT_TO_STATE= property, the variable ~org-todo-repeat-to-state~ if
20935 it is a string, the previous TODO state if ~org-todo-repeat-to-state~
20936 is ~t~, or the first state of the TODO state sequence.
20938 [fn:69] You can change this using the option ~org-log-repeat~, or the
20939 =STARTUP= options =logrepeat=, =lognoterepeat=, and =nologrepeat=.
20940 With =lognoterepeat=, you will also be prompted for a note.
20942 [fn:70] Clocking only works if all headings are indented with less
20943 than 30 stars.  This is a hard-coded limitation of ~lmax~ in
20944 ~org-clock-sum~.
20946 [fn:71] To resume the clock under the assumption that you have worked
20947 on this task while outside Emacs, use ~(setq org-clock-persist t)~.
20949 [fn:72] To add an effort estimate "on the fly", hook a function doing
20950 this to ~org-clock-in-prepare-hook~.
20952 [fn:73] The last reset of the task is recorded by the =LAST_REPEAT=
20953 property.
20955 [fn:74] See also the variable ~org-clock-modeline-total~.
20957 [fn:75] The corresponding in-buffer setting is: =#+STARTUP:
20958 lognoteclock-out=.
20960 [fn:76] Language terms can be set through the variable
20961 ~org-clock-clocktable-language-setup~.
20963 [fn:77] Note that all parameters must be specified in a single
20964 line---the line is broken here only to fit it into the manual.
20966 [fn:78] On computers using Mac OS X, idleness is based on actual user
20967 idleness, not just Emacs' idle time.  For X11, you can install
20968 a utility program =x11idle.c=, available in the =contrib/scripts/=
20969 directory of the Org Git distribution, or install the xprintidle
20970 package and set it to the variable ~org-clock-x11idle-program-name~ if
20971 you are running Debian, to get the same general treatment of idleness.
20972 On other systems, idle time refers to Emacs idle time only.
20974 [fn:79] Please note the pitfalls of summing hierarchical data in
20975 a flat list ([[*Using column view in the agenda]]).
20977 [fn:80] Please select your own key, {{{kbd(C-c c)}}} is only
20978 a suggestion.
20980 [fn:81] Org used to offer four different targets for date/week tree
20981 capture.  Now, Org automatically translates these to use
20982 ~file+olp+datetree~, applying the ~:time-prompt~ and ~:tree-type~
20983 properties.  Please rewrite your date/week-tree targets using
20984 ~file+olp+datetree~ since the older targets are now deprecated.
20986 [fn:82] A date tree is an outline structure with years on the highest
20987 level, months or ISO weeks as sublevels and then dates on the lowest
20988 level.  Tags are allowed in the tree structure.
20990 [fn:83] If you need one of these sequences literally, escape the =%=
20991 with a backslash.
20993 [fn:84] If you define your own link types (see [[*Adding hyperlink
20994 types]]), any property you store with ~org-store-link-props~ can be
20995 accessed in capture templates in a similar way.
20997 [fn:85] This is always the other, not the user.  See the variable
20998 ~org-from-is-user-regexp~.
21000 [fn:86] If you move entries or Org files from one directory to
21001 another, you may want to configure ~org-attach-directory~ to contain
21002 an absolute path.
21004 [fn:87] Note the corresponding =STARTUP= options =logrefile=,
21005 =lognoterefile=, and =nologrefile=.
21007 [fn:88] If the value of that variable is not a list, but a single file
21008 name, then the list of agenda files in maintained in that external
21009 file.
21011 [fn:89] When using the dispatcher, pressing {{{kbd(<)}}} before
21012 selecting a command actually limits the command to the current file,
21013 and ignores ~org-agenda-files~ until the next dispatcher command.
21015 [fn:90] For backward compatibility, you can also press {{{kbd(1)}}} to
21016 restrict to the current buffer.
21018 [fn:91] For backward compatibility, you can also press {{{kbd(0)}}} to
21019 restrict to the current region/subtree.
21021 [fn:92] For backward compatibility, the universal prefix
21022 {{{kbd(C-u)}}} causes all TODO entries to be listed before the agenda.
21023 This feature is deprecated, use the dedicated TODO list, or a block
21024 agenda instead (see [[*Block agenda]]).
21026 [fn:93] The variable ~org-anniversary~ used in the example is just
21027 like ~diary-anniversary~, but the argument order is always according
21028 to ISO and therefore independent of the value of
21029 ~calendar-date-style~.
21031 [fn:94] Custom commands can preset a filter by binding the variable
21032 ~org-agenda-tag-filter-preset~ as an option.  This filter is then
21033 applied to the view and persists as a basic filter through refreshes
21034 and more secondary filtering.  The filter is a global property of the
21035 entire agenda view---in a block agenda, you should only set this in
21036 the global options section, not in the section of an individual block.
21038 [fn:95] Only tags filtering is respected here, effort filtering is
21039 ignored.
21041 [fn:96] You can also create persistent custom functions through
21042 ~org-agenda-bulk-custom-functions~.
21044 [fn:97] This file is parsed for the agenda when
21045 ~org-agenda-include-diary~ is set.
21047 [fn:98] You can provide a description for a prefix key by inserting
21048 a cons cell with the prefix and the description.
21050 [fn:99] /Planned/ means here that these entries have some planning
21051 information attached to them, like a time-stamp, a scheduled or
21052 a deadline string.  See ~org-agenda-entry-types~ on how to set what
21053 planning information is taken into account.
21055 [fn:100] For HTML you need to install Hrvoje Niksic's =htmlize.el=
21056 from [[https://github.com/hniksic/emacs-htmlize][Hrvoje Niksic's repository]].
21058 [fn:101] To create PDF output, the Ghostscript ps2pdf utility must be
21059 installed on the system.  Selecting a PDF file also creates the
21060 postscript file.
21062 [fn:102] If you want to store standard views like the weekly agenda or
21063 the global TODO list as well, you need to define custom commands for
21064 them in order to be able to specify file names.
21066 [fn:103] Quoting depends on the system you use, please check the FAQ
21067 for examples.
21069 [fn:104] This works automatically for the HTML backend (it requires
21070 version 1.34 of the =htmlize.el= package, which you need to install).
21071 Fontified code chunks in LaTeX can be achieved using either the
21072 listings package or the [[https://github.com/gpoore/minted][minted]] package.  Refer to
21073 ~org-export-latex-listings~ for details.
21075 [fn:105] Source code in code blocks may also be evaluated either
21076 interactively or on export.  See [[*Working with source code]] for more
21077 information on evaluating code blocks.
21079 [fn:106] Adding =-k= to =-n -r= /keeps/ the labels in the source code
21080 while using line numbers for the links, which might be useful to
21081 explain those in an Org mode example code.
21083 [fn:107] Upon exit, lines starting with =*=, =,*=, =#+= and =,#+= get
21084 a comma prepended, to keep them from being interpreted by Org as
21085 outline nodes or special syntax.  These commas are stripped when
21086 editing with {{{kbd(C-c ')}}}, and also before export.
21088 [fn:108] You may select a different-mode with the variable
21089 ~org-edit-fixed-width-region-mode~.
21091 [fn:109] You can turn this on by default by setting the variable
21092 ~org-pretty-entities~, or on a per-file base with the =STARTUP= option
21093 =entitiespretty=.
21095 [fn:110] This behaviour can be disabled with =-= export setting (see
21096 [[*Export settings]]).
21098 [fn:111] LaTeX is a macro system based on Donald\nbsp{}E.\nbsp{}Knuth's TeX
21099 system.  Many of the features described here as "LaTeX" are really
21100 from TeX, but for simplicity I am blurring this distinction.
21102 [fn:112] When MathJax is used, only the environments recognized by
21103 MathJax are processed.  When dvipng, dvisvgm, or ImageMagick suite is
21104 used to create images, any LaTeX environment is handled.
21106 [fn:113] These are respectively available at
21107 [[http://sourceforge.net/projects/dvipng/]], [[http://dvisvgm.bplaced.net/]]
21108 and from the ImageMagick suite.  Choose the converter by setting the
21109 variable ~org-preview-latex-default-process~ accordingly.
21111 [fn:114] Org mode has a method to test if the cursor is inside such
21112 a fragment, see the documentation of the function
21113 ~org-inside-LaTeX-fragment-p~.
21115 [fn:115] The variable ~org-export-date-timestamp-format~ defines how
21116 this timestamp are exported.
21118 [fn:116] At the moment, some export back-ends do not obey this
21119 specification.  For example, LaTeX export excludes every unnumbered
21120 headline from the table of contents.
21122 [fn:117] Since commas separate the arguments, commas within arguments
21123 have to be escaped with the backslash character.  So only those
21124 backslash characters before a comma need escaping with another
21125 backslash character.
21127 [fn:118] For a less drastic behavior, consider using a select tag (see
21128 [[*Export settings]]) instead.
21130 [fn:119] If =BEAMER_ENV= is set, Org export adds =B_environment= tag
21131 to make it visible.  The tag serves as a visual aid and has no
21132 semantic relevance.
21134 [fn:120] By default Org loads MathJax from [[https://cdnjs.com][cdnjs.com]] as recommended by
21135 [[http://www.mathjax.org][MathJax]].
21137 [fn:121] See [[http://docs.mathjax.org/en/latest/tex.html#tex-extensions][TeX and LaTeX extensions]] in the [[http://docs.mathjax.org][MathJax manual]] to learn
21138 about extensions.
21140 [fn:122] If the classes on TODO keywords and tags lead to conflicts,
21141 use the variables ~org-html-todo-kwd-class-prefix~ and
21142 ~org-html-tag-class-prefix~ to make them unique.
21144 [fn:123] This does not allow setting different bibliography compilers
21145 for different files.  However, "smart" LaTeX compilation systems, such
21146 as latexmk, can select the correct bibliography compiler.
21148 [fn:124] See [[http://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2.html][Open Document Format for Office Applications
21149 (OpenDocument) Version 1.2]].
21151 [fn:125] See [[http://www.mathtoweb.com/cgi-bin/mathtoweb_home.pl][MathToWeb]].
21153 [fn:126] See [[http://dlmf.nist.gov/LaTeXML/]].
21155 [fn:127] [[http://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2.html][OpenDocument-v1.2 Specification]]
21157 [fn:128] See the =<table:table-template>= element of the
21158 OpenDocument-v1.2 specification.
21160 [fn:129] See the attributes =table:template-name=,
21161 =table:use-first-row-styles=, =table:use-last-row-styles=,
21162 =table:use-first-column-styles=, =table:use-last-column-styles=,
21163 =table:use-banding-rows-styles=, and =table:use-banding-column-styles=
21164 of the =<table:table>= element in the OpenDocument-v1.2 specification.
21166 [fn:130] If the publishing directory is the same as the source
21167 directory, =file.org= is exported as =file.org.org=, so you probably
21168 do not want to do this.
21170 [fn:131] The option ~org-babel-no-eval-on-ctrl-c-ctrl-c~ can be used
21171 to remove code evaluation from the {{{kbd(C-c C-c)}}} key binding.
21173 [fn:132] Actually, the constructs =call_<name>()= and =src_<lang>{}=
21174 are not evaluated when they appear in a keyword line---i.e. lines
21175 starting with =#+KEYWORD:=, see [[*Summary of in-buffer settings]].
21177 [fn:133] For Noweb literate programming details, see
21178 http://www.cs.tufts.edu/~nr/noweb/.
21180 [fn:134] For more information, please refer to the commentary section
21181 in =org-tempo.el=.
21183 [fn:135] Note that ~org-indent-mode~ also sets the ~wrap-prefix~
21184 property, such that ~visual-line-mode~ (or purely setting ~word-wrap~)
21185 wraps long lines (including headlines) correctly indented.
21187 [fn:136] The ~org-indent-mode~ also sets the ~wrap-prefix~ correctly
21188 for indenting and wrapping long lines of headlines or text.  This
21189 minor mode handles ~visual-line-mode~ and directly applied settings
21190 through ~word-wrap~.
21192 [fn:137] Also see the variable ~org-adapt-indentation~.
21194 [fn:138] Because =LEVEL=2= has 3 stars, =LEVEL=3= has 4 stars, and so
21197 [fn:139] https://ctan.org/tex-archive/macros/latex/contrib/comment?lang=en
21199 [fn:140] If the =TBLFM= keyword contains an odd number of dollar
21200 characters, this may cause problems with Font Lock in LaTeX mode.  As
21201 shown in the example you can fix this by adding an extra line inside
21202 the =comment= environment that is used to balance the dollar
21203 expressions.  If you are using AUCTeX with the font-latex library,
21204 a much better solution is to add the =comment= environment to the
21205 variable ~LaTeX-verbatim-environments~.
21207 [fn:141] The ~agenda*~ view is the same as ~agenda~ except that it
21208 only considers /appointments/, i.e., scheduled and deadline items that
21209 have a time specification =[h]h:mm= in their time-stamps.
21211 [fn:142] Note that, for ~org-odd-levels-only~, a level number
21212 corresponds to order in the hierarchy, not to the number of stars.
21214 [fn:143] If Emacs is configured for safe storing of passwords, then
21215 configure the variable, ~org-mobile-encryption-password~; please read
21216 the docstring of that variable.
21218 [fn:144] An alternative is to use a WebDAV server.  MobileOrg
21219 documentation has details of WebDAV server configuration.  Additional
21220 help is at this [[https://orgmode.org/worg/org-faq.html#mobileorg_webdav][FAQ entry]].
21222 [fn:145] Symbolic links in ~org-directory~ need to have the same name
21223 as their targets.
21225 [fn:146] While creating the agendas, Org mode forces ID properties on
21226 all referenced entries, so that these entries can be uniquely
21227 identified if MobileOrg flags them for further action.  To avoid
21228 setting properties configure the variable
21229 ~org-mobile-force-id-on-agenda-items~ to ~nil~.  Org mode then relies
21230 on outline paths, assuming they are unique.
21232 [fn:147] Checksums are stored automatically in the file
21233 =checksums.dat=.
21235 [fn:148] The file will be empty after this operation.