Merge branch 'maint'
[org-mode/org-tableheadings.git] / doc / org.texi
blobbc0ea5ed5260fc9935d20f4546b223fae215bf12
1 \input texinfo  @c -*- coding: utf-8 -*-
2 @c %**start of header
3 @setfilename ../../info/org.info
4 @settitle The Org Manual
5 @include docstyle.texi
7 @include org-version.inc
9 @c Version and Contact Info
10 @set MAINTAINERSITE @uref{http://orgmode.org,maintainers web page}
11 @set AUTHOR Carsten Dominik
12 @set MAINTAINER Carsten Dominik
13 @set MAINTAINEREMAIL @email{carsten at orgmode dot org}
14 @set MAINTAINERCONTACT @uref{mailto:carsten at orgmode dot org,contact the maintainer}
15 @c %**end of header
16 @finalout
19 @c -----------------------------------------------------------------------------
21 @c Macro definitions for commands and keys
22 @c =======================================
24 @c The behavior of the key/command macros will depend on the flag cmdnames
25 @c When set, commands names are shown.  When clear, they are not shown.
27 @set cmdnames
29 @c Below we define the following macros for Org key tables:
31 @c orgkey{key}                        A key item
32 @c orgcmd{key,cmd}                    Key with command name
33 @c xorgcmd{key,cmd}                   Key with command name as @itemx
34 @c orgcmdnki{key,cmd}                 Like orgcmd, but do not index the key
35 @c orgcmdtkc{text,key,cmd}            Like orgcmd,special text instead of key
36 @c orgcmdkkc{key1,key2,cmd}           Two keys with one command name, use "or"
37 @c orgcmdkxkc{key1,key2,cmd}          Two keys with one command name, but
38 @c                                    different functions, so format as @itemx
39 @c orgcmdkskc{key1,key2,cmd}          Same as orgcmdkkc, but use "or short"
40 @c xorgcmdkskc{key1,key2,cmd}         Same as previous, but use @itemx
41 @c orgcmdkkcc{key1,key2,cmd1,cmd2}    Two keys and two commands
43 @c a key but no command
44 @c    Inserts:    @item key
45 @macro orgkey{key}
46 @kindex \key\
47 @item @kbd{\key\}
48 @end macro
50 @macro xorgkey{key}
51 @kindex \key\
52 @itemx @kbd{\key\}
53 @end macro
55 @c one key with a command
56 @c   Inserts:    @item KEY               COMMAND
57 @macro orgcmd{key,command}
58 @ifset cmdnames
59 @kindex \key\
60 @findex \command\
61 @iftex
62 @item @kbd{\key\} @hskip 0pt plus 1filll @code{\command\}
63 @end iftex
64 @ifnottex
65 @item @kbd{\key\} @tie{}@tie{}@tie{}@tie{}(@code{\command\})
66 @end ifnottex
67 @end ifset
68 @ifclear cmdnames
69 @kindex \key\
70 @item @kbd{\key\}
71 @end ifclear
72 @end macro
74 @c One key with one command, formatted using @itemx
75 @c   Inserts:    @itemx KEY               COMMAND
76 @macro xorgcmd{key,command}
77 @ifset cmdnames
78 @kindex \key\
79 @findex \command\
80 @iftex
81 @itemx @kbd{\key\} @hskip 0pt plus 1filll @code{\command\}
82 @end iftex
83 @ifnottex
84 @itemx @kbd{\key\} @tie{}@tie{}@tie{}@tie{}(@code{\command\})
85 @end ifnottex
86 @end ifset
87 @ifclear cmdnames
88 @kindex \key\
89 @itemx @kbd{\key\}
90 @end ifclear
91 @end macro
93 @c one key with a command, bit do not index the key
94 @c   Inserts:    @item KEY               COMMAND
95 @macro orgcmdnki{key,command}
96 @ifset cmdnames
97 @findex \command\
98 @iftex
99 @item @kbd{\key\} @hskip 0pt plus 1filll @code{\command\}
100 @end iftex
101 @ifnottex
102 @item @kbd{\key\} @tie{}@tie{}@tie{}@tie{}(@code{\command\})
103 @end ifnottex
104 @end ifset
105 @ifclear cmdnames
106 @item @kbd{\key\}
107 @end ifclear
108 @end macro
110 @c one key with a command, and special text to replace key in item
111 @c   Inserts:    @item TEXT                    COMMAND
112 @macro orgcmdtkc{text,key,command}
113 @ifset cmdnames
114 @kindex \key\
115 @findex \command\
116 @iftex
117 @item @kbd{\text\} @hskip 0pt plus 1filll @code{\command\}
118 @end iftex
119 @ifnottex
120 @item @kbd{\text\} @tie{}@tie{}@tie{}@tie{}(@code{\command\})
121 @end ifnottex
122 @end ifset
123 @ifclear cmdnames
124 @kindex \key\
125 @item @kbd{\text\}
126 @end ifclear
127 @end macro
129 @c two keys with one command
130 @c   Inserts:    @item KEY1 or KEY2            COMMAND
131 @macro orgcmdkkc{key1,key2,command}
132 @ifset cmdnames
133 @kindex \key1\
134 @kindex \key2\
135 @findex \command\
136 @iftex
137 @item @kbd{\key1\} @ @r{or} @ @kbd{\key2\} @hskip 0pt plus 1filll @code{\command\}
138 @end iftex
139 @ifnottex
140 @item @kbd{\key1\} @ @r{or} @ @kbd{\key2\} @tie{}@tie{}@tie{}@tie{}(@code{\command\})
141 @end ifnottex
142 @end ifset
143 @ifclear cmdnames
144 @kindex \key1\
145 @kindex \key2\
146 @item @kbd{\key1\} @ @r{or} @ @kbd{\key2\}
147 @end ifclear
148 @end macro
150 @c Two keys with one command name, but different functions, so format as
151 @c @itemx
152 @c   Inserts:    @item KEY1
153 @c               @itemx KEY2                COMMAND
154 @macro orgcmdkxkc{key1,key2,command}
155 @ifset cmdnames
156 @kindex \key1\
157 @kindex \key2\
158 @findex \command\
159 @iftex
160 @item @kbd{\key1\}
161 @itemx @kbd{\key2\} @hskip 0pt plus 1filll @code{\command\}
162 @end iftex
163 @ifnottex
164 @item @kbd{\key1\}
165 @itemx @kbd{\key2\} @tie{}@tie{}@tie{}@tie{}(@code{\command\})
166 @end ifnottex
167 @end ifset
168 @ifclear cmdnames
169 @kindex \key1\
170 @kindex \key2\
171 @item @kbd{\key1\}
172 @itemx @kbd{\key2\}
173 @end ifclear
174 @end macro
176 @c Same as previous, but use "or short"
177 @c   Inserts:    @item KEY1 or short KEY2            COMMAND
178 @macro orgcmdkskc{key1,key2,command}
179 @ifset cmdnames
180 @kindex \key1\
181 @kindex \key2\
182 @findex \command\
183 @iftex
184 @item @kbd{\key1\} @ @r{or short} @ @kbd{\key2\} @hskip 0pt plus 1filll @code{\command\}
185 @end iftex
186 @ifnottex
187 @item @kbd{\key1\} @ @r{or short} @ @kbd{\key2\} @tie{}@tie{}@tie{}@tie{}(@code{\command\})
188 @end ifnottex
189 @end ifset
190 @ifclear cmdnames
191 @kindex \key1\
192 @kindex \key2\
193 @item @kbd{\key1\} @ @r{or short} @ @kbd{\key2\}
194 @end ifclear
195 @end macro
197 @c Same as previous, but use @itemx
198 @c   Inserts:    @itemx KEY1 or short KEY2            COMMAND
199 @macro xorgcmdkskc{key1,key2,command}
200 @ifset cmdnames
201 @kindex \key1\
202 @kindex \key2\
203 @findex \command\
204 @iftex
205 @itemx @kbd{\key1\} @ @r{or short} @ @kbd{\key2\} @hskip 0pt plus 1filll @code{\command\}
206 @end iftex
207 @ifnottex
208 @itemx @kbd{\key1\} @ @r{or short} @ @kbd{\key2\} @tie{}@tie{}@tie{}@tie{}(@code{\command\})
209 @end ifnottex
210 @end ifset
211 @ifclear cmdnames
212 @kindex \key1\
213 @kindex \key2\
214 @itemx @kbd{\key1\} @ @r{or short} @ @kbd{\key2\}
215 @end ifclear
216 @end macro
218 @c two keys with two commands
219 @c   Inserts:    @item KEY1                        COMMAND1
220 @c               @itemx KEY2                       COMMAND2
221 @macro orgcmdkkcc{key1,key2,command1,command2}
222 @ifset cmdnames
223 @kindex \key1\
224 @kindex \key2\
225 @findex \command1\
226 @findex \command2\
227 @iftex
228 @item @kbd{\key1\} @hskip 0pt plus 1filll @code{\command1\}
229 @itemx @kbd{\key2\} @hskip 0pt plus 1filll @code{\command2\}
230 @end iftex
231 @ifnottex
232 @item @kbd{\key1\} @tie{}@tie{}@tie{}@tie{}(@code{\command1\})
233 @itemx @kbd{\key2\} @tie{}@tie{}@tie{}@tie{}(@code{\command2\})
234 @end ifnottex
235 @end ifset
236 @ifclear cmdnames
237 @kindex \key1\
238 @kindex \key2\
239 @item @kbd{\key1\}
240 @itemx @kbd{\key2\}
241 @end ifclear
242 @end macro
243 @c -----------------------------------------------------------------------------
245 @iftex
246 @c @hyphenation{time-stamp time-stamps time-stamp-ing time-stamp-ed}
247 @end iftex
249 @c Subheadings inside a table.
250 @macro tsubheading{text}
251 @ifinfo
252 @subsubheading \text\
253 @end ifinfo
254 @ifnotinfo
255 @item @b{\text\}
256 @end ifnotinfo
257 @end macro
259 @copying
260 This manual is for Org version @value{VERSION}.
262 Copyright @copyright{} 2004--2017 Free Software Foundation, Inc.
264 @quotation
265 Permission is granted to copy, distribute and/or modify this document
266 under the terms of the GNU Free Documentation License, Version 1.3 or
267 any later version published by the Free Software Foundation; with no
268 Invariant Sections, with the Front-Cover Texts being ``A GNU Manual,''
269 and with the Back-Cover Texts as in (a) below.  A copy of the license
270 is included in the section entitled ``GNU Free Documentation License.''
272 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
273 modify this GNU manual.''
274 @end quotation
275 @end copying
277 @dircategory Emacs editing modes
278 @direntry
279 * Org Mode: (org).      Outline-based notes management and organizer
280 @end direntry
282 @titlepage
283 @title The Org Manual
285 @subtitle Release @value{VERSION}
286 @author by Carsten Dominik
287 with contributions by Bastien Guerry, Nicolas Goaziou, Eric Schulte,
288 Jambunathan K, Dan Davison, Thomas Dye, David O'Toole, and Philip Rooke.
290 @c The following two commands start the copyright page.
291 @page
292 @vskip 0pt plus 1filll
293 @insertcopying
294 @end titlepage
296 @c Output the short table of contents at the beginning.
297 @shortcontents
299 @c Output the table of contents at the beginning.
300 @contents
302 @ifnottex
304 @node Top, Introduction, (dir), (dir)
305 @top Org Mode Manual
307 @insertcopying
308 @end ifnottex
310 @menu
311 * Introduction::                Getting started
312 * Document structure::          A tree works like your brain
313 * Tables::                      Pure magic for quick formatting
314 * Hyperlinks::                  Notes in context
315 * TODO items::                  Every tree branch can be a TODO item
316 * Tags::                        Tagging headlines and matching sets of tags
317 * Properties and columns::      Storing information about an entry
318 * Dates and times::             Making items useful for planning
319 * Capture - Refile - Archive::  The ins and outs for projects
320 * Agenda views::                Collecting information into views
321 * Markup::                      Prepare text for rich export
322 * Exporting::                   Sharing and publishing notes
323 * Publishing::                  Create a web site of linked Org files
324 * Working with source code::    Export, evaluate, and tangle code blocks
325 * Miscellaneous::               All the rest which did not fit elsewhere
326 * Hacking::                     How to hack your way around
327 * MobileOrg::                   Viewing and capture on a mobile device
328 * History and acknowledgments::  How Org came into being
329 * GNU Free Documentation License::  The license for this documentation.
330 * Main Index::                  An index of Org's concepts and features
331 * Key Index::                   Key bindings and where they are described
332 * Command and Function Index::  Command names and some internal functions
333 * Variable Index::              Variables mentioned in the manual
335 @detailmenu
336  --- The Detailed Node Listing ---
338 Introduction
340 * Summary::                     Brief summary of what Org does
341 * Installation::                Installing Org
342 * Activation::                  How to activate Org for certain buffers
343 * Feedback::                    Bug reports, ideas, patches etc.
344 * Conventions::                 Typesetting conventions in the manual
346 Document structure
348 * Outlines::                    Org is based on Outline mode
349 * Headlines::                   How to typeset Org tree headlines
350 * Visibility cycling::          Show and hide, much simplified
351 * Motion::                      Jumping to other headlines
352 * Structure editing::           Changing sequence and level of headlines
353 * Sparse trees::                Matches embedded in context
354 * Plain lists::                 Additional structure within an entry
355 * Drawers::                     Tucking stuff away
356 * Blocks::                      Folding blocks
357 * Footnotes::                   How footnotes are defined in Org's syntax
358 * Orgstruct mode::              Structure editing outside Org
359 * Org syntax::                  Formal description of Org's syntax
361 Visibility cycling
363 * Global and local cycling::    Cycling through various visibility states
364 * Initial visibility::          Setting the initial visibility state
365 * Catching invisible edits::    Preventing mistakes when editing invisible parts
367 Tables
369 * Built-in table editor::       Simple tables
370 * Column width and alignment::  Overrule the automatic settings
371 * Column groups::               Grouping to trigger vertical lines
372 * Orgtbl mode::                 The table editor as minor mode
373 * The spreadsheet::             The table editor has spreadsheet capabilities
374 * Org-Plot::                    Plotting from org tables
376 The spreadsheet
378 * References::                  How to refer to another field or range
379 * Formula syntax for Calc::     Using Calc to compute stuff
380 * Formula syntax for Lisp::     Writing formulas in Emacs Lisp
381 * Durations and time values::   How to compute durations and time values
382 * Field and range formulas::    Formula for specific (ranges of) fields
383 * Column formulas::             Formulas valid for an entire column
384 * Lookup functions::            Lookup functions for searching tables
385 * Editing and debugging formulas::  Fixing formulas
386 * Updating the table::          Recomputing all dependent fields
387 * Advanced features::           Field and column names, parameters and automatic recalc
389 Hyperlinks
391 * Link format::                 How links in Org are formatted
392 * Internal links::              Links to other places in the current file
393 * External links::              URL-like links to the world
394 * Handling links::              Creating, inserting and following
395 * Using links outside Org::     Linking from my C source code?
396 * Link abbreviations::          Shortcuts for writing complex links
397 * Search options::              Linking to a specific location
398 * Custom searches::             When the default search is not enough
400 Internal links
402 * Radio targets::               Make targets trigger links in plain text
404 TODO items
406 * TODO basics::                 Marking and displaying TODO entries
407 * TODO extensions::             Workflow and assignments
408 * Progress logging::            Dates and notes for progress
409 * Priorities::                  Some things are more important than others
410 * Breaking down tasks::         Splitting a task into manageable pieces
411 * Checkboxes::                  Tick-off lists
413 Extended use of TODO keywords
415 * Workflow states::             From TODO to DONE in steps
416 * TODO types::                  I do this, Fred does the rest
417 * Multiple sets in one file::   Mixing it all, and still finding your way
418 * Fast access to TODO states::  Single letter selection of a state
419 * Per-file keywords::           Different files, different requirements
420 * Faces for TODO keywords::     Highlighting states
421 * TODO dependencies::           When one task needs to wait for others
423 Progress logging
425 * Closing items::               When was this entry marked DONE?
426 * Tracking TODO state changes::  When did the status change?
427 * Tracking your habits::        How consistent have you been?
429 Tags
431 * Tag inheritance::             Tags use the tree structure of the outline
432 * Setting tags::                How to assign tags to a headline
433 * Tag hierarchy::               Create a hierarchy of tags
434 * Tag searches::                Searching for combinations of tags
436 Properties and columns
438 * Property syntax::             How properties are spelled out
439 * Special properties::          Access to other Org mode features
440 * Property searches::           Matching property values
441 * Property inheritance::        Passing values down the tree
442 * Column view::                 Tabular viewing and editing
443 * Property API::                Properties for Lisp programmers
445 Column view
447 * Defining columns::            The COLUMNS format property
448 * Using column view::           How to create and use column view
449 * Capturing column view::       A dynamic block for column view
451 Defining columns
453 * Scope of column definitions::  Where defined, where valid?
454 * Column attributes::           Appearance and content of a column
456 Dates and times
458 * Timestamps::                  Assigning a time to a tree entry
459 * Creating timestamps::         Commands which insert timestamps
460 * Deadlines and scheduling::    Planning your work
461 * Clocking work time::          Tracking how long you spend on a task
462 * Effort estimates::            Planning work effort in advance
463 * Timers::                      Notes with a running timer
465 Creating timestamps
467 * The date/time prompt::        How Org mode helps you entering date and time
468 * Custom time format::          Making dates look different
470 Deadlines and scheduling
472 * Inserting deadline/schedule::  Planning items
473 * Repeated tasks::              Items that show up again and again
475 Clocking work time
477 * Clocking commands::           Starting and stopping a clock
478 * The clock table::             Detailed reports
479 * Resolving idle time::         Resolving time when you've been idle
481 Capture - Refile - Archive
483 * Capture::                     Capturing new stuff
484 * Attachments::                 Add files to tasks
485 * RSS feeds::                   Getting input from RSS feeds
486 * Protocols::                   External (e.g., Browser) access to Emacs and Org
487 * Refile and copy::             Moving/copying a tree from one place to another
488 * Archiving::                   What to do with finished projects
490 Capture
492 * Setting up capture::          Where notes will be stored
493 * Using capture::               Commands to invoke and terminate capture
494 * Capture templates::           Define the outline of different note types
496 Capture templates
498 * Template elements::           What is needed for a complete template entry
499 * Template expansion::          Filling in information about time and context
500 * Templates in contexts::       Only show a template in a specific context
502 Protocols for external access
504 * @code{store-link} protocol::  Store a link, push URL to kill-ring.
505 * @code{capture} protocol::     Fill a buffer with external information.
506 * @code{open-source} protocol::  Edit published contents.
508 Archiving
510 * Moving subtrees::             Moving a tree to an archive file
511 * Internal archiving::          Switch off a tree but keep it in the file
513 Agenda views
515 * Agenda files::                Files being searched for agenda information
516 * Agenda dispatcher::           Keyboard access to agenda views
517 * Built-in agenda views::       What is available out of the box?
518 * Presentation and sorting::    How agenda items are prepared for display
519 * Agenda commands::             Remote editing of Org trees
520 * Custom agenda views::         Defining special searches and views
521 * Exporting agenda views::      Writing a view to a file
522 * Agenda column view::          Using column view for collected entries
524 The built-in agenda views
526 * Weekly/daily agenda::         The calendar page with current tasks
527 * Global TODO list::            All unfinished action items
528 * Matching tags and properties::  Structured information with fine-tuned search
529 * Search view::                 Find entries by searching for text
530 * Stuck projects::              Find projects you need to review
532 Presentation and sorting
534 * Categories::                  Not all tasks are equal
535 * Time-of-day specifications::  How the agenda knows the time
536 * Sorting agenda items::        The order of things
537 * Filtering/limiting agenda items::  Dynamically narrow the agenda
539 Custom agenda views
541 * Storing searches::            Type once, use often
542 * Block agenda::                All the stuff you need in a single buffer
543 * Setting options::             Changing the rules
545 Markup for rich export
547 * Paragraphs::                  The basic unit of text
548 * Emphasis and monospace::      Bold, italic, etc.
549 * Horizontal rules::            Make a line
550 * Images and tables::           Images, tables and caption mechanism
551 * Literal examples::            Source code examples with special formatting
552 * Special symbols::             Greek letters and other symbols
553 * Subscripts and superscripts::  Simple syntax for raising/lowering text
554 * Embedded @LaTeX{}::           LaTeX can be freely used inside Org documents
556 Embedded @LaTeX{}
558 * @LaTeX{} fragments::          Complex formulas made easy
559 * Previewing @LaTeX{} fragments::  What will this snippet look like?
560 * CDLaTeX mode::                Speed up entering of formulas
562 Exporting
564 * The export dispatcher::       The main interface
565 * Export settings::             Common export settings
566 * Table of contents::           The if and where of the table of contents
567 * Include files::               Include additional files into a document
568 * Macro replacement::           Use macros to create templates
569 * Comment lines::               What will not be exported
570 * ASCII/Latin-1/UTF-8 export::  Exporting to flat files with encoding
571 * Beamer export::               Exporting as a Beamer presentation
572 * HTML export::                 Exporting to HTML
573 * @LaTeX{} export::             Exporting to @LaTeX{}, and processing to PDF
574 * Markdown export::             Exporting to Markdown
575 * OpenDocument Text export::    Exporting to OpenDocument Text
576 * Org export::                  Exporting to Org
577 * Texinfo export::              Exporting to Texinfo
578 * iCalendar export::            Exporting to iCalendar
579 * Other built-in back-ends::    Exporting to a man page
580 * Advanced configuration::      Fine-tuning the export output
581 * Export in foreign buffers::   Author tables and lists in Org syntax
583 Beamer export
585 * Beamer export commands::      For creating Beamer documents.
586 * Beamer specific export settings::  For customizing Beamer export.
587 * Sectioning Frames and Blocks in Beamer::  For composing Beamer slides.
588 * Beamer specific syntax::      For using in Org documents.
589 * Editing support::             For using helper functions.
590 * A Beamer example::            A complete presentation.
592 HTML export
594 * HTML Export commands::        Invoking HTML export
595 * HTML Specific export settings::  Settings for HTML export
596 * HTML doctypes::               Exporting various (X)HTML flavors
597 * HTML preamble and postamble::  Inserting preamble and postamble
598 * Quoting HTML tags::           Using direct HTML in Org files
599 * Links in HTML export::        Interpreting and formatting links
600 * Tables in HTML export::       Formatting and modifying tables
601 * Images in HTML export::       Inserting figures with HTML output
602 * Math formatting in HTML export::  Handling math equations
603 * Text areas in HTML export::   Showing an alternate approach, an example
604 * CSS support::                 Styling HTML output
605 * JavaScript support::          Folding scripting in the web browser
607 @LaTeX{} export
609 * @LaTeX{} export commands::    For producing @LaTeX{} and PDF documents.
610 * @LaTeX{} specific export settings::  Unique to this @LaTeX{} back-end.
611 * @LaTeX{} header and sectioning::  For file structure.
612 * Quoting @LaTeX{} code::       Directly in the Org document.
613 * Tables in @LaTeX{} export::   Attributes specific to tables.
614 * Images in @LaTeX{} export::   Attributes specific to images.
615 * Plain lists in @LaTeX{} export::  Attributes specific to lists.
616 * Source blocks in @LaTeX{} export::  Attributes specific to source code blocks.
617 * Example blocks in @LaTeX{} export::  Attributes specific to example blocks.
618 * Special blocks in @LaTeX{} export::  Attributes specific to special blocks.
619 * Horizontal rules in @LaTeX{} export::  Attributes specific to horizontal rules.
621 OpenDocument Text export
623 * Pre-requisites for ODT export::  Required packages.
624 * ODT export commands::         Invoking export.
625 * ODT specific export settings::  Configuration options.
626 * Extending ODT export::        Producing @file{.doc}, @file{.pdf} files.
627 * Applying custom styles::      Styling the output.
628 * Links in ODT export::         Handling and formatting links.
629 * Tables in ODT export::        Org table conversions.
630 * Images in ODT export::        Inserting images.
631 * Math formatting in ODT export::  Formatting @LaTeX{} fragments.
632 * Labels and captions in ODT export::  Rendering objects.
633 * Literal examples in ODT export::  For source code and example blocks.
634 * Advanced topics in ODT export::  For power users.
636 Math formatting in ODT export
638 * Working with @LaTeX{} math snippets::  Embedding in @LaTeX{} format.
639 * Working with MathML or OpenDocument formula files::  Embedding in native format.
641 Advanced topics in ODT export
643 * Configuring a document converter::  Registering a document converter.
644 * Working with OpenDocument style files::  Exploring internals.
645 * Creating one-off styles::     Customizing styles, highlighting.
646 * Customizing tables in ODT export::  Defining table templates.
647 * Validating OpenDocument XML::  Debugging corrupted OpenDocument files.
649 Texinfo export
651 * Texinfo export commands::     Invoking commands.
652 * Texinfo specific export settings::  Setting the environment.
653 * Texinfo file header::         Generating the header.
654 * Texinfo title and copyright page::  Creating preamble pages.
655 * Info directory file::     Installing a manual in Info file hierarchy.
656 * Headings and sectioning structure::  Building document structure.
657 * Indices::                     Creating indices.
658 * Quoting Texinfo code::        Incorporating literal Texinfo code.
659 * Plain lists in Texinfo export::  List attributes.
660 * Tables in Texinfo export::    Table attributes.
661 * Images in Texinfo export::    Image attributes.
662 * Special blocks in Texinfo export::  Special block attributes.
663 * A Texinfo example::           Processing Org to Texinfo.
665 Publishing
667 * Configuration::               Defining projects
668 * Uploading files::             How to get files up on the server
669 * Sample configuration::        Example projects
670 * Triggering publication::      Publication commands
672 Configuration
674 * Project alist::               The central configuration variable
675 * Sources and destinations::    From here to there
676 * Selecting files::             What files are part of the project?
677 * Publishing action::           Setting the function doing the publishing
678 * Publishing options::          Tweaking HTML/@LaTeX{} export
679 * Publishing links::            Which links keep working after publishing?
680 * Sitemap::                     Generating a list of all pages
681 * Generating an index::         An index that reaches across pages
683 Sample configuration
685 * Simple example::              One-component publishing
686 * Complex example::             A multi-component publishing example
688 Working with source code
690 * Structure of code blocks::    Code block syntax described
691 * Editing source code::         Language major-mode editing
692 * Exporting code blocks::       Export contents and/or results
693 * Extracting source code::      Create pure source code files
694 * Evaluating code blocks::      Place results of evaluation in the Org mode buffer
695 * Library of Babel::            Use and contribute to a library of useful code blocks
696 * Languages::                   List of supported code block languages
697 * Header arguments::            Configure code block functionality
698 * Results of evaluation::       How evaluation results are handled
699 * Noweb reference syntax::      Literate programming in Org mode
700 * Key bindings and useful functions::  Work quickly with code blocks
701 * Batch execution::             Call functions from the command line
703 Header arguments
705 * Using header arguments::      Different ways to set header arguments
706 * Specific header arguments::   List of header arguments
708 Using header arguments
710 * System-wide header arguments::  Set globally, language-specific
711 * Language-specific header arguments::  Set in the Org file's headers
712 * Header arguments in Org mode properties::  Set in the Org file
713 * Language-specific mode properties::
714 * Code block specific header arguments::  The most commonly used method
715 * Arguments in function calls::  The most specific level, takes highest priority
717 Specific header arguments
719 * var::                         Pass arguments to @samp{src} code blocks
720 * results::                     Specify results type; how to collect
721 * file::                        Specify a path for output file
722 * file-desc::                   Specify a description for file results
723 * file-ext::                    Specify an extension for file output
724 * output-dir::                  Specify a directory for output file
725 * dir::                         Specify the default directory for code block execution
726 * exports::                     Specify exporting code, results, both, none
727 * tangle::                      Toggle tangling; or specify file name
728 * mkdirp::                      Toggle for parent directory creation for target files during tangling
729 * comments::                    Toggle insertion of comments in tangled code files
730 * padline::                     Control insertion of padding lines in tangled code files
731 * no-expand::                   Turn off variable assignment and noweb expansion during tangling
732 * session::                     Preserve the state of code evaluation
733 * noweb::                       Toggle expansion of noweb references
734 * noweb-ref::                   Specify block's noweb reference resolution target
735 * noweb-sep::                   String to separate noweb references
736 * cache::                       Avoid re-evaluating unchanged code blocks
737 * sep::                         Delimiter for writing tabular results outside Org
738 * hlines::                      Handle horizontal lines in tables
739 * colnames::                    Handle column names in tables
740 * rownames::                    Handle row names in tables
741 * shebang::                     Make tangled files executable
742 * tangle-mode::                 Set permission of tangled files
743 * eval::                        Limit evaluation of specific code blocks
744 * wrap::                        Mark source block evaluation results
745 * post::                        Post processing of results of code block evaluation
746 * prologue::                    Text to prepend to body of code block
747 * epilogue::                    Text to append to body of code block
749 Miscellaneous
751 * Completion::                  M-TAB guesses completions
752 * Easy templates::              Quick insertion of structural elements
753 * Speed keys::                  Electric commands at the beginning of a headline
754 * Code evaluation security::    Org mode files evaluate inline code
755 * Customization::               Adapting Org to changing tastes
756 * In-buffer settings::          Overview of the #+KEYWORDS
757 * The very busy C-c C-c key::   When in doubt, press C-c C-c
758 * Clean view::                  Getting rid of leading stars in the outline
759 * TTY keys::                    Using Org on a tty
760 * Interaction::                 With other Emacs packages
761 * org-crypt::                   Encrypting Org files
763 Interaction with other packages
765 * Cooperation::                 Packages Org cooperates with
766 * Conflicts::                   Packages that lead to conflicts
768 Hacking
770 * Hooks::                       How to reach into Org's internals
771 * Add-on packages::             Available extensions
772 * Adding hyperlink types::      New custom link types
773 * Adding export back-ends::     How to write new export back-ends
774 * Context-sensitive commands::  How to add functionality to such commands
775 * Tables in arbitrary syntax::  Orgtbl for @LaTeX{} and other programs
776 * Dynamic blocks::              Automatically filled blocks
777 * Special agenda views::        Customized views
778 * Speeding up your agendas::    Tips on how to speed up your agendas
779 * Extracting agenda information::  Post-processing of agenda information
780 * Using the property API::      Writing programs that use entry properties
781 * Using the mapping API::       Mapping over all or selected entries
783 Tables and lists in arbitrary syntax
785 * Radio tables::                Sending and receiving radio tables
786 * A @LaTeX{} example::          Step by step, almost a tutorial
787 * Translator functions::        Copy and modify
788 * Radio lists::                 Sending and receiving lists
790 MobileOrg
792 * Setting up the staging area::  For the mobile device
793 * Pushing to MobileOrg::        Uploading Org files and agendas
794 * Pulling from MobileOrg::      Integrating captured and flagged items
796 @end detailmenu
797 @end menu
799 @node Introduction
800 @chapter Introduction
801 @cindex introduction
803 @menu
804 * Summary::                     Brief summary of what Org does
805 * Installation::                Installing Org
806 * Activation::                  How to activate Org for certain buffers
807 * Feedback::                    Bug reports, ideas, patches etc.
808 * Conventions::                 Typesetting conventions in the manual
809 @end menu
811 @node Summary
812 @section Summary
813 @cindex summary
815 Org is a mode for keeping notes, maintaining TODO lists, and project planning
816 with a fast and effective plain-text system.  It also is an authoring system
817 with unique support for literate programming and reproducible research.
819 Org is implemented on top of Outline mode, which makes it possible to keep
820 the content of large files well structured.  Visibility cycling and structure
821 editing help to work with the tree.  Tables are easily created with a
822 built-in table editor.  Plain text URL-like links connect to websites,
823 emails, Usenet messages, BBDB entries, and any files related to the projects.
825 Org develops organizational tasks around notes files that contain lists or
826 information about projects as plain text.  Project planning and task
827 management makes use of metadata which is part of an outline node.  Based on
828 this data, specific entries can be extracted in queries and create dynamic
829 @i{agenda views} that also integrate the Emacs calendar and diary.  Org can
830 be used to implement many different project planning schemes, such as David
831 Allen's GTD system.
833 Org files can serve as a single source authoring system with export to many
834 different formats such as HTML, @LaTeX{}, Open Document, and Markdown.  New
835 export backends can be derived from existing ones, or defined from scratch.
837 Org files can include source code blocks, which makes Org uniquely suited for
838 authoring technical documents with code examples.  Org source code blocks are
839 fully functional; they can be evaluated in place and their results can be
840 captured in the file.  This makes it possible to create a single file
841 reproducible research compendium.
843 Org keeps simple things simple.  When first fired up, it should feel like a
844 straightforward, easy to use outliner.  Complexity is not imposed, but a
845 large amount of functionality is available when needed.  Org is a toolbox.
846 Many users actually run only a (very personal) fraction of Org's capabilities, and
847 know that there is more whenever they need it.
849 All of this is achieved with strictly plain text files, the most portable and
850 future-proof file format.  Org runs in Emacs.  Emacs is one of the most
851 widely ported programs, so that Org mode is available on every major
852 platform.
854 @cindex FAQ
855 There is a website for Org which provides links to the newest
856 version of Org, as well as additional information, frequently asked
857 questions (FAQ), links to tutorials, etc.  This page is located at
858 @uref{http://orgmode.org}.
859 @cindex print edition
861 An earlier version (7.3) of this manual is available as a
862 @uref{http://www.network-theory.co.uk/org/manual/, paperback book from
863 Network Theory Ltd.}
865 @page
867 @node Installation
868 @section Installation
869 @cindex installation
871 Org is part of recent distributions of GNU Emacs, so you normally don't need
872 to install it.  If, for one reason or another, you want to install Org on top
873 of this pre-packaged version, there are three ways to do it:
875 @itemize @bullet
876 @item By using Emacs package system.
877 @item By downloading Org as an archive.
878 @item By using Org's git repository.
879 @end itemize
881 We @b{strongly recommend} to stick to a single installation method.
883 @subsubheading Using Emacs packaging system
885 Recent Emacs distributions include a packaging system which lets you install
886 Elisp libraries.  You can install Org with @kbd{M-x package-install RET org}.
888 @noindent @b{Important}: you need to do this in a session where no @code{.org} file has
889 been visited, i.e., where no Org built-in function have been loaded.
890 Otherwise autoload Org functions will mess up the installation.
892 Then, to make sure your Org configuration is taken into account, initialize
893 the package system with @code{(package-initialize)} in your Emacs init file
894 before setting any Org option.  If you want to use Org's package repository,
895 check out the @uref{http://orgmode.org/elpa.html, Org ELPA page}.
897 @subsubheading Downloading Org as an archive
899 You can download Org latest release from @uref{http://orgmode.org/, Org's
900 website}.  In this case, make sure you set the load-path correctly in your
901 Emacs init file:
903 @lisp
904 (add-to-list 'load-path "~/path/to/orgdir/lisp")
905 @end lisp
907 The downloaded archive contains contributed libraries that are not included
908 in Emacs.  If you want to use them, add the @file{contrib} directory to your
909 load-path:
911 @lisp
912 (add-to-list 'load-path "~/path/to/orgdir/contrib/lisp" t)
913 @end lisp
915 Optionally, you can compile the files and/or install them in your system.
916 Run @code{make help} to list compilation and installation options.
918 @subsubheading Using Org's git repository
920 You can clone Org's repository and install Org like this:
922 @example
923 $ cd ~/src/
924 $ git clone git://orgmode.org/org-mode.git
925 $ make autoloads
926 @end example
928 Note that in this case, @code{make autoloads} is mandatory: it defines Org's
929 version in @file{org-version.el} and Org's autoloads in
930 @file{org-loaddefs.el}.
932 Remember to add the correct load-path as described in the method above.
934 You can also compile with @code{make}, generate the documentation with
935 @code{make doc}, create a local configuration with @code{make config} and
936 install Org with @code{make install}.  Please run @code{make help} to get
937 the list of compilation/installation options.
939 For more detailed explanations on Org's build system, please check the Org
940 Build System page on @uref{http://orgmode.org/worg/dev/org-build-system.html,
941 Worg}.
943 @node Activation
944 @section Activation
945 @cindex activation
946 @cindex autoload
947 @cindex ELPA
948 @cindex global key bindings
949 @cindex key bindings, global
950 @findex org-agenda
951 @findex org-capture
952 @findex org-store-link
953 @findex org-iswitchb
955 Org mode buffers need font-lock to be turned on: this is the default in
956 Emacs@footnote{If you don't use font-lock globally, turn it on in Org buffer
957 with @code{(add-hook 'org-mode-hook 'turn-on-font-lock)}}.
959 There are compatibility issues between Org mode and some other Elisp
960 packages, please take the time to check the list (@pxref{Conflicts}).
962 The four Org commands @command{org-store-link}, @command{org-capture},
963 @command{org-agenda}, and @command{org-iswitchb} should be accessible through
964 global keys (i.e., anywhere in Emacs, not just in Org buffers).  Here are
965 suggested bindings for these keys, please modify the keys to your own
966 liking.
967 @lisp
968 (global-set-key "\C-cl" 'org-store-link)
969 (global-set-key "\C-ca" 'org-agenda)
970 (global-set-key "\C-cc" 'org-capture)
971 (global-set-key "\C-cb" 'org-iswitchb)
972 @end lisp
974 @cindex Org mode, turning on
975 Files with the @file{.org} extension use Org mode by default.  To turn on Org
976 mode in a file that does not have the extension @file{.org}, make the first
977 line of a file look like this:
979 @example
980 MY PROJECTS    -*- mode: org; -*-
981 @end example
983 @vindex org-insert-mode-line-in-empty-file
984 @noindent which will select Org mode for this buffer no matter what
985 the file's name is.  See also the variable
986 @code{org-insert-mode-line-in-empty-file}.
988 Many commands in Org work on the region if the region is @i{active}.  To make
989 use of this, you need to have @code{transient-mark-mode} turned on, which is
990 the default.  If you do not like @code{transient-mark-mode}, you can create
991 an active region by using the mouse to select a region, or pressing
992 @kbd{C-@key{SPC}} twice before moving the cursor.
994 @node Feedback
995 @section Feedback
996 @cindex feedback
997 @cindex bug reports
998 @cindex maintainer
999 @cindex author
1001 If you find problems with Org, or if you have questions, remarks, or ideas
1002 about it, please mail to the Org mailing list @email{emacs-orgmode@@gnu.org}.
1003 You can subscribe to the list
1004 @uref{https://lists.gnu.org/mailman/listinfo/emacs-orgmode, on this web page}.
1005 If you are not a member of the mailing list, your mail will be passed to the
1006 list after a moderator has approved it@footnote{Please consider subscribing
1007 to the mailing list, in order to minimize the work the mailing list
1008 moderators have to do.}.
1010 For bug reports, please first try to reproduce the bug with the latest
1011 version of Org available---if you are running an outdated version, it is
1012 quite possible that the bug has been fixed already.  If the bug persists,
1013 prepare a report and provide as much information as possible, including the
1014 version information of Emacs (@kbd{M-x emacs-version @key{RET}}) and Org
1015 (@kbd{M-x org-version RET}), as well as the Org related setup in the Emacs
1016 init file.  The easiest way to do this is to use the command
1017 @example
1018 @kbd{M-x org-submit-bug-report RET}
1019 @end example
1020 @noindent which will put all this information into an Emacs mail buffer so
1021 that you only need to add your description.  If you are not sending the Email
1022 from within Emacs, please copy and paste the content into your Email program.
1024 Sometimes you might face a problem due to an error in your Emacs or Org mode
1025 setup.  Before reporting a bug, it is very helpful to start Emacs with minimal
1026 customizations and reproduce the problem.  Doing so often helps you determine
1027 if the problem is with your customization or with Org mode itself.  You can
1028 start a typical minimal session with a command like the example below.
1030 @example
1031 $ emacs -Q -l /path/to/minimal-org.el
1032 @end example
1034 However if you are using Org mode as distributed with Emacs, a minimal setup
1035 is not necessary.  In that case it is sufficient to start Emacs as
1036 @code{emacs -Q}.  The @code{minimal-org.el} setup file can have contents as
1037 shown below.
1039 @lisp
1040 ;;; Minimal setup to load latest 'org-mode'
1042 ;; activate debugging
1043 (setq debug-on-error t
1044       debug-on-signal nil
1045       debug-on-quit nil)
1047 ;; add latest org-mode to load path
1048 (add-to-list 'load-path "/path/to/org-mode/lisp")
1049 (add-to-list 'load-path "/path/to/org-mode/contrib/lisp" t)
1050 @end lisp
1052 If an error occurs, a backtrace can be very useful (see below on how to
1053 create one).  Often a small example file helps, along with clear information
1054 about:
1056 @enumerate
1057 @item What exactly did you do?
1058 @item What did you expect to happen?
1059 @item What happened instead?
1060 @end enumerate
1061 @noindent Thank you for helping to improve this program.
1063 @subsubheading How to create a useful backtrace
1065 @cindex backtrace of an error
1066 If working with Org produces an error with a message you don't
1067 understand, you may have hit a bug.  The best way to report this is by
1068 providing, in addition to what was mentioned above, a @emph{backtrace}.
1069 This is information from the built-in debugger about where and how the
1070 error occurred.  Here is how to produce a useful backtrace:
1072 @enumerate
1073 @item
1074 Reload uncompiled versions of all Org mode Lisp files.  The backtrace
1075 contains much more information if it is produced with uncompiled code.
1076 To do this, use
1077 @example
1078 @kbd{C-u M-x org-reload RET}
1079 @end example
1080 @noindent
1081 or select @code{Org -> Refresh/Reload -> Reload Org uncompiled} from the
1082 menu.
1083 @item
1084 Go to the @code{Options} menu and select @code{Enter Debugger on Error}.
1085 @item
1086 Do whatever you have to do to hit the error.  Don't forget to
1087 document the steps you take.
1088 @item
1089 When you hit the error, a @file{*Backtrace*} buffer will appear on the
1090 screen.  Save this buffer to a file (for example using @kbd{C-x C-w}) and
1091 attach it to your bug report.
1092 @end enumerate
1094 @node Conventions
1095 @section Typesetting conventions used in this manual
1097 @subsubheading TODO keywords, tags, properties, etc.
1099 Org mainly uses three types of keywords: TODO keywords, tags and property
1100 names.  In this manual we use the following conventions:
1102 @table @code
1103 @item TODO
1104 @itemx WAITING
1105 TODO keywords are written with all capitals, even if they are
1106 user-defined.
1107 @item boss
1108 @itemx ARCHIVE
1109 User-defined tags are written in lowercase; built-in tags with special
1110 meaning are written with all capitals.
1111 @item Release
1112 @itemx PRIORITY
1113 User-defined properties are capitalized; built-in properties with
1114 special meaning are written with all capitals.
1115 @end table
1117 Moreover, Org uses @i{option keywords} (like @code{#+TITLE} to set the title)
1118 and @i{environment keywords} (like @code{#+BEGIN_EXPORT html} to start
1119 a @code{HTML} environment).  They are written in uppercase in the manual to
1120 enhance its readability, but you can use lowercase in your Org file.
1122 @subsubheading Key bindings and commands
1123 @kindex C-c a
1124 @findex org-agenda
1125 @kindex C-c c
1126 @findex org-capture
1128 The manual suggests a few global key bindings, in particular @kbd{C-c a} for
1129 @code{org-agenda} and @kbd{C-c c} for @code{org-capture}.  These are only
1130 suggestions, but the rest of the manual assumes that these key bindings are in
1131 place in order to list commands by key access.
1133 Also, the manual lists both the keys and the corresponding commands for
1134 accessing a functionality.  Org mode often uses the same key for different
1135 functions, depending on context.  The command that is bound to such keys has
1136 a generic name, like @code{org-metaright}.  In the manual we will, wherever
1137 possible, give the function that is internally called by the generic command.
1138 For example, in the chapter on document structure, @kbd{M-@key{right}} will
1139 be listed to call @code{org-do-demote}, while in the chapter on tables, it
1140 will be listed to call @code{org-table-move-column-right}.  If you prefer,
1141 you can compile the manual without the command names by unsetting the flag
1142 @code{cmdnames} in @file{org.texi}.
1144 @node Document structure
1145 @chapter Document structure
1146 @cindex document structure
1147 @cindex structure of document
1149 Org is based on Outline mode and provides flexible commands to
1150 edit the structure of the document.
1152 @menu
1153 * Outlines::                    Org is based on Outline mode
1154 * Headlines::                   How to typeset Org tree headlines
1155 * Visibility cycling::          Show and hide, much simplified
1156 * Motion::                      Jumping to other headlines
1157 * Structure editing::           Changing sequence and level of headlines
1158 * Sparse trees::                Matches embedded in context
1159 * Plain lists::                 Additional structure within an entry
1160 * Drawers::                     Tucking stuff away
1161 * Blocks::                      Folding blocks
1162 * Footnotes::                   How footnotes are defined in Org's syntax
1163 * Orgstruct mode::              Structure editing outside Org
1164 * Org syntax::                  Formal description of Org's syntax
1165 @end menu
1167 @node Outlines
1168 @section Outlines
1169 @cindex outlines
1170 @cindex Outline mode
1172 Org is implemented on top of Outline mode.  Outlines allow a
1173 document to be organized in a hierarchical structure, which (at least
1174 for me) is the best representation of notes and thoughts.  An overview
1175 of this structure is achieved by folding (hiding) large parts of the
1176 document to show only the general document structure and the parts
1177 currently being worked on.  Org greatly simplifies the use of
1178 outlines by compressing the entire show/hide functionality into a single
1179 command, @command{org-cycle}, which is bound to the @key{TAB} key.
1181 @node Headlines
1182 @section Headlines
1183 @cindex headlines
1184 @cindex outline tree
1185 @vindex org-special-ctrl-a/e
1186 @vindex org-special-ctrl-k
1187 @vindex org-ctrl-k-protect-subtree
1189 Headlines define the structure of an outline tree.  The headlines in Org
1190 start with one or more stars, on the left margin@footnote{See the variables
1191 @code{org-special-ctrl-a/e}, @code{org-special-ctrl-k}, and
1192 @code{org-ctrl-k-protect-subtree} to configure special behavior of @kbd{C-a},
1193 @kbd{C-e}, and @kbd{C-k} in headlines.} @footnote{Clocking only works with
1194 headings indented less than 30 stars.}.  For example:
1196 @example
1197 * Top level headline
1198 ** Second level
1199 *** 3rd level
1200     some text
1201 *** 3rd level
1202     more text
1204 * Another top level headline
1205 @end example
1207 @vindex org-footnote-section
1208 @noindent Note that a headline named after @code{org-footnote-section},
1209 which defaults to @samp{Footnotes}, is considered as special.  A subtree with
1210 this headline will be silently ignored by exporting functions.
1212 Some people find the many stars too noisy and would prefer an
1213 outline that has whitespace followed by a single star as headline
1214 starters.  @ref{Clean view}, describes a setup to realize this.
1216 @vindex org-cycle-separator-lines
1217 An empty line after the end of a subtree is considered part of it and
1218 will be hidden when the subtree is folded.  However, if you leave at
1219 least two empty lines, one empty line will remain visible after folding
1220 the subtree, in order to structure the collapsed view.  See the
1221 variable @code{org-cycle-separator-lines} to modify this behavior.
1223 @node Visibility cycling
1224 @section Visibility cycling
1225 @cindex cycling, visibility
1226 @cindex visibility cycling
1227 @cindex trees, visibility
1228 @cindex show hidden text
1229 @cindex hide text
1231 @menu
1232 * Global and local cycling::    Cycling through various visibility states
1233 * Initial visibility::          Setting the initial visibility state
1234 * Catching invisible edits::    Preventing mistakes when editing invisible parts
1235 @end menu
1237 @node Global and local cycling
1238 @subsection Global and local cycling
1240 Outlines make it possible to hide parts of the text in the buffer.
1241 Org uses just two commands, bound to @key{TAB} and
1242 @kbd{S-@key{TAB}} to change the visibility in the buffer.
1244 @cindex subtree visibility states
1245 @cindex subtree cycling
1246 @cindex folded, subtree visibility state
1247 @cindex children, subtree visibility state
1248 @cindex subtree, subtree visibility state
1249 @table @asis
1250 @orgcmd{@key{TAB},org-cycle}
1251 @emph{Subtree cycling}: Rotate current subtree among the states
1253 @example
1254 ,-> FOLDED -> CHILDREN -> SUBTREE --.
1255 '-----------------------------------'
1256 @end example
1258 @vindex org-cycle-emulate-tab
1259 @vindex org-cycle-global-at-bob
1260 The cursor must be on a headline for this to work@footnote{see, however,
1261 the option @code{org-cycle-emulate-tab}.}.  When the cursor is at the
1262 beginning of the buffer and the first line is not a headline, then
1263 @key{TAB} actually runs global cycling (see below)@footnote{see the
1264 option @code{org-cycle-global-at-bob}.}.  Also when called with a prefix
1265 argument (@kbd{C-u @key{TAB}}), global cycling is invoked.
1267 @cindex global visibility states
1268 @cindex global cycling
1269 @cindex overview, global visibility state
1270 @cindex contents, global visibility state
1271 @cindex show all, global visibility state
1272 @orgcmd{S-@key{TAB},org-global-cycle}
1273 @itemx C-u @key{TAB}
1274 @emph{Global cycling}: Rotate the entire buffer among the states
1276 @example
1277 ,-> OVERVIEW -> CONTENTS -> SHOW ALL --.
1278 '--------------------------------------'
1279 @end example
1281 When @kbd{S-@key{TAB}} is called with a numeric prefix argument N, the
1282 CONTENTS view up to headlines of level N will be shown.  Note that inside
1283 tables, @kbd{S-@key{TAB}} jumps to the previous field.
1285 @cindex set startup visibility, command
1286 @orgcmd{C-u C-u @key{TAB},org-set-startup-visibility}
1287 Switch back to the startup visibility of the buffer (@pxref{Initial visibility}).
1288 @cindex show all, command
1289 @orgcmd{C-u C-u C-u @key{TAB},outline-show-all}
1290 Show all, including drawers.
1291 @cindex revealing context
1292 @orgcmd{C-c C-r,org-reveal}
1293 Reveal context around point, showing the current entry, the following heading
1294 and the hierarchy above.  Useful for working near a location that has been
1295 exposed by a sparse tree command (@pxref{Sparse trees}) or an agenda command
1296 (@pxref{Agenda commands}).  With a prefix argument show, on each
1297 level, all sibling headings.  With a double prefix argument, also show the
1298 entire subtree of the parent.
1299 @cindex show branches, command
1300 @orgcmd{C-c C-k,outline-show-branches}
1301 Expose all the headings of the subtree, CONTENT view for just one subtree.
1302 @cindex show children, command
1303 @orgcmd{C-c @key{TAB},outline-show-children}
1304 Expose all direct children of the subtree.  With a numeric prefix argument N,
1305 expose all children down to level N@.
1306 @orgcmd{C-c C-x b,org-tree-to-indirect-buffer}
1307 Show the current subtree in an indirect buffer@footnote{The indirect buffer
1308 (@pxref{Indirect Buffers,,,emacs,GNU Emacs Manual}) will contain the entire
1309 buffer, but will be narrowed to the current tree.  Editing the indirect
1310 buffer will also change the original buffer, but without affecting visibility
1311 in that buffer.}.  With a numeric prefix argument N, go up to level N and
1312 then take that tree.  If N is negative then go up that many levels.  With
1313 a @kbd{C-u} prefix, do not remove the previously used indirect buffer.
1314 @orgcmd{C-c C-x v,org-copy-visible}
1315 Copy the @i{visible} text in the region into the kill ring.
1316 @end table
1318 @node Initial visibility
1319 @subsection Initial visibility
1321 @cindex visibility, initialize
1322 @vindex org-startup-folded
1323 @vindex org-agenda-inhibit-startup
1324 @cindex @code{overview}, STARTUP keyword
1325 @cindex @code{content}, STARTUP keyword
1326 @cindex @code{showall}, STARTUP keyword
1327 @cindex @code{showeverything}, STARTUP keyword
1329 When Emacs first visits an Org file, the global state is set to OVERVIEW,
1330 i.e., only the top level headlines are visible@footnote{When
1331 @code{org-agenda-inhibit-startup} is non-@code{nil}, Org will not honor the default
1332 visibility state when first opening a file for the agenda (@pxref{Speeding up
1333 your agendas}).}.  This can be configured through the variable
1334 @code{org-startup-folded}, or on a per-file basis by adding one of the
1335 following lines anywhere in the buffer:
1337 @example
1338 #+STARTUP: overview
1339 #+STARTUP: content
1340 #+STARTUP: showall
1341 #+STARTUP: showeverything
1342 @end example
1344 @cindex property, VISIBILITY
1345 @noindent
1346 Furthermore, any entries with a @samp{VISIBILITY} property (@pxref{Properties
1347 and columns}) will get their visibility adapted accordingly.  Allowed values
1348 for this property are @code{folded}, @code{children}, @code{content}, and
1349 @code{all}.
1351 @table @asis
1352 @orgcmd{C-u C-u @key{TAB},org-set-startup-visibility}
1353 Switch back to the startup visibility of the buffer, i.e., whatever is
1354 requested by startup options and @samp{VISIBILITY} properties in individual
1355 entries.
1356 @end table
1358 @node Catching invisible edits
1359 @subsection Catching invisible edits
1361 @vindex org-catch-invisible-edits
1362 @cindex edits, catching invisible
1363 Sometimes you may inadvertently edit an invisible part of the buffer and be
1364 confused on what has been edited and how to undo the mistake.  Setting
1365 @code{org-catch-invisible-edits} to non-@code{nil} will help prevent this.  See the
1366 docstring of this option on how Org should catch invisible edits and process
1367 them.
1369 @node Motion
1370 @section Motion
1371 @cindex motion, between headlines
1372 @cindex jumping, to headlines
1373 @cindex headline navigation
1374 The following commands jump to other headlines in the buffer.
1376 @table @asis
1377 @orgcmd{C-c C-n,org-next-visible-heading}
1378 Next heading.
1379 @orgcmd{C-c C-p,org-previous-visible-heading}
1380 Previous heading.
1381 @orgcmd{C-c C-f,org-forward-same-level}
1382 Next heading same level.
1383 @orgcmd{C-c C-b,org-backward-same-level}
1384 Previous heading same level.
1385 @orgcmd{C-c C-u,outline-up-heading}
1386 Backward to higher level heading.
1387 @orgcmd{C-c C-j,org-goto}
1388 Jump to a different place without changing the current outline
1389 visibility.  Shows the document structure in a temporary buffer, where
1390 you can use the following keys to find your destination:
1391 @vindex org-goto-auto-isearch
1392 @example
1393 @key{TAB}         @r{Cycle visibility.}
1394 @key{down} / @key{up}   @r{Next/previous visible headline.}
1395 @key{RET}         @r{Select this location.}
1396 @kbd{/}           @r{Do a Sparse-tree search}
1397 @r{The following keys work if you turn off @code{org-goto-auto-isearch}}
1398 n / p        @r{Next/previous visible headline.}
1399 f / b        @r{Next/previous headline same level.}
1400 u            @r{One level up.}
1401 0-9          @r{Digit argument.}
1402 q            @r{Quit}
1403 @end example
1404 @vindex org-goto-interface
1405 @noindent
1406 See also the option @code{org-goto-interface}.
1407 @end table
1409 @node Structure editing
1410 @section Structure editing
1411 @cindex structure editing
1412 @cindex headline, promotion and demotion
1413 @cindex promotion, of subtrees
1414 @cindex demotion, of subtrees
1415 @cindex subtree, cut and paste
1416 @cindex pasting, of subtrees
1417 @cindex cutting, of subtrees
1418 @cindex copying, of subtrees
1419 @cindex sorting, of subtrees
1420 @cindex subtrees, cut and paste
1422 @table @asis
1423 @orgcmd{M-@key{RET},org-meta-return}
1424 @vindex org-M-RET-may-split-line
1425 Insert a new heading, item or row.
1427 If the command is used at the @emph{beginning} of a line, and if there is
1428 a heading or a plain list item (@pxref{Plain lists}) at point, the new
1429 heading/item is created @emph{before} the current line.  When used at the
1430 beginning of a regular line of text, turn that line into a heading.
1432 When this command is used in the middle of a line, the line is split and the
1433 rest of the line becomes the new item or headline.  If you do not want the
1434 line to be split, customize @code{org-M-RET-may-split-line}.
1436 Calling the command with a @kbd{C-u} prefix unconditionally inserts a new
1437 heading at the end of the current subtree, thus preserving its contents.
1438 With a double @kbd{C-u C-u} prefix, the new heading is created at the end of
1439 the parent subtree instead.
1440 @orgcmd{C-@key{RET},org-insert-heading-respect-content}
1441 Insert a new heading at the end of the current subtree.
1442 @orgcmd{M-S-@key{RET},org-insert-todo-heading}
1443 @vindex org-treat-insert-todo-heading-as-state-change
1444 Insert new TODO entry with same level as current heading.  See also the
1445 variable @code{org-treat-insert-todo-heading-as-state-change}.
1446 @orgcmd{C-S-@key{RET},org-insert-todo-heading-respect-content}
1447 Insert new TODO entry with same level as current heading.  Like
1448 @kbd{C-@key{RET}}, the new headline will be inserted after the current
1449 subtree.
1450 @orgcmd{@key{TAB},org-cycle}
1451 In a new entry with no text yet, the first @key{TAB} demotes the entry to
1452 become a child of the previous one.  The next @key{TAB} makes it a parent,
1453 and so on, all the way to top level.  Yet another @key{TAB}, and you are back
1454 to the initial level.
1455 @orgcmd{M-@key{left},org-do-promote}
1456 Promote current heading by one level.
1457 @orgcmd{M-@key{right},org-do-demote}
1458 Demote current heading by one level.
1459 @orgcmd{M-S-@key{left},org-promote-subtree}
1460 Promote the current subtree by one level.
1461 @orgcmd{M-S-@key{right},org-demote-subtree}
1462 Demote the current subtree by one level.
1463 @orgcmd{M-S-@key{up},org-move-subtree-up}
1464 Move subtree up (swap with previous subtree of same
1465 level).
1466 @orgcmd{M-S-@key{down},org-move-subtree-down}
1467 Move subtree down (swap with next subtree of same level).
1468 @orgcmd{M-h,org-mark-element}
1469 Mark the element at point.  Hitting repeatedly will mark subsequent elements
1470 of the one just marked.  E.g., hitting @key{M-h} on a paragraph will mark it,
1471 hitting @key{M-h} immediately again will mark the next one.
1472 @orgcmd{C-c @@,org-mark-subtree}
1473 Mark the subtree at point.  Hitting repeatedly will mark subsequent subtrees
1474 of the same level than the marked subtree.
1475 @orgcmd{C-c C-x C-w,org-cut-subtree}
1476 Kill subtree, i.e., remove it from buffer but save in kill ring.
1477 With a numeric prefix argument N, kill N sequential subtrees.
1478 @orgcmd{C-c C-x M-w,org-copy-subtree}
1479 Copy subtree to kill ring.  With a numeric prefix argument N, copy the N
1480 sequential subtrees.
1481 @orgcmd{C-c C-x C-y,org-paste-subtree}
1482 Yank subtree from kill ring.  This does modify the level of the subtree to
1483 make sure the tree fits in nicely at the yank position.  The yank level can
1484 also be specified with a numeric prefix argument, or by yanking after a
1485 headline marker like @samp{****}.
1486 @orgcmd{C-y,org-yank}
1487 @vindex org-yank-adjusted-subtrees
1488 @vindex org-yank-folded-subtrees
1489 Depending on the options @code{org-yank-adjusted-subtrees} and
1490 @code{org-yank-folded-subtrees}, Org's internal @code{yank} command will
1491 paste subtrees folded and in a clever way, using the same command as @kbd{C-c
1492 C-x C-y}.  With the default settings, no level adjustment will take place,
1493 but the yanked tree will be folded unless doing so would swallow text
1494 previously visible.  Any prefix argument to this command will force a normal
1495 @code{yank} to be executed, with the prefix passed along.  A good way to
1496 force a normal yank is @kbd{C-u C-y}.  If you use @code{yank-pop} after a
1497 yank, it will yank previous kill items plainly, without adjustment and
1498 folding.
1499 @orgcmd{C-c C-x c,org-clone-subtree-with-time-shift}
1500 Clone a subtree by making a number of sibling copies of it.  You will be
1501 prompted for the number of copies to make, and you can also specify if any
1502 timestamps in the entry should be shifted.  This can be useful, for example,
1503 to create a number of tasks related to a series of lectures to prepare.  For
1504 more details, see the docstring of the command
1505 @code{org-clone-subtree-with-time-shift}.
1506 @orgcmd{C-c C-w,org-refile}
1507 Refile entry or region to a different location.  @xref{Refile and copy}.
1508 @orgcmd{C-c ^,org-sort}
1509 Sort same-level entries.  When there is an active region, all entries in the
1510 region will be sorted.  Otherwise the children of the current headline are
1511 sorted.  The command prompts for the sorting method, which can be
1512 alphabetically, numerically, by time (first timestamp with active preferred,
1513 creation time, scheduled time, deadline time), by priority, by TODO keyword
1514 (in the sequence the keywords have been defined in the setup) or by the value
1515 of a property.  Reverse sorting is possible as well.  You can also supply
1516 your own function to extract the sorting key.  With a @kbd{C-u} prefix,
1517 sorting will be case-sensitive.
1518 @orgcmd{C-x n s,org-narrow-to-subtree}
1519 Narrow buffer to current subtree.
1520 @orgcmd{C-x n b,org-narrow-to-block}
1521 Narrow buffer to current block.
1522 @orgcmd{C-x n w,widen}
1523 Widen buffer to remove narrowing.
1524 @orgcmd{C-c *,org-toggle-heading}
1525 Turn a normal line or plain list item into a headline (so that it becomes a
1526 subheading at its location).  Also turn a headline into a normal line by
1527 removing the stars.  If there is an active region, turn all lines in the
1528 region into headlines.  If the first line in the region was an item, turn
1529 only the item lines into headlines.  Finally, if the first line is a
1530 headline, remove the stars from all headlines in the region.
1531 @end table
1533 @cindex region, active
1534 @cindex active region
1535 @cindex transient mark mode
1536 When there is an active region (Transient Mark mode), promotion and
1537 demotion work on all headlines in the region.  To select a region of
1538 headlines, it is best to place both point and mark at the beginning of a
1539 line, mark at the beginning of the first headline, and point at the line
1540 just after the last headline to change.  Note that when the cursor is
1541 inside a table (@pxref{Tables}), the Meta-Cursor keys have different
1542 functionality.
1545 @node Sparse trees
1546 @section Sparse trees
1547 @cindex sparse trees
1548 @cindex trees, sparse
1549 @cindex folding, sparse trees
1550 @cindex occur, command
1552 @vindex org-show-context-detail
1553 An important feature of Org mode is the ability to construct @emph{sparse
1554 trees} for selected information in an outline tree, so that the entire
1555 document is folded as much as possible, but the selected information is made
1556 visible along with the headline structure above it@footnote{See also the
1557 variable @code{org-show-context-detail} to decide how much context is shown
1558 around each match.}.  Just try it out and you will see immediately how it
1559 works.
1561 Org mode contains several commands for creating such trees, all these
1562 commands can be accessed through a dispatcher:
1564 @table @asis
1565 @orgcmd{C-c /,org-sparse-tree}
1566 This prompts for an extra key to select a sparse-tree creating command.
1567 @orgcmdkkc{C-c / r,C-c / /,org-occur}
1568 @vindex org-remove-highlights-with-change
1569 Prompts for a regexp and shows a sparse tree with all matches.  If
1570 the match is in a headline, the headline is made visible.  If the match is in
1571 the body of an entry, headline and body are made visible.  In order to
1572 provide minimal context, also the full hierarchy of headlines above the match
1573 is shown, as well as the headline following the match.  Each match is also
1574 highlighted; the highlights disappear when the buffer is changed by an
1575 editing command@footnote{This depends on the option
1576 @code{org-remove-highlights-with-change}}, or by pressing @kbd{C-c C-c}.
1577 When called with a @kbd{C-u} prefix argument, previous highlights are kept,
1578 so several calls to this command can be stacked.
1579 @orgcmdkkc{M-g n,M-g M-n,next-error}
1580 Jump to the next sparse tree match in this buffer.
1581 @orgcmdkkc{M-g p,M-g M-p,previous-error}
1582 Jump to the previous sparse tree match in this buffer.
1583 @end table
1585 @noindent
1586 @vindex org-agenda-custom-commands
1587 For frequently used sparse trees of specific search strings, you can
1588 use the option @code{org-agenda-custom-commands} to define fast
1589 keyboard access to specific sparse trees.  These commands will then be
1590 accessible through the agenda dispatcher (@pxref{Agenda dispatcher}).
1591 For example:
1593 @lisp
1594 (setq org-agenda-custom-commands
1595       '(("f" occur-tree "FIXME")))
1596 @end lisp
1598 @noindent will define the key @kbd{C-c a f} as a shortcut for creating
1599 a sparse tree matching the string @samp{FIXME}.
1601 The other sparse tree commands select headings based on TODO keywords,
1602 tags, or properties and will be discussed later in this manual.
1604 @kindex C-c C-e C-v
1605 @cindex printing sparse trees
1606 @cindex visible text, printing
1607 To print a sparse tree, you can use the Emacs command
1608 @code{ps-print-buffer-with-faces} which does not print invisible parts of the
1609 document.  Or you can use @kbd{C-c C-e C-v} to export only the visible part
1610 of the document and print the resulting file.
1612 @node Plain lists
1613 @section Plain lists
1614 @cindex plain lists
1615 @cindex lists, plain
1616 @cindex lists, ordered
1617 @cindex ordered lists
1619 Within an entry of the outline tree, hand-formatted lists can provide
1620 additional structure.  They also provide a way to create lists of checkboxes
1621 (@pxref{Checkboxes}).  Org supports editing such lists, and every exporter
1622 (@pxref{Exporting}) can parse and format them.
1624 Org knows ordered lists, unordered lists, and description lists.
1625 @itemize @bullet
1626 @item
1627 @emph{Unordered} list items start with @samp{-}, @samp{+}, or
1628 @samp{*}@footnote{When using @samp{*} as a bullet, lines must be indented or
1629 they will be seen as top-level headlines.  Also, when you are hiding leading
1630 stars to get a clean outline view, plain list items starting with a star may
1631 be hard to distinguish from true headlines.  In short: even though @samp{*}
1632 is supported, it may be better to not use it for plain list items.}  as
1633 bullets.
1634 @item
1635 @vindex org-plain-list-ordered-item-terminator
1636 @vindex org-list-allow-alphabetical
1637 @emph{Ordered} list items start with a numeral followed by either a period or
1638 a right parenthesis@footnote{You can filter out any of them by configuring
1639 @code{org-plain-list-ordered-item-terminator}.}, such as @samp{1.} or
1640 @samp{1)}@footnote{You can also get @samp{a.}, @samp{A.}, @samp{a)} and
1641 @samp{A)} by configuring @code{org-list-allow-alphabetical}.  To minimize
1642 confusion with normal text, those are limited to one character only.  Beyond
1643 that limit, bullets will automatically fallback to numbers.}.  If you want a
1644 list to start with a different value (e.g., 20), start the text of the item
1645 with @code{[@@20]}@footnote{If there's a checkbox in the item, the cookie
1646 must be put @emph{before} the checkbox.  If you have activated alphabetical
1647 lists, you can also use counters like @code{[@@b]}.}.  Those constructs can
1648 be used in any item of the list in order to enforce a particular numbering.
1649 @item
1650 @emph{Description} list items are unordered list items, and contain the
1651 separator @samp{ :: } to distinguish the description @emph{term} from the
1652 description.
1653 @end itemize
1655 Items belonging to the same list must have the same indentation on the first
1656 line.  In particular, if an ordered list reaches number @samp{10.}, then the
1657 2--digit numbers must be written left-aligned with the other numbers in the
1658 list.  An item ends before the next line that is less or equally indented
1659 than its bullet/number.
1661 @vindex org-list-empty-line-terminates-plain-lists
1662 A list ends whenever every item has ended, which means before any line less
1663 or equally indented than items at top level.  It also ends before two blank
1664 lines@footnote{See also @code{org-list-empty-line-terminates-plain-lists}.}.
1665 In that case, all items are closed.  Here is an example:
1667 @example
1668 @group
1669 ** Lord of the Rings
1670    My favorite scenes are (in this order)
1671    1. The attack of the Rohirrim
1672    2. Eowyn's fight with the witch king
1673       + this was already my favorite scene in the book
1674       + I really like Miranda Otto.
1675    3. Peter Jackson being shot by Legolas
1676       - on DVD only
1677       He makes a really funny face when it happens.
1678    But in the end, no individual scenes matter but the film as a whole.
1679    Important actors in this film are:
1680    - @b{Elijah Wood} :: He plays Frodo
1681    - @b{Sean Astin} :: He plays Sam, Frodo's friend.  I still remember
1682      him very well from his role as Mikey Walsh in @i{The Goonies}.
1683 @end group
1684 @end example
1686 Org supports these lists by tuning filling and wrapping commands to deal with
1687 them correctly, and by exporting them properly (@pxref{Exporting}).  Since
1688 indentation is what governs the structure of these lists, many structural
1689 constructs like @code{#+BEGIN_...} blocks can be indented to signal that they
1690 belong to a particular item.
1692 @vindex org-list-demote-modify-bullet
1693 @vindex org-list-indent-offset
1694 If you find that using a different bullet for a sub-list (than that used for
1695 the current list-level) improves readability, customize the variable
1696 @code{org-list-demote-modify-bullet}.  To get a greater difference of
1697 indentation between items and their sub-items, customize
1698 @code{org-list-indent-offset}.
1700 @vindex org-list-automatic-rules
1701 The following commands act on items when the cursor is in the first line of
1702 an item (the line with the bullet or number).  Some of them imply the
1703 application of automatic rules to keep list structure intact.  If some of
1704 these actions get in your way, configure @code{org-list-automatic-rules}
1705 to disable them individually.
1707 @table @asis
1708 @orgcmd{@key{TAB},org-cycle}
1709 @cindex cycling, in plain lists
1710 @vindex org-cycle-include-plain-lists
1711 Items can be folded just like headline levels.  Normally this works only if
1712 the cursor is on a plain list item.  For more details, see the variable
1713 @code{org-cycle-include-plain-lists}.  If this variable is set to
1714 @code{integrate}, plain list items will be treated like low-level
1715 headlines.  The level of an item is then given by the indentation of the
1716 bullet/number.  Items are always subordinate to real headlines, however; the
1717 hierarchies remain completely separated.  In a new item with no text yet, the
1718 first @key{TAB} demotes the item to become a child of the previous
1719 one.  Subsequent @key{TAB}s move the item to meaningful levels in the list
1720 and eventually get it back to its initial position.
1721 @orgcmd{M-@key{RET},org-insert-heading}
1722 @vindex org-M-RET-may-split-line
1723 @vindex org-list-automatic-rules
1724 Insert new item at current level.  With a prefix argument, force a new
1725 heading (@pxref{Structure editing}).  If this command is used in the middle
1726 of an item, that item is @emph{split} in two, and the second part becomes the
1727 new item@footnote{If you do not want the item to be split, customize the
1728 variable @code{org-M-RET-may-split-line}.}.  If this command is executed
1729 @emph{before item's body}, the new item is created @emph{before} the current
1730 one.
1731 @end table
1733 @table @kbd
1734 @kindex M-S-@key{RET}
1735 @item M-S-@key{RET}
1736 Insert a new item with a checkbox (@pxref{Checkboxes}).
1737 @kindex S-@key{down}
1738 @item S-up
1739 @itemx S-down
1740 @cindex shift-selection-mode
1741 @vindex org-support-shift-select
1742 @vindex org-list-use-circular-motion
1743 Jump to the previous/next item in the current list@footnote{If you want to
1744 cycle around items that way, you may customize
1745 @code{org-list-use-circular-motion}.}, but only if
1746 @code{org-support-shift-select} is off.  If not, you can still use paragraph
1747 jumping commands like @kbd{C-@key{up}} and @kbd{C-@key{down}} to quite
1748 similar effect.
1749 @kindex M-@key{up}
1750 @kindex M-@key{down}
1751 @item M-up
1752 @itemx M-down
1753 Move the item including subitems up/down@footnote{See
1754 @code{org-list-use-circular-motion} for a cyclic behavior.} (swap with
1755 previous/next item of same indentation).  If the list is ordered, renumbering
1756 is automatic.
1757 @kindex M-@key{left}
1758 @kindex M-@key{right}
1759 @item M-left
1760 @itemx M-right
1761 Decrease/increase the indentation of an item, leaving children alone.
1762 @kindex M-S-@key{left}
1763 @kindex M-S-@key{right}
1764 @item M-S-@key{left}
1765 @itemx M-S-@key{right}
1766 Decrease/increase the indentation of the item, including subitems.
1767 Initially, the item tree is selected based on current indentation.  When
1768 these commands are executed several times in direct succession, the initially
1769 selected region is used, even if the new indentation would imply a different
1770 hierarchy.  To use the new hierarchy, break the command chain with a cursor
1771 motion or so.
1773 As a special case, using this command on the very first item of a list will
1774 move the whole list.  This behavior can be disabled by configuring
1775 @code{org-list-automatic-rules}.  The global indentation of a list has no
1776 influence on the text @emph{after} the list.
1777 @kindex C-c C-c
1778 @item C-c C-c
1779 If there is a checkbox (@pxref{Checkboxes}) in the item line, toggle the
1780 state of the checkbox.  In any case, verify bullets and indentation
1781 consistency in the whole list.
1782 @kindex C-c -
1783 @vindex org-plain-list-ordered-item-terminator
1784 @item C-c -
1785 Cycle the entire list level through the different itemize/enumerate bullets
1786 (@samp{-}, @samp{+}, @samp{*}, @samp{1.}, @samp{1)}) or a subset of them,
1787 depending on @code{org-plain-list-ordered-item-terminator}, the type of list,
1788 and its indentation.  With a numeric prefix argument N, select the Nth bullet
1789 from this list.  If there is an active region when calling this, all selected
1790 lines are converted to list items.  With a prefix argument, selected text is
1791 changed into a single item.  If the first line already was a list item, any
1792 item marker will be removed from the list.  Finally, even without an active
1793 region, a normal line will be converted into a list item.
1794 @kindex C-c *
1795 @item C-c *
1796 Turn a plain list item into a headline (so that it becomes a subheading at
1797 its location).  @xref{Structure editing}, for a detailed explanation.
1798 @kindex C-c C-*
1799 @item C-c C-*
1800 Turn the whole plain list into a subtree of the current heading.  Checkboxes
1801 (@pxref{Checkboxes}) will become TODO (resp. DONE) keywords when unchecked
1802 (resp. checked).
1803 @kindex S-@key{left}
1804 @kindex S-@key{right}
1805 @item S-left/right
1806 @vindex org-support-shift-select
1807 This command also cycles bullet styles when the cursor in on the bullet or
1808 anywhere in an item line, details depending on
1809 @code{org-support-shift-select}.
1810 @kindex C-c ^
1811 @cindex sorting, of plain list
1812 @item C-c ^
1813 Sort the plain list.  You will be prompted for the sorting method:
1814 numerically, alphabetically, by time, by checked status for check lists,
1815 or by a custom function.
1816 @end table
1818 @node Drawers
1819 @section Drawers
1820 @cindex drawers
1821 @cindex visibility cycling, drawers
1823 @cindex org-insert-drawer
1824 @kindex C-c C-x d
1825 Sometimes you want to keep information associated with an entry, but you
1826 normally don't want to see it.  For this, Org mode has @emph{drawers}.  They
1827 can contain anything but a headline and another drawer.  Drawers look like
1828 this:
1830 @example
1831 ** This is a headline
1832    Still outside the drawer
1833    :DRAWERNAME:
1834    This is inside the drawer.
1835    :END:
1836    After the drawer.
1837 @end example
1839 You can interactively insert drawers at point by calling
1840 @code{org-insert-drawer}, which is bound to @key{C-c C-x d}.  With an active
1841 region, this command will put the region inside the drawer.  With a prefix
1842 argument, this command calls @code{org-insert-property-drawer} and add
1843 a property drawer right below the current headline.  Completion over drawer
1844 keywords is also possible using @kbd{M-@key{TAB}}@footnote{Many desktops
1845 intercept @kbd{M-@key{TAB}} to switch windows.  Use @kbd{C-M-i} or
1846 @kbd{@key{ESC} @key{TAB}} instead for completion (@pxref{Completion}).}.
1848 Visibility cycling (@pxref{Visibility cycling}) on the headline will hide and
1849 show the entry, but keep the drawer collapsed to a single line.  In order to
1850 look inside the drawer, you need to move the cursor to the drawer line and
1851 press @key{TAB} there.  Org mode uses the @code{PROPERTIES} drawer for
1852 storing properties (@pxref{Properties and columns}), and you can also arrange
1853 for state change notes (@pxref{Tracking TODO state changes}) and clock times
1854 (@pxref{Clocking work time}) to be stored in a drawer @code{LOGBOOK}.  If you
1855 want to store a quick note in the LOGBOOK drawer, in a similar way to state
1856 changes, use
1858 @table @kbd
1859 @kindex C-c C-z
1860 @item C-c C-z
1861 Add a time-stamped note to the LOGBOOK drawer.
1862 @end table
1864 @vindex org-export-with-drawers
1865 @vindex org-export-with-properties
1866 You can select the name of the drawers which should be exported with
1867 @code{org-export-with-drawers}.  In that case, drawer contents will appear in
1868 export output.  Property drawers are not affected by this variable: configure
1869 @code{org-export-with-properties} instead.
1871 @node Blocks
1872 @section Blocks
1874 @vindex org-hide-block-startup
1875 @cindex blocks, folding
1876 Org mode uses begin...end blocks for various purposes from including source
1877 code examples (@pxref{Literal examples}) to capturing time logging
1878 information (@pxref{Clocking work time}).  These blocks can be folded and
1879 unfolded by pressing TAB in the begin line.  You can also get all blocks
1880 folded at startup by configuring the option @code{org-hide-block-startup}
1881 or on a per-file basis by using
1883 @cindex @code{hideblocks}, STARTUP keyword
1884 @cindex @code{nohideblocks}, STARTUP keyword
1885 @example
1886 #+STARTUP: hideblocks
1887 #+STARTUP: nohideblocks
1888 @end example
1890 @node Footnotes
1891 @section Footnotes
1892 @cindex footnotes
1894 Org mode supports the creation of footnotes.
1896 A footnote is started by a footnote marker in square brackets in column 0, no
1897 indentation allowed.  It ends at the next footnote definition, headline, or
1898 after two consecutive empty lines.  The footnote reference is simply the
1899 marker in square brackets, inside text.  Markers always start with
1900 @code{fn:}.  For example:
1902 @example
1903 The Org homepage[fn:1] now looks a lot better than it used to.
1905 [fn:1] The link is: http://orgmode.org
1906 @end example
1908 Org mode extends the number-based syntax to @emph{named} footnotes and
1909 optional inline definition.  Here are the valid references:
1911 @table @code
1912 @item [fn:name]
1913 A named footnote reference, where @code{name} is a unique label word, or, for
1914 simplicity of automatic creation, a number.
1915 @item [fn::This is the inline definition of this footnote]
1916 A @LaTeX{}-like anonymous footnote where the definition is given directly at the
1917 reference point.
1918 @item [fn:name:a definition]
1919 An inline definition of a footnote, which also specifies a name for the note.
1920 Since Org allows multiple references to the same note, you can then use
1921 @code{[fn:name]} to create additional references.
1922 @end table
1924 @vindex org-footnote-auto-label
1925 Footnote labels can be created automatically, or you can create names yourself.
1926 This is handled by the variable @code{org-footnote-auto-label} and its
1927 corresponding @code{#+STARTUP} keywords.  See the docstring of that variable
1928 for details.
1930 @noindent The following command handles footnotes:
1932 @table @kbd
1933 @kindex C-c C-x f
1934 @item C-c C-x f
1935 The footnote action command.
1937 When the cursor is on a footnote reference, jump to the definition.  When it
1938 is at a definition, jump to the (first) reference.
1940 @vindex org-footnote-define-inline
1941 @vindex org-footnote-section
1942 @vindex org-footnote-auto-adjust
1943 Otherwise, create a new footnote.  Depending on the option
1944 @code{org-footnote-define-inline}@footnote{The corresponding in-buffer
1945 setting is: @code{#+STARTUP: fninline} or @code{#+STARTUP: nofninline}}, the
1946 definition will be placed right into the text as part of the reference, or
1947 separately into the location determined by the option
1948 @code{org-footnote-section}.
1950 When this command is called with a prefix argument, a menu of additional
1951 options is offered:
1952 @example
1953 s   @r{Sort the footnote definitions by reference sequence.  During editing,}
1954     @r{Org makes no effort to sort footnote definitions into a particular}
1955     @r{sequence.  If you want them sorted, use this command, which will}
1956     @r{also move entries according to @code{org-footnote-section}.  Automatic}
1957     @r{sorting after each insertion/deletion can be configured using the}
1958     @r{option @code{org-footnote-auto-adjust}.}
1959 r   @r{Renumber the simple @code{fn:N} footnotes.  Automatic renumbering}
1960     @r{after each insertion/deletion can be configured using the option}
1961     @r{@code{org-footnote-auto-adjust}.}
1962 S   @r{Short for first @code{r}, then @code{s} action.}
1963 n   @r{Normalize the footnotes by collecting all definitions (including}
1964     @r{inline definitions) into a special section, and then numbering them}
1965     @r{in sequence.  The references will then also be numbers.}
1966 d   @r{Delete the footnote at point, and all definitions of and references}
1967     @r{to it.}
1968 @end example
1969 Depending on the variable @code{org-footnote-auto-adjust}@footnote{the
1970 corresponding in-buffer options are @code{fnadjust} and @code{nofnadjust}.},
1971 renumbering and sorting footnotes can be automatic after each insertion or
1972 deletion.
1974 @kindex C-c C-c
1975 @item C-c C-c
1976 If the cursor is on a footnote reference, jump to the definition.  If it is a
1977 the definition, jump back to the reference.  When called at a footnote
1978 location with a prefix argument, offer the same menu as @kbd{C-c C-x f}.
1979 @kindex C-c C-o
1980 @kindex mouse-1
1981 @kindex mouse-2
1982 @item C-c C-o  @r{or} mouse-1/2
1983 Footnote labels are also links to the corresponding definition/reference, and
1984 you can use the usual commands to follow these links.
1986 @vindex org-edit-footnote-reference
1987 @kindex C-c '
1988 @item C-c '
1989 @item C-c '
1990 Edit the footnote definition corresponding to the reference at point in
1991 a separate window.  The window can be closed by pressing @kbd{C-c '}.
1993 @end table
1995 @node Orgstruct mode
1996 @section The Orgstruct minor mode
1997 @cindex Orgstruct mode
1998 @cindex minor mode for structure editing
2000 If you like the intuitive way the Org mode structure editing and list
2001 formatting works, you might want to use these commands in other modes like
2002 Text mode or Mail mode as well.  The minor mode @code{orgstruct-mode} makes
2003 this possible.   Toggle the mode with @kbd{M-x orgstruct-mode RET}, or
2004 turn it on by default, for example in Message mode, with one of:
2006 @lisp
2007 (add-hook 'message-mode-hook 'turn-on-orgstruct)
2008 (add-hook 'message-mode-hook 'turn-on-orgstruct++)
2009 @end lisp
2011 When this mode is active and the cursor is on a line that looks to Org like a
2012 headline or the first line of a list item, most structure editing commands
2013 will work, even if the same keys normally have different functionality in the
2014 major mode you are using.  If the cursor is not in one of those special
2015 lines, Orgstruct mode lurks silently in the shadows.
2017 When you use @code{orgstruct++-mode}, Org will also export indentation and
2018 autofill settings into that mode, and detect item context after the first
2019 line of an item.
2021 @vindex orgstruct-heading-prefix-regexp
2022 You can also use Org structure editing to fold and unfold headlines in
2023 @emph{any} file, provided you defined @code{orgstruct-heading-prefix-regexp}:
2024 the regular expression must match the local prefix to use before Org's
2025 headlines.  For example, if you set this variable to @code{";; "} in Emacs
2026 Lisp files, you will be able to fold and unfold headlines in Emacs Lisp
2027 commented lines.  Some commands like @code{org-demote} are disabled when the
2028 prefix is set, but folding/unfolding will work correctly.
2030 @node Org syntax
2031 @section Org syntax
2032 @cindex Org syntax
2034 A reference document providing a formal description of Org's syntax is
2035 available as @uref{http://orgmode.org/worg/dev/org-syntax.html, a draft on
2036 Worg}, written and maintained by Nicolas Goaziou.  It defines Org's core
2037 internal concepts such as @code{headlines}, @code{sections}, @code{affiliated
2038 keywords}, @code{(greater) elements} and @code{objects}.  Each part of an Org
2039 file falls into one of the categories above.
2041 To explore the abstract structure of an Org buffer, run this in a buffer:
2043 @lisp
2044 M-: (org-element-parse-buffer) RET
2045 @end lisp
2047 It will output a list containing the buffer's content represented as an
2048 abstract structure.  The export engine relies on the information stored in
2049 this list.  Most interactive commands (e.g., for structure editing) also
2050 rely on the syntactic meaning of the surrounding context.
2052 @cindex syntax checker
2053 @cindex linter
2054 You can check syntax in your documents using @code{org-lint} command.
2056 @node Tables
2057 @chapter Tables
2058 @cindex tables
2059 @cindex editing tables
2061 Org comes with a fast and intuitive table editor.  Spreadsheet-like
2062 calculations are supported using the Emacs @file{calc} package
2063 (@pxref{Top, Calc, , calc, Gnu Emacs Calculator Manual}).
2065 @menu
2066 * Built-in table editor::       Simple tables
2067 * Column width and alignment::  Overrule the automatic settings
2068 * Column groups::               Grouping to trigger vertical lines
2069 * Orgtbl mode::                 The table editor as minor mode
2070 * The spreadsheet::             The table editor has spreadsheet capabilities
2071 * Org-Plot::                    Plotting from org tables
2072 @end menu
2074 @node Built-in table editor
2075 @section The built-in table editor
2076 @cindex table editor, built-in
2078 Org makes it easy to format tables in plain ASCII@.  Any line with @samp{|} as
2079 the first non-whitespace character is considered part of a table.  @samp{|}
2080 is also the column separator@footnote{To insert a vertical bar into a table
2081 field, use @code{\vert} or, inside a word @code{abc\vert@{@}def}.}.  A table
2082 might look like this:
2084 @example
2085 | Name  | Phone | Age |
2086 |-------+-------+-----|
2087 | Peter |  1234 |  17 |
2088 | Anna  |  4321 |  25 |
2089 @end example
2091 A table is re-aligned automatically each time you press @key{TAB} or
2092 @key{RET} or @kbd{C-c C-c} inside the table.  @key{TAB} also moves to
2093 the next field (@key{RET} to the next row) and creates new table rows
2094 at the end of the table or before horizontal lines.  The indentation
2095 of the table is set by the first line.  Any line starting with
2096 @samp{|-} is considered as a horizontal separator line and will be
2097 expanded on the next re-align to span the whole table width.  So, to
2098 create the above table, you would only type
2100 @example
2101 |Name|Phone|Age|
2103 @end example
2105 @noindent and then press @key{TAB} to align the table and start filling in
2106 fields.  Even faster would be to type @code{|Name|Phone|Age} followed by
2107 @kbd{C-c @key{RET}}.
2109 @vindex org-table-auto-blank-field
2110 When typing text into a field, Org treats @key{DEL}, @key{Backspace}, and all
2111 character keys in a special way, so that inserting and deleting avoids
2112 shifting other fields.  Also, when typing @emph{immediately after the cursor
2113 was moved into a new field with @kbd{@key{TAB}}, @kbd{S-@key{TAB}} or
2114 @kbd{@key{RET}}}, the field is automatically made blank.  If this behavior is
2115 too unpredictable for you, configure the option
2116 @code{org-table-auto-blank-field}.
2118 @table @kbd
2119 @tsubheading{Creation and conversion}
2120 @orgcmd{C-c |,org-table-create-or-convert-from-region}
2121 Convert the active region to a table.  If every line contains at least one
2122 TAB character, the function assumes that the material is tab separated.
2123 If every line contains a comma, comma-separated values (CSV) are assumed.
2124 If not, lines are split at whitespace into fields.  You can use a prefix
2125 argument to force a specific separator: @kbd{C-u} forces CSV, @kbd{C-u
2126 C-u} forces TAB, @kbd{C-u C-u C-u} will prompt for a regular expression to
2127 match the separator, and a numeric argument N indicates that at least N
2128 consecutive spaces, or alternatively a TAB will be the separator.
2130 If there is no active region, this command creates an empty Org
2131 table.  But it is easier just to start typing, like
2132 @kbd{|Name|Phone|Age @key{RET} |- @key{TAB}}.
2134 @tsubheading{Re-aligning and field motion}
2135 @orgcmd{C-c C-c,org-table-align}
2136 Re-align the table and don't move to another field.
2138 @orgcmd{C-c SPC,org-table-blank-field}
2139 Blank the field at point.
2141 @orgcmd{TAB,org-table-next-field}
2142 Re-align the table, move to the next field.  Creates a new row if
2143 necessary.
2145 @orgcmd{S-@key{TAB},org-table-previous-field}
2146 Re-align, move to previous field.
2148 @orgcmd{@key{RET},org-table-next-row}
2149 Re-align the table and move down to next row.  Creates a new row if
2150 necessary.  At the beginning or end of a line, @key{RET} still does
2151 NEWLINE, so it can be used to split a table.
2153 @orgcmd{M-a,org-table-beginning-of-field}
2154 Move to beginning of the current table field, or on to the previous field.
2155 @orgcmd{M-e,org-table-end-of-field}
2156 Move to end of the current table field, or on to the next field.
2158 @tsubheading{Column and row editing}
2159 @orgcmdkkcc{M-@key{left},M-@key{right},org-table-move-column-left,org-table-move-column-right}
2160 Move the current column left/right.
2162 @orgcmd{M-S-@key{left},org-table-delete-column}
2163 Kill the current column.
2165 @orgcmd{M-S-@key{right},org-table-insert-column}
2166 Insert a new column to the left of the cursor position.
2168 @orgcmdkkcc{M-@key{up},M-@key{down},org-table-move-row-up,org-table-move-row-down}
2169 Move the current row up/down.
2171 @orgcmd{M-S-@key{up},org-table-kill-row}
2172 Kill the current row or horizontal line.
2174 @orgcmd{M-S-@key{down},org-table-insert-row}
2175 Insert a new row above the current row.  With a prefix argument, the line is
2176 created below the current one.
2178 @orgcmd{C-c -,org-table-insert-hline}
2179 Insert a horizontal line below current row.  With a prefix argument, the line
2180 is created above the current line.
2182 @orgcmd{C-c @key{RET},org-table-hline-and-move}
2183 Insert a horizontal line below current row, and move the cursor into the row
2184 below that line.
2186 @orgcmd{C-c ^,org-table-sort-lines}
2187 Sort the table lines in the region.  The position of point indicates the
2188 column to be used for sorting, and the range of lines is the range
2189 between the nearest horizontal separator lines, or the entire table.  If
2190 point is before the first column, you will be prompted for the sorting
2191 column.  If there is an active region, the mark specifies the first line
2192 and the sorting column, while point should be in the last line to be
2193 included into the sorting.  The command prompts for the sorting type
2194 (alphabetically, numerically, or by time).  You can sort in normal or
2195 reverse order.  You can also supply your own key extraction and comparison
2196 functions.  When called with a prefix argument, alphabetic sorting will be
2197 case-sensitive.
2199 @tsubheading{Regions}
2200 @orgcmd{C-c C-x M-w,org-table-copy-region}
2201 Copy a rectangular region from a table to a special clipboard.  Point and
2202 mark determine edge fields of the rectangle.  If there is no active region,
2203 copy just the current field.  The process ignores horizontal separator lines.
2205 @orgcmd{C-c C-x C-w,org-table-cut-region}
2206 Copy a rectangular region from a table to a special clipboard, and
2207 blank all fields in the rectangle.  So this is the ``cut'' operation.
2209 @orgcmd{C-c C-x C-y,org-table-paste-rectangle}
2210 Paste a rectangular region into a table.
2211 The upper left corner ends up in the current field.  All involved fields
2212 will be overwritten.  If the rectangle does not fit into the present table,
2213 the table is enlarged as needed.  The process ignores horizontal separator
2214 lines.
2216 @orgcmd{M-@key{RET},org-table-wrap-region}
2217 Split the current field at the cursor position and move the rest to the line
2218 below.  If there is an active region, and both point and mark are in the same
2219 column, the text in the column is wrapped to minimum width for the given
2220 number of lines.  A numeric prefix argument may be used to change the number
2221 of desired lines.  If there is no region, but you specify a prefix argument,
2222 the current field is made blank, and the content is appended to the field
2223 above.
2225 @tsubheading{Calculations}
2226 @cindex formula, in tables
2227 @cindex calculations, in tables
2228 @cindex region, active
2229 @cindex active region
2230 @cindex transient mark mode
2231 @orgcmd{C-c +,org-table-sum}
2232 Sum the numbers in the current column, or in the rectangle defined by
2233 the active region.  The result is shown in the echo area and can
2234 be inserted with @kbd{C-y}.
2236 @orgcmd{S-@key{RET},org-table-copy-down}
2237 @vindex org-table-copy-increment
2238 When current field is empty, copy from first non-empty field above.  When not
2239 empty, copy current field down to next row and move cursor along with it.
2240 Depending on the option @code{org-table-copy-increment}, integer field
2241 values will be incremented during copy.  Integers that are too large will not
2242 be incremented.  Also, a @code{0} prefix argument temporarily disables the
2243 increment.  This key is also used by shift-selection and related modes
2244 (@pxref{Conflicts}).
2246 @tsubheading{Miscellaneous}
2247 @orgcmd{C-c `,org-table-edit-field}
2248 Edit the current field in a separate window.  This is useful for fields that
2249 are not fully visible (@pxref{Column width and alignment}).  When called with
2250 a @kbd{C-u} prefix, just make the full field visible, so that it can be
2251 edited in place.  When called with two @kbd{C-u} prefixes, make the editor
2252 window follow the cursor through the table and always show the current
2253 field.  The follow mode exits automatically when the cursor leaves the table,
2254 or when you repeat this command with @kbd{C-u C-u C-c `}.
2256 @item M-x org-table-import RET
2257 Import a file as a table.  The table should be TAB or whitespace
2258 separated.  Use, for example, to import a spreadsheet table or data
2259 from a database, because these programs generally can write
2260 TAB-separated text files.  This command works by inserting the file into
2261 the buffer and then converting the region to a table.  Any prefix
2262 argument is passed on to the converter, which uses it to determine the
2263 separator.
2264 @orgcmd{C-c |,org-table-create-or-convert-from-region}
2265 Tables can also be imported by pasting tabular text into the Org
2266 buffer, selecting the pasted text with @kbd{C-x C-x} and then using the
2267 @kbd{C-c |} command (see above under @i{Creation and conversion}).
2269 @item M-x org-table-export RET
2270 @findex org-table-export
2271 @vindex org-table-export-default-format
2272 Export the table, by default as a TAB-separated file.  Use for data
2273 exchange with, for example, spreadsheet or database programs.  The format
2274 used to export the file can be configured in the option
2275 @code{org-table-export-default-format}.  You may also use properties
2276 @code{TABLE_EXPORT_FILE} and @code{TABLE_EXPORT_FORMAT} to specify the file
2277 name and the format for table export in a subtree.  Org supports quite
2278 general formats for exported tables.  The exporter format is the same as the
2279 format used by Orgtbl radio tables, see @ref{Translator functions}, for a
2280 detailed description.
2281 @end table
2283 If you don't like the automatic table editor because it gets in your
2284 way on lines which you would like to start with @samp{|}, you can turn
2285 it off with
2287 @lisp
2288 (setq org-enable-table-editor nil)
2289 @end lisp
2291 @noindent Then the only table command that still works is
2292 @kbd{C-c C-c} to do a manual re-align.
2294 @node Column width and alignment
2295 @section Column width and alignment
2296 @cindex narrow columns in tables
2297 @cindex alignment in tables
2299 The width of columns is automatically determined by the table editor.  The
2300 alignment of a column is determined automatically from the fraction of
2301 number-like versus non-number fields in the column.
2303 @vindex org-table-automatic-realign
2304 Editing a field may modify alignment of the table.  Moving a contiguous row
2305 or column---i.e., using @kbd{TAB} or @kbd{RET}---automatically re-aligns it.
2306 If you want to disable this behavior, set @code{org-table-automatic-realign}
2307 to @code{nil}.  In any case, you can always align manually a table:
2309 @table @asis
2310 @orgcmd{C-c C-c,org-table-align}
2311 Align the current table.
2312 @end table
2314 @vindex org-startup-align-all-tables
2315 @noindent
2316 Setting the option @code{org-startup-align-all-tables} re-aligns all tables
2317 in a file upon visiting it.  You can also set this option on a per-file basis
2318 with:
2320 @example
2321 #+STARTUP: align
2322 #+STARTUP: noalign
2323 @end example
2325 Sometimes a single field or a few fields need to carry more text, leading to
2326 inconveniently wide columns.  Maybe you want to hide away several columns or
2327 display them with a fixed width, regardless of content, as shown in the
2328 following example.
2330 @example
2331 @group
2332 |---+---------------------+--------|           |---+-------@dots{}|@dots{}|
2333 |   | <6>                 |        |           |   | <6>   @dots{}|@dots{}|
2334 | 1 | one                 | some   |   ----\   | 1 | one   @dots{}|@dots{}|
2335 | 2 | two                 | boring |   ----/   | 2 | two   @dots{}|@dots{}|
2336 | 3 | This is a long text | column |           | 3 | This i@dots{}|@dots{}|
2337 |---+---------------------+--------|           |---+-------@dots{}|@dots{}|
2338 @end group
2339 @end example
2341 To set the width of a column, one field anywhere in the column may contain
2342 just the string @samp{<N>} where @samp{N} specifies the width as a number of
2343 characters.  You control displayed width of columns with the following tools:
2345 @table @asis
2346 @orgcmd{C-c @key{TAB},org-table-toggle-column-width}
2347 Shrink or expand current column.
2349 If a width cookie specifies a width W for the column, shrinking it displays
2350 the first W visible characters only.  Otherwise, the column is shrunk to
2351 a single character.
2353 When called before the first column or after the last one, ask for a list of
2354 column ranges to operate on.
2356 @orgcmd{C-u C-c @key{TAB},org-table-shrink}
2357 Shrink all columns with a column width.  Expand the others.
2359 @orgcmd{C-u C-u C-c @key{TAB},org-table-expand}
2360 Expand all columns.
2361 @end table
2363 To see the full text of a shrunk field, hold the mouse over it---a tool-tip
2364 window then shows the full content.  Alternatively @kbd{C-h .}
2365 (@code{display-local-help}) reveals the full content.  For convenience, any
2366 change to a shrunk column expands it.
2368 @vindex org-startup-shrink-all-tables
2369 Setting the option @code{org-startup-shrink-all-tables} shrinks all columns
2370 containing a width cookie in a file the moment it is visited.  You can also
2371 set this option on a per-file basis with:
2373 @example
2374 #+STARTUP: shrink
2375 @end example
2377 If you would like to overrule the automatic alignment of number-rich columns
2378 to the right and of string-rich columns to the left, you can use @samp{<r>},
2379 @samp{<c>} or @samp{<l>} in a similar fashion.  You may also combine
2380 alignment and field width like this: @samp{<r10>}.
2382 Lines which only contain these formatting cookies are removed automatically
2383 upon exporting the document.
2385 @node Column groups
2386 @section Column groups
2387 @cindex grouping columns in tables
2389 When Org exports tables, it does so by default without vertical lines because
2390 that is visually more satisfying in general.  Occasionally however, vertical
2391 lines can be useful to structure a table into groups of columns, much like
2392 horizontal lines can do for groups of rows.  In order to specify column
2393 groups, you can use a special row where the first field contains only
2394 @samp{/}.  The further fields can either contain @samp{<} to indicate that
2395 this column should start a group, @samp{>} to indicate the end of a group, or
2396 @samp{<>} (no space between @samp{<} and @samp{>}) to make a column a group
2397 of its own.  Boundaries between column groups will upon export be marked with
2398 vertical lines.  Here is an example:
2400 @example
2401 | N | N^2 | N^3 | N^4 | ~sqrt(n)~ | ~sqrt[4](N)~ |
2402 |---+-----+-----+-----+-----------+--------------|
2403 | / |   < |     |   > |         < |            > |
2404 | 1 |   1 |   1 |   1 |         1 |            1 |
2405 | 2 |   4 |   8 |  16 |    1.4142 |       1.1892 |
2406 | 3 |   9 |  27 |  81 |    1.7321 |       1.3161 |
2407 |---+-----+-----+-----+-----------+--------------|
2408 #+TBLFM: $2=$1^2::$3=$1^3::$4=$1^4::$5=sqrt($1)::$6=sqrt(sqrt(($1)))
2409 @end example
2411 It is also sufficient to just insert the column group starters after
2412 every vertical line you would like to have:
2414 @example
2415 |  N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N) |
2416 |----+-----+-----+-----+---------+------------|
2417 | /  | <   |     |     | <       |            |
2418 @end example
2420 @node Orgtbl mode
2421 @section The Orgtbl minor mode
2422 @cindex Orgtbl mode
2423 @cindex minor mode for tables
2425 If you like the intuitive way the Org table editor works, you
2426 might also want to use it in other modes like Text mode or Mail mode.
2427 The minor mode Orgtbl mode makes this possible.  You can always toggle
2428 the mode with @kbd{M-x orgtbl-mode RET}.  To turn it on by default, for
2429 example in Message mode, use
2431 @lisp
2432 (add-hook 'message-mode-hook 'turn-on-orgtbl)
2433 @end lisp
2435 Furthermore, with some special setup, it is possible to maintain tables
2436 in arbitrary syntax with Orgtbl mode.  For example, it is possible to
2437 construct @LaTeX{} tables with the underlying ease and power of
2438 Orgtbl mode, including spreadsheet capabilities.  For details, see
2439 @ref{Tables in arbitrary syntax}.
2441 @node The spreadsheet
2442 @section The spreadsheet
2443 @cindex calculations, in tables
2444 @cindex spreadsheet capabilities
2445 @cindex @file{calc} package
2447 The table editor makes use of the Emacs @file{calc} package to implement
2448 spreadsheet-like capabilities.  It can also evaluate Emacs Lisp forms to
2449 derive fields from other fields.  While fully featured, Org's implementation
2450 is not identical to other spreadsheets.  For example, Org knows the concept
2451 of a @emph{column formula} that will be applied to all non-header fields in a
2452 column without having to copy the formula to each relevant field.  There is
2453 also a formula debugger, and a formula editor with features for highlighting
2454 fields in the table corresponding to the references at the point in the
2455 formula, moving these references by arrow keys
2457 @menu
2458 * References::                  How to refer to another field or range
2459 * Formula syntax for Calc::     Using Calc to compute stuff
2460 * Formula syntax for Lisp::     Writing formulas in Emacs Lisp
2461 * Durations and time values::   How to compute durations and time values
2462 * Field and range formulas::    Formula for specific (ranges of) fields
2463 * Column formulas::             Formulas valid for an entire column
2464 * Lookup functions::            Lookup functions for searching tables
2465 * Editing and debugging formulas::  Fixing formulas
2466 * Updating the table::          Recomputing all dependent fields
2467 * Advanced features::           Field and column names, parameters and automatic recalc
2468 @end menu
2470 @node References
2471 @subsection References
2472 @cindex references
2474 To compute fields in the table from other fields, formulas must
2475 reference other fields or ranges.  In Org, fields can be referenced
2476 by name, by absolute coordinates, and by relative coordinates.  To find
2477 out what the coordinates of a field are, press @kbd{C-c ?} in that
2478 field, or press @kbd{C-c @}} to toggle the display of a grid.
2480 @subsubheading Field references
2481 @cindex field references
2482 @cindex references, to fields
2484 Formulas can reference the value of another field in two ways.  Like in
2485 any other spreadsheet, you may reference fields with a letter/number
2486 combination like @code{B3}, meaning the 2nd field in the 3rd row.
2487 @vindex org-table-use-standard-references
2488 However, Org prefers@footnote{Org will understand references typed by the
2489 user as @samp{B4}, but it will not use this syntax when offering a formula
2490 for editing.  You can customize this behavior using the option
2491 @code{org-table-use-standard-references}.} to use another, more general
2492 representation that looks like this:
2493 @example
2494 @@@var{row}$@var{column}
2495 @end example
2497 Column specifications can be absolute like @code{$1},
2498 @code{$2},...@code{$@var{N}}, or relative to the current column (i.e., the
2499 column of the field which is being computed) like @code{$+1} or @code{$-2}.
2500 @code{$<} and @code{$>} are immutable references to the first and last
2501 column, respectively, and you can use @code{$>>>} to indicate the third
2502 column from the right.
2504 The row specification only counts data lines and ignores horizontal separator
2505 lines (hlines).  Like with columns, you can use absolute row numbers
2506 @code{@@1}, @code{@@2},...@code{@@@var{N}}, and row numbers relative to the
2507 current row like @code{@@+3} or @code{@@-1}.  @code{@@<} and @code{@@>} are
2508 immutable references the first and last@footnote{For backward compatibility
2509 you can also use special names like @code{$LR5} and @code{$LR12} to refer in
2510 a stable way to the 5th and 12th field in the last row of the table.
2511 However, this syntax is deprecated, it should not be used for new documents.
2512 Use @code{@@>$} instead.} row in the table, respectively.  You may also
2513 specify the row relative to one of the hlines: @code{@@I} refers to the first
2514 hline, @code{@@II} to the second, etc.  @code{@@-I} refers to the first such
2515 line above the current line, @code{@@+I} to the first such line below the
2516 current line.  You can also write @code{@@III+2} which is the second data line
2517 after the third hline in the table.
2519 @code{@@0} and @code{$0} refer to the current row and column, respectively,
2520 i.e., to the row/column for the field being computed.  Also, if you omit
2521 either the column or the row part of the reference, the current row/column is
2522 implied.
2524 Org's references with @emph{unsigned} numbers are fixed references
2525 in the sense that if you use the same reference in the formula for two
2526 different fields, the same field will be referenced each time.
2527 Org's references with @emph{signed} numbers are floating
2528 references because the same reference operator can reference different
2529 fields depending on the field being calculated by the formula.
2531 Here are a few examples:
2533 @example
2534 @@2$3      @r{2nd row, 3rd column (same as @code{C2})}
2535 $5        @r{column 5 in the current row (same as @code{E&})}
2536 @@2        @r{current column, row 2}
2537 @@-1$-3    @r{the field one row up, three columns to the left}
2538 @@-I$2     @r{field just under hline above current row, column 2}
2539 @@>$5      @r{field in the last row, in column 5}
2540 @end example
2542 @subsubheading Range references
2543 @cindex range references
2544 @cindex references, to ranges
2546 You may reference a rectangular range of fields by specifying two field
2547 references connected by two dots @samp{..}.  If both fields are in the
2548 current row, you may simply use @samp{$2..$7}, but if at least one field
2549 is in a different row, you need to use the general @code{@@row$column}
2550 format at least for the first field (i.e the reference must start with
2551 @samp{@@} in order to be interpreted correctly).  Examples:
2553 @example
2554 $1..$3        @r{first three fields in the current row}
2555 $P..$Q        @r{range, using column names (see under Advanced)}
2556 $<<<..$>>     @r{start in third column, continue to the last but one}
2557 @@2$1..@@4$3    @r{6 fields between these two fields (same as @code{A2..C4})}
2558 @@-1$-2..@@-1   @r{3 fields in the row above, starting from 2 columns on the left}
2559 @@I..II        @r{between first and second hline, short for @code{@@I..@@II}}
2560 @end example
2562 @noindent Range references return a vector of values that can be fed
2563 into Calc vector functions.  Empty fields in ranges are normally suppressed,
2564 so that the vector contains only the non-empty fields.  For other options
2565 with the mode switches @samp{E}, @samp{N} and examples @pxref{Formula syntax
2566 for Calc}.
2568 @subsubheading Field coordinates in formulas
2569 @cindex field coordinates
2570 @cindex coordinates, of field
2571 @cindex row, of field coordinates
2572 @cindex column, of field coordinates
2574 One of the very first actions during evaluation of Calc formulas and Lisp
2575 formulas is to substitute @code{@@#} and @code{$#} in the formula with the
2576 row or column number of the field where the current result will go to.  The
2577 traditional Lisp formula equivalents are @code{org-table-current-dline} and
2578 @code{org-table-current-column}.  Examples:
2580 @table @code
2581 @item if(@@# % 2, $#, string(""))
2582 Insert column number on odd rows, set field to empty on even rows.
2583 @item $2 = '(identity remote(FOO, @@@@#$1))
2584 Copy text or values of each row of column 1 of the table named @code{FOO}
2585 into column 2 of the current table.
2586 @item @@3 = 2 * remote(FOO, @@1$$#)
2587 Insert the doubled value of each column of row 1 of the table named
2588 @code{FOO} into row 3 of the current table.
2589 @end table
2591 @noindent For the second/third example, the table named @code{FOO} must have
2592 at least as many rows/columns as the current table.  Note that this is
2593 inefficient@footnote{The computation time scales as O(N^2) because the table
2594 named @code{FOO} is parsed for each field to be read.} for large number of
2595 rows/columns.
2597 @subsubheading Named references
2598 @cindex named references
2599 @cindex references, named
2600 @cindex name, of column or field
2601 @cindex constants, in calculations
2602 @cindex #+CONSTANTS
2604 @vindex org-table-formula-constants
2605 @samp{$name} is interpreted as the name of a column, parameter or
2606 constant.  Constants are defined globally through the option
2607 @code{org-table-formula-constants}, and locally (for the file) through a
2608 line like
2610 @example
2611 #+CONSTANTS: c=299792458. pi=3.14 eps=2.4e-6
2612 @end example
2614 @noindent
2615 @vindex constants-unit-system
2616 @pindex constants.el
2617 Also properties (@pxref{Properties and columns}) can be used as
2618 constants in table formulas: for a property @samp{:Xyz:} use the name
2619 @samp{$PROP_Xyz}, and the property will be searched in the current
2620 outline entry and in the hierarchy above it.  If you have the
2621 @file{constants.el} package, it will also be used to resolve constants,
2622 including natural constants like @samp{$h} for Planck's constant, and
2623 units like @samp{$km} for kilometers@footnote{@file{constants.el} can
2624 supply the values of constants in two different unit systems, @code{SI}
2625 and @code{cgs}.  Which one is used depends on the value of the variable
2626 @code{constants-unit-system}.  You can use the @code{#+STARTUP} options
2627 @code{constSI} and @code{constcgs} to set this value for the current
2628 buffer.}.  Column names and parameters can be specified in special table
2629 lines.  These are described below, see @ref{Advanced features}.  All
2630 names must start with a letter, and further consist of letters and
2631 numbers.
2633 @subsubheading Remote references
2634 @cindex remote references
2635 @cindex references, remote
2636 @cindex references, to a different table
2637 @cindex name, of column or field
2638 @cindex constants, in calculations
2639 @cindex #+NAME, for table
2641 You may also reference constants, fields and ranges from a different table,
2642 either in the current file or even in a different file.  The syntax is
2644 @example
2645 remote(NAME-OR-ID,REF)
2646 @end example
2648 @noindent
2649 where NAME can be the name of a table in the current file as set by a
2650 @code{#+NAME: Name} line before the table.  It can also be the ID of an
2651 entry, even in a different file, and the reference then refers to the first
2652 table in that entry.  REF is an absolute field or range reference as
2653 described above for example @code{@@3$3} or @code{$somename}, valid in the
2654 referenced table.
2656 Indirection of NAME-OR-ID: When NAME-OR-ID has the format @code{@@ROW$COLUMN}
2657 it will be substituted with the name or ID found in this field of the current
2658 table.  For example @code{remote($1, @@>$2)} => @code{remote(year_2013,
2659 @@>$1)}.  The format @code{B3} is not supported because it can not be
2660 distinguished from a plain table name or ID.
2662 @node Formula syntax for Calc
2663 @subsection Formula syntax for Calc
2664 @cindex formula syntax, Calc
2665 @cindex syntax, of formulas
2667 A formula can be any algebraic expression understood by the Emacs @file{Calc}
2668 package.  Note that @file{calc} has the non-standard convention that @samp{/}
2669 has lower precedence than @samp{*}, so that @samp{a/b*c} is interpreted as
2670 @samp{a/(b*c)}.  Before evaluation by @code{calc-eval} (@pxref{Calling Calc
2671 from Your Programs, calc-eval, Calling Calc from Your Lisp Programs, calc,
2672 GNU Emacs Calc Manual}), variable substitution takes place according to the
2673 rules described above.
2674 @cindex vectors, in table calculations
2675 The range vectors can be directly fed into the Calc vector functions
2676 like @samp{vmean} and @samp{vsum}.
2678 @cindex format specifier
2679 @cindex mode, for @file{calc}
2680 @vindex org-calc-default-modes
2681 A formula can contain an optional mode string after a semicolon.  This
2682 string consists of flags to influence Calc and other modes during
2683 execution.  By default, Org uses the standard Calc modes (precision
2684 12, angular units degrees, fraction and symbolic modes off).  The display
2685 format, however, has been changed to @code{(float 8)} to keep tables
2686 compact.  The default settings can be configured using the option
2687 @code{org-calc-default-modes}.
2689 @noindent List of modes:
2691 @table @asis
2692 @item @code{p20}
2693 Set the internal Calc calculation precision to 20 digits.
2694 @item @code{n3}, @code{s3}, @code{e2}, @code{f4}
2695 Normal, scientific, engineering or fixed format of the result of Calc passed
2696 back to Org.  Calc formatting is unlimited in precision as long as the Calc
2697 calculation precision is greater.
2698 @item @code{D}, @code{R}
2699 Degree and radian angle modes of Calc.
2700 @item @code{F}, @code{S}
2701 Fraction and symbolic modes of Calc.
2702 @item @code{T}, @code{t}, @code{U}
2703 Duration computations in Calc or Lisp, @pxref{Durations and time values}.
2704 @item @code{E}
2705 If and how to consider empty fields.  Without @samp{E} empty fields in range
2706 references are suppressed so that the Calc vector or Lisp list contains only
2707 the non-empty fields.  With @samp{E} the empty fields are kept.  For empty
2708 fields in ranges or empty field references the value @samp{nan} (not a
2709 number) is used in Calc formulas and the empty string is used for Lisp
2710 formulas.  Add @samp{N} to use 0 instead for both formula types.  For the
2711 value of a field the mode @samp{N} has higher precedence than @samp{E}.
2712 @item @code{N}
2713 Interpret all fields as numbers, use 0 for non-numbers.  See the next section
2714 to see how this is essential for computations with Lisp formulas.  In Calc
2715 formulas it is used only occasionally because there number strings are
2716 already interpreted as numbers without @samp{N}.
2717 @item @code{L}
2718 Literal, for Lisp formulas only.  See the next section.
2719 @end table
2721 @noindent
2722 Unless you use large integer numbers or high-precision-calculation and
2723 -display for floating point numbers you may alternatively provide a
2724 @samp{printf} format specifier to reformat the Calc result after it has been
2725 passed back to Org instead of letting Calc already do the
2726 formatting@footnote{The @samp{printf} reformatting is limited in precision
2727 because the value passed to it is converted into an @samp{integer} or
2728 @samp{double}.  The @samp{integer} is limited in size by truncating the
2729 signed value to 32 bits.  The @samp{double} is limited in precision to 64
2730 bits overall which leaves approximately 16 significant decimal digits.}.  A
2731 few examples:
2733 @example
2734 $1+$2                @r{Sum of first and second field}
2735 $1+$2;%.2f           @r{Same, format result to two decimals}
2736 exp($2)+exp($1)      @r{Math functions can be used}
2737 $0;%.1f              @r{Reformat current cell to 1 decimal}
2738 ($3-32)*5/9          @r{Degrees F -> C conversion}
2739 $c/$1/$cm            @r{Hz -> cm conversion, using @file{constants.el}}
2740 tan($1);Dp3s1        @r{Compute in degrees, precision 3, display SCI 1}
2741 sin($1);Dp3%.1e      @r{Same, but use printf specifier for display}
2742 taylor($3,x=7,2)     @r{Taylor series of $3, at x=7, second degree}
2743 @end example
2745 Calc also contains a complete set of logical operations, (@pxref{Logical
2746 Operations, , Logical Operations, calc, GNU Emacs Calc Manual}).  For example
2748 @table @code
2749 @item if($1 < 20, teen, string(""))
2750 "teen" if age $1 is less than 20, else the Org table result field is set to
2751 empty with the empty string.
2752 @item if("$1" == "nan" || "$2" == "nan", string(""), $1 + $2); E f-1
2753 Sum of the first two columns.  When at least one of the input fields is empty
2754 the Org table result field is set to empty.  @samp{E} is required to not
2755 convert empty fields to 0.  @samp{f-1} is an optional Calc format string
2756 similar to @samp{%.1f} but leaves empty results empty.
2757 @item if(typeof(vmean($1..$7)) == 12, string(""), vmean($1..$7); E
2758 Mean value of a range unless there is any empty field.  Every field in the
2759 range that is empty is replaced by @samp{nan} which lets @samp{vmean} result
2760 in @samp{nan}.  Then @samp{typeof == 12} detects the @samp{nan} from
2761 @samp{vmean} and the Org table result field is set to empty.  Use this when
2762 the sample set is expected to never have missing values.
2763 @item if("$1..$7" == "[]", string(""), vmean($1..$7))
2764 Mean value of a range with empty fields skipped.  Every field in the range
2765 that is empty is skipped.  When all fields in the range are empty the mean
2766 value is not defined and the Org table result field is set to empty.  Use
2767 this when the sample set can have a variable size.
2768 @item vmean($1..$7); EN
2769 To complete the example before: Mean value of a range with empty fields
2770 counting as samples with value 0.  Use this only when incomplete sample sets
2771 should be padded with 0 to the full size.
2772 @end table
2774 You can add your own Calc functions defined in Emacs Lisp with @code{defmath}
2775 and use them in formula syntax for Calc.
2777 @node Formula syntax for Lisp
2778 @subsection Emacs Lisp forms as formulas
2779 @cindex Lisp forms, as table formulas
2781 It is also possible to write a formula in Emacs Lisp.  This can be useful
2782 for string manipulation and control structures, if Calc's functionality is
2783 not enough.
2785 If a formula starts with an apostrophe followed by an opening parenthesis,
2786 then it is evaluated as a Lisp form.  The evaluation should return either a
2787 string or a number.  Just as with @file{calc} formulas, you can specify modes
2788 and a printf format after a semicolon.
2790 With Emacs Lisp forms, you need to be conscious about the way field
2791 references are interpolated into the form.  By default, a reference will be
2792 interpolated as a Lisp string (in double-quotes) containing the field.  If
2793 you provide the @samp{N} mode switch, all referenced elements will be numbers
2794 (non-number fields will be zero) and interpolated as Lisp numbers, without
2795 quotes.  If you provide the @samp{L} flag, all fields will be interpolated
2796 literally, without quotes.  I.e., if you want a reference to be interpreted
2797 as a string by the Lisp form, enclose the reference operator itself in
2798 double-quotes, like @code{"$3"}.  Ranges are inserted as space-separated
2799 fields, so you can embed them in list or vector syntax.
2801 Here are a few examples---note how the @samp{N} mode is used when we do
2802 computations in Lisp:
2804 @table @code
2805 @item '(concat (substring $1 1 2) (substring $1 0 1) (substring $1 2))
2806 Swap the first two characters of the content of column 1.
2807 @item '(+ $1 $2);N
2808 Add columns 1 and 2, equivalent to Calc's @code{$1+$2}.
2809 @item '(apply '+ '($1..$4));N
2810 Compute the sum of columns 1 to 4, like Calc's @code{vsum($1..$4)}.
2811 @end table
2813 @node Durations and time values
2814 @subsection Durations and time values
2815 @cindex Duration, computing
2816 @cindex Time, computing
2817 @vindex org-table-duration-custom-format
2819 If you want to compute time values use the @code{T}, @code{t}, or @code{U}
2820 flag, either in Calc formulas or Elisp formulas:
2822 @example
2823 @group
2824   |  Task 1 |   Task 2 |    Total |
2825   |---------+----------+----------|
2826   |    2:12 |     1:47 | 03:59:00 |
2827   |    2:12 |     1:47 |    03:59 |
2828   | 3:02:20 | -2:07:00 |     0.92 |
2829   #+TBLFM: @@2$3=$1+$2;T::@@3$3=$1+$2;U::@@4$3=$1+$2;t
2830 @end group
2831 @end example
2833 Input duration values must be of the form @code{HH:MM[:SS]}, where seconds
2834 are optional.  With the @code{T} flag, computed durations will be displayed
2835 as @code{HH:MM:SS} (see the first formula above).  With the @code{U} flag,
2836 seconds will be omitted so that the result will be only @code{HH:MM} (see
2837 second formula above).  Zero-padding of the hours field will depend upon the
2838 value of the variable @code{org-table-duration-hour-zero-padding}.
2840 With the @code{t} flag, computed durations will be displayed according to the
2841 value of the option @code{org-table-duration-custom-format}, which defaults
2842 to @code{'hours} and will display the result as a fraction of hours (see the
2843 third formula in the example above).
2845 Negative duration values can be manipulated as well, and integers will be
2846 considered as seconds in addition and subtraction.
2848 @node Field and range formulas
2849 @subsection Field and range formulas
2850 @cindex field formula
2851 @cindex range formula
2852 @cindex formula, for individual table field
2853 @cindex formula, for range of fields
2855 To assign a formula to a particular field, type it directly into the field,
2856 preceded by @samp{:=}, for example @samp{:=vsum(@@II..III)}.  When you press
2857 @key{TAB} or @key{RET} or @kbd{C-c C-c} with the cursor still in the field,
2858 the formula will be stored as the formula for this field, evaluated, and the
2859 current field will be replaced with the result.
2861 @cindex #+TBLFM
2862 Formulas are stored in a special line starting with @samp{#+TBLFM:} directly
2863 below the table.  If you type the equation in the 4th field of the 3rd data
2864 line in the table, the formula will look like @samp{@@3$4=$1+$2}.  When
2865 inserting/deleting/swapping columns and rows with the appropriate commands,
2866 @i{absolute references} (but not relative ones) in stored formulas are
2867 modified in order to still reference the same field.  To avoid this, in
2868 particular in range references, anchor ranges at the table borders (using
2869 @code{@@<}, @code{@@>}, @code{$<}, @code{$>}), or at hlines using the
2870 @code{@@I} notation.  Automatic adaptation of field references does of course
2871 not happen if you edit the table structure with normal editing
2872 commands---then you must fix the equations yourself.
2874 Instead of typing an equation into the field, you may also use the following
2875 command
2877 @table @kbd
2878 @orgcmd{C-u C-c =,org-table-eval-formula}
2879 Install a new formula for the current field.  The command prompts for a
2880 formula with default taken from the @samp{#+TBLFM:} line, applies
2881 it to the current field, and stores it.
2882 @end table
2884 The left-hand side of a formula can also be a special expression in order to
2885 assign the formula to a number of different fields.  There is no keyboard
2886 shortcut to enter such range formulas.  To add them, use the formula editor
2887 (@pxref{Editing and debugging formulas}) or edit the @code{#+TBLFM:} line
2888 directly.
2890 @table @code
2891 @item $2=
2892 Column formula, valid for the entire column.  This is so common that Org
2893 treats these formulas in a special way, see @ref{Column formulas}.
2894 @item @@3=
2895 Row formula, applies to all fields in the specified row.  @code{@@>=} means
2896 the last row.
2897 @item @@1$2..@@4$3=
2898 Range formula, applies to all fields in the given rectangular range.  This
2899 can also be used to assign a formula to some but not all fields in a row.
2900 @item $name=
2901 Named field, see @ref{Advanced features}.
2902 @end table
2904 @node Column formulas
2905 @subsection Column formulas
2906 @cindex column formula
2907 @cindex formula, for table column
2909 When you assign a formula to a simple column reference like @code{$3=}, the
2910 same formula will be used in all fields of that column, with the following
2911 very convenient exceptions: (i) If the table contains horizontal separator
2912 hlines with rows above and below, everything before the first such hline is
2913 considered part of the table @emph{header} and will not be modified by column
2914 formulas.  Therefore a header is mandatory when you use column formulas and
2915 want to add hlines to group rows, like for example to separate a total row at
2916 the bottom from the summand rows above.  (ii) Fields that already get a value
2917 from a field/range formula will be left alone by column formulas.  These
2918 conditions make column formulas very easy to use.
2920 To assign a formula to a column, type it directly into any field in the
2921 column, preceded by an equal sign, like @samp{=$1+$2}.  When you press
2922 @key{TAB} or @key{RET} or @kbd{C-c C-c} with the cursor still in the field,
2923 the formula will be stored as the formula for the current column, evaluated
2924 and the current field replaced with the result.  If the field contains only
2925 @samp{=}, the previously stored formula for this column is used.  For each
2926 column, Org will only remember the most recently used formula.  In the
2927 @samp{#+TBLFM:} line, column formulas will look like @samp{$4=$1+$2}.  The
2928 left-hand side of a column formula cannot be the name of column, it must be
2929 the numeric column reference or @code{$>}.
2931 Instead of typing an equation into the field, you may also use the
2932 following command:
2934 @table @kbd
2935 @orgcmd{C-c =,org-table-eval-formula}
2936 Install a new formula for the current column and replace current field with
2937 the result of the formula.  The command prompts for a formula, with default
2938 taken from the @samp{#+TBLFM} line, applies it to the current field and
2939 stores it.  With a numeric prefix argument(e.g., @kbd{C-5 C-c =}) the command
2940 will apply it to that many consecutive fields in the current column.
2941 @end table
2943 @node Lookup functions
2944 @subsection Lookup functions
2945 @cindex lookup functions in tables
2946 @cindex table lookup functions
2948 Org has three predefined Emacs Lisp functions for lookups in tables.
2949 @table @code
2950 @item (org-lookup-first VAL S-LIST R-LIST &optional PREDICATE)
2951 @findex org-lookup-first
2952 Searches for the first element @code{S} in list @code{S-LIST} for which
2953 @lisp
2954 (PREDICATE VAL S)
2955 @end lisp
2956 is @code{t}; returns the value from the corresponding position in list
2957 @code{R-LIST}.  The default @code{PREDICATE} is @code{equal}.  Note that the
2958 parameters @code{VAL} and @code{S} are passed to @code{PREDICATE} in the same
2959 order as the corresponding parameters are in the call to
2960 @code{org-lookup-first}, where @code{VAL} precedes @code{S-LIST}.  If
2961 @code{R-LIST} is @code{nil}, the matching element @code{S} of @code{S-LIST}
2962 is returned.
2963 @item (org-lookup-last VAL S-LIST R-LIST &optional PREDICATE)
2964 @findex org-lookup-last
2965 Similar to @code{org-lookup-first} above, but searches for the @i{last}
2966 element for which @code{PREDICATE} is @code{t}.
2967 @item (org-lookup-all VAL S-LIST R-LIST &optional PREDICATE)
2968 @findex org-lookup-all
2969 Similar to @code{org-lookup-first}, but searches for @i{all} elements for
2970 which @code{PREDICATE} is @code{t}, and returns @i{all} corresponding
2971 values.  This function can not be used by itself in a formula, because it
2972 returns a list of values.  However, powerful lookups can be built when this
2973 function is combined with other Emacs Lisp functions.
2974 @end table
2976 If the ranges used in these functions contain empty fields, the @code{E} mode
2977 for the formula should usually be specified: otherwise empty fields will not be
2978 included in @code{S-LIST} and/or @code{R-LIST} which can, for example, result
2979 in an incorrect mapping from an element of @code{S-LIST} to the corresponding
2980 element of @code{R-LIST}.
2982 These three functions can be used to implement associative arrays, count
2983 matching cells, rank results, group data etc.  For practical examples
2984 see @uref{http://orgmode.org/worg/org-tutorials/org-lookups.html, this
2985 tutorial on Worg}.
2987 @node Editing and debugging formulas
2988 @subsection Editing and debugging formulas
2989 @cindex formula editing
2990 @cindex editing, of table formulas
2992 @vindex org-table-use-standard-references
2993 You can edit individual formulas in the minibuffer or directly in the field.
2994 Org can also prepare a special buffer with all active formulas of a table.
2995 When offering a formula for editing, Org converts references to the standard
2996 format (like @code{B3} or @code{D&}) if possible.  If you prefer to only work
2997 with the internal format (like @code{@@3$2} or @code{$4}), configure the
2998 option @code{org-table-use-standard-references}.
3000 @table @kbd
3001 @orgcmdkkc{C-c =,C-u C-c =,org-table-eval-formula}
3002 Edit the formula associated with the current column/field in the
3003 minibuffer.  See @ref{Column formulas}, and @ref{Field and range formulas}.
3004 @orgcmd{C-u C-u C-c =,org-table-eval-formula}
3005 Re-insert the active formula (either a
3006 field formula, or a column formula) into the current field, so that you
3007 can edit it directly in the field.  The advantage over editing in the
3008 minibuffer is that you can use the command @kbd{C-c ?}.
3009 @orgcmd{C-c ?,org-table-field-info}
3010 While editing a formula in a table field, highlight the field(s)
3011 referenced by the reference at the cursor position in the formula.
3012 @kindex C-c @}
3013 @findex org-table-toggle-coordinate-overlays
3014 @item C-c @}
3015 Toggle the display of row and column numbers for a table, using overlays
3016 (@command{org-table-toggle-coordinate-overlays}).  These are updated each
3017 time the table is aligned; you can force it with @kbd{C-c C-c}.
3018 @kindex C-c @{
3019 @findex org-table-toggle-formula-debugger
3020 @item C-c @{
3021 Toggle the formula debugger on and off
3022 (@command{org-table-toggle-formula-debugger}).  See below.
3023 @orgcmd{C-c ',org-table-edit-formulas}
3024 Edit all formulas for the current table in a special buffer, where the
3025 formulas will be displayed one per line.  If the current field has an
3026 active formula, the cursor in the formula editor will mark it.
3027 While inside the special buffer, Org will automatically highlight
3028 any field or range reference at the cursor position.  You may edit,
3029 remove and add formulas, and use the following commands:
3031 @table @kbd
3032 @orgcmdkkc{C-c C-c,C-x C-s,org-table-fedit-finish}
3033 Exit the formula editor and store the modified formulas.  With @kbd{C-u}
3034 prefix, also apply the new formulas to the entire table.
3035 @orgcmd{C-c C-q,org-table-fedit-abort}
3036 Exit the formula editor without installing changes.
3037 @orgcmd{C-c C-r,org-table-fedit-toggle-ref-type}
3038 Toggle all references in the formula editor between standard (like
3039 @code{B3}) and internal (like @code{@@3$2}).
3040 @orgcmd{@key{TAB},org-table-fedit-lisp-indent}
3041 Pretty-print or indent Lisp formula at point.  When in a line containing
3042 a Lisp formula, format the formula according to Emacs Lisp rules.
3043 Another @key{TAB} collapses the formula back again.  In the open
3044 formula, @key{TAB} re-indents just like in Emacs Lisp mode.
3045 @orgcmd{M-@key{TAB},lisp-complete-symbol}
3046 Complete Lisp symbols, just like in Emacs Lisp mode.@footnote{Many desktops
3047 intercept @kbd{M-@key{TAB}} to switch windows.  Use @kbd{C-M-i} or
3048 @kbd{@key{ESC} @key{TAB}} instead for completion (@pxref{Completion}).}
3049 @kindex S-@key{up}
3050 @kindex S-@key{down}
3051 @kindex S-@key{left}
3052 @kindex S-@key{right}
3053 @findex org-table-fedit-ref-up
3054 @findex org-table-fedit-ref-down
3055 @findex org-table-fedit-ref-left
3056 @findex org-table-fedit-ref-right
3057 @item S-@key{up}/@key{down}/@key{left}/@key{right}
3058 Shift the reference at point.  For example, if the reference is
3059 @code{B3} and you press @kbd{S-@key{right}}, it will become @code{C3}.
3060 This also works for relative references and for hline references.
3061 @orgcmdkkcc{M-S-@key{up},M-S-@key{down},org-table-fedit-line-up,org-table-fedit-line-down}
3062 Move the test line for column formulas in the Org buffer up and
3063 down.
3064 @orgcmdkkcc{M-@key{up},M-@key{down},org-table-fedit-scroll-down,org-table-fedit-scroll-up}
3065 Scroll the window displaying the table.
3066 @kindex C-c @}
3067 @findex org-table-toggle-coordinate-overlays
3068 @item C-c @}
3069 Turn the coordinate grid in the table on and off.
3070 @end table
3071 @end table
3073 Making a table field blank does not remove the formula associated with
3074 the field, because that is stored in a different line (the @samp{#+TBLFM}
3075 line)---during the next recalculation the field will be filled again.
3076 To remove a formula from a field, you have to give an empty reply when
3077 prompted for the formula, or to edit the @samp{#+TBLFM} line.
3079 @kindex C-c C-c
3080 You may edit the @samp{#+TBLFM} directly and re-apply the changed
3081 equations with @kbd{C-c C-c} in that line or with the normal
3082 recalculation commands in the table.
3084 @anchor{Using multiple #+TBLFM lines}
3085 @subsubheading Using multiple #+TBLFM lines
3086 @cindex #+TBLFM line, multiple
3087 @cindex #+TBLFM
3088 @cindex #+TBLFM, switching
3089 @kindex C-c C-c
3091 You may apply the formula temporarily.  This is useful when you
3092 switch the formula.  Place multiple @samp{#+TBLFM} lines right
3093 after the table, and then press @kbd{C-c C-c} on the formula to
3094 apply.  Here is an example:
3096 @example
3097 | x | y |
3098 |---+---|
3099 | 1 |   |
3100 | 2 |   |
3101 #+TBLFM: $2=$1*1
3102 #+TBLFM: $2=$1*2
3103 @end example
3105 @noindent
3106 Pressing @kbd{C-c C-c} in the line of @samp{#+TBLFM: $2=$1*2} yields:
3108 @example
3109 | x | y |
3110 |---+---|
3111 | 1 | 2 |
3112 | 2 | 4 |
3113 #+TBLFM: $2=$1*1
3114 #+TBLFM: $2=$1*2
3115 @end example
3117 @noindent
3118 Note: If you recalculate this table (with @kbd{C-u C-c *}, for example), you
3119 will get the following result of applying only the first @samp{#+TBLFM} line.
3121 @example
3122 | x | y |
3123 |---+---|
3124 | 1 | 1 |
3125 | 2 | 2 |
3126 #+TBLFM: $2=$1*1
3127 #+TBLFM: $2=$1*2
3128 @end example
3130 @subsubheading Debugging formulas
3131 @cindex formula debugging
3132 @cindex debugging, of table formulas
3133 When the evaluation of a formula leads to an error, the field content
3134 becomes the string @samp{#ERROR}.  If you would like see what is going
3135 on during variable substitution and calculation in order to find a bug,
3136 turn on formula debugging in the @code{Tbl} menu and repeat the
3137 calculation, for example by pressing @kbd{C-u C-u C-c = @key{RET}} in a
3138 field.  Detailed information will be displayed.
3140 @node Updating the table
3141 @subsection Updating the table
3142 @cindex recomputing table fields
3143 @cindex updating, table
3145 Recalculation of a table is normally not automatic, but needs to be
3146 triggered by a command.  See @ref{Advanced features}, for a way to make
3147 recalculation at least semi-automatic.
3149 In order to recalculate a line of a table or the entire table, use the
3150 following commands:
3152 @table @kbd
3153 @orgcmd{C-c *,org-table-recalculate}
3154 Recalculate the current row by first applying the stored column formulas
3155 from left to right, and all field/range formulas in the current row.
3157 @kindex C-u C-c *
3158 @item C-u C-c *
3159 @kindex C-u C-c C-c
3160 @itemx C-u C-c C-c
3161 Recompute the entire table, line by line.  Any lines before the first
3162 hline are left alone, assuming that these are part of the table header.
3164 @orgcmdkkc{C-u C-u C-c *,C-u C-u C-c C-c,org-table-iterate}
3165 Iterate the table by recomputing it until no further changes occur.
3166 This may be necessary if some computed fields use the value of other
3167 fields that are computed @i{later} in the calculation sequence.
3168 @item M-x org-table-recalculate-buffer-tables RET
3169 @findex org-table-recalculate-buffer-tables
3170 Recompute all tables in the current buffer.
3171 @item M-x org-table-iterate-buffer-tables RET
3172 @findex org-table-iterate-buffer-tables
3173 Iterate all tables in the current buffer, in order to converge table-to-table
3174 dependencies.
3175 @end table
3177 @node Advanced features
3178 @subsection Advanced features
3180 If you want the recalculation of fields to happen automatically, or if you
3181 want to be able to assign @i{names}@footnote{Such names must start by an
3182 alphabetic character and use only alphanumeric/underscore characters.} to
3183 fields and columns, you need to reserve the first column of the table for
3184 special marking characters.
3186 @table @kbd
3187 @orgcmd{C-#,org-table-rotate-recalc-marks}
3188 Rotate the calculation mark in first column through the states @samp{ },
3189 @samp{#}, @samp{*}, @samp{!}, @samp{$}.  When there is an active region,
3190 change all marks in the region.
3191 @end table
3193 Here is an example of a table that collects exam results of students and
3194 makes use of these features:
3196 @example
3197 @group
3198 |---+---------+--------+--------+--------+-------+------|
3199 |   | Student | Prob 1 | Prob 2 | Prob 3 | Total | Note |
3200 |---+---------+--------+--------+--------+-------+------|
3201 | ! |         |     P1 |     P2 |     P3 |   Tot |      |
3202 | # | Maximum |     10 |     15 |     25 |    50 | 10.0 |
3203 | ^ |         |     m1 |     m2 |     m3 |    mt |      |
3204 |---+---------+--------+--------+--------+-------+------|
3205 | # | Peter   |     10 |      8 |     23 |    41 |  8.2 |
3206 | # | Sam     |      2 |      4 |      3 |     9 |  1.8 |
3207 |---+---------+--------+--------+--------+-------+------|
3208 |   | Average |        |        |        |  25.0 |      |
3209 | ^ |         |        |        |        |    at |      |
3210 | $ | max=50  |        |        |        |       |      |
3211 |---+---------+--------+--------+--------+-------+------|
3212 #+TBLFM: $6=vsum($P1..$P3)::$7=10*$Tot/$max;%.1f::$at=vmean(@@-II..@@-I);%.1f
3213 @end group
3214 @end example
3216 @noindent @b{Important}: please note that for these special tables,
3217 recalculating the table with @kbd{C-u C-c *} will only affect rows that
3218 are marked @samp{#} or @samp{*}, and fields that have a formula assigned
3219 to the field itself.  The column formulas are not applied in rows with
3220 empty first field.
3222 @cindex marking characters, tables
3223 The marking characters have the following meaning:
3225 @table @samp
3226 @item !
3227 The fields in this line define names for the columns, so that you may
3228 refer to a column as @samp{$Tot} instead of @samp{$6}.
3229 @item ^
3230 This row defines names for the fields @emph{above} the row.  With such
3231 a definition, any formula in the table may use @samp{$m1} to refer to
3232 the value @samp{10}.  Also, if you assign a formula to a names field, it
3233 will be stored as @samp{$name=...}.
3234 @item _
3235 Similar to @samp{^}, but defines names for the fields in the row
3236 @emph{below}.
3237 @item $
3238 Fields in this row can define @emph{parameters} for formulas.  For
3239 example, if a field in a @samp{$} row contains @samp{max=50}, then
3240 formulas in this table can refer to the value 50 using @samp{$max}.
3241 Parameters work exactly like constants, only that they can be defined on
3242 a per-table basis.
3243 @item #
3244 Fields in this row are automatically recalculated when pressing
3245 @key{TAB} or @key{RET} or @kbd{S-@key{TAB}} in this row.  Also, this row
3246 is selected for a global recalculation with @kbd{C-u C-c *}.  Unmarked
3247 lines will be left alone by this command.
3248 @item *
3249 Selects this line for global recalculation with @kbd{C-u C-c *}, but
3250 not for automatic recalculation.  Use this when automatic
3251 recalculation slows down editing too much.
3252 @item @w{ }
3253 Unmarked lines are exempt from recalculation with @kbd{C-u C-c *}.
3254 All lines that should be recalculated should be marked with @samp{#}
3255 or @samp{*}.
3256 @item /
3257 Do not export this line.  Useful for lines that contain the narrowing
3258 @samp{<N>} markers or column group markers.
3259 @end table
3261 Finally, just to whet your appetite for what can be done with the
3262 fantastic @file{calc.el} package, here is a table that computes the Taylor
3263 series of degree @code{n} at location @code{x} for a couple of
3264 functions.
3266 @example
3267 @group
3268 |---+-------------+---+-----+--------------------------------------|
3269 |   | Func        | n | x   | Result                               |
3270 |---+-------------+---+-----+--------------------------------------|
3271 | # | exp(x)      | 1 | x   | 1 + x                                |
3272 | # | exp(x)      | 2 | x   | 1 + x + x^2 / 2                      |
3273 | # | exp(x)      | 3 | x   | 1 + x + x^2 / 2 + x^3 / 6            |
3274 | # | x^2+sqrt(x) | 2 | x=0 | x*(0.5 / 0) + x^2 (2 - 0.25 / 0) / 2 |
3275 | # | x^2+sqrt(x) | 2 | x=1 | 2 + 2.5 x - 2.5 + 0.875 (x - 1)^2    |
3276 | * | tan(x)      | 3 | x   | 0.0175 x + 1.77e-6 x^3               |
3277 |---+-------------+---+-----+--------------------------------------|
3278 #+TBLFM: $5=taylor($2,$4,$3);n3
3279 @end group
3280 @end example
3282 @node Org-Plot
3283 @section Org-Plot
3284 @cindex graph, in tables
3285 @cindex plot tables using Gnuplot
3286 @cindex #+PLOT
3288 Org-Plot can produce graphs of information stored in org tables, either
3289 graphically or in ASCII-art.
3291 @subheading Graphical plots using @file{Gnuplot}
3293 Org-Plot produces 2D and 3D graphs using @file{Gnuplot}
3294 @uref{http://www.gnuplot.info/} and @file{gnuplot-mode}
3295 @uref{http://xafs.org/BruceRavel/GnuplotMode}.  To see this in action, ensure
3296 that you have both Gnuplot and Gnuplot mode installed on your system, then
3297 call @kbd{C-c " g} or @kbd{M-x org-plot/gnuplot @key{RET}} on the following
3298 table.
3300 @example
3301 @group
3302 #+PLOT: title:"Citas" ind:1 deps:(3) type:2d with:histograms set:"yrange [0:]"
3303 | Sede      | Max cites | H-index |
3304 |-----------+-----------+---------|
3305 | Chile     |    257.72 |   21.39 |
3306 | Leeds     |    165.77 |   19.68 |
3307 | Sao Paolo |     71.00 |   11.50 |
3308 | Stockholm |    134.19 |   14.33 |
3309 | Morelia   |    257.56 |   17.67 |
3310 @end group
3311 @end example
3313 Notice that Org Plot is smart enough to apply the table's headers as labels.
3314 Further control over the labels, type, content, and appearance of plots can
3315 be exercised through the @code{#+PLOT:} lines preceding a table.  See below
3316 for a complete list of Org-plot options.  The @code{#+PLOT:} lines are
3317 optional.  For more information and examples see the Org-plot tutorial at
3318 @uref{http://orgmode.org/worg/org-tutorials/org-plot.html}.
3320 @subsubheading Plot Options
3322 @table @code
3323 @item set
3324 Specify any @command{gnuplot} option to be set when graphing.
3326 @item title
3327 Specify the title of the plot.
3329 @item ind
3330 Specify which column of the table to use as the @code{x} axis.
3332 @item deps
3333 Specify the columns to graph as a Lisp style list, surrounded by parentheses
3334 and separated by spaces for example @code{dep:(3 4)} to graph the third and
3335 fourth columns (defaults to graphing all other columns aside from the @code{ind}
3336 column).
3338 @item type
3339 Specify whether the plot will be @code{2d}, @code{3d}, or @code{grid}.
3341 @item with
3342 Specify a @code{with} option to be inserted for every col being plotted
3343 (e.g., @code{lines}, @code{points}, @code{boxes}, @code{impulses}, etc...).
3344 Defaults to @code{lines}.
3346 @item file
3347 If you want to plot to a file, specify @code{"@var{path/to/desired/output-file}"}.
3349 @item labels
3350 List of labels to be used for the @code{deps} (defaults to the column headers
3351 if they exist).
3353 @item line
3354 Specify an entire line to be inserted in the Gnuplot script.
3356 @item map
3357 When plotting @code{3d} or @code{grid} types, set this to @code{t} to graph a
3358 flat mapping rather than a @code{3d} slope.
3360 @item timefmt
3361 Specify format of Org mode timestamps as they will be parsed by Gnuplot.
3362 Defaults to @samp{%Y-%m-%d-%H:%M:%S}.
3364 @item script
3365 If you want total control, you can specify a script file (place the file name
3366 between double-quotes) which will be used to plot.  Before plotting, every
3367 instance of @code{$datafile} in the specified script will be replaced with
3368 the path to the generated data file.  Note: even if you set this option, you
3369 may still want to specify the plot type, as that can impact the content of
3370 the data file.
3371 @end table
3373 @subheading ASCII bar plots
3375 While the cursor is on a column, typing @kbd{C-c " a} or
3376 @kbd{M-x orgtbl-ascii-plot @key{RET}} create a new column containing an
3377 ASCII-art bars plot.  The plot is implemented through a regular column
3378 formula.  When the source column changes, the bar plot may be updated by
3379 refreshing the table, for example typing @kbd{C-u C-c *}.
3381 @example
3382 @group
3383 | Sede          | Max cites |              |
3384 |---------------+-----------+--------------|
3385 | Chile         |    257.72 | WWWWWWWWWWWW |
3386 | Leeds         |    165.77 | WWWWWWWh     |
3387 | Sao Paolo     |     71.00 | WWW;         |
3388 | Stockholm     |    134.19 | WWWWWW:      |
3389 | Morelia       |    257.56 | WWWWWWWWWWWH |
3390 | Rochefourchat |      0.00 |              |
3391 #+TBLFM: $3='(orgtbl-ascii-draw $2 0.0 257.72 12)
3392 @end group
3393 @end example
3395 The formula is an elisp call:
3396 @lisp
3397 (orgtbl-ascii-draw COLUMN MIN MAX WIDTH)
3398 @end lisp
3400 @table @code
3401 @item COLUMN
3402   is a reference to the source column.
3404 @item MIN MAX
3405   are the minimal and maximal values displayed.  Sources values
3406   outside this range are displayed as @samp{too small}
3407   or @samp{too large}.
3409 @item WIDTH
3410   is the width in characters of the bar-plot.  It defaults to @samp{12}.
3412 @end table
3414 @node Hyperlinks
3415 @chapter Hyperlinks
3416 @cindex hyperlinks
3418 Like HTML, Org provides links inside a file, external links to
3419 other files, Usenet articles, emails, and much more.
3421 @menu
3422 * Link format::                 How links in Org are formatted
3423 * Internal links::              Links to other places in the current file
3424 * External links::              URL-like links to the world
3425 * Handling links::              Creating, inserting and following
3426 * Using links outside Org::     Linking from my C source code?
3427 * Link abbreviations::          Shortcuts for writing complex links
3428 * Search options::              Linking to a specific location
3429 * Custom searches::             When the default search is not enough
3430 @end menu
3432 @node Link format
3433 @section Link format
3434 @cindex link format
3435 @cindex format, of links
3437 Org will recognize plain URL-like links and activate them as
3438 clickable links.  The general link format, however, looks like this:
3440 @example
3441 [[link][description]]       @r{or alternatively}           [[link]]
3442 @end example
3444 @noindent
3445 Once a link in the buffer is complete (all brackets present), Org
3446 will change the display so that @samp{description} is displayed instead
3447 of @samp{[[link][description]]} and @samp{link} is displayed instead of
3448 @samp{[[link]]}.  Links will be highlighted in the face @code{org-link},
3449 which by default is an underlined face.  You can directly edit the
3450 visible part of a link.  Note that this can be either the @samp{link}
3451 part (if there is no description) or the @samp{description} part.  To
3452 edit also the invisible @samp{link} part, use @kbd{C-c C-l} with the
3453 cursor on the link.
3455 If you place the cursor at the beginning or just behind the end of the
3456 displayed text and press @key{BACKSPACE}, you will remove the
3457 (invisible) bracket at that location.  This makes the link incomplete
3458 and the internals are again displayed as plain text.  Inserting the
3459 missing bracket hides the link internals again.  To show the
3460 internal structure of all links, use the menu entry
3461 @code{Org->Hyperlinks->Literal links}.
3463 @node Internal links
3464 @section Internal links
3465 @cindex internal links
3466 @cindex links, internal
3467 @cindex targets, for links
3469 @cindex property, CUSTOM_ID
3470 If the link does not look like a URL, it is considered to be internal in the
3471 current file.  The most important case is a link like
3472 @samp{[[#my-custom-id]]} which will link to the entry with the
3473 @code{CUSTOM_ID} property @samp{my-custom-id}.  You are responsible yourself
3474 to make sure these custom IDs are unique in a file.
3476 Links such as @samp{[[My Target]]} or @samp{[[My Target][Find my target]]}
3477 lead to a text search in the current file.
3479 The link can be followed with @kbd{C-c C-o} when the cursor is on the link,
3480 or with a mouse click (@pxref{Handling links}).  Links to custom IDs will
3481 point to the corresponding headline.  The preferred match for a text link is
3482 a @i{dedicated target}: the same string in double angular brackets, like
3483 @samp{<<My Target>>}.
3485 @cindex #+NAME
3486 If no dedicated target exists, the link will then try to match the exact name
3487 of an element within the buffer.  Naming is done with the @code{#+NAME}
3488 keyword, which has to be put in the line before the element it refers to, as
3489 in the following example
3491 @example
3492 #+NAME: My Target
3493 | a  | table      |
3494 |----+------------|
3495 | of | four cells |
3496 @end example
3498 If none of the above succeeds, Org will search for a headline that is exactly
3499 the link text but may also include a TODO keyword and tags@footnote{To insert
3500 a link targeting a headline, in-buffer completion can be used.  Just type
3501 a star followed by a few optional letters into the buffer and press
3502 @kbd{M-@key{TAB}}.  All headlines in the current buffer will be offered as
3503 completions.}.
3505 During export, internal links will be used to mark objects and assign them
3506 a number.  Marked objects will then be referenced by links pointing to them.
3507 In particular, links without a description will appear as the number assigned
3508 to the marked object@footnote{When targeting a @code{#+NAME} keyword,
3509 @code{#+CAPTION} keyword is mandatory in order to get proper numbering
3510 (@pxref{Images and tables}).}.  In the following excerpt from an Org buffer
3512 @example
3513 - one item
3514 - <<target>>another item
3515 Here we refer to item [[target]].
3516 @end example
3518 @noindent
3519 The last sentence will appear as @samp{Here we refer to item 2} when
3520 exported.
3522 In non-Org files, the search will look for the words in the link text.  In
3523 the above example the search would be for @samp{my target}.
3525 Following a link pushes a mark onto Org's own mark ring.  You can
3526 return to the previous position with @kbd{C-c &}.  Using this command
3527 several times in direct succession goes back to positions recorded
3528 earlier.
3530 @menu
3531 * Radio targets::               Make targets trigger links in plain text
3532 @end menu
3534 @node Radio targets
3535 @subsection Radio targets
3536 @cindex radio targets
3537 @cindex targets, radio
3538 @cindex links, radio targets
3540 Org can automatically turn any occurrences of certain target names
3541 in normal text into a link.  So without explicitly creating a link, the
3542 text connects to the target radioing its position.  Radio targets are
3543 enclosed by triple angular brackets.  For example, a target @samp{<<<My
3544 Target>>>} causes each occurrence of @samp{my target} in normal text to
3545 become activated as a link.  The Org file is scanned automatically
3546 for radio targets only when the file is first loaded into Emacs.  To
3547 update the target list during editing, press @kbd{C-c C-c} with the
3548 cursor on or at a target.
3550 @node External links
3551 @section External links
3552 @cindex links, external
3553 @cindex external links
3554 @cindex Gnus links
3555 @cindex BBDB links
3556 @cindex IRC links
3557 @cindex URL links
3558 @cindex file links
3559 @cindex RMAIL links
3560 @cindex MH-E links
3561 @cindex USENET links
3562 @cindex SHELL links
3563 @cindex Info links
3564 @cindex Elisp links
3566 Org supports links to files, websites, Usenet and email messages, BBDB
3567 database entries and links to both IRC conversations and their logs.
3568 External links are URL-like locators.  They start with a short identifying
3569 string followed by a colon.  There can be no space after the colon.  The
3570 following list shows examples for each link type.
3572 @example
3573 http://www.astro.uva.nl/~dominik             @r{on the web}
3574 doi:10.1000/182                              @r{DOI for an electronic resource}
3575 file:/home/dominik/images/jupiter.jpg        @r{file, absolute path}
3576 /home/dominik/images/jupiter.jpg             @r{same as above}
3577 file:papers/last.pdf                         @r{file, relative path}
3578 ./papers/last.pdf                            @r{same as above}
3579 file:/ssh:myself@@some.where:papers/last.pdf  @r{file, path on remote machine}
3580 /ssh:myself@@some.where:papers/last.pdf       @r{same as above}
3581 file:sometextfile::NNN                       @r{file, jump to line number}
3582 file:projects.org                            @r{another Org file}
3583 file:projects.org::some words                @r{text search in Org file}@footnote{
3584 The actual behavior of the search will depend on the value of
3585 the option @code{org-link-search-must-match-exact-headline}.  If its value
3586 is @code{nil}, then a fuzzy text search will be done.  If it is @code{t}, then only
3587 the exact headline will be matched, ignoring spaces and cookies.  If the
3588 value is @code{query-to-create}, then an exact headline will be searched; if
3589 it is not found, then the user will be queried to create it.}
3590 file:projects.org::*task title               @r{heading search in Org file}@footnote{
3591 Headline searches always match the exact headline, ignoring
3592 spaces and cookies.  If the headline is not found and the value of the option
3593 @code{org-link-search-must-match-exact-headline} is @code{query-to-create},
3594 then the user will be queried to create it.}
3595 docview:papers/last.pdf::NNN                 @r{open in doc-view mode at page}
3596 id:B7423F4D-2E8A-471B-8810-C40F074717E9      @r{Link to heading by ID}
3597 news:comp.emacs                              @r{Usenet link}
3598 mailto:adent@@galaxy.net                      @r{Mail link}
3599 mhe:folder                                   @r{MH-E folder link}
3600 mhe:folder#id                                @r{MH-E message link}
3601 rmail:folder                                 @r{RMAIL folder link}
3602 rmail:folder#id                              @r{RMAIL message link}
3603 gnus:group                                   @r{Gnus group link}
3604 gnus:group#id                                @r{Gnus article link}
3605 bbdb:R.*Stallman                             @r{BBDB link (with regexp)}
3606 irc:/irc.com/#emacs/bob                      @r{IRC link}
3607 info:org#External links                      @r{Info node or index link}
3608 shell:ls *.org                               @r{A shell command}
3609 elisp:org-agenda                             @r{Interactive Elisp command}
3610 elisp:(find-file-other-frame "Elisp.org")    @r{Elisp form to evaluate}
3611 @end example
3613 @cindex VM links
3614 @cindex WANDERLUST links
3615 On top of these built-in link types, some are available through the
3616 @code{contrib/} directory (@pxref{Installation}).  For example, these links
3617 to VM or Wanderlust messages are available when you load the corresponding
3618 libraries from the @code{contrib/} directory:
3620 @example
3621 vm:folder                                    @r{VM folder link}
3622 vm:folder#id                                 @r{VM message link}
3623 vm://myself@@some.where.org/folder#id         @r{VM on remote machine}
3624 vm-imap:account:folder                       @r{VM IMAP folder link}
3625 vm-imap:account:folder#id                    @r{VM IMAP message link}
3626 wl:folder                                    @r{WANDERLUST folder link}
3627 wl:folder#id                                 @r{WANDERLUST message link}
3628 @end example
3630 For customizing Org to add new link types @ref{Adding hyperlink types}.
3632 A link should be enclosed in double brackets and may contain a descriptive
3633 text to be displayed instead of the URL (@pxref{Link format}), for example:
3635 @example
3636 [[http://www.gnu.org/software/emacs/][GNU Emacs]]
3637 @end example
3639 @noindent
3640 If the description is a file name or URL that points to an image, HTML
3641 export (@pxref{HTML export}) will inline the image as a clickable
3642 button.  If there is no description at all and the link points to an
3643 image,
3644 that image will be inlined into the exported HTML file.
3646 @cindex square brackets, around links
3647 @cindex plain text external links
3648 Org also finds external links in the normal text and activates them
3649 as links.  If spaces must be part of the link (for example in
3650 @samp{bbdb:Richard Stallman}), or if you need to remove ambiguities
3651 about the end of the link, enclose them in square brackets.
3653 @node Handling links
3654 @section Handling links
3655 @cindex links, handling
3657 Org provides methods to create a link in the correct syntax, to
3658 insert it into an Org file, and to follow the link.
3660 @table @kbd
3661 @orgcmd{C-c l,org-store-link}
3662 @cindex storing links
3663 Store a link to the current location.  This is a @emph{global} command (you
3664 must create the key binding yourself) which can be used in any buffer to
3665 create a link.  The link will be stored for later insertion into an Org
3666 buffer (see below).  What kind of link will be created depends on the current
3667 buffer:
3669 @b{Org mode buffers}@*
3670 For Org files, if there is a @samp{<<target>>} at the cursor, the link points
3671 to the target.  Otherwise it points to the current headline, which will also
3672 be the description@footnote{If the headline contains a timestamp, it will be
3673 removed from the link and result in a wrong link---you should avoid putting
3674 timestamp in the headline.}.
3676 @vindex org-id-link-to-org-use-id
3677 @cindex property, CUSTOM_ID
3678 @cindex property, ID
3679 If the headline has a @code{CUSTOM_ID} property, a link to this custom ID
3680 will be stored.  In addition or alternatively (depending on the value of
3681 @code{org-id-link-to-org-use-id}), a globally unique @code{ID} property will
3682 be created and/or used to construct a link@footnote{The library
3683 @file{org-id.el} must first be loaded, either through @code{org-customize} by
3684 enabling @code{org-id} in @code{org-modules}, or by adding @code{(require
3685 'org-id)} in your Emacs init file.}.  So using this command in Org buffers
3686 will potentially create two links: a human-readable from the custom ID, and
3687 one that is globally unique and works even if the entry is moved from file to
3688 file.  Later, when inserting the link, you need to decide which one to use.
3690 @b{Email/News clients: VM, Rmail, Wanderlust, MH-E, Gnus}@*
3691 Pretty much all Emacs mail clients are supported.  The link will point to the
3692 current article, or, in some GNUS buffers, to the group.  The description is
3693 constructed from the author and the subject.
3695 @b{Web browsers: Eww, W3 and W3M}@*
3696 Here the link will be the current URL, with the page title as description.
3698 @b{Contacts: BBDB}@*
3699 Links created in a BBDB buffer will point to the current entry.
3701 @b{Chat: IRC}@*
3702 @vindex org-irc-link-to-logs
3703 For IRC links, if you set the option @code{org-irc-link-to-logs} to @code{t},
3704 a @samp{file:/} style link to the relevant point in the logs for the current
3705 conversation is created.  Otherwise an @samp{irc:/} style link to the
3706 user/channel/server under the point will be stored.
3708 @b{Other files}@*
3709 For any other files, the link will point to the file, with a search string
3710 (@pxref{Search options}) pointing to the contents of the current line.  If
3711 there is an active region, the selected words will form the basis of the
3712 search string.  If the automatically created link is not working correctly or
3713 accurately enough, you can write custom functions to select the search string
3714 and to do the search for particular file types---see @ref{Custom searches}.
3715 The key binding @kbd{C-c l} is only a suggestion---see @ref{Installation}.
3717 @b{Agenda view}@*
3718 When the cursor is in an agenda view, the created link points to the
3719 entry referenced by the current line.
3722 @orgcmd{C-c C-l,org-insert-link}
3723 @cindex link completion
3724 @cindex completion, of links
3725 @cindex inserting links
3726 @vindex org-keep-stored-link-after-insertion
3727 @vindex org-link-parameters
3728 Insert a link@footnote{Note that you don't have to use this command to
3729 insert a link.  Links in Org are plain text, and you can type or paste them
3730 straight into the buffer.  By using this command, the links are automatically
3731 enclosed in double brackets, and you will be asked for the optional
3732 descriptive text.}.  This prompts for a link to be inserted into the buffer.
3733 You can just type a link, using text for an internal link, or one of the link
3734 type prefixes mentioned in the examples above.  The link will be inserted
3735 into the buffer@footnote{After insertion of a stored link, the link will be
3736 removed from the list of stored links.  To keep it in the list later use, use
3737 a triple @kbd{C-u} prefix argument to @kbd{C-c C-l}, or configure the option
3738 @code{org-keep-stored-link-after-insertion}.}, along with a descriptive text.
3739 If some text was selected when this command is called, the selected text
3740 becomes the default description.
3742 @b{Inserting stored links}@*
3743 All links stored during the
3744 current session are part of the history for this prompt, so you can access
3745 them with @key{up} and @key{down} (or @kbd{M-p/n}).
3747 @b{Completion support}@* Completion with @key{TAB} will help you to insert
3748 valid link prefixes like @samp{http:} or @samp{ftp:}, including the prefixes
3749 defined through link abbreviations (@pxref{Link abbreviations}).  If you
3750 press @key{RET} after inserting only the @var{prefix}, Org will offer
3751 specific completion support for some link types@footnote{This works if
3752 a completion function is defined in the @samp{:complete} property of a link
3753 in @code{org-link-parameters}.}  For example, if you type @kbd{file
3754 @key{RET}}, file name completion (alternative access: @kbd{C-u C-c C-l}, see
3755 below) will be offered, and after @kbd{bbdb @key{RET}} you can complete
3756 contact names.
3757 @orgkey C-u C-c C-l
3758 @cindex file name completion
3759 @cindex completion, of file names
3760 When @kbd{C-c C-l} is called with a @kbd{C-u} prefix argument, a link to
3761 a file will be inserted and you may use file name completion to select
3762 the name of the file.  The path to the file is inserted relative to the
3763 directory of the current Org file, if the linked file is in the current
3764 directory or in a sub-directory of it, or if the path is written relative
3765 to the current directory using @samp{../}.  Otherwise an absolute path
3766 is used, if possible with @samp{~/} for your home directory.  You can
3767 force an absolute path with two @kbd{C-u} prefixes.
3769 @item C-c C-l @ @r{(with cursor on existing link)}
3770 When the cursor is on an existing link, @kbd{C-c C-l} allows you to edit the
3771 link and description parts of the link.
3773 @cindex following links
3774 @orgcmd{C-c C-o,org-open-at-point}
3775 @vindex org-file-apps
3776 @vindex org-link-frame-setup
3777 Open link at point.  This will launch a web browser for URLs (using
3778 @command{browse-url-at-point}), run VM/MH-E/Wanderlust/Rmail/Gnus/BBDB for
3779 the corresponding links, and execute the command in a shell link.  When the
3780 cursor is on an internal link, this command runs the corresponding search.
3781 When the cursor is on a TAG list in a headline, it creates the corresponding
3782 TAGS view.  If the cursor is on a timestamp, it compiles the agenda for that
3783 date.  Furthermore, it will visit text and remote files in @samp{file:} links
3784 with Emacs and select a suitable application for local non-text files.
3785 Classification of files is based on file extension only.  See option
3786 @code{org-file-apps}.  If you want to override the default application and
3787 visit the file with Emacs, use a @kbd{C-u} prefix.  If you want to avoid
3788 opening in Emacs, use a @kbd{C-u C-u} prefix.@*
3789 If the cursor is on a headline, but not on a link, offer all links in the
3790 headline and entry text.  If you want to setup the frame configuration for
3791 following links, customize @code{org-link-frame-setup}.
3793 @orgkey @key{RET}
3794 @vindex org-return-follows-link
3795 When @code{org-return-follows-link} is set, @kbd{@key{RET}} will also follow
3796 the link at point.
3798 @kindex mouse-2
3799 @kindex mouse-1
3800 @item mouse-2
3801 @itemx mouse-1
3802 On links, @kbd{mouse-1} and @kbd{mouse-2} will open the link just as @kbd{C-c
3803 C-o} would.
3805 @kindex mouse-3
3806 @item mouse-3
3807 @vindex org-display-internal-link-with-indirect-buffer
3808 Like @kbd{mouse-2}, but force file links to be opened with Emacs, and
3809 internal links to be displayed in another window@footnote{See the
3810 option @code{org-display-internal-link-with-indirect-buffer}}.
3812 @orgcmd{C-c C-x C-v,org-toggle-inline-images}
3813 @cindex inlining images
3814 @cindex images, inlining
3815 @vindex org-startup-with-inline-images
3816 @cindex @code{inlineimages}, STARTUP keyword
3817 @cindex @code{noinlineimages}, STARTUP keyword
3818 Toggle the inline display of linked images.  Normally this will only inline
3819 images that have no description part in the link, i.e., images that will also
3820 be inlined during export.  When called with a prefix argument, also display
3821 images that do have a link description.  You can ask for inline images to be
3822 displayed at startup by configuring the variable
3823 @code{org-startup-with-inline-images}@footnote{with corresponding
3824 @code{#+STARTUP} keywords @code{inlineimages} and @code{noinlineimages}}.
3825 @orgcmd{C-c %,org-mark-ring-push}
3826 @cindex mark ring
3827 Push the current position onto the mark ring, to be able to return
3828 easily.  Commands following an internal link do this automatically.
3830 @orgcmd{C-c &,org-mark-ring-goto}
3831 @cindex links, returning to
3832 Jump back to a recorded position.  A position is recorded by the
3833 commands following internal links, and by @kbd{C-c %}.  Using this
3834 command several times in direct succession moves through a ring of
3835 previously recorded positions.
3837 @orgcmdkkcc{C-c C-x C-n,C-c C-x C-p,org-next-link,org-previous-link}
3838 @cindex links, finding next/previous
3839 Move forward/backward to the next link in the buffer.  At the limit of
3840 the buffer, the search fails once, and then wraps around.  The key
3841 bindings for this are really too long; you might want to bind this also
3842 to @kbd{C-n} and @kbd{C-p}
3843 @lisp
3844 (add-hook 'org-load-hook
3845   (lambda ()
3846     (define-key org-mode-map "\C-n" 'org-next-link)
3847     (define-key org-mode-map "\C-p" 'org-previous-link)))
3848 @end lisp
3849 @end table
3851 @node Using links outside Org
3852 @section Using links outside Org
3854 You can insert and follow links that have Org syntax not only in
3855 Org, but in any Emacs buffer.  For this, you should create two
3856 global commands, like this (please select suitable global keys
3857 yourself):
3859 @lisp
3860 (global-set-key "\C-c L" 'org-insert-link-global)
3861 (global-set-key "\C-c o" 'org-open-at-point-global)
3862 @end lisp
3864 @node Link abbreviations
3865 @section Link abbreviations
3866 @cindex link abbreviations
3867 @cindex abbreviation, links
3869 Long URLs can be cumbersome to type, and often many similar links are
3870 needed in a document.  For this you can use link abbreviations.  An
3871 abbreviated link looks like this
3873 @example
3874 [[linkword:tag][description]]
3875 @end example
3877 @noindent
3878 @vindex org-link-abbrev-alist
3879 where the tag is optional.
3880 The @i{linkword} must be a word, starting with a letter, followed by
3881 letters, numbers, @samp{-}, and @samp{_}.  Abbreviations are resolved
3882 according to the information in the variable @code{org-link-abbrev-alist}
3883 that relates the linkwords to replacement text.  Here is an example:
3885 @smalllisp
3886 @group
3887 (setq org-link-abbrev-alist
3888   '(("bugzilla"  . "http://10.1.2.9/bugzilla/show_bug.cgi?id=")
3889     ("url-to-ja" . "http://translate.google.fr/translate?sl=en&tl=ja&u=%h")
3890     ("google"    . "http://www.google.com/search?q=")
3891     ("gmap"      . "http://maps.google.com/maps?q=%s")
3892     ("omap"      . "http://nominatim.openstreetmap.org/search?q=%s&polygon=1")
3893     ("ads"       . "http://adsabs.harvard.edu/cgi-bin/nph-abs_connect?author=%s&db_key=AST")))
3894 @end group
3895 @end smalllisp
3897 If the replacement text contains the string @samp{%s}, it will be
3898 replaced with the tag.  Using @samp{%h} instead of @samp{%s} will
3899 url-encode the tag (see the example above, where we need to encode
3900 the URL parameter.)  Using @samp{%(my-function)} will pass the tag
3901 to a custom function, and replace it by the resulting string.
3903 If the replacement text doesn't contain any specifier, the tag will simply be
3904 appended in order to create the link.
3906 Instead of a string, you may also specify a function that will be
3907 called with the tag as the only argument to create the link.
3909 With the above setting, you could link to a specific bug with
3910 @code{[[bugzilla:129]]}, search the web for @samp{OrgMode} with
3911 @code{[[google:OrgMode]]}, show the map location of the Free Software
3912 Foundation @code{[[gmap:51 Franklin Street, Boston]]} or of Carsten office
3913 @code{[[omap:Science Park 904, Amsterdam, The Netherlands]]} and find out
3914 what the Org author is doing besides Emacs hacking with
3915 @code{[[ads:Dominik,C]]}.
3917 If you need special abbreviations just for a single Org buffer, you
3918 can define them in the file with
3920 @cindex #+LINK
3921 @example
3922 #+LINK: bugzilla  http://10.1.2.9/bugzilla/show_bug.cgi?id=
3923 #+LINK: google    http://www.google.com/search?q=%s
3924 @end example
3926 @noindent
3927 In-buffer completion (@pxref{Completion}) can be used after @samp{[} to
3928 complete link abbreviations.  You may also define a function that implements
3929 special (e.g., completion) support for inserting such a link with @kbd{C-c
3930 C-l}.  Such a function should not accept any arguments, and return the full
3931 link with prefix.  You can add a completion function to a link like this:
3933 @lisp
3934 (org-link-set-parameters ``type'' :complete #'some-function)
3935 @end lisp
3938 @node Search options
3939 @section Search options in file links
3940 @cindex search option in file links
3941 @cindex file links, searching
3943 File links can contain additional information to make Emacs jump to a
3944 particular location in the file when following a link.  This can be a
3945 line number or a search option after a double@footnote{For backward
3946 compatibility, line numbers can also follow a single colon.} colon.  For
3947 example, when the command @kbd{C-c l} creates a link (@pxref{Handling
3948 links}) to a file, it encodes the words in the current line as a search
3949 string that can be used to find this line back later when following the
3950 link with @kbd{C-c C-o}.
3952 Here is the syntax of the different ways to attach a search to a file
3953 link, together with an explanation:
3955 @example
3956 [[file:~/code/main.c::255]]
3957 [[file:~/xx.org::My Target]]
3958 [[file:~/xx.org::*My Target]]
3959 [[file:~/xx.org::#my-custom-id]]
3960 [[file:~/xx.org::/regexp/]]
3961 @end example
3963 @table @code
3964 @item 255
3965 Jump to line 255.
3966 @item My Target
3967 Search for a link target @samp{<<My Target>>}, or do a text search for
3968 @samp{my target}, similar to the search in internal links, see
3969 @ref{Internal links}.  In HTML export (@pxref{HTML export}), such a file
3970 link will become an HTML reference to the corresponding named anchor in
3971 the linked file.
3972 @item *My Target
3973 In an Org file, restrict search to headlines.
3974 @item #my-custom-id
3975 Link to a heading with a @code{CUSTOM_ID} property
3976 @item /regexp/
3977 Do a regular expression search for @code{regexp}.  This uses the Emacs
3978 command @code{occur} to list all matches in a separate window.  If the
3979 target file is in Org mode, @code{org-occur} is used to create a
3980 sparse tree with the matches.
3981 @c If the target file is a directory,
3982 @c @code{grep} will be used to search all files in the directory.
3983 @end table
3985 As a degenerate case, a file link with an empty file name can be used
3986 to search the current file.  For example, @code{[[file:::find me]]} does
3987 a search for @samp{find me} in the current file, just as
3988 @samp{[[find me]]} would.
3990 @node Custom searches
3991 @section Custom Searches
3992 @cindex custom search strings
3993 @cindex search strings, custom
3995 The default mechanism for creating search strings and for doing the
3996 actual search related to a file link may not work correctly in all
3997 cases.  For example, Bib@TeX{} database files have many entries like
3998 @samp{year="1993"} which would not result in good search strings,
3999 because the only unique identification for a Bib@TeX{} entry is the
4000 citation key.
4002 @vindex org-create-file-search-functions
4003 @vindex org-execute-file-search-functions
4004 If you come across such a problem, you can write custom functions to set
4005 the right search string for a particular file type, and to do the search
4006 for the string in the file.  Using @code{add-hook}, these functions need
4007 to be added to the hook variables
4008 @code{org-create-file-search-functions} and
4009 @code{org-execute-file-search-functions}.  See the docstring for these
4010 variables for more information.  Org actually uses this mechanism
4011 for Bib@TeX{} database files, and you can use the corresponding code as
4012 an implementation example.  See the file @file{org-bibtex.el}.
4014 @node TODO items
4015 @chapter TODO items
4016 @cindex TODO items
4018 Org mode does not maintain TODO lists as separate documents@footnote{Of
4019 course, you can make a document that contains only long lists of TODO items,
4020 but this is not required.}.  Instead, TODO items are an integral part of the
4021 notes file, because TODO items usually come up while taking notes!  With Org
4022 mode, simply mark any entry in a tree as being a TODO item.  In this way,
4023 information is not duplicated, and the entire context from which the TODO
4024 item emerged is always present.
4026 Of course, this technique for managing TODO items scatters them
4027 throughout your notes file.  Org mode compensates for this by providing
4028 methods to give you an overview of all the things that you have to do.
4030 @menu
4031 * TODO basics::                 Marking and displaying TODO entries
4032 * TODO extensions::             Workflow and assignments
4033 * Progress logging::            Dates and notes for progress
4034 * Priorities::                  Some things are more important than others
4035 * Breaking down tasks::         Splitting a task into manageable pieces
4036 * Checkboxes::                  Tick-off lists
4037 @end menu
4039 @node TODO basics
4040 @section Basic TODO functionality
4042 Any headline becomes a TODO item when it starts with the word
4043 @samp{TODO}, for example:
4045 @example
4046 *** TODO Write letter to Sam Fortune
4047 @end example
4049 @noindent
4050 The most important commands to work with TODO entries are:
4052 @table @kbd
4053 @orgcmd{C-c C-t,org-todo}
4054 @cindex cycling, of TODO states
4055 @vindex org-use-fast-todo-selection
4057 Rotate the TODO state of the current item among
4059 @example
4060 ,-> (unmarked) -> TODO -> DONE --.
4061 '--------------------------------'
4062 @end example
4064 If TODO keywords have fast access keys (see @ref{Fast access to TODO
4065 states}), you will be prompted for a TODO keyword through the fast selection
4066 interface; this is the default behavior when
4067 @code{org-use-fast-todo-selection} is non-@code{nil}.
4069 The same rotation can also be done ``remotely'' from agenda buffers with the
4070 @kbd{t} command key (@pxref{Agenda commands}).
4072 @orgkey{C-u C-c C-t}
4073 When TODO keywords have no selection keys, select a specific keyword using
4074 completion; otherwise force cycling through TODO states with no prompt.  When
4075 @code{org-use-fast-todo-selection} is set to @code{prefix}, use the fast
4076 selection interface.
4078 @kindex S-@key{right}
4079 @kindex S-@key{left}
4080 @item S-@key{right} @ @r{/} @ S-@key{left}
4081 @vindex org-treat-S-cursor-todo-selection-as-state-change
4082 Select the following/preceding TODO state, similar to cycling.  Useful
4083 mostly if more than two TODO states are possible (@pxref{TODO
4084 extensions}).  See also @ref{Conflicts}, for a discussion of the interaction
4085 with @code{shift-selection-mode}.  See also the variable
4086 @code{org-treat-S-cursor-todo-selection-as-state-change}.
4087 @orgcmd{C-c / t,org-show-todo-tree}
4088 @cindex sparse tree, for TODO
4089 @vindex org-todo-keywords
4090 View TODO items in a @emph{sparse tree} (@pxref{Sparse trees}).  Folds the
4091 entire buffer, but shows all TODO items (with not-DONE state) and the
4092 headings hierarchy above them.  With a prefix argument (or by using @kbd{C-c
4093 / T}), search for a specific TODO@.  You will be prompted for the keyword,
4094 and you can also give a list of keywords like @code{KWD1|KWD2|...} to list
4095 entries that match any one of these keywords.  With a numeric prefix argument
4096 N, show the tree for the Nth keyword in the option @code{org-todo-keywords}.
4097 With two prefix arguments, find all TODO states, both un-done and done.
4098 @orgcmd{C-c a t,org-todo-list}
4099 Show the global TODO list.  Collects the TODO items (with not-DONE states)
4100 from all agenda files (@pxref{Agenda views}) into a single buffer.  The new
4101 buffer will be in @code{agenda-mode}, which provides commands to examine and
4102 manipulate the TODO entries from the new buffer (@pxref{Agenda commands}).
4103 @xref{Global TODO list}, for more information.
4104 @orgcmd{S-M-@key{RET},org-insert-todo-heading}
4105 Insert a new TODO entry below the current one.
4106 @end table
4108 @noindent
4109 @vindex org-todo-state-tags-triggers
4110 Changing a TODO state can also trigger tag changes.  See the docstring of the
4111 option @code{org-todo-state-tags-triggers} for details.
4113 @node TODO extensions
4114 @section Extended use of TODO keywords
4115 @cindex extended TODO keywords
4117 @vindex org-todo-keywords
4118 By default, marked TODO entries have one of only two states: TODO and
4119 DONE@.  Org mode allows you to classify TODO items in more complex ways
4120 with @emph{TODO keywords} (stored in @code{org-todo-keywords}).  With
4121 special setup, the TODO keyword system can work differently in different
4122 files.
4124 Note that @i{tags} are another way to classify headlines in general and
4125 TODO items in particular (@pxref{Tags}).
4127 @menu
4128 * Workflow states::             From TODO to DONE in steps
4129 * TODO types::                  I do this, Fred does the rest
4130 * Multiple sets in one file::   Mixing it all, and still finding your way
4131 * Fast access to TODO states::  Single letter selection of a state
4132 * Per-file keywords::           Different files, different requirements
4133 * Faces for TODO keywords::     Highlighting states
4134 * TODO dependencies::           When one task needs to wait for others
4135 @end menu
4137 @node Workflow states
4138 @subsection TODO keywords as workflow states
4139 @cindex TODO workflow
4140 @cindex workflow states as TODO keywords
4142 You can use TODO keywords to indicate different @emph{sequential} states
4143 in the process of working on an item, for example@footnote{Changing
4144 this variable only becomes effective after restarting Org mode in a
4145 buffer.}:
4147 @lisp
4148 (setq org-todo-keywords
4149   '((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED")))
4150 @end lisp
4152 The vertical bar separates the TODO keywords (states that @emph{need
4153 action}) from the DONE states (which need @emph{no further action}).  If
4154 you don't provide the separator bar, the last state is used as the DONE
4155 state.
4156 @cindex completion, of TODO keywords
4157 With this setup, the command @kbd{C-c C-t} will cycle an entry from TODO
4158 to FEEDBACK, then to VERIFY, and finally to DONE and DELEGATED@.  You may
4159 also use a numeric prefix argument to quickly select a specific state.  For
4160 example @kbd{C-3 C-c C-t} will change the state immediately to VERIFY@.
4161 Or you can use @kbd{S-@key{left}} to go backward through the sequence.  If you
4162 define many keywords, you can use in-buffer completion
4163 (@pxref{Completion}) or even a special one-key selection scheme
4164 (@pxref{Fast access to TODO states}) to insert these words into the
4165 buffer.  Changing a TODO state can be logged with a timestamp, see
4166 @ref{Tracking TODO state changes}, for more information.
4168 @node TODO types
4169 @subsection TODO keywords as types
4170 @cindex TODO types
4171 @cindex names as TODO keywords
4172 @cindex types as TODO keywords
4174 The second possibility is to use TODO keywords to indicate different
4175 @emph{types} of action items.  For example, you might want to indicate
4176 that items are for ``work'' or ``home''.  Or, when you work with several
4177 people on a single project, you might want to assign action items
4178 directly to persons, by using their names as TODO keywords.  This would
4179 be set up like this:
4181 @lisp
4182 (setq org-todo-keywords '((type "Fred" "Sara" "Lucy" "|" "DONE")))
4183 @end lisp
4185 In this case, different keywords do not indicate a sequence, but rather
4186 different types.  So the normal work flow would be to assign a task to
4187 a person, and later to mark it DONE@.  Org mode supports this style by
4188 adapting the workings of the command @kbd{C-c C-t}@footnote{This is also true
4189 for the @kbd{t} command in the agenda buffers.}.  When used several times in
4190 succession, it will still cycle through all names, in order to first select
4191 the right type for a task.  But when you return to the item after some time
4192 and execute @kbd{C-c C-t} again, it will switch from any name directly to
4193 DONE@.  Use prefix arguments or completion to quickly select a specific name.
4194 You can also review the items of a specific TODO type in a sparse tree by
4195 using a numeric prefix to @kbd{C-c / t}.  For example, to see all things Lucy
4196 has to do, you would use @kbd{C-3 C-c / t}.  To collect Lucy's items from all
4197 agenda files into a single buffer, you would use the numeric prefix argument
4198 as well when creating the global TODO list: @kbd{C-3 C-c a t}.
4200 @node Multiple sets in one file
4201 @subsection Multiple keyword sets in one file
4202 @cindex TODO keyword sets
4204 Sometimes you may want to use different sets of TODO keywords in
4205 parallel.  For example, you may want to have the basic
4206 @code{TODO}/@code{DONE}, but also a workflow for bug fixing, and a
4207 separate state indicating that an item has been canceled (so it is not
4208 DONE, but also does not require action).  Your setup would then look
4209 like this:
4211 @lisp
4212 (setq org-todo-keywords
4213       '((sequence "TODO" "|" "DONE")
4214         (sequence "REPORT" "BUG" "KNOWNCAUSE" "|" "FIXED")
4215         (sequence "|" "CANCELED")))
4216 @end lisp
4218 The keywords should all be different, this helps Org mode to keep track
4219 of which subsequence should be used for a given entry.  In this setup,
4220 @kbd{C-c C-t} only operates within a subsequence, so it switches from
4221 @code{DONE} to (nothing) to @code{TODO}, and from @code{FIXED} to
4222 (nothing) to @code{REPORT}.  Therefore you need a mechanism to initially
4223 select the correct sequence.  Besides the obvious ways like typing a
4224 keyword or using completion, you may also apply the following commands:
4226 @table @kbd
4227 @kindex C-S-@key{right}
4228 @kindex C-S-@key{left}
4229 @kindex C-u C-u C-c C-t
4230 @item C-u C-u C-c C-t
4231 @itemx C-S-@key{right}
4232 @itemx C-S-@key{left}
4233 These keys jump from one TODO subset to the next.  In the above example,
4234 @kbd{C-u C-u C-c C-t} or @kbd{C-S-@key{right}} would jump from @code{TODO} or
4235 @code{DONE} to @code{REPORT}, and any of the words in the second row to
4236 @code{CANCELED}.  Note that the @kbd{C-S-} key binding conflict with
4237 @code{shift-selection-mode} (@pxref{Conflicts}).
4238 @kindex S-@key{right}
4239 @kindex S-@key{left}
4240 @item S-@key{right}
4241 @itemx S-@key{left}
4242 @kbd{S-@key{left}} and @kbd{S-@key{right}} and walk through @emph{all}
4243 keywords from all sets, so for example @kbd{S-@key{right}} would switch
4244 from @code{DONE} to @code{REPORT} in the example above.  See also
4245 @ref{Conflicts}, for a discussion of the interaction with
4246 @code{shift-selection-mode}.
4247 @end table
4249 @node Fast access to TODO states
4250 @subsection Fast access to TODO states
4252 If you would like to quickly change an entry to an arbitrary TODO state
4253 instead of cycling through the states, you can set up keys for single-letter
4254 access to the states.  This is done by adding the selection character after
4255 each keyword, in parentheses@footnote{All characters are allowed except
4256 @code{@@^!}, which have a special meaning here.}.  For example:
4258 @lisp
4259 (setq org-todo-keywords
4260       '((sequence "TODO(t)" "|" "DONE(d)")
4261         (sequence "REPORT(r)" "BUG(b)" "KNOWNCAUSE(k)" "|" "FIXED(f)")
4262         (sequence "|" "CANCELED(c)")))
4263 @end lisp
4265 @vindex org-fast-tag-selection-include-todo
4266 If you then press @kbd{C-c C-t} followed by the selection key, the entry
4267 will be switched to this state.  @kbd{SPC} can be used to remove any TODO
4268 keyword from an entry.@footnote{Check also the option
4269 @code{org-fast-tag-selection-include-todo}, it allows you to change the TODO
4270 state through the tags interface (@pxref{Setting tags}), in case you like to
4271 mingle the two concepts.  Note that this means you need to come up with
4272 unique keys across both sets of keywords.}
4274 @node Per-file keywords
4275 @subsection Setting up keywords for individual files
4276 @cindex keyword options
4277 @cindex per-file keywords
4278 @cindex #+TODO
4279 @cindex #+TYP_TODO
4280 @cindex #+SEQ_TODO
4282 It can be very useful to use different aspects of the TODO mechanism in
4283 different files.  For file-local settings, you need to add special lines to
4284 the file which set the keywords and interpretation for that file only.  For
4285 example, to set one of the two examples discussed above, you need one of the
4286 following lines anywhere in the file:
4288 @example
4289 #+TODO: TODO FEEDBACK VERIFY | DONE CANCELED
4290 @end example
4291 @noindent (you may also write @code{#+SEQ_TODO} to be explicit about the
4292 interpretation, but it means the same as @code{#+TODO}), or
4293 @example
4294 #+TYP_TODO: Fred Sara Lucy Mike | DONE
4295 @end example
4297 A setup for using several sets in parallel would be:
4299 @example
4300 #+TODO: TODO | DONE
4301 #+TODO: REPORT BUG KNOWNCAUSE | FIXED
4302 #+TODO: | CANCELED
4303 @end example
4305 @cindex completion, of option keywords
4306 @kindex M-@key{TAB}
4307 @noindent To make sure you are using the correct keyword, type
4308 @samp{#+} into the buffer and then use @kbd{M-@key{TAB}} completion.
4310 @cindex DONE, final TODO keyword
4311 Remember that the keywords after the vertical bar (or the last keyword
4312 if no bar is there) must always mean that the item is DONE (although you
4313 may use a different word).  After changing one of these lines, use
4314 @kbd{C-c C-c} with the cursor still in the line to make the changes
4315 known to Org mode@footnote{Org mode parses these lines only when
4316 Org mode is activated after visiting a file.  @kbd{C-c C-c} with the
4317 cursor in a line starting with @samp{#+} is simply restarting Org mode
4318 for the current buffer.}.
4320 @node Faces for TODO keywords
4321 @subsection Faces for TODO keywords
4322 @cindex faces, for TODO keywords
4324 @vindex org-todo @r{(face)}
4325 @vindex org-done @r{(face)}
4326 @vindex org-todo-keyword-faces
4327 Org mode highlights TODO keywords with special faces: @code{org-todo}
4328 for keywords indicating that an item still has to be acted upon, and
4329 @code{org-done} for keywords indicating that an item is finished.  If
4330 you are using more than 2 different states, you might want to use
4331 special faces for some of them.  This can be done using the option
4332 @code{org-todo-keyword-faces}.  For example:
4334 @lisp
4335 @group
4336 (setq org-todo-keyword-faces
4337       '(("TODO" . org-warning) ("STARTED" . "yellow")
4338         ("CANCELED" . (:foreground "blue" :weight bold))))
4339 @end group
4340 @end lisp
4342 While using a list with face properties as shown for CANCELED @emph{should}
4343 work, this does not always seem to be the case.  If necessary, define a
4344 special face and use that.  A string is interpreted as a color.  The option
4345 @code{org-faces-easy-properties} determines if that color is interpreted as a
4346 foreground or a background color.
4348 @node TODO dependencies
4349 @subsection TODO dependencies
4350 @cindex TODO dependencies
4351 @cindex dependencies, of TODO states
4352 @cindex TODO dependencies, NOBLOCKING
4354 @vindex org-enforce-todo-dependencies
4355 @cindex property, ORDERED
4356 The structure of Org files (hierarchy and lists) makes it easy to define TODO
4357 dependencies.  Usually, a parent TODO task should not be marked DONE until
4358 all subtasks (defined as children tasks) are marked as DONE@.  And sometimes
4359 there is a logical sequence to a number of (sub)tasks, so that one task
4360 cannot be acted upon before all siblings above it are done.  If you customize
4361 the option @code{org-enforce-todo-dependencies}, Org will block entries
4362 from changing state to DONE while they have children that are not DONE@.
4363 Furthermore, if an entry has a property @code{ORDERED}, each of its children
4364 will be blocked until all earlier siblings are marked DONE@.  Here is an
4365 example:
4367 @example
4368 * TODO Blocked until (two) is done
4369 ** DONE one
4370 ** TODO two
4372 * Parent
4373   :PROPERTIES:
4374   :ORDERED: t
4375   :END:
4376 ** TODO a
4377 ** TODO b, needs to wait for (a)
4378 ** TODO c, needs to wait for (a) and (b)
4379 @end example
4381 You can ensure an entry is never blocked by using the @code{NOBLOCKING}
4382 property:
4384 @example
4385 * This entry is never blocked
4386   :PROPERTIES:
4387   :NOBLOCKING: t
4388   :END:
4389 @end example
4391 @table @kbd
4392 @orgcmd{C-c C-x o,org-toggle-ordered-property}
4393 @vindex org-track-ordered-property-with-tag
4394 @cindex property, ORDERED
4395 Toggle the @code{ORDERED} property of the current entry.  A property is used
4396 for this behavior because this should be local to the current entry, not
4397 inherited like a tag.  However, if you would like to @i{track} the value of
4398 this property with a tag for better visibility, customize the option
4399 @code{org-track-ordered-property-with-tag}.
4400 @orgkey{C-u C-u C-u C-c C-t}
4401 Change TODO state, circumventing any state blocking.
4402 @end table
4404 @vindex org-agenda-dim-blocked-tasks
4405 If you set the option @code{org-agenda-dim-blocked-tasks}, TODO entries
4406 that cannot be closed because of such dependencies will be shown in a dimmed
4407 font or even made invisible in agenda views (@pxref{Agenda views}).
4409 @cindex checkboxes and TODO dependencies
4410 @vindex org-enforce-todo-dependencies
4411 You can also block changes of TODO states by looking at checkboxes
4412 (@pxref{Checkboxes}).  If you set the option
4413 @code{org-enforce-todo-checkbox-dependencies}, an entry that has unchecked
4414 checkboxes will be blocked from switching to DONE.
4416 If you need more complex dependency structures, for example dependencies
4417 between entries in different trees or files, check out the contributed
4418 module @file{org-depend.el}.
4420 @page
4421 @node Progress logging
4422 @section Progress logging
4423 @cindex progress logging
4424 @cindex logging, of progress
4426 Org mode can automatically record a timestamp and possibly a note when
4427 you mark a TODO item as DONE, or even each time you change the state of
4428 a TODO item.  This system is highly configurable; settings can be on a
4429 per-keyword basis and can be localized to a file or even a subtree.  For
4430 information on how to clock working time for a task, see @ref{Clocking
4431 work time}.
4433 @menu
4434 * Closing items::               When was this entry marked DONE?
4435 * Tracking TODO state changes::  When did the status change?
4436 * Tracking your habits::        How consistent have you been?
4437 @end menu
4439 @node Closing items
4440 @subsection Closing items
4442 The most basic logging is to keep track of @emph{when} a certain TODO
4443 item was finished.  This is achieved with@footnote{The corresponding
4444 in-buffer setting is: @code{#+STARTUP: logdone}}
4446 @lisp
4447 (setq org-log-done 'time)
4448 @end lisp
4450 @vindex org-closed-keep-when-no-todo
4451 @noindent
4452 Then each time you turn an entry from a TODO (not-done) state into any of the
4453 DONE states, a line @samp{CLOSED: [timestamp]} will be inserted just after
4454 the headline.  If you turn the entry back into a TODO item through further
4455 state cycling, that line will be removed again.  If you turn the entry back
4456 to a non-TODO state (by pressing @key{C-c C-t SPC} for example), that line
4457 will also be removed, unless you set @code{org-closed-keep-when-no-todo} to
4458 non-@code{nil}.  If you want to record a note along with the timestamp,
4459 use@footnote{The corresponding in-buffer setting is: @code{#+STARTUP:
4460 lognotedone}.}
4462 @lisp
4463 (setq org-log-done 'note)
4464 @end lisp
4466 @noindent
4467 You will then be prompted for a note, and that note will be stored below
4468 the entry with a @samp{Closing Note} heading.
4470 @node Tracking TODO state changes
4471 @subsection Tracking TODO state changes
4472 @cindex drawer, for state change recording
4474 @vindex org-log-states-order-reversed
4475 @vindex org-log-into-drawer
4476 @cindex property, LOG_INTO_DRAWER
4477 When TODO keywords are used as workflow states (@pxref{Workflow states}), you
4478 might want to keep track of when a state change occurred and maybe take a
4479 note about this change.  You can either record just a timestamp, or a
4480 time-stamped note for a change.  These records will be inserted after the
4481 headline as an itemized list, newest first@footnote{See the option
4482 @code{org-log-states-order-reversed}}.  When taking a lot of notes, you might
4483 want to get the notes out of the way into a drawer (@pxref{Drawers}).
4484 Customize @code{org-log-into-drawer} to get this behavior---the recommended
4485 drawer for this is called @code{LOGBOOK}@footnote{Note that the
4486 @code{LOGBOOK} drawer is unfolded when pressing @key{SPC} in the agenda to
4487 show an entry---use @key{C-u SPC} to keep it folded here}.  You can also
4488 overrule the setting of this variable for a subtree by setting a
4489 @code{LOG_INTO_DRAWER} property.
4491 Since it is normally too much to record a note for every state, Org mode
4492 expects configuration on a per-keyword basis for this.  This is achieved by
4493 adding special markers @samp{!} (for a timestamp) or @samp{@@} (for a note
4494 with timestamp) in parentheses after each keyword.  For example, with the
4495 setting
4497 @lisp
4498 (setq org-todo-keywords
4499   '((sequence "TODO(t)" "WAIT(w@@/!)" "|" "DONE(d!)" "CANCELED(c@@)")))
4500 @end lisp
4502 To record a timestamp without a note for TODO keywords configured with
4503 @samp{@@}, just type @kbd{C-c C-c} to enter a blank note when prompted.
4505 @noindent
4506 @vindex org-log-done
4507 You not only define global TODO keywords and fast access keys, but also
4508 request that a time is recorded when the entry is set to
4509 DONE@footnote{It is possible that Org mode will record two timestamps
4510 when you are using both @code{org-log-done} and state change logging.
4511 However, it will never prompt for two notes---if you have configured
4512 both, the state change recording note will take precedence and cancel
4513 the @samp{Closing Note}.}, and that a note is recorded when switching to
4514 WAIT or CANCELED@.  The setting for WAIT is even more special: the
4515 @samp{!} after the slash means that in addition to the note taken when
4516 entering the state, a timestamp should be recorded when @i{leaving} the
4517 WAIT state, if and only if the @i{target} state does not configure
4518 logging for entering it.  So it has no effect when switching from WAIT
4519 to DONE, because DONE is configured to record a timestamp only.  But
4520 when switching from WAIT back to TODO, the @samp{/!} in the WAIT
4521 setting now triggers a timestamp even though TODO has no logging
4522 configured.
4524 You can use the exact same syntax for setting logging preferences local
4525 to a buffer:
4526 @example
4527 #+TODO: TODO(t) WAIT(w@@/!) | DONE(d!) CANCELED(c@@)
4528 @end example
4530 @cindex property, LOGGING
4531 In order to define logging settings that are local to a subtree or a
4532 single item, define a LOGGING property in this entry.  Any non-empty
4533 LOGGING property resets all logging settings to @code{nil}.  You may then turn
4534 on logging for this specific tree using STARTUP keywords like
4535 @code{lognotedone} or @code{logrepeat}, as well as adding state specific
4536 settings like @code{TODO(!)}.  For example
4538 @example
4539 * TODO Log each state with only a time
4540   :PROPERTIES:
4541   :LOGGING: TODO(!) WAIT(!) DONE(!) CANCELED(!)
4542   :END:
4543 * TODO Only log when switching to WAIT, and when repeating
4544   :PROPERTIES:
4545   :LOGGING: WAIT(@@) logrepeat
4546   :END:
4547 * TODO No logging at all
4548   :PROPERTIES:
4549   :LOGGING: nil
4550   :END:
4551 @end example
4553 @node Tracking your habits
4554 @subsection Tracking your habits
4555 @cindex habits
4557 Org has the ability to track the consistency of a special category of TODOs,
4558 called ``habits''.  A habit has the following properties:
4560 @enumerate
4561 @item
4562 You have enabled the @code{habits} module by customizing @code{org-modules}.
4563 @item
4564 The habit is a TODO item, with a TODO keyword representing an open state.
4565 @item
4566 The property @code{STYLE} is set to the value @code{habit}.
4567 @item
4568 The TODO has a scheduled date, usually with a @code{.+} style repeat
4569 interval.  A @code{++} style may be appropriate for habits with time
4570 constraints, e.g., must be done on weekends, or a @code{+} style for an
4571 unusual habit that can have a backlog, e.g., weekly reports.
4572 @item
4573 The TODO may also have minimum and maximum ranges specified by using the
4574 syntax @samp{.+2d/3d}, which says that you want to do the task at least every
4575 three days, but at most every two days.
4576 @item
4577 You must also have state logging for the @code{DONE} state enabled
4578 (@pxref{Tracking TODO state changes}), in order for historical data to be
4579 represented in the consistency graph.  If it is not enabled it is not an
4580 error, but the consistency graphs will be largely meaningless.
4581 @end enumerate
4583 To give you an idea of what the above rules look like in action, here's an
4584 actual habit with some history:
4586 @example
4587 ** TODO Shave
4588    SCHEDULED: <2009-10-17 Sat .+2d/4d>
4589    :PROPERTIES:
4590    :STYLE:    habit
4591    :LAST_REPEAT: [2009-10-19 Mon 00:36]
4592    :END:
4593    - State "DONE"       from "TODO"       [2009-10-15 Thu]
4594    - State "DONE"       from "TODO"       [2009-10-12 Mon]
4595    - State "DONE"       from "TODO"       [2009-10-10 Sat]
4596    - State "DONE"       from "TODO"       [2009-10-04 Sun]
4597    - State "DONE"       from "TODO"       [2009-10-02 Fri]
4598    - State "DONE"       from "TODO"       [2009-09-29 Tue]
4599    - State "DONE"       from "TODO"       [2009-09-25 Fri]
4600    - State "DONE"       from "TODO"       [2009-09-19 Sat]
4601    - State "DONE"       from "TODO"       [2009-09-16 Wed]
4602    - State "DONE"       from "TODO"       [2009-09-12 Sat]
4603 @end example
4605 What this habit says is: I want to shave at most every 2 days (given by the
4606 @code{SCHEDULED} date and repeat interval) and at least every 4 days.  If
4607 today is the 15th, then the habit first appears in the agenda on Oct 17,
4608 after the minimum of 2 days has elapsed, and will appear overdue on Oct 19,
4609 after four days have elapsed.
4611 What's really useful about habits is that they are displayed along with a
4612 consistency graph, to show how consistent you've been at getting that task
4613 done in the past.  This graph shows every day that the task was done over the
4614 past three weeks, with colors for each day.  The colors used are:
4616 @table @code
4617 @item Blue
4618 If the task wasn't to be done yet on that day.
4619 @item Green
4620 If the task could have been done on that day.
4621 @item Yellow
4622 If the task was going to be overdue the next day.
4623 @item Red
4624 If the task was overdue on that day.
4625 @end table
4627 In addition to coloring each day, the day is also marked with an asterisk if
4628 the task was actually done that day, and an exclamation mark to show where
4629 the current day falls in the graph.
4631 There are several configuration variables that can be used to change the way
4632 habits are displayed in the agenda.
4634 @table @code
4635 @item org-habit-graph-column
4636 The buffer column at which the consistency graph should be drawn.  This will
4637 overwrite any text in that column, so it is a good idea to keep your habits'
4638 titles brief and to the point.
4639 @item org-habit-preceding-days
4640 The amount of history, in days before today, to appear in consistency graphs.
4641 @item org-habit-following-days
4642 The number of days after today that will appear in consistency graphs.
4643 @item org-habit-show-habits-only-for-today
4644 If non-@code{nil}, only show habits in today's agenda view.  This is set to true by
4645 default.
4646 @end table
4648 Lastly, pressing @kbd{K} in the agenda buffer will cause habits to
4649 temporarily be disabled and they won't appear at all.  Press @kbd{K} again to
4650 bring them back.  They are also subject to tag filtering, if you have habits
4651 which should only be done in certain contexts, for example.
4653 @node Priorities
4654 @section Priorities
4655 @cindex priorities
4657 If you use Org mode extensively, you may end up with enough TODO items that
4658 it starts to make sense to prioritize them.  Prioritizing can be done by
4659 placing a @emph{priority cookie} into the headline of a TODO item, like this
4661 @example
4662 *** TODO [#A] Write letter to Sam Fortune
4663 @end example
4665 @noindent
4666 @vindex org-priority-faces
4667 By default, Org mode supports three priorities: @samp{A}, @samp{B}, and
4668 @samp{C}.  @samp{A} is the highest priority.  An entry without a cookie is
4669 treated just like priority @samp{B}.  Priorities make a difference only for
4670 sorting in the agenda (@pxref{Weekly/daily agenda}); outside the agenda, they
4671 have no inherent meaning to Org mode.  The cookies can be highlighted with
4672 special faces by customizing @code{org-priority-faces}.
4674 Priorities can be attached to any outline node; they do not need to be TODO
4675 items.
4677 @table @kbd
4678 @item @kbd{C-c ,}
4679 @kindex @kbd{C-c ,}
4680 @findex org-priority
4681 Set the priority of the current headline (@command{org-priority}).  The
4682 command prompts for a priority character @samp{A}, @samp{B} or @samp{C}.
4683 When you press @key{SPC} instead, the priority cookie is removed from the
4684 headline.  The priorities can also be changed ``remotely'' from the agenda
4685 buffer with the @kbd{,} command (@pxref{Agenda commands}).
4687 @orgcmdkkcc{S-@key{up},S-@key{down},org-priority-up,org-priority-down}
4688 @vindex org-priority-start-cycle-with-default
4689 Increase/decrease priority of current headline@footnote{See also the option
4690 @code{org-priority-start-cycle-with-default}.}.  Note that these keys are
4691 also used to modify timestamps (@pxref{Creating timestamps}).  See also
4692 @ref{Conflicts}, for a discussion of the interaction with
4693 @code{shift-selection-mode}.
4694 @end table
4696 @vindex org-highest-priority
4697 @vindex org-lowest-priority
4698 @vindex org-default-priority
4699 You can change the range of allowed priorities by setting the options
4700 @code{org-highest-priority}, @code{org-lowest-priority}, and
4701 @code{org-default-priority}.  For an individual buffer, you may set
4702 these values (highest, lowest, default) like this (please make sure that
4703 the highest priority is earlier in the alphabet than the lowest
4704 priority):
4706 @cindex #+PRIORITIES
4707 @example
4708 #+PRIORITIES: A C B
4709 @end example
4711 @node Breaking down tasks
4712 @section Breaking tasks down into subtasks
4713 @cindex tasks, breaking down
4714 @cindex statistics, for TODO items
4716 @vindex org-agenda-todo-list-sublevels
4717 It is often advisable to break down large tasks into smaller, manageable
4718 subtasks.  You can do this by creating an outline tree below a TODO item,
4719 with detailed subtasks on the tree@footnote{To keep subtasks out of the
4720 global TODO list, see the @code{org-agenda-todo-list-sublevels}.}.  To keep
4721 the overview over the fraction of subtasks that are already completed, insert
4722 either @samp{[/]} or @samp{[%]} anywhere in the headline.  These cookies will
4723 be updated each time the TODO status of a child changes, or when pressing
4724 @kbd{C-c C-c} on the cookie.  For example:
4726 @example
4727 * Organize Party [33%]
4728 ** TODO Call people [1/2]
4729 *** TODO Peter
4730 *** DONE Sarah
4731 ** TODO Buy food
4732 ** DONE Talk to neighbor
4733 @end example
4735 @cindex property, COOKIE_DATA
4736 If a heading has both checkboxes and TODO children below it, the meaning of
4737 the statistics cookie become ambiguous.  Set the property
4738 @code{COOKIE_DATA} to either @samp{checkbox} or @samp{todo} to resolve
4739 this issue.
4741 @vindex org-hierarchical-todo-statistics
4742 If you would like to have the statistics cookie count any TODO entries in the
4743 subtree (not just direct children), configure
4744 @code{org-hierarchical-todo-statistics}.  To do this for a single subtree,
4745 include the word @samp{recursive} into the value of the @code{COOKIE_DATA}
4746 property.
4748 @example
4749 * Parent capturing statistics [2/20]
4750   :PROPERTIES:
4751   :COOKIE_DATA: todo recursive
4752   :END:
4753 @end example
4755 If you would like a TODO entry to automatically change to DONE
4756 when all children are done, you can use the following setup:
4758 @example
4759 (defun org-summary-todo (n-done n-not-done)
4760   "Switch entry to DONE when all subentries are done, to TODO otherwise."
4761   (let (org-log-done org-log-states)   ; turn off logging
4762     (org-todo (if (= n-not-done 0) "DONE" "TODO"))))
4764 (add-hook 'org-after-todo-statistics-hook 'org-summary-todo)
4765 @end example
4768 Another possibility is the use of checkboxes to identify (a hierarchy of) a
4769 large number of subtasks (@pxref{Checkboxes}).
4772 @node Checkboxes
4773 @section Checkboxes
4774 @cindex checkboxes
4776 @vindex org-list-automatic-rules
4777 Every item in a plain list@footnote{With the exception of description
4778 lists.  But you can allow it by modifying @code{org-list-automatic-rules}
4779 accordingly.} (@pxref{Plain lists}) can be made into a checkbox by starting
4780 it with the string @samp{[ ]}.  This feature is similar to TODO items
4781 (@pxref{TODO items}), but is more lightweight.  Checkboxes are not included
4782 in the global TODO list, so they are often great to split a task into a
4783 number of simple steps.  Or you can use them in a shopping list.  To toggle a
4784 checkbox, use @kbd{C-c C-c}, or use the mouse (thanks to Piotr Zielinski's
4785 @file{org-mouse.el}).
4787 Here is an example of a checkbox list.
4789 @example
4790 * TODO Organize party [2/4]
4791   - [-] call people [1/3]
4792     - [ ] Peter
4793     - [X] Sarah
4794     - [ ] Sam
4795   - [X] order food
4796   - [ ] think about what music to play
4797   - [X] talk to the neighbors
4798 @end example
4800 Checkboxes work hierarchically, so if a checkbox item has children that
4801 are checkboxes, toggling one of the children checkboxes will make the
4802 parent checkbox reflect if none, some, or all of the children are
4803 checked.
4805 @cindex statistics, for checkboxes
4806 @cindex checkbox statistics
4807 @cindex property, COOKIE_DATA
4808 @vindex org-checkbox-hierarchical-statistics
4809 The @samp{[2/4]} and @samp{[1/3]} in the first and second line are cookies
4810 indicating how many checkboxes present in this entry have been checked off,
4811 and the total number of checkboxes present.  This can give you an idea on how
4812 many checkboxes remain, even without opening a folded entry.  The cookies can
4813 be placed into a headline or into (the first line of) a plain list item.
4814 Each cookie covers checkboxes of direct children structurally below the
4815 headline/item on which the cookie appears@footnote{Set the option
4816 @code{org-checkbox-hierarchical-statistics} if you want such cookies to
4817 count all checkboxes below the cookie, not just those belonging to direct
4818 children.}.  You have to insert the cookie yourself by typing either
4819 @samp{[/]} or @samp{[%]}.  With @samp{[/]} you get an @samp{n out of m}
4820 result, as in the examples above.  With @samp{[%]} you get information about
4821 the percentage of checkboxes checked (in the above example, this would be
4822 @samp{[50%]} and @samp{[33%]}, respectively).  In a headline, a cookie can
4823 count either checkboxes below the heading or TODO states of children, and it
4824 will display whatever was changed last.  Set the property @code{COOKIE_DATA}
4825 to either @samp{checkbox} or @samp{todo} to resolve this issue.
4827 @cindex blocking, of checkboxes
4828 @cindex checkbox blocking
4829 @cindex property, ORDERED
4830 If the current outline node has an @code{ORDERED} property, checkboxes must
4831 be checked off in sequence, and an error will be thrown if you try to check
4832 off a box while there are unchecked boxes above it.
4834 @noindent The following commands work with checkboxes:
4836 @table @kbd
4837 @orgcmd{C-c C-c,org-toggle-checkbox}
4838 Toggle checkbox status or (with prefix arg) checkbox presence at point.  With
4839 a single prefix argument, add an empty checkbox or remove the current
4840 one@footnote{@kbd{C-u C-c C-c} before the @emph{first} bullet in a list with
4841 no checkbox will add checkboxes to the rest of the list.}.  With a double
4842 prefix argument, set it to @samp{[-]}, which is considered to be an
4843 intermediate state.
4844 @orgcmd{C-c C-x C-b,org-toggle-checkbox}
4845 Toggle checkbox status or (with prefix arg) checkbox presence at point.  With
4846 double prefix argument, set it to @samp{[-]}, which is considered to be an
4847 intermediate state.
4848 @itemize @minus
4849 @item
4850 If there is an active region, toggle the first checkbox in the region
4851 and set all remaining boxes to the same status as the first.  With a prefix
4852 arg, add or remove the checkbox for all items in the region.
4853 @item
4854 If the cursor is in a headline, toggle the state of the first checkbox in the
4855 region between this headline and the next---so @emph{not} the entire
4856 subtree---and propagate this new state to all other checkboxes in the same
4857 area.
4858 @item
4859 If there is no active region, just toggle the checkbox at point.
4860 @end itemize
4861 @orgcmd{M-S-@key{RET},org-insert-todo-heading}
4862 Insert a new item with a checkbox.  This works only if the cursor is already
4863 in a plain list item (@pxref{Plain lists}).
4864 @orgcmd{C-c C-x o,org-toggle-ordered-property}
4865 @vindex org-track-ordered-property-with-tag
4866 @cindex property, ORDERED
4867 Toggle the @code{ORDERED} property of the entry, to toggle if checkboxes must
4868 be checked off in sequence.  A property is used for this behavior because
4869 this should be local to the current entry, not inherited like a tag.
4870 However, if you would like to @i{track} the value of this property with a tag
4871 for better visibility, customize @code{org-track-ordered-property-with-tag}.
4872 @orgcmd{C-c #,org-update-statistics-cookies}
4873 Update the statistics cookie in the current outline entry.  When called with
4874 a @kbd{C-u} prefix, update the entire file.  Checkbox statistic cookies are
4875 updated automatically if you toggle checkboxes with @kbd{C-c C-c} and make
4876 new ones with @kbd{M-S-@key{RET}}.  TODO statistics cookies update when
4877 changing TODO states.  If you delete boxes/entries or add/change them by
4878 hand, use this command to get things back into sync.
4879 @end table
4881 @node Tags
4882 @chapter Tags
4883 @cindex tags
4884 @cindex headline tagging
4885 @cindex matching, tags
4886 @cindex sparse tree, tag based
4888 An excellent way to implement labels and contexts for cross-correlating
4889 information is to assign @i{tags} to headlines.  Org mode has extensive
4890 support for tags.
4892 @vindex org-tag-faces
4893 Every headline can contain a list of tags; they occur at the end of the
4894 headline.  Tags are normal words containing letters, numbers, @samp{_}, and
4895 @samp{@@}.  Tags must be preceded and followed by a single colon, e.g.,
4896 @samp{:work:}.  Several tags can be specified, as in @samp{:work:urgent:}.
4897 Tags will by default be in bold face with the same color as the headline.
4898 You may specify special faces for specific tags using the option
4899 @code{org-tag-faces}, in much the same way as you can for TODO keywords
4900 (@pxref{Faces for TODO keywords}).
4902 @menu
4903 * Tag inheritance::             Tags use the tree structure of the outline
4904 * Setting tags::                How to assign tags to a headline
4905 * Tag hierarchy::               Create a hierarchy of tags
4906 * Tag searches::                Searching for combinations of tags
4907 @end menu
4909 @node Tag inheritance
4910 @section Tag inheritance
4911 @cindex tag inheritance
4912 @cindex inheritance, of tags
4913 @cindex sublevels, inclusion into tags match
4915 @i{Tags} make use of the hierarchical structure of outline trees.  If a
4916 heading has a certain tag, all subheadings will inherit the tag as
4917 well.  For example, in the list
4919 @example
4920 * Meeting with the French group      :work:
4921 ** Summary by Frank                  :boss:notes:
4922 *** TODO Prepare slides for him      :action:
4923 @end example
4925 @noindent
4926 the final heading will have the tags @samp{:work:}, @samp{:boss:},
4927 @samp{:notes:}, and @samp{:action:} even though the final heading is not
4928 explicitly marked with all those tags.  You can also set tags that all
4929 entries in a file should inherit just as if these tags were defined in
4930 a hypothetical level zero that surrounds the entire file.  Use a line like
4931 this@footnote{As with all these in-buffer settings, pressing @kbd{C-c C-c}
4932 activates any changes in the line.}:
4934 @cindex #+FILETAGS
4935 @example
4936 #+FILETAGS: :Peter:Boss:Secret:
4937 @end example
4939 @noindent
4940 @vindex org-use-tag-inheritance
4941 @vindex org-tags-exclude-from-inheritance
4942 To limit tag inheritance to specific tags, use @code{org-tags-exclude-from-inheritance}.
4943 To turn it off entirely, use @code{org-use-tag-inheritance}.
4945 @vindex org-tags-match-list-sublevels
4946 When a headline matches during a tags search while tag inheritance is turned
4947 on, all the sublevels in the same tree will (for a simple match form) match
4948 as well@footnote{This is only true if the search does not involve more
4949 complex tests including properties (@pxref{Property searches}).}.  The list
4950 of matches may then become very long.  If you only want to see the first tags
4951 match in a subtree, configure @code{org-tags-match-list-sublevels} (not
4952 recommended).
4954 @vindex org-agenda-use-tag-inheritance
4955 Tag inheritance is relevant when the agenda search tries to match a tag,
4956 either in the @code{tags} or @code{tags-todo} agenda types.  In other agenda
4957 types, @code{org-use-tag-inheritance} has no effect.  Still, you may want to
4958 have your tags correctly set in the agenda, so that tag filtering works fine,
4959 with inherited tags.  Set @code{org-agenda-use-tag-inheritance} to control
4960 this: the default value includes all agenda types, but setting this to @code{nil}
4961 can really speed up agenda generation.
4963 @node Setting tags
4964 @section Setting tags
4965 @cindex setting tags
4966 @cindex tags, setting
4968 @kindex M-@key{TAB}
4969 Tags can simply be typed into the buffer at the end of a headline.
4970 After a colon, @kbd{M-@key{TAB}} offers completion on tags.  There is
4971 also a special command for inserting tags:
4973 @table @kbd
4974 @orgcmd{C-c C-q,org-set-tags-command}
4975 @cindex completion, of tags
4976 @vindex org-tags-column
4977 Enter new tags for the current headline.  Org mode will either offer
4978 completion or a special single-key interface for setting tags, see
4979 below.  After pressing @key{RET}, the tags will be inserted and aligned
4980 to @code{org-tags-column}.  When called with a @kbd{C-u} prefix, all
4981 tags in the current buffer will be aligned to that column, just to make
4982 things look nice.  TAGS are automatically realigned after promotion,
4983 demotion, and TODO state changes (@pxref{TODO basics}).
4985 @orgcmd{C-c C-c,org-set-tags-command}
4986 When the cursor is in a headline, this does the same as @kbd{C-c C-q}.
4987 @end table
4989 @vindex org-tag-alist
4990 Org supports tag insertion based on a @emph{list of tags}.  By
4991 default this list is constructed dynamically, containing all tags
4992 currently used in the buffer.  You may also globally specify a hard list
4993 of tags with the variable @code{org-tag-alist}.  Finally you can set
4994 the default tags for a given file with lines like
4996 @cindex #+TAGS
4997 @example
4998 #+TAGS: @@work @@home @@tennisclub
4999 #+TAGS: laptop car pc sailboat
5000 @end example
5002 If you have globally defined your preferred set of tags using the
5003 variable @code{org-tag-alist}, but would like to use a dynamic tag list
5004 in a specific file, add an empty TAGS option line to that file:
5006 @example
5007 #+TAGS:
5008 @end example
5010 @vindex org-tag-persistent-alist
5011 If you have a preferred set of tags that you would like to use in every file,
5012 in addition to those defined on a per-file basis by TAGS option lines, then
5013 you may specify a list of tags with the variable
5014 @code{org-tag-persistent-alist}.  You may turn this off on a per-file basis
5015 by adding a STARTUP option line to that file:
5017 @example
5018 #+STARTUP: noptag
5019 @end example
5021 By default Org mode uses the standard minibuffer completion facilities for
5022 entering tags.  However, it also implements another, quicker, tag selection
5023 method called @emph{fast tag selection}.  This allows you to select and
5024 deselect tags with just a single key press.  For this to work well you should
5025 assign unique, case-sensitive, letters to most of your commonly used tags.
5026 You can do this globally by configuring the variable @code{org-tag-alist} in
5027 your Emacs init file.  For example, you may find the need to tag many items
5028 in different files with @samp{:@@home:}.  In this case you can set something
5029 like:
5031 @lisp
5032 (setq org-tag-alist '(("@@work" . ?w) ("@@home" . ?h) ("laptop" . ?l)))
5033 @end lisp
5035 @noindent If the tag is only relevant to the file you are working on, then you
5036 can instead set the TAGS option line as:
5038 @example
5039 #+TAGS: @@work(w)  @@home(h)  @@tennisclub(t)  laptop(l)  pc(p)
5040 @end example
5042 @noindent The tags interface will show the available tags in a splash
5043 window.  If you want to start a new line after a specific tag, insert
5044 @samp{\n} into the tag list
5046 @example
5047 #+TAGS: @@work(w)  @@home(h)  @@tennisclub(t) \n laptop(l)  pc(p)
5048 @end example
5050 @noindent or write them in two lines:
5052 @example
5053 #+TAGS: @@work(w)  @@home(h)  @@tennisclub(t)
5054 #+TAGS: laptop(l)  pc(p)
5055 @end example
5057 @noindent
5058 You can also group together tags that are mutually exclusive by using
5059 braces, as in:
5061 @example
5062 #+TAGS: @{ @@work(w)  @@home(h)  @@tennisclub(t) @}  laptop(l)  pc(p)
5063 @end example
5065 @noindent you indicate that at most one of @samp{@@work}, @samp{@@home},
5066 and @samp{@@tennisclub} should be selected.  Multiple such groups are allowed.
5068 @noindent Don't forget to press @kbd{C-c C-c} with the cursor in one of
5069 these lines to activate any changes.
5071 @noindent
5072 To set these mutually exclusive groups in the variable @code{org-tag-alist},
5073 you must use the dummy tags @code{:startgroup} and @code{:endgroup} instead
5074 of the braces.  Similarly, you can use @code{:newline} to indicate a line
5075 break.  The previous example would be set globally by the following
5076 configuration:
5078 @lisp
5079 (setq org-tag-alist '((:startgroup . nil)
5080                       ("@@work" . ?w) ("@@home" . ?h)
5081                       ("@@tennisclub" . ?t)
5082                       (:endgroup . nil)
5083                       ("laptop" . ?l) ("pc" . ?p)))
5084 @end lisp
5086 If at least one tag has a selection key then pressing @kbd{C-c C-c} will
5087 automatically present you with a special interface, listing inherited tags,
5088 the tags of the current headline, and a list of all valid tags with
5089 corresponding keys@footnote{Keys will automatically be assigned to tags which
5090 have no configured keys.}.
5092 Pressing keys assigned to tags will add or remove them from the list of tags
5093 in the current line.  Selecting a tag in a group of mutually exclusive tags
5094 will turn off any other tags from that group.
5096 In this interface, you can also use the following special keys:
5098 @table @kbd
5099 @kindex @key{TAB}
5100 @item @key{TAB}
5101 Enter a tag in the minibuffer, even if the tag is not in the predefined
5102 list.  You will be able to complete on all tags present in the buffer.
5103 You can also add several tags: just separate them with a comma.
5105 @kindex @key{SPC}
5106 @item @key{SPC}
5107 Clear all tags for this line.
5109 @kindex @key{RET}
5110 @item @key{RET}
5111 Accept the modified set.
5113 @item C-g
5114 Abort without installing changes.
5116 @item q
5117 If @kbd{q} is not assigned to a tag, it aborts like @kbd{C-g}.
5119 @item !
5120 Turn off groups of mutually exclusive tags.  Use this to (as an
5121 exception) assign several tags from such a group.
5123 @item C-c
5124 Toggle auto-exit after the next change (see below).
5125 If you are using expert mode, the first @kbd{C-c} will display the
5126 selection window.
5127 @end table
5129 @noindent
5130 This method lets you assign tags to a headline with very few keys.  With
5131 the above setup, you could clear the current tags and set @samp{@@home},
5132 @samp{laptop} and @samp{pc} tags with just the following keys: @kbd{C-c
5133 C-c @key{SPC} h l p @key{RET}}.  Switching from @samp{@@home} to
5134 @samp{@@work} would be done with @kbd{C-c C-c w @key{RET}} or
5135 alternatively with @kbd{C-c C-c C-c w}.  Adding the non-predefined tag
5136 @samp{Sarah} could be done with @kbd{C-c C-c @key{TAB} S a r a h
5137 @key{RET} @key{RET}}.
5139 @vindex org-fast-tag-selection-single-key
5140 If you find that most of the time you need only a single key press to
5141 modify your list of tags, set @code{org-fast-tag-selection-single-key}.
5142 Then you no longer have to press @key{RET} to exit fast tag selection---it
5143 will immediately exit after the first change.  If you then occasionally
5144 need more keys, press @kbd{C-c} to turn off auto-exit for the current tag
5145 selection process (in effect: start selection with @kbd{C-c C-c C-c}
5146 instead of @kbd{C-c C-c}).  If you set the variable to the value
5147 @code{expert}, the special window is not even shown for single-key tag
5148 selection, it comes up only when you press an extra @kbd{C-c}.
5150 @node Tag hierarchy
5151 @section Tag hierarchy
5153 @cindex group tags
5154 @cindex tags, groups
5155 @cindex tag hierarchy
5156 Tags can be defined in hierarchies.  A tag can be defined as a @emph{group
5157 tag} for a set of other tags.  The group tag can be seen as the ``broader
5158 term'' for its set of tags.  Defining multiple @emph{group tags} and nesting
5159 them creates a tag hierarchy.
5161 One use-case is to create a taxonomy of terms (tags) that can be used to
5162 classify nodes in a document or set of documents.
5164 When you search for a group tag, it will return matches for all members in
5165 the group and its subgroups.  In an agenda view, filtering by a group tag
5166 will display or hide headlines tagged with at least one of the members of the
5167 group or any of its subgroups.  This makes tag searches and filters even more
5168 flexible.
5170 You can set group tags by using brackets and inserting a colon between the
5171 group tag and its related tags---beware that all whitespaces are mandatory so
5172 that Org can parse this line correctly:
5174 @example
5175 #+TAGS: [ GTD : Control Persp ]
5176 @end example
5178 In this example, @samp{GTD} is the @emph{group tag} and it is related to two
5179 other tags: @samp{Control}, @samp{Persp}.  Defining @samp{Control} and
5180 @samp{Persp} as group tags creates an hierarchy of tags:
5182 @example
5183 #+TAGS: [ Control : Context Task ]
5184 #+TAGS: [ Persp : Vision Goal AOF Project ]
5185 @end example
5187 That can conceptually be seen as a hierarchy of tags:
5189 @example
5190 - GTD
5191   - Persp
5192     - Vision
5193     - Goal
5194     - AOF
5195     - Project
5196   - Control
5197     - Context
5198     - Task
5199 @end example
5201 You can use the @code{:startgrouptag}, @code{:grouptags} and
5202 @code{:endgrouptag} keyword directly when setting @code{org-tag-alist}
5203 directly:
5205 @lisp
5206 (setq org-tag-alist '((:startgrouptag)
5207                       ("GTD")
5208                       (:grouptags)
5209                       ("Control")
5210                       ("Persp")
5211                       (:endgrouptag)
5212                       (:startgrouptag)
5213                       ("Control")
5214                       (:grouptags)
5215                       ("Context")
5216                       ("Task")
5217                       (:endgrouptag)))
5218 @end lisp
5220 The tags in a group can be mutually exclusive if using the same group syntax
5221 as is used for grouping mutually exclusive tags together; using curly
5222 brackets.
5224 @example
5225 #+TAGS: @{ Context : @@Home @@Work @@Call @}
5226 @end example
5228 When setting @code{org-tag-alist} you can use @code{:startgroup} &
5229 @code{:endgroup} instead of @code{:startgrouptag} & @code{:endgrouptag} to
5230 make the tags mutually exclusive.
5232 Furthermore, the members of a @emph{group tag} can also be regular
5233 expressions, creating the possibility of a more dynamic and rule-based
5234 tag structure.  The regular expressions in the group must be specified
5235 within @{ @}.  Here is an expanded example:
5237 @example
5238 #+TAGS: [ Vision : @{V@@@.+@} ]
5239 #+TAGS: [ Goal : @{G@@@.+@} ]
5240 #+TAGS: [ AOF : @{AOF@@@.+@} ]
5241 #+TAGS: [ Project : @{P@@@.+@} ]
5242 @end example
5244 Searching for the tag @samp{Project} will now list all tags also including
5245 regular expression matches for @samp{P@@@.+}, and similarly for tag searches on
5246 @samp{Vision}, @samp{Goal} and @samp{AOF}.  For example, this would work well
5247 for a project tagged with a common project-identifier, e.g. @samp{P@@2014_OrgTags}.
5249 @kindex C-c C-x q
5250 @vindex org-group-tags
5251 If you want to ignore group tags temporarily, toggle group tags support
5252 with @command{org-toggle-tags-groups}, bound to @kbd{C-c C-x q}.  If you
5253 want to disable tag groups completely, set @code{org-group-tags} to @code{nil}.
5255 @node Tag searches
5256 @section Tag searches
5257 @cindex tag searches
5258 @cindex searching for tags
5260 Once a system of tags has been set up, it can be used to collect related
5261 information into special lists.
5263 @table @kbd
5264 @orgcmdkkc{C-c / m,C-c \\,org-match-sparse-tree}
5265 Create a sparse tree with all headlines matching a tags/property/TODO search.
5266 With a @kbd{C-u} prefix argument, ignore headlines that are not a TODO line.
5267 @xref{Matching tags and properties}.
5268 @orgcmd{C-c a m,org-tags-view}
5269 Create a global list of tag matches from all agenda files.  @xref{Matching
5270 tags and properties}.
5271 @orgcmd{C-c a M,org-tags-view}
5272 @vindex org-tags-match-list-sublevels
5273 Create a global list of tag matches from all agenda files, but check
5274 only TODO items and force checking subitems (see the option
5275 @code{org-tags-match-list-sublevels}).
5276 @end table
5278 These commands all prompt for a match string which allows basic Boolean logic
5279 like @samp{+boss+urgent-project1}, to find entries with tags @samp{boss} and
5280 @samp{urgent}, but not @samp{project1}, or @samp{Kathy|Sally} to find entries
5281 tagged as @samp{Kathy} or @samp{Sally}.  The full syntax of the search string
5282 is rich and allows also matching against TODO keywords, entry levels and
5283 properties.  For a complete description with many examples, see @ref{Matching
5284 tags and properties}.
5287 @node Properties and columns
5288 @chapter Properties and columns
5289 @cindex properties
5291 A property is a key-value pair associated with an entry.  Properties can be
5292 set so they are associated with a single entry, with every entry in a tree,
5293 or with every entry in an Org mode file.
5295 There are two main applications for properties in Org mode.  First,
5296 properties are like tags, but with a value.  Imagine maintaining a file where
5297 you document bugs and plan releases for a piece of software.  Instead of
5298 using tags like @code{:release_1:}, @code{:release_2:}, you can use a
5299 property, say @code{:Release:}, that in different subtrees has different
5300 values, such as @code{1.0} or @code{2.0}.  Second, you can use properties to
5301 implement (very basic) database capabilities in an Org buffer.  Imagine
5302 keeping track of your music CDs, where properties could be things such as the
5303 album, artist, date of release, number of tracks, and so on.
5305 Properties can be conveniently edited and viewed in column view
5306 (@pxref{Column view}).
5308 @menu
5309 * Property syntax::             How properties are spelled out
5310 * Special properties::          Access to other Org mode features
5311 * Property searches::           Matching property values
5312 * Property inheritance::        Passing values down the tree
5313 * Column view::                 Tabular viewing and editing
5314 * Property API::                Properties for Lisp programmers
5315 @end menu
5317 @node Property syntax
5318 @section Property syntax
5319 @cindex property syntax
5320 @cindex drawer, for properties
5322 Properties are key-value pairs.  When they are associated with a single entry
5323 or with a tree they need to be inserted into a special drawer
5324 (@pxref{Drawers}) with the name @code{PROPERTIES}, which has to be located
5325 right below a headline, and its planning line (@pxref{Deadlines and
5326 scheduling}) when applicable.  Each property is specified on a single line,
5327 with the key (surrounded by colons) first, and the value after it.  Keys are
5328 case-insensitive.  Here is an example:
5330 @example
5331 * CD collection
5332 ** Classic
5333 *** Goldberg Variations
5334     :PROPERTIES:
5335     :Title:     Goldberg Variations
5336     :Composer:  J.S. Bach
5337     :Artist:    Glen Gould
5338     :Publisher: Deutsche Grammophon
5339     :NDisks:    1
5340     :END:
5341 @end example
5343 Depending on the value of @code{org-use-property-inheritance}, a property set
5344 this way will either be associated with a single entry, or the subtree
5345 defined by the entry, see @ref{Property inheritance}.
5347 You may define the allowed values for a particular property @samp{:Xyz:}
5348 by setting a property @samp{:Xyz_ALL:}.  This special property is
5349 @emph{inherited}, so if you set it in a level 1 entry, it will apply to
5350 the entire tree.  When allowed values are defined, setting the
5351 corresponding property becomes easier and is less prone to typing
5352 errors.  For the example with the CD collection, we can predefine
5353 publishers and the number of disks in a box like this:
5355 @example
5356 * CD collection
5357   :PROPERTIES:
5358   :NDisks_ALL:  1 2 3 4
5359   :Publisher_ALL: "Deutsche Grammophon" Philips EMI
5360   :END:
5361 @end example
5363 If you want to set properties that can be inherited by any entry in a
5364 file, use a line like
5365 @cindex property, _ALL
5366 @cindex #+PROPERTY
5367 @example
5368 #+PROPERTY: NDisks_ALL 1 2 3 4
5369 @end example
5371 Contrary to properties set from a special drawer, you have to refresh the
5372 buffer with @kbd{C-c C-c} to activate this change.
5374 If you want to add to the value of an existing property, append a @code{+} to
5375 the property name.  The following results in the property @code{var} having
5376 the value ``foo=1 bar=2''.
5377 @cindex property, +
5378 @example
5379 #+PROPERTY: var  foo=1
5380 #+PROPERTY: var+ bar=2
5381 @end example
5383 It is also possible to add to the values of inherited properties.  The
5384 following results in the @code{genres} property having the value ``Classic
5385 Baroque'' under the @code{Goldberg Variations} subtree.
5386 @cindex property, +
5387 @example
5388 * CD collection
5389 ** Classic
5390     :PROPERTIES:
5391     :GENRES: Classic
5392     :END:
5393 *** Goldberg Variations
5394     :PROPERTIES:
5395     :Title:     Goldberg Variations
5396     :Composer:  J.S. Bach
5397     :Artist:    Glen Gould
5398     :Publisher: Deutsche Grammophon
5399     :NDisks:    1
5400     :GENRES+:   Baroque
5401     :END:
5402 @end example
5403 Note that a property can only have one entry per Drawer.
5405 @vindex org-global-properties
5406 Property values set with the global variable
5407 @code{org-global-properties} can be inherited by all entries in all
5408 Org files.
5410 @noindent
5411 The following commands help to work with properties:
5413 @table @kbd
5414 @orgcmd{M-@key{TAB},pcomplete}
5415 After an initial colon in a line, complete property keys.  All keys used
5416 in the current file will be offered as possible completions.
5417 @orgcmd{C-c C-x p,org-set-property}
5418 Set a property.  This prompts for a property name and a value.  If
5419 necessary, the property drawer is created as well.
5420 @item C-u M-x org-insert-drawer RET
5421 @cindex org-insert-drawer
5422 Insert a property drawer into the current entry.  The drawer will be
5423 inserted early in the entry, but after the lines with planning
5424 information like deadlines.
5425 @orgcmd{C-c C-c,org-property-action}
5426 With the cursor in a property drawer, this executes property commands.
5427 @orgcmd{C-c C-c s,org-set-property}
5428 Set a property in the current entry.  Both the property and the value
5429 can be inserted using completion.
5430 @orgcmdkkcc{S-@key{right},S-@key{left},org-property-next-allowed-value,org-property-previous-allowed-value}
5431 Switch property at point to the next/previous allowed value.
5432 @orgcmd{C-c C-c d,org-delete-property}
5433 Remove a property from the current entry.
5434 @orgcmd{C-c C-c D,org-delete-property-globally}
5435 Globally remove a property, from all entries in the current file.
5436 @orgcmd{C-c C-c c,org-compute-property-at-point}
5437 Compute the property at point, using the operator and scope from the
5438 nearest column format definition.
5439 @end table
5441 @node Special properties
5442 @section Special properties
5443 @cindex properties, special
5445 Special properties provide an alternative access method to Org mode features,
5446 like the TODO state or the priority of an entry, discussed in the previous
5447 chapters.  This interface exists so that you can include these states in
5448 a column view (@pxref{Column view}), or to use them in queries.  The
5449 following property names are special and should not be used as keys in the
5450 properties drawer:
5452 @cindex property, special, ALLTAGS
5453 @cindex property, special, BLOCKED
5454 @cindex property, special, CLOCKSUM
5455 @cindex property, special, CLOCKSUM_T
5456 @cindex property, special, CLOSED
5457 @cindex property, special, DEADLINE
5458 @cindex property, special, FILE
5459 @cindex property, special, ITEM
5460 @cindex property, special, PRIORITY
5461 @cindex property, special, SCHEDULED
5462 @cindex property, special, TAGS
5463 @cindex property, special, TIMESTAMP
5464 @cindex property, special, TIMESTAMP_IA
5465 @cindex property, special, TODO
5466 @example
5467 ALLTAGS      @r{All tags, including inherited ones.}
5468 BLOCKED      @r{"t" if task is currently blocked by children or siblings.}
5469 CLOCKSUM     @r{The sum of CLOCK intervals in the subtree.  @code{org-clock-sum}}
5470              @r{must be run first to compute the values in the current buffer.}
5471 CLOCKSUM_T   @r{The sum of CLOCK intervals in the subtree for today.}
5472              @r{@code{org-clock-sum-today} must be run first to compute the}
5473              @r{values in the current buffer.}
5474 CLOSED       @r{When was this entry closed?}
5475 DEADLINE     @r{The deadline time string, without the angular brackets.}
5476 FILE         @r{The filename the entry is located in.}
5477 ITEM         @r{The headline of the entry.}
5478 PRIORITY     @r{The priority of the entry, a string with a single letter.}
5479 SCHEDULED    @r{The scheduling timestamp, without the angular brackets.}
5480 TAGS         @r{The tags defined directly in the headline.}
5481 TIMESTAMP    @r{The first keyword-less timestamp in the entry.}
5482 TIMESTAMP_IA @r{The first inactive timestamp in the entry.}
5483 TODO         @r{The TODO keyword of the entry.}
5484 @end example
5486 @node Property searches
5487 @section Property searches
5488 @cindex properties, searching
5489 @cindex searching, of properties
5491 To create sparse trees and special lists with selection based on properties,
5492 the same commands are used as for tag searches (@pxref{Tag searches}).
5494 @table @kbd
5495 @orgcmdkkc{C-c / m,C-c \\,org-match-sparse-tree}
5496 Create a sparse tree with all matching entries.  With a
5497 @kbd{C-u} prefix argument, ignore headlines that are not a TODO line.
5498 @orgcmd{C-c a m,org-tags-view}
5499 Create a global list of tag/property  matches from all agenda files.
5500 @xref{Matching tags and properties}.
5501 @orgcmd{C-c a M,org-tags-view}
5502 @vindex org-tags-match-list-sublevels
5503 Create a global list of tag matches from all agenda files, but check
5504 only TODO items and force checking of subitems (see the option
5505 @code{org-tags-match-list-sublevels}).
5506 @end table
5508 The syntax for the search string is described in @ref{Matching tags and
5509 properties}.
5511 There is also a special command for creating sparse trees based on a
5512 single property:
5514 @table @kbd
5515 @orgkey{C-c / p}
5516 Create a sparse tree based on the value of a property.  This first
5517 prompts for the name of a property, and then for a value.  A sparse tree
5518 is created with all entries that define this property with the given
5519 value.  If you enclose the value in curly braces, it is interpreted as
5520 a regular expression and matched against the property values.
5521 @end table
5523 @node Property inheritance
5524 @section Property Inheritance
5525 @cindex properties, inheritance
5526 @cindex inheritance, of properties
5528 @vindex org-use-property-inheritance
5529 The outline structure of Org mode documents lends itself to an
5530 inheritance model of properties: if the parent in a tree has a certain
5531 property, the children can inherit this property.  Org mode does not
5532 turn this on by default, because it can slow down property searches
5533 significantly and is often not needed.  However, if you find inheritance
5534 useful, you can turn it on by setting the variable
5535 @code{org-use-property-inheritance}.  It may be set to @code{t} to make
5536 all properties inherited from the parent, to a list of properties
5537 that should be inherited, or to a regular expression that matches
5538 inherited properties.  If a property has the value @code{nil}, this is
5539 interpreted as an explicit undefine of the property, so that inheritance
5540 search will stop at this value and return @code{nil}.
5542 Org mode has a few properties for which inheritance is hard-coded, at
5543 least for the special applications for which they are used:
5545 @cindex property, COLUMNS
5546 @table @code
5547 @item COLUMNS
5548 The @code{:COLUMNS:} property defines the format of column view
5549 (@pxref{Column view}).  It is inherited in the sense that the level
5550 where a @code{:COLUMNS:} property is defined is used as the starting
5551 point for a column view table, independently of the location in the
5552 subtree from where columns view is turned on.
5553 @item CATEGORY
5554 @cindex property, CATEGORY
5555 For agenda view, a category set through a @code{:CATEGORY:} property
5556 applies to the entire subtree.
5557 @item ARCHIVE
5558 @cindex property, ARCHIVE
5559 For archiving, the @code{:ARCHIVE:} property may define the archive
5560 location for the entire subtree (@pxref{Moving subtrees}).
5561 @item LOGGING
5562 @cindex property, LOGGING
5563 The LOGGING property may define logging settings for an entry or a
5564 subtree (@pxref{Tracking TODO state changes}).
5565 @end table
5567 @node Column view
5568 @section Column view
5570 A great way to view and edit properties in an outline tree is
5571 @emph{column view}.  In column view, each outline node is turned into a
5572 table row.  Columns in this table provide access to properties of the
5573 entries.  Org mode implements columns by overlaying a tabular structure
5574 over the headline of each item.  While the headlines have been turned
5575 into a table row, you can still change the visibility of the outline
5576 tree.  For example, you get a compact table by switching to CONTENTS
5577 view (@kbd{S-@key{TAB} S-@key{TAB}}, or simply @kbd{c} while column view
5578 is active), but you can still open, read, and edit the entry below each
5579 headline.  Or, you can switch to column view after executing a sparse
5580 tree command and in this way get a table only for the selected items.
5581 Column view also works in agenda buffers (@pxref{Agenda views}) where
5582 queries have collected selected items, possibly from a number of files.
5584 @menu
5585 * Defining columns::            The COLUMNS format property
5586 * Using column view::           How to create and use column view
5587 * Capturing column view::       A dynamic block for column view
5588 @end menu
5590 @node Defining columns
5591 @subsection Defining columns
5592 @cindex column view, for properties
5593 @cindex properties, column view
5595 Setting up a column view first requires defining the columns.  This is
5596 done by defining a column format line.
5598 @menu
5599 * Scope of column definitions::  Where defined, where valid?
5600 * Column attributes::           Appearance and content of a column
5601 @end menu
5603 @node Scope of column definitions
5604 @subsubsection Scope of column definitions
5606 To define a column format for an entire file, use a line like
5608 @cindex #+COLUMNS
5609 @example
5610 #+COLUMNS: %25ITEM %TAGS %PRIORITY %TODO
5611 @end example
5613 To specify a format that only applies to a specific tree, add a
5614 @code{:COLUMNS:} property to the top node of that tree, for example:
5616 @example
5617 ** Top node for columns view
5618    :PROPERTIES:
5619    :COLUMNS: %25ITEM %TAGS %PRIORITY %TODO
5620    :END:
5621 @end example
5623 If a @code{:COLUMNS:} property is present in an entry, it defines columns
5624 for the entry itself, and for the entire subtree below it.  Since the
5625 column definition is part of the hierarchical structure of the document,
5626 you can define columns on level 1 that are general enough for all
5627 sublevels, and more specific columns further down, when you edit a
5628 deeper part of the tree.
5630 @node Column attributes
5631 @subsubsection Column attributes
5632 A column definition sets the attributes of a column.  The general
5633 definition looks like this:
5635 @example
5636  %[@var{width}]@var{property}[(@var{title})][@{@var{summary-type}@}]
5637 @end example
5639 @noindent
5640 Except for the percent sign and the property name, all items are
5641 optional.  The individual parts have the following meaning:
5643 @example
5644 @var{width}           @r{An integer specifying the width of the column in characters.}
5645                 @r{If omitted, the width will be determined automatically.}
5646 @var{property}        @r{The property that should be edited in this column.}
5647                 @r{Special properties representing meta data are allowed here}
5648                 @r{as well (@pxref{Special properties})}
5649 @var{title}           @r{The header text for the column.  If omitted, the property}
5650                 @r{name is used.}
5651 @{@var{summary-type}@}  @r{The summary type.  If specified, the column values for}
5652                 @r{parent nodes are computed from the children@footnote{If
5653                 more than one summary type apply to the property, the parent
5654                 values are computed according to the first of them.}.}
5655                 @r{Supported summary types are:}
5656                 @{+@}       @r{Sum numbers in this column.}
5657                 @{+;%.1f@}  @r{Like @samp{+}, but format result with @samp{%.1f}.}
5658                 @{$@}       @r{Currency, short for @samp{+;%.2f}.}
5659                 @{min@}     @r{Smallest number in column.}
5660                 @{max@}     @r{Largest number.}
5661                 @{mean@}    @r{Arithmetic mean of numbers.}
5662                 @{X@}       @r{Checkbox status, @samp{[X]} if all children are @samp{[X]}.}
5663                 @{X/@}      @r{Checkbox status, @samp{[n/m]}.}
5664                 @{X%@}      @r{Checkbox status, @samp{[n%]}.}
5665                 @{:@}       @r{Sum times, HH:MM, plain numbers are
5666                 hours@footnote{A time can also be a duration, using effort
5667                 modifiers defined in @code{org-effort-durations}, e.g.,
5668                 @samp{3d 1h}.  If any value in the column is as such, the
5669                 summary will also be an effort duration.}.}
5670                 @{:min@}    @r{Smallest time value in column.}
5671                 @{:max@}    @r{Largest time value.}
5672                 @{:mean@}   @r{Arithmetic mean of time values.}
5673                 @{@@min@}    @r{Minimum age@footnote{An age is defined as
5674                 a duration since a given time-stamp (@pxref{Timestamps}).  It
5675                 can  also be expressed as days, hours, minutes and seconds,
5676                 identified by @samp{d}, @samp{h}, @samp{m} and @samp{s}
5677                 suffixes, all mandatory, e.g., @samp{0d 13h 0m 10s}.} (in
5678                 days/hours/mins/seconds).}
5679                 @{@@max@}    @r{Maximum age (in days/hours/mins/seconds).}
5680                 @{@@mean@}   @r{Arithmetic mean of ages (in days/hours/mins/seconds).}
5681                 @{est+@}    @r{Add @samp{low-high} estimates.}
5682 @end example
5684 The @code{est+} summary type requires further explanation.  It is used for
5685 combining estimates, expressed as @samp{low-high} ranges or plain numbers.
5686 For example, instead of estimating a particular task will take 5 days, you
5687 might estimate it as 5--6 days if you're fairly confident you know how much
5688 work is required, or 1--10 days if you don't really know what needs to be
5689 done.  Both ranges average at 5.5 days, but the first represents a more
5690 predictable delivery.
5692 When combining a set of such estimates, simply adding the lows and highs
5693 produces an unrealistically wide result.  Instead, @code{est+} adds the
5694 statistical mean and variance of the sub-tasks, generating a final estimate
5695 from the sum.  For example, suppose you had ten tasks, each of which was
5696 estimated at 0.5 to 2 days of work.  Straight addition produces an estimate
5697 of 5 to 20 days, representing what to expect if everything goes either
5698 extremely well or extremely poorly.  In contrast, @code{est+} estimates the
5699 full job more realistically, at 10--15 days.
5701 Numbers are right-aligned when a format specifier with an explicit width like
5702 @code{%5d} or @code{%5.1f} is used.
5704 @vindex org-columns-summary-types
5705 You can also define custom summary types by setting
5706 @code{org-columns-summary-types}, which see.
5708 Here is an example for a complete columns definition, along with allowed
5709 values.
5711 @example
5712 :COLUMNS:  %25ITEM %9Approved(Approved?)@{X@} %Owner %11Status \@footnote{Please note that the COLUMNS definition must be on a single line---it is wrapped here only because of formatting constraints.}
5713                    %10Time_Estimate@{:@} %CLOCKSUM %CLOCKSUM_T
5714 :Owner_ALL:    Tammy Mark Karl Lisa Don
5715 :Status_ALL:   "In progress" "Not started yet" "Finished" ""
5716 :Approved_ALL: "[ ]" "[X]"
5717 @end example
5719 @noindent
5720 The first column, @samp{%25ITEM}, means the first 25 characters of the
5721 item itself, i.e., of the headline.  You probably always should start the
5722 column definition with the @samp{ITEM} specifier.  The other specifiers
5723 create columns @samp{Owner} with a list of names as allowed values, for
5724 @samp{Status} with four different possible values, and for a checkbox
5725 field @samp{Approved}.  When no width is given after the @samp{%}
5726 character, the column will be exactly as wide as it needs to be in order
5727 to fully display all values.  The @samp{Approved} column does have a
5728 modified title (@samp{Approved?}, with a question mark).  Summaries will
5729 be created for the @samp{Time_Estimate} column by adding time duration
5730 expressions like HH:MM, and for the @samp{Approved} column, by providing
5731 an @samp{[X]} status if all children have been checked.  The
5732 @samp{CLOCKSUM} and @samp{CLOCKSUM_T} columns are special, they lists the
5733 sums of CLOCK intervals in the subtree, either for all clocks or just for
5734 today.
5736 @node Using column view
5737 @subsection Using column view
5739 @table @kbd
5740 @tsubheading{Turning column view on and off}
5741 @orgcmd{C-c C-x C-c,org-columns}
5742 @vindex org-columns-default-format
5743 Turn on column view.  If the cursor is before the first headline in the file,
5744 or the function called with the universal prefix argument, column view is
5745 turned on for the entire file, using the @code{#+COLUMNS} definition.  If the
5746 cursor is somewhere inside the outline, this command searches the hierarchy,
5747 up from point, for a @code{:COLUMNS:} property that defines a format.  When
5748 one is found, the column view table is established for the tree starting at
5749 the entry that contains the @code{:COLUMNS:} property.  If no such property
5750 is found, the format is taken from the @code{#+COLUMNS} line or from the
5751 variable @code{org-columns-default-format}, and column view is established
5752 for the current entry and its subtree.
5753 @orgcmd{r,org-columns-redo}
5754 Recreate the column view, to include recent changes made in the buffer.
5755 @orgcmd{g,org-columns-redo}
5756 Same as @kbd{r}.
5757 @orgcmd{q,org-columns-quit}
5758 Exit column view.
5759 @tsubheading{Editing values}
5760 @item @key{left} @key{right} @key{up} @key{down}
5761 Move through the column view from field to field.
5762 @kindex S-@key{left}
5763 @kindex S-@key{right}
5764 @item  S-@key{left}/@key{right}
5765 Switch to the next/previous allowed value of the field.  For this, you
5766 have to have specified allowed values for a property.
5767 @item 1..9,0
5768 Directly select the Nth allowed value, @kbd{0} selects the 10th value.
5769 @orgcmdkkcc{n,p,org-columns-next-allowed-value,org-columns-previous-allowed-value}
5770 Same as @kbd{S-@key{left}/@key{right}}
5771 @orgcmd{e,org-columns-edit-value}
5772 Edit the property at point.  For the special properties, this will
5773 invoke the same interface that you normally use to change that
5774 property.  For example, when editing a TAGS property, the tag completion
5775 or fast selection interface will pop up.
5776 @orgcmd{C-c C-c,org-columns-set-tags-or-toggle}
5777 When there is a checkbox at point, toggle it.
5778 @orgcmd{v,org-columns-show-value}
5779 View the full value of this property.  This is useful if the width of
5780 the column is smaller than that of the value.
5781 @orgcmd{a,org-columns-edit-allowed}
5782 Edit the list of allowed values for this property.  If the list is found
5783 in the hierarchy, the modified value is stored there.  If no list is
5784 found, the new value is stored in the first entry that is part of the
5785 current column view.
5786 @tsubheading{Modifying the table structure}
5787 @orgcmdkkcc{<,>,org-columns-narrow,org-columns-widen}
5788 Make the column narrower/wider by one character.
5789 @orgcmd{S-M-@key{right},org-columns-new}
5790 Insert a new column, to the left of the current column.
5791 @orgcmd{S-M-@key{left},org-columns-delete}
5792 Delete the current column.
5793 @end table
5795 @node Capturing column view
5796 @subsection Capturing column view
5798 Since column view is just an overlay over a buffer, it cannot be
5799 exported or printed directly.  If you want to capture a column view, use
5800 a @code{columnview} dynamic block (@pxref{Dynamic blocks}).  The frame
5801 of this block looks like this:
5803 @cindex #+BEGIN, columnview
5804 @example
5805 * The column view
5806 #+BEGIN: columnview :hlines 1 :id "label"
5808 #+END:
5809 @end example
5811 @noindent This dynamic block has the following parameters:
5813 @table @code
5814 @item :id
5815 This is the most important parameter.  Column view is a feature that is
5816 often localized to a certain (sub)tree, and the capture block might be
5817 at a different location in the file.  To identify the tree whose view to
5818 capture, you can use 4 values:
5819 @cindex property, ID
5820 @example
5821 local     @r{use the tree in which the capture block is located}
5822 global    @r{make a global view, including all headings in the file}
5823 "file:@var{path-to-file}"
5824           @r{run column view at the top of this file}
5825 "@var{ID}"      @r{call column view in the tree that has an @code{:ID:}}
5826           @r{property with the value @i{label}.  You can use}
5827           @r{@kbd{M-x org-id-copy RET} to create a globally unique ID for}
5828           @r{the current entry and copy it to the kill-ring.}
5829 @end example
5830 @item :hlines
5831 When @code{t}, insert an hline after every line.  When a number @var{N}, insert
5832 an hline before each headline with level @code{<= @var{N}}.
5833 @item :vlines
5834 When set to @code{t}, force column groups to get vertical lines.
5835 @item :maxlevel
5836 When set to a number, don't capture entries below this level.
5837 @item :skip-empty-rows
5838 When set to @code{t}, skip rows where the only non-empty specifier of the
5839 column view is @code{ITEM}.
5840 @item :indent
5841 When non-@code{nil}, indent each @code{ITEM} field according to its level.
5843 @end table
5845 @noindent
5846 The following commands insert or update the dynamic block:
5848 @table @kbd
5849 @orgcmd{C-c C-x i,org-insert-columns-dblock}
5850 Insert a dynamic block capturing a column view.  You will be prompted
5851 for the scope or ID of the view.
5852 @orgcmdkkc{C-c C-c,C-c C-x C-u,org-dblock-update}
5853 Update dynamic block at point.  The cursor needs to be in the
5854 @code{#+BEGIN} line of the dynamic block.
5855 @orgcmd{C-u C-c C-x C-u,org-update-all-dblocks}
5856 Update all dynamic blocks (@pxref{Dynamic blocks}).  This is useful if
5857 you have several clock table blocks, column-capturing blocks or other dynamic
5858 blocks in a buffer.
5859 @end table
5861 You can add formulas to the column view table and you may add plotting
5862 instructions in front of the table---these will survive an update of the
5863 block.  If there is a @code{#+TBLFM:} after the table, the table will
5864 actually be recalculated automatically after an update.
5866 An alternative way to capture and process property values into a table is
5867 provided by Eric Schulte's @file{org-collector.el} which is a contributed
5868 package@footnote{Contributed packages are not part of Emacs, but are
5869 distributed with the main distribution of Org (visit
5870 @uref{http://orgmode.org}).}.  It provides a general API to collect
5871 properties from entries in a certain scope, and arbitrary Lisp expressions to
5872 process these values before inserting them into a table or a dynamic block.
5874 @node Property API
5875 @section The Property API
5876 @cindex properties, API
5877 @cindex API, for properties
5879 There is a full API for accessing and changing properties.  This API can
5880 be used by Emacs Lisp programs to work with properties and to implement
5881 features based on them.  For more information see @ref{Using the
5882 property API}.
5884 @node Dates and times
5885 @chapter Dates and times
5886 @cindex dates
5887 @cindex times
5888 @cindex timestamp
5889 @cindex date stamp
5891 To assist project planning, TODO items can be labeled with a date and/or
5892 a time.  The specially formatted string carrying the date and time
5893 information is called a @emph{timestamp} in Org mode.  This may be a
5894 little confusing because timestamp is often used to indicate when
5895 something was created or last changed.  However, in Org mode this term
5896 is used in a much wider sense.
5898 @menu
5899 * Timestamps::                  Assigning a time to a tree entry
5900 * Creating timestamps::         Commands which insert timestamps
5901 * Deadlines and scheduling::    Planning your work
5902 * Clocking work time::          Tracking how long you spend on a task
5903 * Effort estimates::            Planning work effort in advance
5904 * Timers::                      Notes with a running timer
5905 @end menu
5908 @node Timestamps
5909 @section Timestamps, deadlines, and scheduling
5910 @cindex timestamps
5911 @cindex ranges, time
5912 @cindex date stamps
5913 @cindex deadlines
5914 @cindex scheduling
5916 A timestamp is a specification of a date (possibly with a time or a range of
5917 times) in a special format, either @samp{<2003-09-16 Tue>}@footnote{In this
5918 simplest form, the day name is optional when you type the date yourself.
5919 However, any dates inserted or modified by Org will add that day name, for
5920 reading convenience.} or @samp{<2003-09-16 Tue 09:39>} or @samp{<2003-09-16
5921 Tue 12:00-12:30>}@footnote{This is inspired by the standard ISO 8601
5922 date/time format.  To use an alternative format, see @ref{Custom time
5923 format}.}.  A timestamp can appear anywhere in the headline or body of an Org
5924 tree entry.  Its presence causes entries to be shown on specific dates in the
5925 agenda (@pxref{Weekly/daily agenda}).  We distinguish:
5927 @table @var
5928 @item Plain timestamp; Event; Appointment
5929 @cindex timestamp
5930 @cindex appointment
5931 A simple timestamp just assigns a date/time to an item.  This is just like
5932 writing down an appointment or event in a paper agenda.  In the agenda
5933 display, the headline of an entry associated with a plain timestamp will be
5934 shown exactly on that date.
5936 @example
5937 * Meet Peter at the movies
5938   <2006-11-01 Wed 19:15>
5939 * Discussion on climate change
5940   <2006-11-02 Thu 20:00-22:00>
5941 @end example
5943 @item Timestamp with repeater interval
5944 @cindex timestamp, with repeater interval
5945 A timestamp may contain a @emph{repeater interval}, indicating that it
5946 applies not only on the given date, but again and again after a certain
5947 interval of N days (d), weeks (w), months (m), or years (y).  The
5948 following will show up in the agenda every Wednesday:
5950 @example
5951 * Pick up Sam at school
5952   <2007-05-16 Wed 12:30 +1w>
5953 @end example
5955 @item Diary-style sexp entries
5956 For more complex date specifications, Org mode supports using the special
5957 sexp diary entries implemented in the Emacs calendar/diary
5958 package@footnote{When working with the standard diary sexp functions, you
5959 need to be very careful with the order of the arguments.  That order depends
5960 evilly on the variable @code{calendar-date-style} (or, for older Emacs
5961 versions, @code{european-calendar-style}).  For example, to specify a date
5962 December 1, 2005, the call might look like @code{(diary-date 12 1 2005)} or
5963 @code{(diary-date 1 12 2005)} or @code{(diary-date 2005 12 1)}, depending on
5964 the settings.  This has been the source of much confusion.  Org mode users
5965 can resort to special versions of these functions like @code{org-date} or
5966 @code{org-anniversary}.  These work just like the corresponding @code{diary-}
5967 functions, but with stable ISO order of arguments (year, month, day) wherever
5968 applicable, independent of the value of @code{calendar-date-style}.}.  For
5969 example with optional time
5971 @example
5972 * 22:00-23:00 The nerd meeting on every 2nd Thursday of the month
5973   <%%(diary-float t 4 2)>
5974 @end example
5976 @item Time/Date range
5977 @cindex timerange
5978 @cindex date range
5979 Two timestamps connected by @samp{--} denote a range.  The headline
5980 will be shown on the first and last day of the range, and on any dates
5981 that are displayed and fall in the range.  Here is an example:
5983 @example
5984 ** Meeting in Amsterdam
5985    <2004-08-23 Mon>--<2004-08-26 Thu>
5986 @end example
5988 @item Inactive timestamp
5989 @cindex timestamp, inactive
5990 @cindex inactive timestamp
5991 Just like a plain timestamp, but with square brackets instead of
5992 angular ones.  These timestamps are inactive in the sense that they do
5993 @emph{not} trigger an entry to show up in the agenda.
5995 @example
5996 * Gillian comes late for the fifth time
5997   [2006-11-01 Wed]
5998 @end example
6000 @end table
6002 @node Creating timestamps
6003 @section Creating timestamps
6004 @cindex creating timestamps
6005 @cindex timestamps, creating
6007 For Org mode to recognize timestamps, they need to be in the specific
6008 format.  All commands listed below produce timestamps in the correct
6009 format.
6011 @table @kbd
6012 @orgcmd{C-c .,org-time-stamp}
6013 Prompt for a date and insert a corresponding timestamp.  When the cursor is
6014 at an existing timestamp in the buffer, the command is used to modify this
6015 timestamp instead of inserting a new one.  When this command is used twice in
6016 succession, a time range is inserted.
6018 @orgcmd{C-c !,org-time-stamp-inactive}
6019 Like @kbd{C-c .}, but insert an inactive timestamp that will not cause
6020 an agenda entry.
6022 @kindex C-u C-c .
6023 @kindex C-u C-c !
6024 @item C-u C-c .
6025 @itemx C-u C-c !
6026 @vindex org-time-stamp-rounding-minutes
6027 Like @kbd{C-c .} and @kbd{C-c !}, but use the alternative format which
6028 contains date and time.  The default time can be rounded to multiples of 5
6029 minutes, see the option @code{org-time-stamp-rounding-minutes}.
6031 @orgkey{C-c C-c}
6032 Normalize timestamp, insert/fix day name if missing or wrong.
6034 @orgcmd{C-c <,org-date-from-calendar}
6035 Insert a timestamp corresponding to the cursor date in the Calendar.
6037 @orgcmd{C-c >,org-goto-calendar}
6038 Access the Emacs calendar for the current date.  If there is a
6039 timestamp in the current line, go to the corresponding date
6040 instead.
6042 @orgcmd{C-c C-o,org-open-at-point}
6043 Access the agenda for the date given by the timestamp or -range at
6044 point (@pxref{Weekly/daily agenda}).
6046 @orgcmdkkcc{S-@key{left},S-@key{right},org-timestamp-down-day,org-timestamp-up-day}
6047 Change date at cursor by one day.  These key bindings conflict with
6048 shift-selection and related modes (@pxref{Conflicts}).
6050 @orgcmdkkcc{S-@key{up},S-@key{down},org-timestamp-up,org-timestamp-down-down}
6051 Change the item under the cursor in a timestamp.  The cursor can be on a
6052 year, month, day, hour or minute.  When the timestamp contains a time range
6053 like @samp{15:30-16:30}, modifying the first time will also shift the second,
6054 shifting the time block with constant length.  To change the length, modify
6055 the second time.  Note that if the cursor is in a headline and not at a
6056 timestamp, these same keys modify the priority of an item.
6057 (@pxref{Priorities}).  The key bindings also conflict with shift-selection and
6058 related modes (@pxref{Conflicts}).
6060 @orgcmd{C-c C-y,org-evaluate-time-range}
6061 @cindex evaluate time range
6062 Evaluate a time range by computing the difference between start and end.
6063 With a prefix argument, insert result after the time range (in a table: into
6064 the following column).
6065 @end table
6068 @menu
6069 * The date/time prompt::        How Org mode helps you entering date and time
6070 * Custom time format::          Making dates look different
6071 @end menu
6073 @node The date/time prompt
6074 @subsection The date/time prompt
6075 @cindex date, reading in minibuffer
6076 @cindex time, reading in minibuffer
6078 @vindex org-read-date-prefer-future
6079 When Org mode prompts for a date/time, the default is shown in default
6080 date/time format, and the prompt therefore seems to ask for a specific
6081 format.  But it will in fact accept date/time information in a variety of
6082 formats.  Generally, the information should start at the beginning of the
6083 string.  Org mode will find whatever information is in
6084 there and derive anything you have not specified from the @emph{default date
6085 and time}.  The default is usually the current date and time, but when
6086 modifying an existing timestamp, or when entering the second stamp of a
6087 range, it is taken from the stamp in the buffer.  When filling in
6088 information, Org mode assumes that most of the time you will want to enter a
6089 date in the future: if you omit the month/year and the given day/month is
6090 @i{before} today, it will assume that you mean a future date@footnote{See the
6091 variable @code{org-read-date-prefer-future}.  You may set that variable to
6092 the symbol @code{time} to even make a time before now shift the date to
6093 tomorrow.}.  If the date has been automatically shifted into the future, the
6094 time prompt will show this with @samp{(=>F).}
6096 For example, let's assume that today is @b{June 13, 2006}.  Here is how
6097 various inputs will be interpreted, the items filled in by Org mode are
6098 in @b{bold}.
6100 @example
6101 3-2-5         @result{} 2003-02-05
6102 2/5/3         @result{} 2003-02-05
6103 14            @result{} @b{2006}-@b{06}-14
6104 12            @result{} @b{2006}-@b{07}-12
6105 2/5           @result{} @b{2007}-02-05
6106 Fri           @result{} nearest Friday after the default date
6107 sep 15        @result{} @b{2006}-09-15
6108 feb 15        @result{} @b{2007}-02-15
6109 sep 12 9      @result{} 2009-09-12
6110 12:45         @result{} @b{2006}-@b{06}-@b{13} 12:45
6111 22 sept 0:34  @result{} @b{2006}-09-22 00:34
6112 w4            @result{} ISO week four of the current year @b{2006}
6113 2012 w4 fri   @result{} Friday of ISO week 4 in 2012
6114 2012-w04-5    @result{} Same as above
6115 @end example
6117 Furthermore you can specify a relative date by giving, as the @emph{first}
6118 thing in the input: a plus/minus sign, a number and a letter ([hdwmy]) to
6119 indicate change in hours, days, weeks, months, or years.  With a single plus
6120 or minus, the date is always relative to today.  With a double plus or minus,
6121 it is relative to the default date.  If instead of a single letter, you use
6122 the abbreviation of day name, the date will be the Nth such day, e.g.:
6124 @example
6125 +0            @result{} today
6126 .             @result{} today
6127 +4d           @result{} four days from today
6128 +4            @result{} same as above
6129 +2w           @result{} two weeks from today
6130 ++5           @result{} five days from default date
6131 +2tue         @result{} second Tuesday from now
6132 -wed          @result{} last Wednesday
6133 @end example
6135 @vindex parse-time-months
6136 @vindex parse-time-weekdays
6137 The function understands English month and weekday abbreviations.  If
6138 you want to use unabbreviated names and/or other languages, configure
6139 the variables @code{parse-time-months} and @code{parse-time-weekdays}.
6141 @vindex org-read-date-force-compatible-dates
6142 Not all dates can be represented in a given Emacs implementation.  By default
6143 Org mode forces dates into the compatibility range 1970--2037 which works on
6144 all Emacs implementations.  If you want to use dates outside of this range,
6145 read the docstring of the variable
6146 @code{org-read-date-force-compatible-dates}.
6148 You can specify a time range by giving start and end times or by giving a
6149 start time and a duration (in HH:MM format).  Use one or two dash(es) as the
6150 separator in the former case and use '+' as the separator in the latter
6151 case, e.g.:
6153 @example
6154 11am-1:15pm    @result{} 11:00-13:15
6155 11am--1:15pm   @result{} same as above
6156 11am+2:15      @result{} same as above
6157 @end example
6159 @cindex calendar, for selecting date
6160 @vindex org-popup-calendar-for-date-prompt
6161 Parallel to the minibuffer prompt, a calendar is popped up@footnote{If
6162 you don't need/want the calendar, configure the variable
6163 @code{org-popup-calendar-for-date-prompt}.}.  When you exit the date
6164 prompt, either by clicking on a date in the calendar, or by pressing
6165 @key{RET}, the date selected in the calendar will be combined with the
6166 information entered at the prompt.  You can control the calendar fully
6167 from the minibuffer:
6169 @kindex <
6170 @kindex >
6171 @kindex M-v
6172 @kindex C-v
6173 @kindex mouse-1
6174 @kindex S-@key{right}
6175 @kindex S-@key{left}
6176 @kindex S-@key{down}
6177 @kindex S-@key{up}
6178 @kindex M-S-@key{right}
6179 @kindex M-S-@key{left}
6180 @kindex @key{RET}
6181 @kindex M-S-@key{down}
6182 @kindex M-S-@key{up}
6184 @example
6185 @key{RET}              @r{Choose date at cursor in calendar.}
6186 mouse-1            @r{Select date by clicking on it.}
6187 S-@key{right}/@key{left}   @r{One day forward/backward.}
6188 S-@key{down}/@key{up}      @r{One week forward/backward.}
6189 M-S-@key{right}/@key{left} @r{One month forward/backward.}
6190 > / <              @r{Scroll calendar forward/backward by one month.}
6191 M-v / C-v          @r{Scroll calendar forward/backward by 3 months.}
6192 M-S-@key{down}/@key{up}    @r{Scroll calendar forward/backward by one year.}
6193 @end example
6195 @vindex org-read-date-display-live
6196 The actions of the date/time prompt may seem complex, but I assure you they
6197 will grow on you, and you will start getting annoyed by pretty much any other
6198 way of entering a date/time out there.  To help you understand what is going
6199 on, the current interpretation of your input will be displayed live in the
6200 minibuffer@footnote{If you find this distracting, turn the display off with
6201 @code{org-read-date-display-live}.}.
6203 @node Custom time format
6204 @subsection Custom time format
6205 @cindex custom date/time format
6206 @cindex time format, custom
6207 @cindex date format, custom
6209 @vindex org-display-custom-times
6210 @vindex org-time-stamp-custom-formats
6211 Org mode uses the standard ISO notation for dates and times as it is
6212 defined in ISO 8601.  If you cannot get used to this and require another
6213 representation of date and time to keep you happy, you can get it by
6214 customizing the options @code{org-display-custom-times} and
6215 @code{org-time-stamp-custom-formats}.
6217 @table @kbd
6218 @orgcmd{C-c C-x C-t,org-toggle-time-stamp-overlays}
6219 Toggle the display of custom formats for dates and times.
6220 @end table
6222 @noindent
6223 Org mode needs the default format for scanning, so the custom date/time
6224 format does not @emph{replace} the default format---instead it is put
6225 @emph{over} the default format using text properties.  This has the
6226 following consequences:
6227 @itemize @bullet
6228 @item
6229 You cannot place the cursor onto a timestamp anymore, only before or
6230 after.
6231 @item
6232 The @kbd{S-@key{up}/@key{down}} keys can no longer be used to adjust
6233 each component of a timestamp.  If the cursor is at the beginning of
6234 the stamp, @kbd{S-@key{up}/@key{down}} will change the stamp by one day,
6235 just like @kbd{S-@key{left}/@key{right}}.  At the end of the stamp, the
6236 time will be changed by one minute.
6237 @item
6238 If the timestamp contains a range of clock times or a repeater, these
6239 will not be overlaid, but remain in the buffer as they were.
6240 @item
6241 When you delete a timestamp character-by-character, it will only
6242 disappear from the buffer after @emph{all} (invisible) characters
6243 belonging to the ISO timestamp have been removed.
6244 @item
6245 If the custom timestamp format is longer than the default and you are
6246 using dates in tables, table alignment will be messed up.  If the custom
6247 format is shorter, things do work as expected.
6248 @end itemize
6251 @node Deadlines and scheduling
6252 @section Deadlines and scheduling
6254 A timestamp may be preceded by special keywords to facilitate planning.  Both
6255 the timestamp and the keyword have to be positioned immediately after the task
6256 they refer to.
6258 @table @var
6259 @item DEADLINE
6260 @cindex DEADLINE keyword
6262 Meaning: the task (most likely a TODO item, though not necessarily) is supposed
6263 to be finished on that date.
6265 @vindex org-deadline-warning-days
6266 @vindex org-agenda-skip-deadline-prewarning-if-scheduled
6267 On the deadline date, the task will be listed in the agenda.  In
6268 addition, the agenda for @emph{today} will carry a warning about the
6269 approaching or missed deadline, starting
6270 @code{org-deadline-warning-days} before the due date, and continuing
6271 until the entry is marked DONE@.  An example:
6273 @example
6274 *** TODO write article about the Earth for the Guide
6275     DEADLINE: <2004-02-29 Sun>
6276     The editor in charge is [[bbdb:Ford Prefect]]
6277 @end example
6279 You can specify a different lead time for warnings for a specific
6280 deadline using the following syntax.  Here is an example with a warning
6281 period of 5 days @code{DEADLINE: <2004-02-29 Sun -5d>}.  This warning is
6282 deactivated if the task gets scheduled and you set
6283 @code{org-agenda-skip-deadline-prewarning-if-scheduled} to @code{t}.
6285 @item SCHEDULED
6286 @cindex SCHEDULED keyword
6288 Meaning: you are planning to start working on that task on the given
6289 date.
6291 @vindex org-agenda-skip-scheduled-if-done
6292 The headline will be listed under the given date@footnote{It will still
6293 be listed on that date after it has been marked DONE@.  If you don't like
6294 this, set the variable @code{org-agenda-skip-scheduled-if-done}.}.  In
6295 addition, a reminder that the scheduled date has passed will be present
6296 in the compilation for @emph{today}, until the entry is marked DONE, i.e.,
6297 the task will automatically be forwarded until completed.
6299 @example
6300 *** TODO Call Trillian for a date on New Years Eve.
6301     SCHEDULED: <2004-12-25 Sat>
6302 @end example
6304 @vindex org-scheduled-delay-days
6305 @vindex org-agenda-skip-scheduled-delay-if-deadline
6306 If you want to @emph{delay} the display of this task in the agenda, use
6307 @code{SCHEDULED: <2004-12-25 Sat -2d>}: the task is still scheduled on the
6308 25th but will appear two days later.  In case the task contains a repeater,
6309 the delay is considered to affect all occurrences; if you want the delay to
6310 only affect the first scheduled occurrence of the task, use @code{--2d}
6311 instead.  See @code{org-scheduled-delay-days} and
6312 @code{org-agenda-skip-scheduled-delay-if-deadline} for details on how to
6313 control this globally or per agenda.
6315 @noindent
6316 @b{Important:} Scheduling an item in Org mode should @i{not} be
6317 understood in the same way that we understand @i{scheduling a meeting}.
6318 Setting a date for a meeting is just a simple appointment, you should
6319 mark this entry with a simple plain timestamp, to get this item shown
6320 on the date where it applies.  This is a frequent misunderstanding by
6321 Org users.  In Org mode, @i{scheduling} means setting a date when you
6322 want to start working on an action item.
6323 @end table
6325 You may use timestamps with repeaters in scheduling and deadline
6326 entries.  Org mode will issue early and late warnings based on the
6327 assumption that the timestamp represents the @i{nearest instance} of
6328 the repeater.  However, the use of diary sexp entries like
6330 @code{<%%(diary-float t 42)>}
6332 in scheduling and deadline timestamps is limited.  Org mode does not
6333 know enough about the internals of each sexp function to issue early and
6334 late warnings.  However, it will show the item on each day where the
6335 sexp entry matches.
6337 @menu
6338 * Inserting deadline/schedule::  Planning items
6339 * Repeated tasks::              Items that show up again and again
6340 @end menu
6342 @node Inserting deadline/schedule
6343 @subsection Inserting deadlines or schedules
6345 The following commands allow you to quickly insert a deadline or to schedule
6346 an item:
6348 @table @kbd
6350 @orgcmd{C-c C-d,org-deadline}
6351 Insert @samp{DEADLINE} keyword along with a stamp.  Any CLOSED timestamp will
6352 be removed.  When called with a prefix arg, an existing deadline will be
6353 removed from the entry.  Depending on the variable
6354 @code{org-log-redeadline}@footnote{with corresponding @code{#+STARTUP}
6355 keywords @code{logredeadline}, @code{lognoteredeadline}, and
6356 @code{nologredeadline}}, a note will be taken when changing an existing
6357 deadline.
6359 @orgcmd{C-c C-s,org-schedule}
6360 Insert @samp{SCHEDULED} keyword along with a stamp.  Any CLOSED timestamp
6361 will be removed.  When called with a prefix argument, remove the scheduling
6362 date from the entry.  Depending on the variable
6363 @code{org-log-reschedule}@footnote{with corresponding @code{#+STARTUP}
6364 keywords @code{logreschedule}, @code{lognotereschedule}, and
6365 @code{nologreschedule}}, a note will be taken when changing an existing
6366 scheduling time.
6368 @orgcmd{C-c / d,org-check-deadlines}
6369 @cindex sparse tree, for deadlines
6370 @vindex org-deadline-warning-days
6371 Create a sparse tree with all deadlines that are either past-due, or
6372 which will become due within @code{org-deadline-warning-days}.
6373 With @kbd{C-u} prefix, show all deadlines in the file.  With a numeric
6374 prefix, check that many days.  For example, @kbd{C-1 C-c / d} shows
6375 all deadlines due tomorrow.
6377 @orgcmd{C-c / b,org-check-before-date}
6378 Sparse tree for deadlines and scheduled items before a given date.
6380 @orgcmd{C-c / a,org-check-after-date}
6381 Sparse tree for deadlines and scheduled items after a given date.
6382 @end table
6384 Note that @code{org-schedule} and @code{org-deadline} supports
6385 setting the date by indicating a relative time: e.g., +1d will set
6386 the date to the next day after today, and --1w will set the date
6387 to the previous week before any current timestamp.
6389 @node Repeated tasks
6390 @subsection Repeated tasks
6391 @cindex tasks, repeated
6392 @cindex repeated tasks
6394 Some tasks need to be repeated again and again.  Org mode helps to
6395 organize such tasks using a so-called repeater in a DEADLINE, SCHEDULED,
6396 or plain timestamp.  In the following example
6397 @example
6398 ** TODO Pay the rent
6399    DEADLINE: <2005-10-01 Sat +1m>
6400 @end example
6401 @noindent
6402 the @code{+1m} is a repeater; the intended interpretation is that the task
6403 has a deadline on <2005-10-01> and repeats itself every (one) month starting
6404 from that time.  You can use yearly, monthly, weekly, daily and hourly repeat
6405 cookies by using the @code{y/w/m/d/h} letters.  If you need both a repeater
6406 and a special warning period in a deadline entry, the repeater should come
6407 first and the warning period last: @code{DEADLINE: <2005-10-01 Sat +1m -3d>}.
6409 @vindex org-todo-repeat-to-state
6410 Deadlines and scheduled items produce entries in the agenda when they are
6411 over-due, so it is important to be able to mark such an entry as completed
6412 once you have done so.  When you mark a DEADLINE or a SCHEDULE with the TODO
6413 keyword DONE, it will no longer produce entries in the agenda.  The problem
6414 with this is, however, that then also the @emph{next} instance of the
6415 repeated entry will not be active.  Org mode deals with this in the following
6416 way: When you try to mark such an entry DONE (using @kbd{C-c C-t}), it will
6417 shift the base date of the repeating timestamp by the repeater interval, and
6418 immediately set the entry state back to TODO@footnote{In fact, the target
6419 state is taken from, in this sequence, the @code{REPEAT_TO_STATE} property or
6420 the variable @code{org-todo-repeat-to-state}.  If neither of these is
6421 specified, the target state defaults to the first state of the TODO state
6422 sequence.}.  In the example above, setting the state to DONE would actually
6423 switch the date like this:
6425 @example
6426 ** TODO Pay the rent
6427    DEADLINE: <2005-11-01 Tue +1m>
6428 @end example
6430 To mark a task with a repeater as @code{DONE}, use @kbd{C-- 1 C-c C-t}
6431 (i.e., @code{org-todo} with a numeric prefix argument of -1.)
6433 @vindex org-log-repeat
6434 A timestamp@footnote{You can change this using the option
6435 @code{org-log-repeat}, or the @code{#+STARTUP} options @code{logrepeat},
6436 @code{lognoterepeat}, and @code{nologrepeat}.  With @code{lognoterepeat}, you
6437 will also be prompted for a note.} will be added under the deadline, to keep
6438 a record that you actually acted on the previous instance of this deadline.
6440 As a consequence of shifting the base date, this entry will no longer be
6441 visible in the agenda when checking past dates, but all future instances
6442 will be visible.
6444 With the @samp{+1m} cookie, the date shift will always be exactly one
6445 month.  So if you have not paid the rent for three months, marking this
6446 entry DONE will still keep it as an overdue deadline.  Depending on the
6447 task, this may not be the best way to handle it.  For example, if you
6448 forgot to call your father for 3 weeks, it does not make sense to call
6449 him 3 times in a single day to make up for it.  Finally, there are tasks
6450 like changing batteries which should always repeat a certain time
6451 @i{after} the last time you did it.  For these tasks, Org mode has
6452 special repeaters  @samp{++} and @samp{.+}.  For example:
6454 @example
6455 ** TODO Call Father
6456    DEADLINE: <2008-02-10 Sun ++1w>
6457    Marking this DONE will shift the date by at least one week,
6458    but also by as many weeks as it takes to get this date into
6459    the future.  However, it stays on a Sunday, even if you called
6460    and marked it done on Saturday.
6461 ** TODO Empty kitchen trash
6462    DEADLINE: <2008-02-08 Fri 20:00 ++1d>
6463    Marking this DONE will shift the date by at least one day, and
6464    also by as many days as it takes to get the timestamp into the
6465    future.  Since there is a time in the timestamp, the next
6466    deadline in the future will be on today's date if you
6467    complete the task before 20:00.
6468 ** TODO Check the batteries in the smoke detectors
6469    DEADLINE: <2005-11-01 Tue .+1m>
6470    Marking this DONE will shift the date to one month after
6471    today.
6472 @end example
6474 @vindex org-agenda-skip-scheduled-if-deadline-is-shown
6475 You may have both scheduling and deadline information for a specific task.
6476 If the repeater is set for the scheduling information only, you probably want
6477 the repeater to be ignored after the deadline.  If so, set the variable
6478 @code{org-agenda-skip-scheduled-if-deadline-is-shown} to
6479 @code{repeated-after-deadline}.  However, any scheduling information without
6480 a repeater is no longer relevant once the task is done, and thus, removed
6481 upon repeating the task.  If you want both scheduling and deadline
6482 information to repeat after the same interval, set the same repeater for both
6483 timestamps.
6485 An alternative to using a repeater is to create a number of copies of a task
6486 subtree, with dates shifted in each copy.  The command @kbd{C-c C-x c} was
6487 created for this purpose, it is described in @ref{Structure editing}.
6490 @node Clocking work time
6491 @section Clocking work time
6492 @cindex clocking time
6493 @cindex time clocking
6495 Org mode allows you to clock the time you spend on specific tasks in a
6496 project.  When you start working on an item, you can start the clock.  When
6497 you stop working on that task, or when you mark the task done, the clock is
6498 stopped and the corresponding time interval is recorded.  It also computes
6499 the total time spent on each subtree@footnote{Clocking only works if all
6500 headings are indented with less than 30 stars.  This is a hardcoded
6501 limitation of @code{lmax} in @code{org-clock-sum}.} of a project.
6502 And it remembers a history or tasks recently clocked, so that you can jump
6503 quickly between a number of tasks absorbing your time.
6505 To save the clock history across Emacs sessions, use
6506 @lisp
6507 (setq org-clock-persist 'history)
6508 (org-clock-persistence-insinuate)
6509 @end lisp
6510 When you clock into a new task after resuming Emacs, the incomplete
6511 clock@footnote{To resume the clock under the assumption that you have worked
6512 on this task while outside Emacs, use @code{(setq org-clock-persist t)}.}
6513 will be found (@pxref{Resolving idle time}) and you will be prompted about
6514 what to do with it.
6516 @menu
6517 * Clocking commands::           Starting and stopping a clock
6518 * The clock table::             Detailed reports
6519 * Resolving idle time::         Resolving time when you've been idle
6520 @end menu
6522 @node Clocking commands
6523 @subsection Clocking commands
6525 @table @kbd
6526 @orgcmd{C-c C-x C-i,org-clock-in}
6527 @vindex org-clock-into-drawer
6528 @vindex org-clock-continuously
6529 @cindex property, LOG_INTO_DRAWER
6530 Start the clock on the current item (clock-in).  This inserts the CLOCK
6531 keyword together with a timestamp.  If this is not the first clocking of
6532 this item, the multiple CLOCK lines will be wrapped into a
6533 @code{:LOGBOOK:} drawer (see also the variable
6534 @code{org-clock-into-drawer}).  You can also overrule
6535 the setting of this variable for a subtree by setting a
6536 @code{CLOCK_INTO_DRAWER} or @code{LOG_INTO_DRAWER} property.
6537 When called with a @kbd{C-u} prefix argument,
6538 select the task from a list of recently clocked tasks.  With two @kbd{C-u
6539 C-u} prefixes, clock into the task at point and mark it as the default task;
6540 the default task will then always be available with letter @kbd{d} when
6541 selecting a clocking task.  With three @kbd{C-u C-u C-u} prefixes, force
6542 continuous clocking by starting the clock when the last clock stopped.@*
6543 @cindex property: CLOCK_MODELINE_TOTAL
6544 @cindex property: LAST_REPEAT
6545 @vindex org-clock-modeline-total
6546 While the clock is running, the current clocking time is shown in the mode
6547 line, along with the title of the task.  The clock time shown will be all
6548 time ever clocked for this task and its children.  If the task has an effort
6549 estimate (@pxref{Effort estimates}), the mode line displays the current
6550 clocking time against it@footnote{To add an effort estimate ``on the fly'',
6551 hook a function doing this to @code{org-clock-in-prepare-hook}.}  If the task
6552 is a repeating one (@pxref{Repeated tasks}), only the time since the last
6553 reset of the task @footnote{as recorded by the @code{LAST_REPEAT} property}
6554 will be shown.  More control over what time is shown can be exercised with
6555 the @code{CLOCK_MODELINE_TOTAL} property.  It may have the values
6556 @code{current} to show only the current clocking instance, @code{today} to
6557 show all time clocked on this task today (see also the variable
6558 @code{org-extend-today-until}), @code{all} to include all time, or
6559 @code{auto} which is the default@footnote{See also the variable
6560 @code{org-clock-modeline-total}.}.@* Clicking with @kbd{mouse-1} onto the
6561 mode line entry will pop up a menu with clocking options.
6563 @orgcmd{C-c C-x C-o,org-clock-out}
6564 @vindex org-log-note-clock-out
6565 Stop the clock (clock-out).  This inserts another timestamp at the same
6566 location where the clock was last started.  It also directly computes
6567 the resulting time and inserts it after the time range as @samp{=>
6568 HH:MM}.  See the variable @code{org-log-note-clock-out} for the
6569 possibility to record an additional note together with the clock-out
6570 timestamp@footnote{The corresponding in-buffer setting is:
6571 @code{#+STARTUP: lognoteclock-out}}.
6572 @orgcmd{C-c C-x C-x,org-clock-in-last}
6573 @vindex org-clock-continuously
6574 Reclock the last clocked task.  With one @kbd{C-u} prefix argument,
6575 select the task from the clock history.  With two @kbd{C-u} prefixes,
6576 force continuous clocking by starting the clock when the last clock
6577 stopped.
6578 @orgcmd{C-c C-x C-e,org-clock-modify-effort-estimate}
6579 Update the effort estimate for the current clock task.
6580 @kindex C-c C-y
6581 @kindex C-c C-c
6582 @orgcmdkkc{C-c C-c,C-c C-y,org-evaluate-time-range}
6583 Recompute the time interval after changing one of the timestamps.  This
6584 is only necessary if you edit the timestamps directly.  If you change
6585 them with @kbd{S-@key{cursor}} keys, the update is automatic.
6586 @orgcmd{C-S-@key{up/down},org-clock-timestamps-up/down}
6587 On @code{CLOCK} log lines, increase/decrease both timestamps so that the
6588 clock duration keeps the same.
6589 @orgcmd{S-M-@key{up/down},org-timestamp-up/down}
6590 On @code{CLOCK} log lines, increase/decrease the timestamp at point and
6591 the one of the previous (or the next clock) timestamp by the same duration.
6592 For example, if you hit @kbd{S-M-@key{up}} to increase a clocked-out timestamp
6593 by five minutes, then the clocked-in timestamp of the next clock will be
6594 increased by five minutes.
6595 @orgcmd{C-c C-t,org-todo}
6596 Changing the TODO state of an item to DONE automatically stops the clock
6597 if it is running in this same item.
6598 @orgcmd{C-c C-x C-q,org-clock-cancel}
6599 Cancel the current clock.  This is useful if a clock was started by
6600 mistake, or if you ended up working on something else.
6601 @orgcmd{C-c C-x C-j,org-clock-goto}
6602 Jump to the headline of the currently clocked in task.  With a @kbd{C-u}
6603 prefix arg, select the target task from a list of recently clocked tasks.
6604 @orgcmd{C-c C-x C-d,org-clock-display}
6605 @vindex org-remove-highlights-with-change
6606 Display time summaries for each subtree in the current buffer.  This puts
6607 overlays at the end of each headline, showing the total time recorded under
6608 that heading, including the time of any subheadings.  You can use visibility
6609 cycling to study the tree, but the overlays disappear when you change the
6610 buffer (see variable @code{org-remove-highlights-with-change}) or press
6611 @kbd{C-c C-c}.
6612 @end table
6614 The @kbd{l} key may be used the agenda (@pxref{Weekly/daily agenda}) to show
6615 which tasks have been worked on or closed during a day.
6617 @strong{Important:} note that both @code{org-clock-out} and
6618 @code{org-clock-in-last} can have a global key binding and will not
6619 modify the window disposition.
6621 @node The clock table
6622 @subsection The clock table
6623 @cindex clocktable, dynamic block
6624 @cindex report, of clocked time
6626 Org mode can produce quite complex reports based on the time clocking
6627 information.  Such a report is called a @emph{clock table}, because it is
6628 formatted as one or several Org tables.
6630 @table @kbd
6631 @orgcmd{C-c C-x C-r,org-clock-report}
6632 Insert a dynamic block (@pxref{Dynamic blocks}) containing a clock
6633 report as an Org mode table into the current file.  When the cursor is
6634 at an existing clock table, just update it.  When called with a prefix
6635 argument, jump to the first clock report in the current document and
6636 update it.  The clock table always includes also trees with
6637 @code{:ARCHIVE:} tag.
6638 @orgcmdkkc{C-c C-c,C-c C-x C-u,org-dblock-update}
6639 Update dynamic block at point.  The cursor needs to be in the
6640 @code{#+BEGIN} line of the dynamic block.
6641 @orgkey{C-u C-c C-x C-u}
6642 Update all dynamic blocks (@pxref{Dynamic blocks}).  This is useful if
6643 you have several clock table blocks in a buffer.
6644 @orgcmdkxkc{S-@key{left},S-@key{right},org-clocktable-try-shift}
6645 Shift the current @code{:block} interval and update the table.  The cursor
6646 needs to be in the @code{#+BEGIN: clocktable} line for this command.  If
6647 @code{:block} is @code{today}, it will be shifted to @code{today-1} etc.
6648 @end table
6651 Here is an example of the frame for a clock table as it is inserted into the
6652 buffer with the @kbd{C-c C-x C-r} command:
6654 @cindex #+BEGIN, clocktable
6655 @example
6656 #+BEGIN: clocktable :maxlevel 2 :emphasize nil :scope file
6657 #+END: clocktable
6658 @end example
6659 @noindent
6660 @vindex org-clocktable-defaults
6661 The @samp{BEGIN} line specifies a number of options to define the scope,
6662 structure, and formatting of the report.  Defaults for all these options can
6663 be configured in the variable @code{org-clocktable-defaults}.
6665 @noindent First there are options that determine which clock entries are to
6666 be selected:
6667 @example
6668 :maxlevel    @r{Maximum level depth to which times are listed in the table.}
6669              @r{Clocks at deeper levels will be summed into the upper level.}
6670 :scope       @r{The scope to consider.  This can be any of the following:}
6671              nil        @r{the current buffer or narrowed region}
6672              file       @r{the full current buffer}
6673              subtree    @r{the subtree where the clocktable is located}
6674              tree@var{N}      @r{the surrounding level @var{N} tree, for example @code{tree3}}
6675              tree       @r{the surrounding level 1 tree}
6676              agenda     @r{all agenda files}
6677              ("file"..) @r{scan these files}
6678              function   @r{the list of files returned by a function of no argument}
6679              file-with-archives    @r{current file and its archives}
6680              agenda-with-archives  @r{all agenda files, including archives}
6681 :block       @r{The time block to consider.  This block is specified either}
6682              @r{absolutely, or relative to the current time and may be any of}
6683              @r{these formats:}
6684              2007-12-31    @r{New year eve 2007}
6685              2007-12       @r{December 2007}
6686              2007-W50      @r{ISO-week 50 in 2007}
6687              2007-Q2       @r{2nd quarter in 2007}
6688              2007          @r{the year 2007}
6689              today, yesterday, today-@var{N}          @r{a relative day}
6690              thisweek, lastweek, thisweek-@var{N}     @r{a relative week}
6691              thismonth, lastmonth, thismonth-@var{N}  @r{a relative month}
6692              thisyear, lastyear, thisyear-@var{N}     @r{a relative year}
6693              untilnow
6694              @r{Use @kbd{S-@key{left}/@key{right}} keys to shift the time interval.}
6695 :tstart      @r{A time string specifying when to start considering times.}
6696              @r{Relative times like @code{"<-2w>"} can also be used.  See}
6697              @r{@ref{Matching tags and properties} for relative time syntax.}
6698 :tend        @r{A time string specifying when to stop considering times.}
6699              @r{Relative times like @code{"<now>"} can also be used.  See}
6700              @r{@ref{Matching tags and properties} for relative time syntax.}
6701 :wstart      @r{The starting day of the week.  The default is 1 for monday.}
6702 :mstart      @r{The starting day of the month.  The default 1 is for the first}
6703              @r{day of the month.}
6704 :step        @r{@code{week} or @code{day}, to split the table into chunks.}
6705              @r{To use this, @code{:block} or @code{:tstart}, @code{:tend} are needed.}
6706 :stepskip0   @r{Do not show steps that have zero time.}
6707 :fileskip0   @r{Do not show table sections from files which did not contribute.}
6708 :tags        @r{A tags match to select entries that should contribute.  See}
6709              @r{@ref{Matching tags and properties} for the match syntax.}
6710 @end example
6712 Then there are options which determine the formatting of the table.  These
6713 options are interpreted by the function @code{org-clocktable-write-default},
6714 but you can specify your own function using the @code{:formatter} parameter.
6715 @example
6716 :emphasize   @r{When @code{t}, emphasize level one and level two items.}
6717 :lang        @r{Language@footnote{Language terms can be set through the variable @code{org-clock-clocktable-language-setup}.} to use for descriptive cells like "Task".}
6718 :link        @r{Link the item headlines in the table to their origins.}
6719 :narrow      @r{An integer to limit the width of the headline column in}
6720              @r{the org table.  If you write it like @samp{50!}, then the}
6721              @r{headline will also be shortened in export.}
6722 :indent      @r{Indent each headline field according to its level.}
6723 :tcolumns    @r{Number of columns to be used for times.  If this is smaller}
6724              @r{than @code{:maxlevel}, lower levels will be lumped into one column.}
6725 :level       @r{Should a level number column be included?}
6726 :sort        @r{A cons cell like containing the column to sort and a sorting type.}
6727              @r{E.g., @code{:sort (1 . ?a)} sorts the first column alphabetically.}
6728 :compact     @r{Abbreviation for @code{:level nil :indent t :narrow 40! :tcolumns 1}}
6729              @r{All are overwritten except if there is an explicit @code{:narrow}}
6730 :timestamp   @r{A timestamp for the entry, when available.  Look for SCHEDULED,}
6731              @r{DEADLINE, TIMESTAMP and TIMESTAMP_IA, in this order.}
6732 :properties  @r{List of properties that should be shown in the table.  Each}
6733              @r{property will get its own column.}
6734 :inherit-props @r{When this flag is @code{t}, the values for @code{:properties} will be inherited.}
6735 :formula     @r{Content of a @code{#+TBLFM} line to be added and evaluated.}
6736              @r{As a special case, @samp{:formula %} adds a column with % time.}
6737              @r{If you do not specify a formula here, any existing formula}
6738              @r{below the clock table will survive updates and be evaluated.}
6739 :formatter   @r{A function to format clock data and insert it into the buffer.}
6740 @end example
6741 To get a clock summary of the current level 1 tree, for the current
6742 day, you could write
6743 @example
6744 #+BEGIN: clocktable :maxlevel 2 :block today :scope tree1 :link t
6745 #+END: clocktable
6746 @end example
6747 @noindent
6748 and to use a specific time range you could write@footnote{Note that all
6749 parameters must be specified in a single line---the line is broken here
6750 only to fit it into the manual.}
6751 @example
6752 #+BEGIN: clocktable :tstart "<2006-08-10 Thu 10:00>"
6753                     :tend "<2006-08-10 Thu 12:00>"
6754 #+END: clocktable
6755 @end example
6756 A range starting a week ago and ending right now could be written as
6757 @example
6758 #+BEGIN: clocktable :tstart "<-1w>" :tend "<now>"
6759 #+END: clocktable
6760 @end example
6761 A summary of the current subtree with % times would be
6762 @example
6763 #+BEGIN: clocktable :scope subtree :link t :formula %
6764 #+END: clocktable
6765 @end example
6766 A horizontally compact representation of everything clocked during last week
6767 would be
6768 @example
6769 #+BEGIN: clocktable :scope agenda :block lastweek :compact t
6770 #+END: clocktable
6771 @end example
6773 @node Resolving idle time
6774 @subsection Resolving idle time and continuous clocking
6776 @subsubheading Resolving idle time
6777 @cindex resolve idle time
6778 @vindex org-clock-x11idle-program-name
6780 @cindex idle, resolve, dangling
6781 If you clock in on a work item, and then walk away from your
6782 computer---perhaps to take a phone call---you often need to ``resolve'' the
6783 time you were away by either subtracting it from the current clock, or
6784 applying it to another one.
6786 @vindex org-clock-idle-time
6787 By customizing the variable @code{org-clock-idle-time} to some integer, such
6788 as 10 or 15, Emacs can alert you when you get back to your computer after
6789 being idle for that many minutes@footnote{On computers using Mac OS X,
6790 idleness is based on actual user idleness, not just Emacs' idle time.  For
6791 X11, you can install a utility program @file{x11idle.c}, available in the
6792 @code{contrib/scripts} directory of the Org git distribution, or install the
6793 @file{xprintidle} package and set it to the variable
6794 @code{org-clock-x11idle-program-name} if you are running Debian, to get the
6795 same general treatment of idleness.  On other systems, idle time refers to
6796 Emacs idle time only.}, and ask what you want to do with the idle time.
6797 There will be a question waiting for you when you get back, indicating how
6798 much idle time has passed (constantly updated with the current amount), as
6799 well as a set of choices to correct the discrepancy:
6801 @table @kbd
6802 @item k
6803 To keep some or all of the minutes and stay clocked in, press @kbd{k}.  Org
6804 will ask how many of the minutes to keep.  Press @key{RET} to keep them all,
6805 effectively changing nothing, or enter a number to keep that many minutes.
6806 @item K
6807 If you use the shift key and press @kbd{K}, it will keep however many minutes
6808 you request and then immediately clock out of that task.  If you keep all of
6809 the minutes, this is the same as just clocking out of the current task.
6810 @item s
6811 To keep none of the minutes, use @kbd{s} to subtract all the away time from
6812 the clock, and then check back in from the moment you returned.
6813 @item S
6814 To keep none of the minutes and just clock out at the start of the away time,
6815 use the shift key and press @kbd{S}.  Remember that using shift will always
6816 leave you clocked out, no matter which option you choose.
6817 @item C
6818 To cancel the clock altogether, use @kbd{C}.  Note that if instead of
6819 canceling you subtract the away time, and the resulting clock amount is less
6820 than a minute, the clock will still be canceled rather than clutter up the
6821 log with an empty entry.
6822 @end table
6824 What if you subtracted those away minutes from the current clock, and now
6825 want to apply them to a new clock?  Simply clock in to any task immediately
6826 after the subtraction.  Org will notice that you have subtracted time ``on
6827 the books'', so to speak, and will ask if you want to apply those minutes to
6828 the next task you clock in on.
6830 There is one other instance when this clock resolution magic occurs.  Say you
6831 were clocked in and hacking away, and suddenly your cat chased a mouse who
6832 scared a hamster that crashed into your UPS's power button!  You suddenly
6833 lose all your buffers, but thanks to auto-save you still have your recent Org
6834 mode changes, including your last clock in.
6836 If you restart Emacs and clock into any task, Org will notice that you have a
6837 dangling clock which was never clocked out from your last session.  Using
6838 that clock's starting time as the beginning of the unaccounted-for period,
6839 Org will ask how you want to resolve that time.  The logic and behavior is
6840 identical to dealing with away time due to idleness; it is just happening due
6841 to a recovery event rather than a set amount of idle time.
6843 You can also check all the files visited by your Org agenda for dangling
6844 clocks at any time using @kbd{M-x org-resolve-clocks RET} (or @kbd{C-c C-x C-z}).
6846 @subsubheading Continuous clocking
6847 @cindex continuous clocking
6848 @vindex org-clock-continuously
6850 You may want to start clocking from the time when you clocked out the
6851 previous task.  To enable this systematically, set @code{org-clock-continuously}
6852 to @code{t}.  Each time you clock in, Org retrieves the clock-out time of the
6853 last clocked entry for this session, and start the new clock from there.
6855 If you only want this from time to time, use three universal prefix arguments
6856 with @code{org-clock-in} and two @kbd{C-u C-u} with @code{org-clock-in-last}.
6858 @node Effort estimates
6859 @section Effort estimates
6860 @cindex effort estimates
6862 @cindex property, Effort
6863 If you want to plan your work in a very detailed way, or if you need to
6864 produce offers with quotations of the estimated work effort, you may want to
6865 assign effort estimates to entries.  If you are also clocking your work, you
6866 may later want to compare the planned effort with the actual working time,
6867 a great way to improve planning estimates.  Effort estimates are stored in
6868 a special property @code{EFFORT}.  You can set the effort for an entry with
6869 the following commands:
6871 @table @kbd
6872 @orgcmd{C-c C-x e,org-set-effort}
6873 Set the effort estimate for the current entry.  With a numeric prefix
6874 argument, set it to the Nth allowed value (see below).  This command is also
6875 accessible from the agenda with the @kbd{e} key.
6876 @orgcmd{C-c C-x C-e,org-clock-modify-effort-estimate}
6877 Modify the effort estimate of the item currently being clocked.
6878 @end table
6880 Clearly the best way to work with effort estimates is through column view
6881 (@pxref{Column view}).  You should start by setting up discrete values for
6882 effort estimates, and a @code{COLUMNS} format that displays these values
6883 together with clock sums (if you want to clock your time).  For a specific
6884 buffer you can use
6886 @example
6887 #+PROPERTY: Effort_ALL 0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00
6888 #+COLUMNS: %40ITEM(Task) %17Effort(Estimated Effort)@{:@} %CLOCKSUM
6889 @end example
6891 @noindent
6892 @vindex org-global-properties
6893 @vindex org-columns-default-format
6894 or, even better, you can set up these values globally by customizing the
6895 variables @code{org-global-properties} and @code{org-columns-default-format}.
6896 In particular if you want to use this setup also in the agenda, a global
6897 setup may be advised.
6899 The way to assign estimates to individual items is then to switch to column
6900 mode, and to use @kbd{S-@key{right}} and @kbd{S-@key{left}} to change the
6901 value.  The values you enter will immediately be summed up in the hierarchy.
6902 In the column next to it, any clocked time will be displayed.
6904 @vindex org-agenda-columns-add-appointments-to-effort-sum
6905 If you switch to column view in the daily/weekly agenda, the effort column
6906 will summarize the estimated work effort for each day@footnote{Please note
6907 the pitfalls of summing hierarchical data in a flat list (@pxref{Agenda
6908 column view}).}, and you can use this to find space in your schedule.  To get
6909 an overview of the entire part of the day that is committed, you can set the
6910 option @code{org-agenda-columns-add-appointments-to-effort-sum}.  The
6911 appointments on a day that take place over a specified time interval will
6912 then also be added to the load estimate of the day.
6914 Effort estimates can be used in secondary agenda filtering that is triggered
6915 with the @kbd{/} key in the agenda (@pxref{Agenda commands}).  If you have
6916 these estimates defined consistently, two or three key presses will narrow
6917 down the list to stuff that fits into an available time slot.
6919 @node Timers
6920 @section Taking notes with a timer
6921 @cindex relative timer
6922 @cindex countdown timer
6923 @kindex ;
6925 Org provides two types of timers.  There is a relative timer that counts up,
6926 which can be useful when taking notes during, for example, a meeting or
6927 a video viewing.  There is also a countdown timer.
6929 The relative and countdown are started with separate commands.
6931 @table @kbd
6932 @orgcmd{C-c C-x 0,org-timer-start}
6933 Start or reset the relative timer.  By default, the timer is set to 0.  When
6934 called with a @kbd{C-u} prefix, prompt the user for a starting offset.  If
6935 there is a timer string at point, this is taken as the default, providing a
6936 convenient way to restart taking notes after a break in the process.  When
6937 called with a double prefix argument @kbd{C-u C-u}, change all timer strings
6938 in the active region by a certain amount.  This can be used to fix timer
6939 strings if the timer was not started at exactly the right moment.
6940 @orgcmd{C-c C-x ;,org-timer-set-timer}
6941 Start a countdown timer.  The user is prompted for a duration.
6942 @code{org-timer-default-timer} sets the default countdown value.  Giving
6943 a numeric prefix argument overrides this default value.  This command is
6944 available as @kbd{;} in agenda buffers.
6945 @end table
6947 Once started, relative and countdown timers are controlled with the same
6948 commands.
6950 @table @kbd
6951 @orgcmd{C-c C-x .,org-timer}
6952 Insert the value of the current relative or countdown timer into the buffer.
6953 If no timer is running, the relative timer will be started.  When called with
6954 a prefix argument, the relative timer is restarted.
6955 @orgcmd{C-c C-x -,org-timer-item}
6956 Insert a description list item with the value of the current relative or
6957 countdown timer.  With a prefix argument, first reset the relative timer to
6959 @orgcmd{M-@key{RET},org-insert-heading}
6960 Once the timer list is started, you can also use @kbd{M-@key{RET}} to insert
6961 new timer items.
6962 @orgcmd{C-c C-x @comma{},org-timer-pause-or-continue}
6963 Pause the timer, or continue it if it is already paused.
6964 @orgcmd{C-c C-x _,org-timer-stop}
6965 Stop the timer.  After this, you can only start a new timer, not continue the
6966 old one.  This command also removes the timer from the mode line.
6967 @end table
6969 @node Capture - Refile - Archive
6970 @chapter Capture - Refile - Archive
6971 @cindex capture
6973 An important part of any organization system is the ability to quickly
6974 capture new ideas and tasks, and to associate reference material with them.
6975 Org does this using a process called @i{capture}.  It also can store files
6976 related to a task (@i{attachments}) in a special directory.  Once in the
6977 system, tasks and projects need to be moved around.  Moving completed project
6978 trees to an archive file keeps the system compact and fast.
6980 @menu
6981 * Capture::                     Capturing new stuff
6982 * Attachments::                 Add files to tasks
6983 * RSS feeds::                   Getting input from RSS feeds
6984 * Protocols::                   External (e.g., Browser) access to Emacs and Org
6985 * Refile and copy::             Moving/copying a tree from one place to another
6986 * Archiving::                   What to do with finished projects
6987 @end menu
6989 @node Capture
6990 @section Capture
6991 @cindex capture
6993 Capture lets you quickly store notes with little interruption of your work
6994 flow.  Org's method for capturing new items is heavily inspired by John
6995 Wiegley excellent @file{remember.el} package.  Up to version 6.36, Org
6996 used a special setup for @file{remember.el}, then replaced it with
6997 @file{org-remember.el}.  As of version 8.0, @file{org-remember.el} has
6998 been completely replaced by @file{org-capture.el}.
7000 If your configuration depends on @file{org-remember.el}, you need to update
7001 it and use the setup described below.  To convert your
7002 @code{org-remember-templates}, run the command
7003 @example
7004 @kbd{M-x org-capture-import-remember-templates RET}
7005 @end example
7006 @noindent and then customize the new variable with @kbd{M-x
7007 customize-variable org-capture-templates}, check the result, and save the
7008 customization.
7010 @menu
7011 * Setting up capture::          Where notes will be stored
7012 * Using capture::               Commands to invoke and terminate capture
7013 * Capture templates::           Define the outline of different note types
7014 @end menu
7016 @node Setting up capture
7017 @subsection Setting up capture
7019 The following customization sets a default target file for notes, and defines
7020 a global key@footnote{Please select your own key, @kbd{C-c c} is only a
7021 suggestion.}  for capturing new material.
7023 @vindex org-default-notes-file
7024 @smalllisp
7025 @group
7026 (setq org-default-notes-file (concat org-directory "/notes.org"))
7027 (define-key global-map "\C-cc" 'org-capture)
7028 @end group
7029 @end smalllisp
7031 @node Using capture
7032 @subsection Using capture
7034 @table @kbd
7035 @orgcmd{C-c c,org-capture}
7036 Call the command @code{org-capture}.  Note that this key binding is global and
7037 not active by default: you need to install it.  If you have templates
7038 @cindex date tree
7039 defined @pxref{Capture templates}, it will offer these templates for
7040 selection or use a new Org outline node as the default template.  It will
7041 insert the template into the target file and switch to an indirect buffer
7042 narrowed to this new node.  You may then insert the information you want.
7044 @orgcmd{C-c C-c,org-capture-finalize}
7045 Once you have finished entering information into the capture buffer, @kbd{C-c
7046 C-c} will return you to the window configuration before the capture process,
7047 so that you can resume your work without further distraction.  When called
7048 with a prefix arg, finalize and then jump to the captured item.
7050 @orgcmd{C-c C-w,org-capture-refile}
7051 Finalize the capture process by refiling (@pxref{Refile and copy}) the note to
7052 a different place.  Please realize that this is a normal refiling command
7053 that will be executed---so the cursor position at the moment you run this
7054 command is important.  If you have inserted a tree with a parent and
7055 children, first move the cursor back to the parent.  Any prefix argument
7056 given to this command will be passed on to the @code{org-refile} command.
7058 @orgcmd{C-c C-k,org-capture-kill}
7059 Abort the capture process and return to the previous state.
7061 @end table
7063 You can also call @code{org-capture} in a special way from the agenda, using
7064 the @kbd{k c} key combination.  With this access, any timestamps inserted by
7065 the selected capture template will default to the cursor date in the agenda,
7066 rather than to the current date.
7068 To find the locations of the last stored capture, use @code{org-capture} with
7069 prefix commands:
7071 @table @kbd
7072 @orgkey{C-u C-c c}
7073 Visit the target location of a capture template.  You get to select the
7074 template in the usual way.
7075 @orgkey{C-u C-u C-c c}
7076 Visit the last stored capture item in its buffer.
7077 @end table
7079 @vindex org-capture-bookmark
7080 @cindex org-capture-last-stored
7081 You can also jump to the bookmark @code{org-capture-last-stored}, which will
7082 automatically be created unless you set @code{org-capture-bookmark} to
7083 @code{nil}.
7085 To insert the capture at point in an Org buffer, call @code{org-capture} with
7086 a @code{C-0} prefix argument.
7088 @node Capture templates
7089 @subsection Capture templates
7090 @cindex templates, for Capture
7092 You can use templates for different types of capture items, and
7093 for different target locations.  The easiest way to create such templates is
7094 through the customize interface.
7096 @table @kbd
7097 @orgkey{C-c c C}
7098 Customize the variable @code{org-capture-templates}.
7099 @end table
7101 Before we give the formal description of template definitions, let's look at
7102 an example.  Say you would like to use one template to create general TODO
7103 entries, and you want to put these entries under the heading @samp{Tasks} in
7104 your file @file{~/org/gtd.org}.  Also, a date tree in the file
7105 @file{journal.org} should capture journal entries.  A possible configuration
7106 would look like:
7108 @smalllisp
7109 @group
7110 (setq org-capture-templates
7111  '(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks")
7112         "* TODO %?\n  %i\n  %a")
7113    ("j" "Journal" entry (file+olp+datetree "~/org/journal.org")
7114         "* %?\nEntered on %U\n  %i\n  %a")))
7115 @end group
7116 @end smalllisp
7118 @noindent If you then press @kbd{C-c c t}, Org will prepare the template
7119 for you like this:
7120 @example
7121 * TODO
7122   [[file:@var{link to where you initiated capture}]]
7123 @end example
7125 @noindent
7126 During expansion of the template, @code{%a} has been replaced by a link to
7127 the location from where you called the capture command.  This can be
7128 extremely useful for deriving tasks from emails, for example.  You fill in
7129 the task definition, press @kbd{C-c C-c} and Org returns you to the same
7130 place where you started the capture process.
7132 To define special keys to capture to a particular template without going
7133 through the interactive template selection, you can create your key binding
7134 like this:
7136 @lisp
7137 (define-key global-map "\C-cx"
7138    (lambda () (interactive) (org-capture nil "x")))
7139 @end lisp
7141 @menu
7142 * Template elements::           What is needed for a complete template entry
7143 * Template expansion::          Filling in information about time and context
7144 * Templates in contexts::       Only show a template in a specific context
7145 @end menu
7147 @node Template elements
7148 @subsubsection Template elements
7150 Now lets look at the elements of a template definition.  Each entry in
7151 @code{org-capture-templates} is a list with the following items:
7153 @table @var
7154 @item keys
7155 The keys that will select the template, as a string, characters
7156 only, for example @code{"a"} for a template to be selected with a
7157 single key, or @code{"bt"} for selection with two keys.  When using
7158 several keys, keys using the same prefix key must be sequential
7159 in the list and preceded by a 2-element entry explaining the
7160 prefix key, for example
7161 @smalllisp
7162          ("b" "Templates for marking stuff to buy")
7163 @end smalllisp
7164 @noindent If you do not define a template for the @kbd{C} key, this key will
7165 be used to open the customize buffer for this complex variable.
7167 @item description
7168 A short string describing the template, which will be shown during
7169 selection.
7171 @item type
7172 The type of entry, a symbol.  Valid values are:
7174 @table @code
7175 @item entry
7176 An Org mode node, with a headline.  Will be filed as the child of the target
7177 entry or as a top-level entry.  The target file should be an Org mode file.
7178 @item item
7179 A plain list item, placed in the first plain  list at the target
7180 location.  Again the target file should be an Org file.
7181 @item checkitem
7182 A checkbox item.  This only differs from the plain list item by the
7183 default template.
7184 @item table-line
7185 a new line in the first table at the target location.  Where exactly the
7186 line will be inserted depends on the properties @code{:prepend} and
7187 @code{:table-line-pos} (see below).
7188 @item plain
7189 Text to be inserted as it is.
7190 @end table
7192 @item target
7193 @vindex org-default-notes-file
7194 Specification of where the captured item should be placed.  In Org mode
7195 files, targets usually define a node.  Entries will become children of this
7196 node.  Other types will be added to the table or list in the body of this
7197 node.  Most target specifications contain a file name.  If that file name is
7198 the empty string, it defaults to @code{org-default-notes-file}.  A file can
7199 also be given as a variable or as a function called with no argument.  When
7200 an absolute path is not specified for a target, it is taken as relative to
7201 @code{org-directory}.
7203 Valid values are:
7205 @table @code
7206 @item (file "path/to/file")
7207 Text will be placed at the beginning or end of that file.
7209 @item (id "id of existing org entry")
7210 Filing as child of this entry, or in the body of the entry.
7212 @item (file+headline "path/to/file" "node headline")
7213 Fast configuration if the target heading is unique in the file.
7215 @item (file+olp "path/to/file" "Level 1 heading" "Level 2" ...)
7216 For non-unique headings, the full path is safer.
7218 @item (file+regexp  "path/to/file" "regexp to find location")
7219 Use a regular expression to position the cursor.
7221 @item (file+olp+datetree "path/to/file" [ "Level 1 heading" ....])
7222 This target@footnote{Org used to offer four different targets for date/week
7223 tree capture.  Now, Org automatically translates these to use
7224 @code{file+olp+datetree}, applying the @code{:time-prompt} and
7225 @code{:tree-type} properties.  Please rewrite your date/week-tree targets
7226 using @code{file+olp+datetree} since the older targets are now deprecated.}
7227 will create a heading in a date tree@footnote{A date tree is an outline
7228 structure with years on the highest level, months or ISO-weeks as sublevels
7229 and then dates on the lowest level.  Tags are allowed in the tree structure.}
7230 for today's date.  If the optional outline path is given, the tree will be
7231 built under the node it is pointing to, instead of at top level.  Check out
7232 the @code{:time-prompt} and @code{:tree-type} properties below for additional
7233 options.
7235 @item (file+function "path/to/file" function-finding-location)
7236 A function to find the right location in the file.
7238 @item (clock)
7239 File to the entry that is currently being clocked.
7241 @item (function function-finding-location)
7242 Most general way: write your own function which both visits
7243 the file and moves point to the right location.
7244 @end table
7246 @item template
7247 The template for creating the capture item.  If you leave this empty, an
7248 appropriate default template will be used.  Otherwise this is a string with
7249 escape codes, which will be replaced depending on time and context of the
7250 capture call.  The string with escapes may be loaded from a template file,
7251 using the special syntax @code{(file "path/to/template")}.  See below for
7252 more details.
7254 @item properties
7255 The rest of the entry is a property list of additional options.
7256 Recognized properties are:
7258 @table @code
7259 @item :prepend
7260 Normally new captured information will be appended at
7261 the target location (last child, last table line, last list item...).
7262 Setting this property will change that.
7264 @item :immediate-finish
7265 When set, do not offer to edit the information, just
7266 file it away immediately.  This makes sense if the template only needs
7267 information that can be added automatically.
7269 @item :empty-lines
7270 Set this to the number of lines to insert
7271 before and after the new item.  Default 0, only common other value is 1.
7273 @item :clock-in
7274 Start the clock in this item.
7276 @item :clock-keep
7277 Keep the clock running when filing the captured entry.
7279 @item :clock-resume
7280 If starting the capture interrupted a clock, restart that clock when finished
7281 with the capture.  Note that @code{:clock-keep} has precedence over
7282 @code{:clock-resume}.  When setting both to @code{t}, the current clock will
7283 run and the previous one will not be resumed.
7285 @item :time-prompt
7286 Prompt for a date/time to be used for date/week trees and when filling the
7287 template.  Without this property, capture uses the current date and time.
7288 Even if this property has not been set, you can force the same behavior by
7289 calling @code{org-capture} with a @kbd{C-1} prefix argument.
7291 @item :tree-type
7292 When `week', make a week tree instead of the month tree, i.e. place the
7293 headings for each day under a heading with the current iso week.
7295 @item :unnarrowed
7296 Do not narrow the target buffer, simply show the full buffer.  Default is to
7297 narrow it so that you only see the new material.
7299 @item :table-line-pos
7300 Specification of the location in the table where the new line should be
7301 inserted. It can be a string, a variable holding a string or a function
7302 returning a string. The string should look like @code{"II-3"} meaning that
7303 the new line should become the third line before the second horizontal
7304 separator line.
7306 @item :kill-buffer
7307 If the target file was not yet visited when capture was invoked, kill the
7308 buffer again after capture is completed.
7309 @end table
7310 @end table
7312 @node Template expansion
7313 @subsubsection Template expansion
7315 In the template itself, special @kbd{%}-escapes@footnote{If you need one of
7316 these sequences literally, escape the @kbd{%} with a backslash.} allow
7317 dynamic insertion of content.  The templates are expanded in the order given here:
7319 @smallexample
7320 %[@var{file}]     @r{Insert the contents of the file given by @var{file}.}
7321 %(@var{sexp})     @r{Evaluate Elisp @var{sexp} and replace with the result.}
7322                   @r{For convenience, %:keyword (see below) placeholders}
7323                   @r{within the expression will be expanded prior to this.}
7324                   @r{The sexp must return a string.}
7325 %<...>      @r{The result of format-time-string on the ... format specification.}
7326 %t          @r{Timestamp, date only.}
7327 %T          @r{Timestamp, with date and time.}
7328 %u, %U      @r{Like the above, but inactive timestamps.}
7329 %i          @r{Initial content, the region when capture is called while the}
7330             @r{region is active.}
7331             @r{The entire text will be indented like @code{%i} itself.}
7332 %a          @r{Annotation, normally the link created with @code{org-store-link}.}
7333 %A          @r{Like @code{%a}, but prompt for the description part.}
7334 %l          @r{Like %a, but only insert the literal link.}
7335 %c          @r{Current kill ring head.}
7336 %x          @r{Content of the X clipboard.}
7337 %k          @r{Title of the currently clocked task.}
7338 %K          @r{Link to the currently clocked task.}
7339 %n          @r{User name (taken from @code{user-full-name}).}
7340 %f          @r{File visited by current buffer when org-capture was called.}
7341 %F          @r{Full path of the file or directory visited by current buffer.}
7342 %:keyword   @r{Specific information for certain link types, see below.}
7343 %^g         @r{Prompt for tags, with completion on tags in target file.}
7344 %^G         @r{Prompt for tags, with completion all tags in all agenda files.}
7345 %^t         @r{Like @code{%t}, but prompt for date.  Similarly @code{%^T}, @code{%^u}, @code{%^U}.}
7346             @r{You may define a prompt like @code{%^@{Birthday@}t}.}
7347 %^C         @r{Interactive selection of which kill or clip to use.}
7348 %^L         @r{Like @code{%^C}, but insert as link.}
7349 %^@{@var{prop}@}p   @r{Prompt the user for a value for property @var{prop}.}
7350 %^@{@var{prompt}@}  @r{prompt the user for a string and replace this sequence with it.}
7351             @r{You may specify a default value and a completion table with}
7352             @r{%^@{prompt|default|completion2|completion3...@}.}
7353             @r{The arrow keys access a prompt-specific history.}
7354 %\1 @dots{} %\N @r{Insert the text entered at the Nth %^@{@var{prompt}@}, where @code{N} is}
7355             @r{a number, starting from 1.@footnote{As required in Emacs
7356                Lisp, it is necessary to escape any backslash character in
7357                a string with another backslash.  So, in order to use
7358                @samp{%\1} placeholder, you need to write @samp{%\\1} in
7359                the template.}}
7360 %?          @r{After completing the template, position cursor here.}
7361 @end smallexample
7363 @noindent
7364 For specific link types, the following keywords will be
7365 defined@footnote{If you define your own link types (@pxref{Adding
7366 hyperlink types}), any property you store with
7367 @code{org-store-link-props} can be accessed in capture templates in a
7368 similar way.}:
7370 @vindex org-from-is-user-regexp
7371 @smallexample
7372 Link type                        |  Available keywords
7373 ---------------------------------+----------------------------------------------
7374 bbdb                             |  %:name %:company
7375 irc                              |  %:server %:port %:nick
7376 vm, vm-imap, wl, mh, mew, rmail, |  %:type %:subject %:message-id
7377 gnus, notmuch                    |  %:from %:fromname %:fromaddress
7378                                  |  %:to   %:toname   %:toaddress
7379                                  |  %:date @r{(message date header field)}
7380                                  |  %:date-timestamp @r{(date as active timestamp)}
7381                                  |  %:date-timestamp-inactive @r{(date as inactive timestamp)}
7382                                  |  %:fromto @r{(either "to NAME" or "from NAME")@footnote{This will always be the other, not the user.  See the variable @code{org-from-is-user-regexp}.}}
7383 gnus                             |  %:group, @r{for messages also all email fields}
7384 eww, w3, w3m                     |  %:url
7385 info                             |  %:file %:node
7386 calendar                         |  %:date
7387 @end smallexample
7389 @noindent
7390 To place the cursor after template expansion use:
7392 @smallexample
7393 %?          @r{After completing the template, position cursor here.}
7394 @end smallexample
7396 @node Templates in contexts
7397 @subsubsection Templates in contexts
7399 @vindex org-capture-templates-contexts
7400 To control whether a capture template should be accessible from a specific
7401 context, you can customize @code{org-capture-templates-contexts}.  Let's say
7402 for example that you have a capture template @code{"p"} for storing Gnus
7403 emails containing patches.  Then you would configure this option like this:
7405 @smalllisp
7406 (setq org-capture-templates-contexts
7407       '(("p" (in-mode . "message-mode"))))
7408 @end smalllisp
7410 You can also tell that the command key @code{"p"} should refer to another
7411 template.  In that case, add this command key like this:
7413 @smalllisp
7414 (setq org-capture-templates-contexts
7415       '(("p" "q" (in-mode . "message-mode"))))
7416 @end smalllisp
7418 See the docstring of the variable for more information.
7420 @node Attachments
7421 @section Attachments
7422 @cindex attachments
7424 @vindex org-attach-directory
7425 It is often useful to associate reference material with an outline node/task.
7426 Small chunks of plain text can simply be stored in the subtree of a project.
7427 Hyperlinks (@pxref{Hyperlinks}) can establish associations with
7428 files that live elsewhere on your computer or in the cloud, like emails or
7429 source code files belonging to a project.  Another method is @i{attachments},
7430 which are files located in a directory belonging to an outline node.  Org
7431 uses directories named by the unique ID of each entry.  These directories are
7432 located in the @file{data} directory which lives in the same directory where
7433 your Org file lives@footnote{If you move entries or Org files from one
7434 directory to another, you may want to configure @code{org-attach-directory}
7435 to contain an absolute path.}.  If you initialize this directory with
7436 @code{git init}, Org will automatically commit changes when it sees them.
7437 The attachment system has been contributed to Org by John Wiegley.
7439 In cases where it seems better to do so, you can also attach a directory of your
7440 choice to an entry.  You can also make children inherit the attachment
7441 directory from a parent, so that an entire subtree uses the same attached
7442 directory.
7444 @noindent The following commands deal with attachments:
7446 @table @kbd
7447 @orgcmd{C-c C-a,org-attach}
7448 The dispatcher for commands related to the attachment system.  After these
7449 keys, a list of commands is displayed and you must press an additional key
7450 to select a command:
7452 @table @kbd
7453 @orgcmdtkc{a,C-c C-a a,org-attach-attach}
7454 @vindex org-attach-method
7455 Select a file and move it into the task's attachment directory.  The file
7456 will be copied, moved, or linked, depending on @code{org-attach-method}.
7457 Note that hard links are not supported on all systems.
7459 @kindex C-c C-a c
7460 @kindex C-c C-a m
7461 @kindex C-c C-a l
7462 @item c/m/l
7463 Attach a file using the copy/move/link method.
7464 Note that hard links are not supported on all systems.
7466 @orgcmdtkc{u,C-c C-a u,org-attach-url}
7467 Attach a file from URL
7469 @orgcmdtkc{n,C-c C-a n,org-attach-new}
7470 Create a new attachment as an Emacs buffer.
7472 @orgcmdtkc{z,C-c C-a z,org-attach-sync}
7473 Synchronize the current task with its attachment directory, in case you added
7474 attachments yourself.
7476 @orgcmdtkc{o,C-c C-a o,org-attach-open}
7477 @vindex org-file-apps
7478 Open current task's attachment.  If there is more than one, prompt for a
7479 file name first.  Opening will follow the rules set by @code{org-file-apps}.
7480 For more details, see the information on following hyperlinks
7481 (@pxref{Handling links}).
7483 @orgcmdtkc{O,C-c C-a O,org-attach-open-in-emacs}
7484 Also open the attachment, but force opening the file in Emacs.
7486 @orgcmdtkc{f,C-c C-a f,org-attach-reveal}
7487 Open the current task's attachment directory.
7489 @orgcmdtkc{F,C-c C-a F,org-attach-reveal-in-emacs}
7490 Also open the directory, but force using @command{dired} in Emacs.
7492 @orgcmdtkc{d,C-c C-a d,org-attach-delete-one}
7493 Select and delete a single attachment.
7495 @orgcmdtkc{D,C-c C-a D,org-attach-delete-all}
7496 Delete all of a task's attachments.  A safer way is to open the directory in
7497 @command{dired} and delete from there.
7499 @orgcmdtkc{s,C-c C-a s,org-attach-set-directory}
7500 @cindex property, ATTACH_DIR
7501 Set a specific directory as the entry's attachment directory.  This works by
7502 putting the directory path into the @code{ATTACH_DIR} property.
7504 @orgcmdtkc{i,C-c C-a i,org-attach-set-inherit}
7505 @cindex property, ATTACH_DIR_INHERIT
7506 Set the @code{ATTACH_DIR_INHERIT} property, so that children will use the
7507 same directory for attachments as the parent does.
7508 @end table
7509 @end table
7511 @node RSS feeds
7512 @section RSS feeds
7513 @cindex RSS feeds
7514 @cindex Atom feeds
7516 Org can add and change entries based on information found in RSS feeds and
7517 Atom feeds.  You could use this to make a task out of each new podcast in a
7518 podcast feed.  Or you could use a phone-based note-creating service on the
7519 web to import tasks into Org.  To access feeds, configure the variable
7520 @code{org-feed-alist}.  The docstring of this variable has detailed
7521 information.  Here is just an example:
7523 @smalllisp
7524 @group
7525 (setq org-feed-alist
7526      '(("Slashdot"
7527          "http://rss.slashdot.org/Slashdot/slashdot"
7528          "~/txt/org/feeds.org" "Slashdot Entries")))
7529 @end group
7530 @end smalllisp
7532 @noindent
7533 will configure that new items from the feed provided by
7534 @code{rss.slashdot.org} will result in new entries in the file
7535 @file{~/org/feeds.org} under the heading @samp{Slashdot Entries}, whenever
7536 the following command is used:
7538 @table @kbd
7539 @orgcmd{C-c C-x g,org-feed-update-all}
7540 @item C-c C-x g
7541 Collect items from the feeds configured in @code{org-feed-alist} and act upon
7542 them.
7543 @orgcmd{C-c C-x G,org-feed-goto-inbox}
7544 Prompt for a feed name and go to the inbox configured for this feed.
7545 @end table
7547 Under the same headline, Org will create a drawer @samp{FEEDSTATUS} in which
7548 it will store information about the status of items in the feed, to avoid
7549 adding the same item several times.
7551 For more information, including how to read atom feeds, see
7552 @file{org-feed.el} and the docstring of @code{org-feed-alist}.
7554 @node Protocols
7555 @section Protocols for external access
7556 @cindex protocols, for external access
7558 Org protocol is a mean to trigger custom actions in Emacs from external
7559 applications.  Any application that supports calling external programs with
7560 an URL as argument may be used with this functionality.  For example, you can
7561 configure bookmarks in your web browser to send a link to the current page to
7562 Org and create a note from it using capture (@pxref{Capture}).  You can also
7563 create a bookmark that tells Emacs to open the local source file of a remote
7564 website you are browsing.
7566 @cindex Org protocol, set-up
7567 @cindex Installing Org protocol
7568 In order to use Org protocol from an application, you need to register
7569 @samp{org-protocol://} as a valid scheme-handler.  External calls are passed
7570 to Emacs through the @code{emacsclient} command, so you also need to ensure
7571 an Emacs server is running.  More precisely, when the application calls
7573 @example
7574 emacsclient org-protocol://PROTOCOL?key1=val1&key2=val2
7575 @end example
7577 @noindent
7578 Emacs calls the handler associated to @samp{PROTOCOL} with argument
7579 @samp{(:key1 val1 :key2 val2)}.
7581 @cindex protocol, new protocol
7582 @cindex defining new protocols
7583 Org protocol comes with three predefined protocols, detailed in the following
7584 sections.  Configure @code{org-protocol-protocol-alist} to define your own.
7586 @menu
7587 * @code{store-link} protocol::  Store a link, push URL to kill-ring.
7588 * @code{capture} protocol::     Fill a buffer with external information.
7589 * @code{open-source} protocol::  Edit published contents.
7590 @end menu
7592 @node @code{store-link} protocol
7593 @subsection @code{store-link} protocol
7594 @cindex store-link protocol
7595 @cindex protocol, store-link
7597 Using @code{store-link} handler, you can copy links, insertable through
7598 @kbd{M-x org-insert-link} or yanking thereafter.  More precisely, the command
7600 @example
7601 emacsclient org-protocol://store-link?url=URL&title=TITLE
7602 @end example
7604 @noindent
7605 stores the following link:
7607 @example
7608 [[URL][TITLE]]
7609 @end example
7611 In addition, @samp{URL} is pushed on the kill-ring for yanking.  You need to
7612 encode @samp{URL} and @samp{TITLE} if they contain slashes, and probably
7613 quote those for the shell.
7615 To use this feature from a browser, add a bookmark with an arbitrary name,
7616 e.g., @samp{Org: store-link} and enter this as @emph{Location}:
7618 @example
7619 javascript:location.href='org-protocol://store-link?url='+
7620       encodeURIComponent(location.href);
7621 @end example
7623 @node @code{capture} protocol
7624 @subsection @code{capture} protocol
7625 @cindex capture protocol
7626 @cindex protocol, capture
7628 @cindex capture, %:url placeholder
7629 @cindex %:url template expansion in capture
7630 @cindex capture, %:title placeholder
7631 @cindex %:title template expansion in capture
7632 Activating @code{capture} handler pops up a @samp{Capture} buffer and fills
7633 the capture template associated to the @samp{X} key with them.  The template
7634 refers to the data through @code{%:url} and @code{%:title} placeholders.
7635 Moreover, any selected text in the browser is appended to the body of the
7636 entry.
7638 @example
7639 emacsclient org-protocol://capture?template=X?url=URL?title=TITLE?body=BODY
7640 @end example
7642 To use this feature, add a bookmark with an arbitrary name, e.g.
7643 @samp{Org: capture} and enter this as @samp{Location}:
7645 @example
7646 javascript:location.href='org-protocol://template=x'+
7647       '&url='+encodeURIComponent(window.location.href)+
7648       '&title='+encodeURIComponent(document.title)+
7649       '&body='+encodeURIComponent(window.getSelection());
7650 @end example
7652 @vindex org-protocol-default-template-key
7653 The result depends on the capture template used, which is set in the bookmark
7654 itself, as in the example above, or in
7655 @code{org-protocol-default-template-key}.
7657 @node @code{open-source} protocol
7658 @subsection @code{open-source} protocol
7659 @cindex open-source protocol
7660 @cindex protocol, open-source
7662 The @code{open-source} handler is designed to help with editing local sources
7663 when reading a document.  To that effect, you can use a bookmark with the
7664 following location:
7666 @example
7667 javascript:location.href='org-protocol://open-source?&url='+
7668       encodeURIComponent(location.href)
7669 @end example
7671 @cindex protocol, open-source, :base-url property
7672 @cindex :base-url property in open-source protocol
7673 @cindex protocol, open-source, :working-directory property
7674 @cindex :working-directory property in open-source protocol
7675 @cindex protocol, open-source, :online-suffix property
7676 @cindex :online-suffix property in open-source protocol
7677 @cindex protocol, open-source, :working-suffix property
7678 @cindex :working-suffix property in open-source protocol
7679 @vindex org-protocol-project-alist
7680 The variable @code{org-protocol-project-alist} maps URLs to local file names,
7681 by stripping URL parameters from the end and replacing the @code{:base-url}
7682 with @code{:working-directory} and @code{:online-suffix} with
7683 @code{:working-suffix}.  For example, assuming you own a local copy of
7684 @url{http://orgmode.org/worg/} contents at @file{/home/user/worg}, you can
7685 set @code{org-protocol-project-alist} to the following
7687 @lisp
7688 (setq org-protocol-project-alist
7689       '(("Worg"
7690          :base-url "http://orgmode.org/worg/"
7691          :working-directory "/home/user/worg/"
7692          :online-suffix ".html"
7693          :working-suffix ".org")))
7694 @end lisp
7696 @noindent
7697 If you are now browsing
7698 @url{http://orgmode.org/worg/org-contrib/org-protocol.html} and find a typo
7699 or have an idea about how to enhance the documentation, simply click the
7700 bookmark and start editing.
7702 @cindex handle rewritten URL in open-source protocol
7703 @cindex protocol, open-source rewritten URL
7704 However, such mapping may not yield the desired results.  Suppose you
7705 maintain an online store located at @url{http://example.com/}.  The local
7706 sources reside in @file{/home/user/example/}.  It is common practice to serve
7707 all products in such a store through one file and rewrite URLs that do not
7708 match an existing file on the server.  That way, a request to
7709 @url{http://example.com/print/posters.html} might be rewritten on the server
7710 to something like
7711 @url{http://example.com/shop/products.php/posters.html.php}.  The
7712 @code{open-source} handler probably cannot find a file named
7713 @file{/home/user/example/print/posters.html.php} and fails.
7715 @cindex protocol, open-source, :rewrites property
7716 @cindex :rewrites property in open-source protocol
7717 Such an entry in @code{org-protocol-project-alist} may hold an additional
7718 property @code{:rewrites}.  This property is a list of cons cells, each of
7719 which maps a regular expression to a path relative to the
7720 @code{:working-directory}.
7722 Now map the URL to the path @file{/home/user/example/products.php} by adding
7723 @code{:rewrites} rules like this:
7725 @lisp
7726 (setq org-protocol-project-alist
7727       '(("example.com"
7728          :base-url "http://example.com/"
7729          :working-directory "/home/user/example/"
7730          :online-suffix ".php"
7731          :working-suffix ".php"
7732          :rewrites (("example.com/print/" . "products.php")
7733                     ("example.com/$" . "index.php")))))
7734 @end lisp
7736 @noindent
7737 Since @samp{example.com/$} is used as a regular expression, it maps
7738 @url{http://example.com/}, @url{https://example.com},
7739 @url{http://www.example.com/} and similar to
7740 @file{/home/user/example/index.php}.
7742 The @code{:rewrites} rules are searched as a last resort if and only if no
7743 existing file name is matched.
7745 @cindex protocol, open-source, set-up mapping
7746 @cindex set-up mappings in open-source protocol
7747 @findex org-protocol-create
7748 @findex org-protocol-create-for-org
7749 Two functions can help you filling @code{org-protocol-project-alist} with
7750 valid contents: @code{org-protocol-create} and
7751 @code{org-protocol-create-for-org}.  The latter is of use if you're editing
7752 an Org file that is part of a publishing project.
7754 @node Refile and copy
7755 @section Refile and copy
7756 @cindex refiling notes
7757 @cindex copying notes
7759 When reviewing the captured data, you may want to refile or to copy some of
7760 the entries into a different list, for example into a project.  Cutting,
7761 finding the right location, and then pasting the note is cumbersome.  To
7762 simplify this process, you can use the following special command:
7764 @table @kbd
7765 @orgcmd{C-c M-w,org-copy}
7766 @findex org-copy
7767 Copying works like refiling, except that the original note is not deleted.
7768 @orgcmd{C-c C-w,org-refile}
7769 @findex org-refile
7770 @vindex org-reverse-note-order
7771 @vindex org-refile-targets
7772 @vindex org-refile-use-outline-path
7773 @vindex org-outline-path-complete-in-steps
7774 @vindex org-refile-allow-creating-parent-nodes
7775 @vindex org-log-refile
7776 @vindex org-refile-use-cache
7777 @vindex org-refile-keep
7778 Refile the entry or region at point.  This command offers possible locations
7779 for refiling the entry and lets you select one with completion.  The item (or
7780 all items in the region) is filed below the target heading as a subitem.
7781 Depending on @code{org-reverse-note-order}, it will be either the first or
7782 last subitem.@*
7783 By default, all level 1 headlines in the current buffer are considered to be
7784 targets, but you can have more complex definitions across a number of files.
7785 See the variable @code{org-refile-targets} for details.  If you would like to
7786 select a location via a file-path-like completion along the outline path, see
7787 the variables @code{org-refile-use-outline-path} and
7788 @code{org-outline-path-complete-in-steps}.  If you would like to be able to
7789 create new nodes as new parents for refiling on the fly, check the
7790 variable @code{org-refile-allow-creating-parent-nodes}.
7791 When the variable @code{org-log-refile}@footnote{with corresponding
7792 @code{#+STARTUP} keywords @code{logrefile}, @code{lognoterefile},
7793 and @code{nologrefile}} is set, a timestamp or a note will be
7794 recorded when an entry has been refiled.
7795 @orgkey{C-u C-c C-w}
7796 Use the refile interface to jump to a heading.
7797 @orgcmd{C-u C-u C-c C-w,org-refile-goto-last-stored}
7798 Jump to the location where @code{org-refile} last moved a tree to.
7799 @item C-2 C-c C-w
7800 Refile as the child of the item currently being clocked.
7801 @item C-3 C-c C-w
7802 Refile and keep the entry in place.  Also see @code{org-refile-keep} to make
7803 this the default behavior, and beware that this may result in duplicated
7804 @code{ID} properties.
7805 @orgcmdtkc{C-0 C-c C-w @ @r{or} @ C-u C-u C-u C-c C-w,C-0 C-c C-w,org-refile-cache-clear}
7806 Clear the target cache.  Caching of refile targets can be turned on by
7807 setting @code{org-refile-use-cache}.  To make the command see new possible
7808 targets, you have to clear the cache with this command.
7809 @end table
7811 @node Archiving
7812 @section Archiving
7813 @cindex archiving
7815 When a project represented by a (sub)tree is finished, you may want
7816 to move the tree out of the way and to stop it from contributing to the
7817 agenda.  Archiving is important to keep your working files compact and global
7818 searches like the construction of agenda views fast.
7820 @table @kbd
7821 @orgcmd{C-c C-x C-a,org-archive-subtree-default}
7822 @vindex org-archive-default-command
7823 Archive the current entry using the command specified in the variable
7824 @code{org-archive-default-command}.
7825 @end table
7827 @menu
7828 * Moving subtrees::             Moving a tree to an archive file
7829 * Internal archiving::          Switch off a tree but keep it in the file
7830 @end menu
7832 @node Moving subtrees
7833 @subsection Moving a tree to the archive file
7834 @cindex external archiving
7836 The most common archiving action is to move a project tree to another file,
7837 the archive file.
7839 @table @kbd
7840 @orgcmdkskc{C-c C-x C-s,C-c $,org-archive-subtree}
7841 @vindex org-archive-location
7842 Archive the subtree starting at the cursor position to the location
7843 given by @code{org-archive-location}.
7844 @orgkey{C-u C-c C-x C-s}
7845 Check if any direct children of the current headline could be moved to
7846 the archive.  To do this, each subtree is checked for open TODO entries.
7847 If none are found, the command offers to move it to the archive
7848 location.  If the cursor is @emph{not} on a headline when this command
7849 is invoked, the level 1 trees will be checked.
7850 @orgkey{C-u C-u C-c C-x C-s}
7851 As above, but check subtree for timestamps instead of TODO entries.  The
7852 command will offer to archive the subtree if it @emph{does} contain a
7853 timestamp, and that timestamp is in the past.
7854 @end table
7856 @cindex archive locations
7857 The default archive location is a file in the same directory as the
7858 current file, with the name derived by appending @file{_archive} to the
7859 current file name.  You can also choose what heading to file archived
7860 items under, with the possibility to add them to a datetree in a file.
7861 For information and examples on how to specify the file and the heading,
7862 see the documentation string of the variable
7863 @code{org-archive-location}.
7865 There is also an in-buffer option for setting this variable, for example:
7867 @cindex #+ARCHIVE
7868 @example
7869 #+ARCHIVE: %s_done::
7870 @end example
7872 @cindex property, ARCHIVE
7873 @noindent
7874 If you would like to have a special ARCHIVE location for a single entry
7875 or a (sub)tree, give the entry an @code{:ARCHIVE:} property with the
7876 location as the value (@pxref{Properties and columns}).
7878 @vindex org-archive-save-context-info
7879 When a subtree is moved, it receives a number of special properties that
7880 record context information like the file from where the entry came, its
7881 outline path the archiving time etc.  Configure the variable
7882 @code{org-archive-save-context-info} to adjust the amount of information
7883 added.
7886 @node Internal archiving
7887 @subsection Internal archiving
7889 @cindex archive tag
7890 If you want to just switch off---for agenda views---certain subtrees without
7891 moving them to a different file, you can use the archive tag.
7893 A headline that is marked with the @samp{:ARCHIVE:} tag (@pxref{Tags}) stays
7894 at its location in the outline tree, but behaves in the following way:
7895 @itemize @minus
7896 @item
7897 @vindex org-cycle-open-archived-trees
7898 It does not open when you attempt to do so with a visibility cycling
7899 command (@pxref{Visibility cycling}).  You can force cycling archived
7900 subtrees with @kbd{C-@key{TAB}}, or by setting the option
7901 @code{org-cycle-open-archived-trees}.  Also normal outline commands like
7902 @code{show-all} will open archived subtrees.
7903 @item
7904 @vindex org-sparse-tree-open-archived-trees
7905 During sparse tree construction (@pxref{Sparse trees}), matches in
7906 archived subtrees are not exposed, unless you configure the option
7907 @code{org-sparse-tree-open-archived-trees}.
7908 @item
7909 @vindex org-agenda-skip-archived-trees
7910 During agenda view construction (@pxref{Agenda views}), the content of
7911 archived trees is ignored unless you configure the option
7912 @code{org-agenda-skip-archived-trees}, in which case these trees will always
7913 be included.  In the agenda you can press @kbd{v a} to get archives
7914 temporarily included.
7915 @item
7916 @vindex org-export-with-archived-trees
7917 Archived trees are not exported (@pxref{Exporting}), only the headline
7918 is.  Configure the details using the variable
7919 @code{org-export-with-archived-trees}.
7920 @item
7921 @vindex org-columns-skip-archived-trees
7922 Archived trees are excluded from column view unless the variable
7923 @code{org-columns-skip-archived-trees} is configured to @code{nil}.
7924 @end itemize
7926 The following commands help manage the ARCHIVE tag:
7928 @table @kbd
7929 @orgcmd{C-c C-x a,org-toggle-archive-tag}
7930 Toggle the ARCHIVE tag for the current headline.  When the tag is set,
7931 the headline changes to a shadowed face, and the subtree below it is
7932 hidden.
7933 @orgkey{C-u C-c C-x a}
7934 Check if any direct children of the current headline should be archived.
7935 To do this, each subtree is checked for open TODO entries.  If none are
7936 found, the command offers to set the ARCHIVE tag for the child.  If the
7937 cursor is @emph{not} on a headline when this command is invoked, the
7938 level 1 trees will be checked.
7939 @orgcmd{C-@kbd{TAB},org-force-cycle-archived}
7940 Cycle a tree even if it is tagged with ARCHIVE.
7941 @orgcmd{C-c C-x A,org-archive-to-archive-sibling}
7942 Move the current entry to the @emph{Archive Sibling}.  This is a sibling of
7943 the entry with the heading @samp{Archive} and the tag @samp{ARCHIVE}.  The
7944 entry becomes a child of that sibling and in this way retains a lot of its
7945 original context, including inherited tags and approximate position in the
7946 outline.
7947 @end table
7950 @node Agenda views
7951 @chapter Agenda views
7952 @cindex agenda views
7954 Due to the way Org works, TODO items, time-stamped items, and
7955 tagged headlines can be scattered throughout a file or even a number of
7956 files.  To get an overview of open action items, or of events that are
7957 important for a particular date, this information must be collected,
7958 sorted and displayed in an organized way.
7960 Org can select items based on various criteria and display them
7961 in a separate buffer.  Six different view types are provided:
7963 @itemize @bullet
7964 @item
7965 an @emph{agenda} that is like a calendar and shows information
7966 for specific dates,
7967 @item
7968 a @emph{TODO list} that covers all unfinished
7969 action items,
7970 @item
7971 a @emph{match view}, showings headlines based on the tags, properties, and
7972 TODO state associated with them,
7973 @item
7974 a @emph{text search view} that shows all entries from multiple files
7975 that contain specified keywords,
7976 @item
7977 a @emph{stuck projects view} showing projects that currently don't move
7978 along, and
7979 @item
7980 @emph{custom views} that are special searches and combinations of different
7981 views.
7982 @end itemize
7984 @noindent
7985 The extracted information is displayed in a special @emph{agenda
7986 buffer}.  This buffer is read-only, but provides commands to visit the
7987 corresponding locations in the original Org files, and even to
7988 edit these files remotely.
7990 @vindex org-agenda-skip-comment-trees
7991 @vindex org-agenda-skip-archived-trees
7992 @cindex commented entries, in agenda views
7993 @cindex archived entries, in agenda views
7994 By default, the report ignores commented (@pxref{Comment lines}) and archived
7995 (@pxref{Internal archiving}) entries.  You can override this by setting
7996 @code{org-agenda-skip-comment-trees} and
7997 @code{org-agenda-skip-archived-trees} to @code{nil}.
7999 @vindex org-agenda-window-setup
8000 @vindex org-agenda-restore-windows-after-quit
8001 Two variables control how the agenda buffer is displayed and whether the
8002 window configuration is restored when the agenda exits:
8003 @code{org-agenda-window-setup} and
8004 @code{org-agenda-restore-windows-after-quit}.
8006 @menu
8007 * Agenda files::                Files being searched for agenda information
8008 * Agenda dispatcher::           Keyboard access to agenda views
8009 * Built-in agenda views::       What is available out of the box?
8010 * Presentation and sorting::    How agenda items are prepared for display
8011 * Agenda commands::             Remote editing of Org trees
8012 * Custom agenda views::         Defining special searches and views
8013 * Exporting agenda views::      Writing a view to a file
8014 * Agenda column view::          Using column view for collected entries
8015 @end menu
8017 @node Agenda files
8018 @section Agenda files
8019 @cindex agenda files
8020 @cindex files for agenda
8022 @vindex org-agenda-files
8023 The information to be shown is normally collected from all @emph{agenda
8024 files}, the files listed in the variable
8025 @code{org-agenda-files}@footnote{If the value of that variable is not a
8026 list, but a single file name, then the list of agenda files will be
8027 maintained in that external file.}.  If a directory is part of this list,
8028 all files with the extension @file{.org} in this directory will be part
8029 of the list.
8031 Thus, even if you only work with a single Org file, that file should
8032 be put into the list@footnote{When using the dispatcher, pressing
8033 @kbd{<} before selecting a command will actually limit the command to
8034 the current file, and ignore @code{org-agenda-files} until the next
8035 dispatcher command.}.  You can customize @code{org-agenda-files}, but
8036 the easiest way to maintain it is through the following commands
8038 @cindex files, adding to agenda list
8039 @table @kbd
8040 @orgcmd{C-c [,org-agenda-file-to-front}
8041 Add current file to the list of agenda files.  The file is added to
8042 the front of the list.  If it was already in the list, it is moved to
8043 the front.  With a prefix argument, file is added/moved to the end.
8044 @orgcmd{C-c ],org-remove-file}
8045 Remove current file from the list of agenda files.
8046 @kindex C-,
8047 @cindex cycling, of agenda files
8048 @orgcmd{C-',org-cycle-agenda-files}
8049 @itemx C-,
8050 Cycle through agenda file list, visiting one file after the other.
8051 @kindex M-x org-iswitchb
8052 @item M-x org-iswitchb RET
8053 Command to use an @code{iswitchb}-like interface to switch to and between Org
8054 buffers.
8055 @end table
8057 @noindent
8058 The Org menu contains the current list of files and can be used
8059 to visit any of them.
8061 If you would like to focus the agenda temporarily on a file not in
8062 this list, or on just one file in the list, or even on only a subtree in a
8063 file, then this can be done in different ways.  For a single agenda command,
8064 you may press @kbd{<} once or several times in the dispatcher
8065 (@pxref{Agenda dispatcher}).  To restrict the agenda scope for an
8066 extended period, use the following commands:
8068 @table @kbd
8069 @orgcmd{C-c C-x <,org-agenda-set-restriction-lock}
8070 Permanently restrict the agenda to the current subtree.  When with a
8071 prefix argument, or with the cursor before the first headline in a file,
8072 the agenda scope is set to the entire file.  This restriction remains in
8073 effect until removed with @kbd{C-c C-x >}, or by typing either @kbd{<}
8074 or @kbd{>} in the agenda dispatcher.  If there is a window displaying an
8075 agenda view, the new restriction takes effect immediately.
8076 @orgcmd{C-c C-x >,org-agenda-remove-restriction-lock}
8077 Remove the permanent restriction created by @kbd{C-c C-x <}.
8078 @end table
8080 @noindent
8081 When working with @file{speedbar.el}, you can use the following commands in
8082 the Speedbar frame:
8084 @table @kbd
8085 @orgcmdtkc{< @r{in the speedbar frame},<,org-speedbar-set-agenda-restriction}
8086 Permanently restrict the agenda to the item---either an Org file or a subtree
8087 in such a file---at the cursor in the Speedbar frame.
8088 If there is a window displaying an agenda view, the new restriction takes
8089 effect immediately.
8090 @orgcmdtkc{> @r{in the speedbar frame},>,org-agenda-remove-restriction-lock}
8091 Lift the restriction.
8092 @end table
8094 @node Agenda dispatcher
8095 @section The agenda dispatcher
8096 @cindex agenda dispatcher
8097 @cindex dispatching agenda commands
8098 The views are created through a dispatcher, which should be bound to a
8099 global key---for example @kbd{C-c a} (@pxref{Activation}).  In the
8100 following we will assume that @kbd{C-c a} is indeed how the dispatcher
8101 is accessed and list keyboard access to commands accordingly.  After
8102 pressing @kbd{C-c a}, an additional letter is required to execute a
8103 command.  The dispatcher offers the following default commands:
8105 @table @kbd
8106 @item a
8107 Create the calendar-like agenda (@pxref{Weekly/daily agenda}).
8108 @item t @r{/} T
8109 Create a list of all TODO items (@pxref{Global TODO list}).
8110 @item m @r{/} M
8111 Create a list of headlines matching a TAGS expression (@pxref{Matching
8112 tags and properties}).
8113 @item s
8114 Create a list of entries selected by a boolean expression of keywords
8115 and/or regular expressions that must or must not occur in the entry.
8116 @item /
8117 @vindex org-agenda-text-search-extra-files
8118 Search for a regular expression in all agenda files and additionally in
8119 the files listed in @code{org-agenda-text-search-extra-files}.  This
8120 uses the Emacs command @code{multi-occur}.  A prefix argument can be
8121 used to specify the number of context lines for each match, default is
8123 @item # @r{/} !
8124 Create a list of stuck projects (@pxref{Stuck projects}).
8125 @item <
8126 Restrict an agenda command to the current buffer@footnote{For backward
8127 compatibility, you can also press @kbd{1} to restrict to the current
8128 buffer.}.  After pressing @kbd{<}, you still need to press the character
8129 selecting the command.
8130 @item < <
8131 If there is an active region, restrict the following agenda command to
8132 the region.  Otherwise, restrict it to the current subtree@footnote{For
8133 backward compatibility, you can also press @kbd{0} to restrict to the
8134 current region/subtree.}.  After pressing @kbd{< <}, you still need to press the
8135 character selecting the command.
8137 @item *
8138 @cindex agenda, sticky
8139 @vindex org-agenda-sticky
8140 Toggle sticky agenda views.  By default, Org maintains only a single agenda
8141 buffer and rebuilds it each time you change the view, to make sure everything
8142 is always up to date.  If you often switch between agenda views and the build
8143 time bothers you, you can turn on sticky agenda buffers or make this the
8144 default by customizing the variable @code{org-agenda-sticky}.  With sticky
8145 agendas, the agenda dispatcher will not recreate agenda views from scratch,
8146 it will only switch to the selected one, and you need to update the agenda by
8147 hand with @kbd{r} or @kbd{g} when needed.  You can toggle sticky agenda view
8148 any time with @code{org-toggle-sticky-agenda}.
8149 @end table
8151 You can also define custom commands that will be accessible through the
8152 dispatcher, just like the default commands.  This includes the
8153 possibility to create extended agenda buffers that contain several
8154 blocks together, for example the weekly agenda, the global TODO list and
8155 a number of special tags matches.  @xref{Custom agenda views}.
8157 @node Built-in agenda views
8158 @section The built-in agenda views
8160 In this section we describe the built-in views.
8162 @menu
8163 * Weekly/daily agenda::         The calendar page with current tasks
8164 * Global TODO list::            All unfinished action items
8165 * Matching tags and properties::  Structured information with fine-tuned search
8166 * Search view::                 Find entries by searching for text
8167 * Stuck projects::              Find projects you need to review
8168 @end menu
8170 @node Weekly/daily agenda
8171 @subsection The weekly/daily agenda
8172 @cindex agenda
8173 @cindex weekly agenda
8174 @cindex daily agenda
8176 The purpose of the weekly/daily @emph{agenda} is to act like a page of a
8177 paper agenda, showing all the tasks for the current week or day.
8179 @table @kbd
8180 @cindex org-agenda, command
8181 @orgcmd{C-c a a,org-agenda-list}
8182 Compile an agenda for the current week from a list of Org files.  The agenda
8183 shows the entries for each day.  With a numeric prefix@footnote{For backward
8184 compatibility, the universal prefix @kbd{C-u} causes all TODO entries to be
8185 listed before the agenda.  This feature is deprecated, use the dedicated TODO
8186 list, or a block agenda instead (@pxref{Block agenda}).}  (like @kbd{C-u 2 1
8187 C-c a a}) you may set the number of days to be displayed.
8188 @end table
8190 @vindex org-agenda-span
8191 @vindex org-agenda-ndays
8192 @vindex org-agenda-start-day
8193 @vindex org-agenda-start-on-weekday
8194 The default number of days displayed in the agenda is set by the variable
8195 @code{org-agenda-span} (or the obsolete @code{org-agenda-ndays}).  This
8196 variable can be set to any number of days you want to see by default in the
8197 agenda, or to a span name, such as @code{day}, @code{week}, @code{month} or
8198 @code{year}.  For weekly agendas, the default is to start on the previous
8199 monday (see @code{org-agenda-start-on-weekday}).  You can also set the start
8200 date using a date shift: @code{(setq org-agenda-start-day "+10d")} will
8201 start the agenda ten days from today in the future.
8203 Remote editing from the agenda buffer means, for example, that you can
8204 change the dates of deadlines and appointments from the agenda buffer.
8205 The commands available in the Agenda buffer are listed in @ref{Agenda
8206 commands}.
8208 @subsubheading Calendar/Diary integration
8209 @cindex calendar integration
8210 @cindex diary integration
8212 Emacs contains the calendar and diary by Edward M. Reingold.  The
8213 calendar displays a three-month calendar with holidays from different
8214 countries and cultures.  The diary allows you to keep track of
8215 anniversaries, lunar phases, sunrise/set, recurrent appointments
8216 (weekly, monthly) and more.  In this way, it is quite complementary to
8217 Org.  It can be very useful to combine output from Org with
8218 the diary.
8220 In order to include entries from the Emacs diary into Org mode's
8221 agenda, you only need to customize the variable
8223 @lisp
8224 (setq org-agenda-include-diary t)
8225 @end lisp
8227 @noindent After that, everything will happen automatically.  All diary
8228 entries including holidays, anniversaries, etc., will be included in the
8229 agenda buffer created by Org mode.  @key{SPC}, @key{TAB}, and
8230 @key{RET} can be used from the agenda buffer to jump to the diary
8231 file in order to edit existing diary entries.  The @kbd{i} command to
8232 insert new entries for the current date works in the agenda buffer, as
8233 well as the commands @kbd{S}, @kbd{M}, and @kbd{C} to display
8234 Sunrise/Sunset times, show lunar phases and to convert to other
8235 calendars, respectively.  @kbd{c} can be used to switch back and forth
8236 between calendar and agenda.
8238 If you are using the diary only for sexp entries and holidays, it is
8239 faster to not use the above setting, but instead to copy or even move
8240 the entries into an Org file.  Org mode evaluates diary-style sexp
8241 entries, and does it faster because there is no overhead for first
8242 creating the diary display.  Note that the sexp entries must start at
8243 the left margin, no whitespace is allowed before them.  For example,
8244 the following segment of an Org file will be processed and entries
8245 will be made in the agenda:
8247 @example
8248 * Holidays
8249   :PROPERTIES:
8250   :CATEGORY: Holiday
8251   :END:
8252 %%(org-calendar-holiday)   ; special function for holiday names
8254 * Birthdays
8255   :PROPERTIES:
8256   :CATEGORY: Ann
8257   :END:
8258 %%(org-anniversary 1956  5 14)@footnote{@code{org-anniversary} is just like @code{diary-anniversary}, but the argument order is always according to ISO and therefore independent of the value of @code{calendar-date-style}.} Arthur Dent is %d years old
8259 %%(org-anniversary 1869 10  2) Mahatma Gandhi would be %d years old
8260 @end example
8262 @subsubheading Anniversaries from BBDB
8263 @cindex BBDB, anniversaries
8264 @cindex anniversaries, from BBDB
8266 If you are using the Big Brothers Database to store your contacts, you will
8267 very likely prefer to store anniversaries in BBDB rather than in a
8268 separate Org or diary file.  Org supports this and will show BBDB
8269 anniversaries as part of the agenda.  All you need to do is to add the
8270 following to one of your agenda files:
8272 @example
8273 * Anniversaries
8274   :PROPERTIES:
8275   :CATEGORY: Anniv
8276   :END:
8277 %%(org-bbdb-anniversaries)
8278 @end example
8280 You can then go ahead and define anniversaries for a BBDB record.  Basically,
8281 you need to press @kbd{C-o anniversary @key{RET}} with the cursor in a BBDB
8282 record and then add the date in the format @code{YYYY-MM-DD} or @code{MM-DD},
8283 followed by a space and the class of the anniversary (@samp{birthday} or
8284 @samp{wedding}, or a format string).  If you omit the class, it will default to
8285 @samp{birthday}.  Here are a few examples, the header for the file
8286 @file{org-bbdb.el} contains more detailed information.
8288 @example
8289 1973-06-22
8290 06-22
8291 1955-08-02 wedding
8292 2008-04-14 %s released version 6.01 of org mode, %d years ago
8293 @end example
8295 After a change to BBDB, or for the first agenda display during an Emacs
8296 session, the agenda display will suffer a short delay as Org updates its
8297 hash with anniversaries.  However, from then on things will be very fast---much
8298 faster in fact than a long list of @samp{%%(diary-anniversary)} entries
8299 in an Org or Diary file.
8301 If you would like to see upcoming anniversaries with a bit of forewarning,
8302 you can use the following instead:
8304 @example
8305 * Anniversaries
8306   :PROPERTIES:
8307   :CATEGORY: Anniv
8308   :END:
8309 %%(org-bbdb-anniversaries-future 3)
8310 @end example
8312 That will give you three days' warning: on the anniversary date itself and the
8313 two days prior.  The argument is optional: if omitted, it defaults to 7.
8315 @subsubheading Appointment reminders
8316 @cindex @file{appt.el}
8317 @cindex appointment reminders
8318 @cindex appointment
8319 @cindex reminders
8321 Org can interact with Emacs appointments notification facility.  To add the
8322 appointments of your agenda files, use the command @code{org-agenda-to-appt}.
8323 This command lets you filter through the list of your appointments and add
8324 only those belonging to a specific category or matching a regular expression.
8325 It also reads a @code{APPT_WARNTIME} property which will then override the
8326 value of @code{appt-message-warning-time} for this appointment.  See the
8327 docstring for details.
8329 @node Global TODO list
8330 @subsection The global TODO list
8331 @cindex global TODO list
8332 @cindex TODO list, global
8334 The global TODO list contains all unfinished TODO items formatted and
8335 collected into a single place.
8337 @table @kbd
8338 @orgcmd{C-c a t,org-todo-list}
8339 Show the global TODO list.  This collects the TODO items from all agenda
8340 files (@pxref{Agenda views}) into a single buffer.  By default, this lists
8341 items with a state the is not a DONE state.  The buffer is in
8342 @code{agenda-mode}, so there are commands to examine and manipulate the TODO
8343 entries directly from that buffer (@pxref{Agenda commands}).
8344 @orgcmd{C-c a T,org-todo-list}
8345 @cindex TODO keyword matching
8346 @vindex org-todo-keywords
8347 Like the above, but allows selection of a specific TODO keyword.  You can
8348 also do this by specifying a prefix argument to @kbd{C-c a t}.  You are
8349 prompted for a keyword, and you may also specify several keywords by
8350 separating them with @samp{|} as the boolean OR operator.  With a numeric
8351 prefix, the Nth keyword in @code{org-todo-keywords} is selected.
8352 @kindex r
8353 The @kbd{r} key in the agenda buffer regenerates it, and you can give
8354 a prefix argument to this command to change the selected TODO keyword,
8355 for example @kbd{3 r}.  If you often need a search for a specific
8356 keyword, define a custom command for it (@pxref{Agenda dispatcher}).@*
8357 Matching specific TODO keywords can also be done as part of a tags
8358 search (@pxref{Tag searches}).
8359 @end table
8361 Remote editing of TODO items means that you can change the state of a
8362 TODO entry with a single key press.  The commands available in the
8363 TODO list are described in @ref{Agenda commands}.
8365 @cindex sublevels, inclusion into TODO list
8366 Normally the global TODO list simply shows all headlines with TODO
8367 keywords.  This list can become very long.  There are two ways to keep
8368 it more compact:
8369 @itemize @minus
8370 @item
8371 @vindex org-agenda-todo-ignore-scheduled
8372 @vindex org-agenda-todo-ignore-deadlines
8373 @vindex org-agenda-todo-ignore-timestamp
8374 @vindex org-agenda-todo-ignore-with-date
8375 Some people view a TODO item that has been @emph{scheduled} for execution or
8376 have a @emph{deadline} (@pxref{Timestamps}) as no longer @emph{open}.
8377 Configure the variables @code{org-agenda-todo-ignore-scheduled},
8378 @code{org-agenda-todo-ignore-deadlines},
8379 @code{org-agenda-todo-ignore-timestamp} and/or
8380 @code{org-agenda-todo-ignore-with-date} to exclude such items from the global
8381 TODO list.
8382 @item
8383 @vindex org-agenda-todo-list-sublevels
8384 TODO items may have sublevels to break up the task into subtasks.  In
8385 such cases it may be enough to list only the highest level TODO headline
8386 and omit the sublevels from the global list.  Configure the variable
8387 @code{org-agenda-todo-list-sublevels} to get this behavior.
8388 @end itemize
8390 @node Matching tags and properties
8391 @subsection Matching tags and properties
8392 @cindex matching, of tags
8393 @cindex matching, of properties
8394 @cindex tags view
8395 @cindex match view
8397 If headlines in the agenda files are marked with @emph{tags} (@pxref{Tags}),
8398 or have properties (@pxref{Properties and columns}), you can select headlines
8399 based on this metadata and collect them into an agenda buffer.  The match
8400 syntax described here also applies when creating sparse trees with @kbd{C-c /
8403 @table @kbd
8404 @orgcmd{C-c a m,org-tags-view}
8405 Produce a list of all headlines that match a given set of tags.  The
8406 command prompts for a selection criterion, which is a boolean logic
8407 expression with tags, like @samp{+work+urgent-withboss} or
8408 @samp{work|home} (@pxref{Tags}).  If you often need a specific search,
8409 define a custom command for it (@pxref{Agenda dispatcher}).
8410 @orgcmd{C-c a M,org-tags-view}
8411 @vindex org-tags-match-list-sublevels
8412 @vindex org-agenda-tags-todo-honor-ignore-options
8413 Like @kbd{C-c a m}, but only select headlines that are also TODO items in a
8414 not-DONE state and force checking subitems (see variable
8415 @code{org-tags-match-list-sublevels}).  To exclude scheduled/deadline items,
8416 see the variable @code{org-agenda-tags-todo-honor-ignore-options}.  Matching
8417 specific TODO keywords together with a tags match is also possible, see
8418 @ref{Tag searches}.
8419 @end table
8421 The commands available in the tags list are described in @ref{Agenda
8422 commands}.
8424 @subsubheading Match syntax
8426 @cindex Boolean logic, for tag/property searches
8427 A search string can use Boolean operators @samp{&} for @code{AND} and
8428 @samp{|} for @code{OR}@.  @samp{&} binds more strongly than @samp{|}.
8429 Parentheses are not implemented.  Each element in the search is either a
8430 tag, a regular expression matching tags, or an expression like
8431 @code{PROPERTY OPERATOR VALUE} with a comparison operator, accessing a
8432 property value.  Each element may be preceded by @samp{-}, to select
8433 against it, and @samp{+} is syntactic sugar for positive selection.  The
8434 @code{AND} operator @samp{&} is optional when @samp{+} or @samp{-} is
8435 present.  Here are some examples, using only tags.
8437 @table @samp
8438 @item work
8439 Select headlines tagged @samp{:work:}.
8440 @item work&boss
8441 Select headlines tagged @samp{:work:} and @samp{:boss:}.
8442 @item +work-boss
8443 Select headlines tagged @samp{:work:}, but discard those also tagged
8444 @samp{:boss:}.
8445 @item work|laptop
8446 Selects lines tagged @samp{:work:} or @samp{:laptop:}.
8447 @item work|laptop+night
8448 Like before, but require the @samp{:laptop:} lines to be tagged also
8449 @samp{:night:}.
8450 @end table
8452 @cindex regular expressions, with tags search
8453 Instead of a tag, you may also specify a regular expression enclosed in curly
8454 braces.  For example,
8455 @samp{work+@{^boss.*@}} matches headlines that contain the tag
8456 @samp{:work:} and any tag @i{starting} with @samp{boss}.
8458 @cindex group tags, as regular expressions
8459 Group tags (@pxref{Tag hierarchy}) are expanded as regular expressions.  E.g.,
8460 if @samp{:work:} is a group tag for the group @samp{:work:lab:conf:}, then
8461 searching for @samp{work} will search for @samp{@{\(?:work\|lab\|conf\)@}}
8462 and searching for @samp{-work} will search for all headlines but those with
8463 one of the tags in the group (i.e., @samp{-@{\(?:work\|lab\|conf\)@}}).
8465 @cindex TODO keyword matching, with tags search
8466 @cindex level, require for tags/property match
8467 @cindex category, require for tags/property match
8468 @vindex org-odd-levels-only
8469 You may also test for properties (@pxref{Properties and columns}) at the same
8470 time as matching tags.  The properties may be real properties, or special
8471 properties that represent other metadata (@pxref{Special properties}).  For
8472 example, the ``property'' @code{TODO} represents the TODO keyword of the
8473 entry and the ``property'' @code{PRIORITY} represents the PRIORITY keyword of
8474 the entry.
8476 In addition to the properties mentioned above, @code{LEVEL} represents the
8477 level of an entry.  So a search @samp{+LEVEL=3+boss-TODO="DONE"} lists all
8478 level three headlines that have the tag @samp{boss} and are @emph{not} marked
8479 with the TODO keyword DONE@.  In buffers with @code{org-odd-levels-only} set,
8480 @samp{LEVEL} does not count the number of stars, but @samp{LEVEL=2} will
8481 correspond to 3 stars etc.
8483 Here are more examples:
8485 @table @samp
8486 @item work+TODO="WAITING"
8487 Select @samp{:work:}-tagged TODO lines with the specific TODO
8488 keyword @samp{WAITING}.
8489 @item work+TODO="WAITING"|home+TODO="WAITING"
8490 Waiting tasks both at work and at home.
8491 @end table
8493 When matching properties, a number of different operators can be used to test
8494 the value of a property.  Here is a complex example:
8496 @example
8497 +work-boss+PRIORITY="A"+Coffee="unlimited"+Effort<2         \
8498          +With=@{Sarah\|Denny@}+SCHEDULED>="<2008-10-11>"
8499 @end example
8501 @noindent
8502 The type of comparison will depend on how the comparison value is written:
8503 @itemize @minus
8504 @item
8505 If the comparison value is a plain number, a numerical comparison is done,
8506 and the allowed operators are @samp{<}, @samp{=}, @samp{>}, @samp{<=},
8507 @samp{>=}, and @samp{<>}.
8508 @item
8509 If the comparison value is enclosed in double-quotes,
8510 a string comparison is done, and the same operators are allowed.
8511 @item
8512 If the comparison value is enclosed in double-quotes @emph{and} angular
8513 brackets (like @samp{DEADLINE<="<2008-12-24 18:30>"}), both values are
8514 assumed to be date/time specifications in the standard Org way, and the
8515 comparison will be done accordingly.  Special values that will be recognized
8516 are @code{"<now>"} for now (including time), and @code{"<today>"}, and
8517 @code{"<tomorrow>"} for these days at 00:00 hours, i.e., without a time
8518 specification.  Also strings like @code{"<+5d>"} or @code{"<-2m>"} with units
8519 @code{d}, @code{w}, @code{m}, and @code{y} for day, week, month, and year,
8520 respectively, can be used.
8521 @item
8522 If the comparison value is enclosed
8523 in curly braces, a regexp match is performed, with @samp{=} meaning that the
8524 regexp matches the property value, and @samp{<>} meaning that it does not
8525 match.
8526 @end itemize
8528 So the search string in the example finds entries tagged @samp{:work:} but
8529 not @samp{:boss:}, which also have a priority value @samp{A}, a
8530 @samp{:Coffee:} property with the value @samp{unlimited}, an @samp{Effort}
8531 property that is numerically smaller than 2, a @samp{:With:} property that is
8532 matched by the regular expression @samp{Sarah\|Denny}, and that are scheduled
8533 on or after October 11, 2008.
8535 You can configure Org mode to use property inheritance during a search, but
8536 beware that this can slow down searches considerably.  See @ref{Property
8537 inheritance}, for details.
8539 For backward compatibility, and also for typing speed, there is also a
8540 different way to test TODO states in a search.  For this, terminate the
8541 tags/property part of the search string (which may include several terms
8542 connected with @samp{|}) with a @samp{/} and then specify a Boolean
8543 expression just for TODO keywords.  The syntax is then similar to that for
8544 tags, but should be applied with care: for example, a positive selection on
8545 several TODO keywords cannot meaningfully be combined with boolean AND@.
8546 However, @emph{negative selection} combined with AND can be meaningful.  To
8547 make sure that only lines are checked that actually have any TODO keyword
8548 (resulting in a speed-up), use @kbd{C-c a M}, or equivalently start the TODO
8549 part after the slash with @samp{!}.  Using @kbd{C-c a M} or @samp{/!} will
8550 not match TODO keywords in a DONE state.  Examples:
8552 @table @samp
8553 @item work/WAITING
8554 Same as @samp{work+TODO="WAITING"}
8555 @item work/!-WAITING-NEXT
8556 Select @samp{:work:}-tagged TODO lines that are neither @samp{WAITING}
8557 nor @samp{NEXT}
8558 @item work/!+WAITING|+NEXT
8559 Select @samp{:work:}-tagged TODO lines that are either @samp{WAITING} or
8560 @samp{NEXT}.
8561 @end table
8563 @node Search view
8564 @subsection Search view
8565 @cindex search view
8566 @cindex text search
8567 @cindex searching, for text
8569 This agenda view is a general text search facility for Org mode entries.
8570 It is particularly useful to find notes.
8572 @table @kbd
8573 @orgcmd{C-c a s,org-search-view}
8574 This is a special search that lets you select entries by matching a substring
8575 or specific words using a boolean logic.
8576 @end table
8577 For example, the search string @samp{computer equipment} will find entries
8578 that contain @samp{computer equipment} as a substring.  If the two words are
8579 separated by more space or a line break, the search will still match.
8580 Search view can also search for specific keywords in the entry, using Boolean
8581 logic.  The search string @samp{+computer +wifi -ethernet -@{8\.11[bg]@}}
8582 will search for note entries that contain the keywords @code{computer}
8583 and @code{wifi}, but not the keyword @code{ethernet}, and which are also
8584 not matched by the regular expression @code{8\.11[bg]}, meaning to
8585 exclude both 8.11b and 8.11g.  The first @samp{+} is necessary to turn on
8586 word search, other @samp{+} characters are optional.  For more details, see
8587 the docstring of the command @code{org-search-view}.
8589 @vindex org-agenda-text-search-extra-files
8590 Note that in addition to the agenda files, this command will also search
8591 the files listed in @code{org-agenda-text-search-extra-files}.
8593 @node Stuck projects
8594 @subsection Stuck projects
8595 @pindex GTD, Getting Things Done
8597 If you are following a system like David Allen's GTD to organize your
8598 work, one of the ``duties'' you have is a regular review to make sure
8599 that all projects move along.  A @emph{stuck} project is a project that
8600 has no defined next actions, so it will never show up in the TODO lists
8601 Org mode produces.  During the review, you need to identify such
8602 projects and define next actions for them.
8604 @table @kbd
8605 @orgcmd{C-c a #,org-agenda-list-stuck-projects}
8606 List projects that are stuck.
8607 @kindex C-c a !
8608 @item C-c a !
8609 @vindex org-stuck-projects
8610 Customize the variable @code{org-stuck-projects} to define what a stuck
8611 project is and how to find it.
8612 @end table
8614 You almost certainly will have to configure this view before it will
8615 work for you.  The built-in default assumes that all your projects are
8616 level-2 headlines, and that a project is not stuck if it has at least
8617 one entry marked with a TODO keyword TODO or NEXT or NEXTACTION.
8619 Let's assume that you, in your own way of using Org mode, identify
8620 projects with a tag PROJECT, and that you use a TODO keyword MAYBE to
8621 indicate a project that should not be considered yet.  Let's further
8622 assume that the TODO keyword DONE marks finished projects, and that NEXT
8623 and TODO indicate next actions.  The tag @@SHOP indicates shopping and
8624 is a next action even without the NEXT tag.  Finally, if the project
8625 contains the special word IGNORE anywhere, it should not be listed
8626 either.  In this case you would start by identifying eligible projects
8627 with a tags/todo match@footnote{@xref{Tag searches}.}
8628 @samp{+PROJECT/-MAYBE-DONE}, and then check for TODO, NEXT, @@SHOP, and
8629 IGNORE in the subtree to identify projects that are not stuck.  The
8630 correct customization for this is
8632 @lisp
8633 (setq org-stuck-projects
8634       '("+PROJECT/-MAYBE-DONE" ("NEXT" "TODO") ("@@SHOP")
8635                                "\\<IGNORE\\>"))
8636 @end lisp
8638 Note that if a project is identified as non-stuck, the subtree of this entry
8639 will still be searched for stuck projects.
8641 @node Presentation and sorting
8642 @section Presentation and sorting
8643 @cindex presentation, of agenda items
8645 @vindex org-agenda-prefix-format
8646 @vindex org-agenda-tags-column
8647 Before displaying items in an agenda view, Org mode visually prepares the
8648 items and sorts them.  Each item occupies a single line.  The line starts
8649 with a @emph{prefix} that contains the @emph{category} (@pxref{Categories})
8650 of the item and other important information.  You can customize in which
8651 column tags will be displayed through @code{org-agenda-tags-column}.  You can
8652 also customize the prefix using the option @code{org-agenda-prefix-format}.
8653 This prefix is followed by a cleaned-up version of the outline headline
8654 associated with the item.
8656 @menu
8657 * Categories::                  Not all tasks are equal
8658 * Time-of-day specifications::  How the agenda knows the time
8659 * Sorting agenda items::        The order of things
8660 * Filtering/limiting agenda items::  Dynamically narrow the agenda
8661 @end menu
8663 @node Categories
8664 @subsection Categories
8666 @cindex category
8667 @cindex #+CATEGORY
8668 The category is a broad label assigned to each agenda item.  By default, the
8669 category is simply derived from the file name, but you can also specify it
8670 with a special line in the buffer, like this:
8672 @example
8673 #+CATEGORY: Thesis
8674 @end example
8676 @noindent
8677 @cindex property, CATEGORY
8678 If you would like to have a special CATEGORY for a single entry or a
8679 (sub)tree, give the entry a @code{:CATEGORY:} property with the
8680 special category you want to apply as the value.
8682 @noindent
8683 The display in the agenda buffer looks best if the category is not
8684 longer than 10 characters.
8686 @noindent
8687 You can set up icons for category by customizing the
8688 @code{org-agenda-category-icon-alist} variable.
8690 @node Time-of-day specifications
8691 @subsection Time-of-day specifications
8692 @cindex time-of-day specification
8694 Org mode checks each agenda item for a time-of-day specification.  The
8695 time can be part of the timestamp that triggered inclusion into the
8696 agenda, for example as in @w{@samp{<2005-05-10 Tue 19:00>}}.  Time
8697 ranges can be specified with two timestamps, like
8699 @w{@samp{<2005-05-10 Tue 20:30>--<2005-05-10 Tue 22:15>}}.
8701 In the headline of the entry itself, a time(range) may also appear as
8702 plain text (like @samp{12:45} or a @samp{8:30-1pm}).  If the agenda
8703 integrates the Emacs diary (@pxref{Weekly/daily agenda}), time
8704 specifications in diary entries are recognized as well.
8706 For agenda display, Org mode extracts the time and displays it in a
8707 standard 24 hour format as part of the prefix.  The example times in
8708 the previous paragraphs would end up in the agenda like this:
8710 @example
8711     8:30-13:00 Arthur Dent lies in front of the bulldozer
8712    12:45...... Ford Prefect arrives and takes Arthur to the pub
8713    19:00...... The Vogon reads his poem
8714    20:30-22:15 Marvin escorts the Hitchhikers to the bridge
8715 @end example
8717 @cindex time grid
8718 If the agenda is in single-day mode, or for the display of today, the
8719 timed entries are embedded in a time grid, like
8721 @example
8722     8:00...... ------------------
8723     8:30-13:00 Arthur Dent lies in front of the bulldozer
8724    10:00...... ------------------
8725    12:00...... ------------------
8726    12:45...... Ford Prefect arrives and takes Arthur to the pub
8727    14:00...... ------------------
8728    16:00...... ------------------
8729    18:00...... ------------------
8730    19:00...... The Vogon reads his poem
8731    20:00...... ------------------
8732    20:30-22:15 Marvin escorts the Hitchhikers to the bridge
8733 @end example
8735 @vindex org-agenda-use-time-grid
8736 @vindex org-agenda-time-grid
8737 The time grid can be turned on and off with the variable
8738 @code{org-agenda-use-time-grid}, and can be configured with
8739 @code{org-agenda-time-grid}.
8741 @node Sorting agenda items
8742 @subsection Sorting agenda items
8743 @cindex sorting, of agenda items
8744 @cindex priorities, of agenda items
8745 Before being inserted into a view, the items are sorted.  How this is
8746 done depends on the type of view.
8747 @itemize @bullet
8748 @item
8749 @vindex org-agenda-files
8750 For the daily/weekly agenda, the items for each day are sorted.  The
8751 default order is to first collect all items containing an explicit
8752 time-of-day specification.  These entries will be shown at the beginning
8753 of the list, as a @emph{schedule} for the day.  After that, items remain
8754 grouped in categories, in the sequence given by @code{org-agenda-files}.
8755 Within each category, items are sorted by priority (@pxref{Priorities}),
8756 which is composed of the base priority (2000 for priority @samp{A}, 1000
8757 for @samp{B}, and 0 for @samp{C}), plus additional increments for
8758 overdue scheduled or deadline items.
8759 @item
8760 For the TODO list, items remain in the order of categories, but within
8761 each category, sorting takes place according to priority
8762 (@pxref{Priorities}).  The priority used for sorting derives from the
8763 priority cookie, with additions depending on how close an item is to its due
8764 or scheduled date.
8765 @item
8766 For tags matches, items are not sorted at all, but just appear in the
8767 sequence in which they are found in the agenda files.
8768 @end itemize
8770 @vindex org-agenda-sorting-strategy
8771 Sorting can be customized using the variable
8772 @code{org-agenda-sorting-strategy}, and may also include criteria based on
8773 the estimated effort of an entry (@pxref{Effort estimates}).
8775 @node Filtering/limiting agenda items
8776 @subsection Filtering/limiting agenda items
8778 Agenda built-in or customized commands are statically defined.  Agenda
8779 filters and limits provide two ways of dynamically narrowing down the list of
8780 agenda entries: @emph{filters} and @emph{limits}.  Filters only act on the
8781 display of the items, while limits take effect before the list of agenda
8782 entries is built.  Filters are more often used interactively, while limits are
8783 mostly useful when defined as local variables within custom agenda commands.
8785 @subsubheading Filtering in the agenda
8786 @cindex filtering, by tag, category, top headline and effort, in agenda
8787 @cindex tag filtering, in agenda
8788 @cindex category filtering, in agenda
8789 @cindex top headline filtering, in agenda
8790 @cindex effort filtering, in agenda
8791 @cindex query editing, in agenda
8793 @table @kbd
8794 @orgcmd{/,org-agenda-filter-by-tag}
8795 @vindex org-agenda-tag-filter-preset
8796 Filter the agenda view with respect to a tag and/or effort estimates.  The
8797 difference between this and a custom agenda command is that filtering is very
8798 fast, so that you can switch quickly between different filters without having
8799 to recreate the agenda.@footnote{Custom commands can preset a filter by
8800 binding the variable @code{org-agenda-tag-filter-preset} as an option.  This
8801 filter will then be applied to the view and persist as a basic filter through
8802 refreshes and more secondary filtering.  The filter is a global property of
8803 the entire agenda view---in a block agenda, you should only set this in the
8804 global options section, not in the section of an individual block.}
8806 You will be prompted for a tag selection letter; @key{SPC} will mean any tag
8807 at all.  Pressing @key{TAB} at that prompt will offer use completion to
8808 select a tag (including any tags that do not have a selection character).
8809 The command then hides all entries that do not contain or inherit this tag.
8810 When called with prefix arg, remove the entries that @emph{do} have the tag.
8811 A second @kbd{/} at the prompt will turn off the filter and unhide any hidden
8812 entries.  Pressing @kbd{+} or @kbd{-} switches between filtering and
8813 excluding the next tag.
8815 Org also supports automatic, context-aware tag filtering.  If the variable
8816 @code{org-agenda-auto-exclude-function} is set to a user-defined function,
8817 that function can decide which tags should be excluded from the agenda
8818 automatically.  Once this is set, the @kbd{/} command then accepts @kbd{RET}
8819 as a sub-option key and runs the auto exclusion logic.  For example, let's
8820 say you use a @code{Net} tag to identify tasks which need network access, an
8821 @code{Errand} tag for errands in town, and a @code{Call} tag for making phone
8822 calls.  You could auto-exclude these tags based on the availability of the
8823 Internet, and outside of business hours, with something like this:
8825 @smalllisp
8826 @group
8827 (defun org-my-auto-exclude-function (tag)
8828   (and (cond
8829         ((string= tag "Net")
8830          (/= 0 (call-process "/sbin/ping" nil nil nil
8831                              "-c1" "-q" "-t1" "mail.gnu.org")))
8832         ((or (string= tag "Errand") (string= tag "Call"))
8833          (let ((hour (nth 2 (decode-time))))
8834            (or (< hour 8) (> hour 21)))))
8835        (concat "-" tag)))
8837 (setq org-agenda-auto-exclude-function 'org-my-auto-exclude-function)
8838 @end group
8839 @end smalllisp
8842 @kindex [
8843 @kindex ]
8844 @kindex @{
8845 @kindex @}
8846 @item [ ] @{ @}
8847 @table @i
8848 @item @r{in} search view
8849 add new search words (@kbd{[} and @kbd{]}) or new regular expressions
8850 (@kbd{@{} and @kbd{@}}) to the query string.  The opening bracket/brace will
8851 add a positive search term prefixed by @samp{+}, indicating that this search
8852 term @i{must} occur/match in the entry.  The closing bracket/brace will add a
8853 negative search term which @i{must not} occur/match in the entry for it to be
8854 selected.
8855 @end table
8857 @orgcmd{<,org-agenda-filter-by-category}
8858 @vindex org-agenda-category-filter-preset
8860 Filter the current agenda view with respect to the category of the item at
8861 point.  Pressing @code{<} another time will remove this filter.  When called
8862 with a prefix argument exclude the category of the item at point from the
8863 agenda.
8865 You can add a filter preset in custom agenda commands through the option
8866 @code{org-agenda-category-filter-preset}.  @xref{Setting options}.
8868 @orgcmd{^,org-agenda-filter-by-top-headline}
8869 Filter the current agenda view and only display the siblings and the parent
8870 headline of the one at point.
8872 @orgcmd{=,org-agenda-filter-by-regexp}
8873 @vindex org-agenda-regexp-filter-preset
8875 Filter the agenda view by a regular expression: only show agenda entries
8876 matching the regular expression the user entered.  When called with a prefix
8877 argument, it will filter @emph{out} entries matching the regexp.  With two
8878 universal prefix arguments, it will remove all the regexp filters, which can
8879 be accumulated.
8881 You can add a filter preset in custom agenda commands through the option
8882 @code{org-agenda-regexp-filter-preset}.  @xref{Setting options}.
8884 @orgcmd{_,org-agenda-filter-by-effort}
8885 @vindex org-agenda-effort-filter-preset
8886 @vindex org-sort-agenda-noeffort-is-high
8887 Filter the agenda view with respect to effort estimates.
8888 You first need to set up allowed efforts globally, for example
8889 @lisp
8890 (setq org-global-properties
8891     '(("Effort_ALL". "0 0:10 0:30 1:00 2:00 3:00 4:00")))
8892 @end lisp
8893 You can then filter for an effort by first typing an operator, one of
8894 @kbd{<}, @kbd{>}, and @kbd{=}, and then the one-digit index of an effort
8895 estimate in your array of allowed values, where @kbd{0} means the 10th value.
8896 The filter will then restrict to entries with effort smaller-or-equal, equal,
8897 or larger-or-equal than the selected value.  For application of the operator,
8898 entries without a defined effort will be treated according to the value of
8899 @code{org-sort-agenda-noeffort-is-high}.
8901 When called with a prefix argument, it will remove entries matching the
8902 condition.  With two universal prefix arguments, it will clear effort
8903 filters, which can be accumulated.
8905 You can add a filter preset in custom agenda commands through the option
8906 @code{org-agenda-effort-filter-preset}.  @xref{Setting options}.
8908 @orgcmd{|,org-agenda-filter-remove-all}
8909 Remove all filters in the current agenda view.
8910 @end table
8912 @subsubheading Setting limits for the agenda
8913 @cindex limits, in agenda
8914 @vindex org-agenda-max-entries
8915 @vindex org-agenda-max-effort
8916 @vindex org-agenda-max-todos
8917 @vindex org-agenda-max-tags
8919 Here is a list of options that you can set, either globally, or locally in
8920 your custom agenda views (@pxref{Custom agenda views}).
8922 @table @code
8923 @item org-agenda-max-entries
8924 Limit the number of entries.
8925 @item org-agenda-max-effort
8926 Limit the duration of accumulated efforts (as minutes).
8927 @item org-agenda-max-todos
8928 Limit the number of entries with TODO keywords.
8929 @item org-agenda-max-tags
8930 Limit the number of tagged entries.
8931 @end table
8933 When set to a positive integer, each option will exclude entries from other
8934 categories: for example, @code{(setq org-agenda-max-effort 100)} will limit
8935 the agenda to 100 minutes of effort and exclude any entry that has no effort
8936 property.  If you want to include entries with no effort property, use a
8937 negative value for @code{org-agenda-max-effort}.
8939 One useful setup is to use @code{org-agenda-max-entries} locally in a custom
8940 command.  For example, this custom command will display the next five entries
8941 with a @code{NEXT} TODO keyword.
8943 @smalllisp
8944 (setq org-agenda-custom-commands
8945       '(("n" todo "NEXT"
8946          ((org-agenda-max-entries 5)))))
8947 @end smalllisp
8949 Once you mark one of these five entry as @code{DONE}, rebuilding the agenda
8950 will again the next five entries again, including the first entry that was
8951 excluded so far.
8953 You can also dynamically set temporary limits, which will be lost when
8954 rebuilding the agenda:
8956 @table @kbd
8957 @orgcmd{~,org-agenda-limit-interactively}
8958 This prompts for the type of limit to apply and its value.
8959 @end table
8961 @node Agenda commands
8962 @section Commands in the agenda buffer
8963 @cindex commands, in agenda buffer
8965 Entries in the agenda buffer are linked back to the Org file or diary
8966 file where they originate.  You are not allowed to edit the agenda
8967 buffer itself, but commands are provided to show and jump to the
8968 original entry location, and to edit the Org files ``remotely'' from
8969 the agenda buffer.  In this way, all information is stored only once,
8970 removing the risk that your agenda and note files may diverge.
8972 Some commands can be executed with mouse clicks on agenda lines.  For
8973 the other commands, the cursor needs to be in the desired line.
8975 @table @kbd
8976 @tsubheading{Motion}
8977 @cindex motion commands in agenda
8978 @orgcmd{n,org-agenda-next-line}
8979 Next line (same as @key{down} and @kbd{C-n}).
8980 @orgcmd{p,org-agenda-previous-line}
8981 Previous line (same as @key{up} and @kbd{C-p}).
8982 @orgcmd{N,org-agenda-next-item}
8983 Next item: same as next line, but only consider items.
8984 @orgcmd{P,org-agenda-previous-item}
8985 Previous item: same as previous line, but only consider items.
8986 @tsubheading{View/Go to Org file}
8987 @orgcmdkkc{@key{SPC},mouse-3,org-agenda-show-and-scroll-up}
8988 Display the original location of the item in another window.  With prefix
8989 arg, make sure that drawers stay folded.
8991 @orgcmd{L,org-agenda-recenter}
8992 Display original location and recenter that window.
8994 @orgcmdkkc{@key{TAB},mouse-2,org-agenda-goto}
8995 Go to the original location of the item in another window.
8997 @orgcmd{@key{RET},org-agenda-switch-to}
8998 Go to the original location of the item and delete other windows.
9000 @orgcmd{F,org-agenda-follow-mode}
9001 @vindex org-agenda-start-with-follow-mode
9002 Toggle Follow mode.  In Follow mode, as you move the cursor through
9003 the agenda buffer, the other window always shows the corresponding
9004 location in the Org file.  The initial setting for this mode in new
9005 agenda buffers can be set with the variable
9006 @code{org-agenda-start-with-follow-mode}.
9008 @orgcmd{C-c C-x b,org-agenda-tree-to-indirect-buffer}
9009 Display the entire subtree of the current item in an indirect buffer.  With a
9010 numeric prefix argument N, go up to level N and then take that tree.  If N is
9011 negative, go up that many levels.  With a @kbd{C-u} prefix, do not remove the
9012 previously used indirect buffer.
9014 @orgcmd{C-c C-o,org-agenda-open-link}
9015 Follow a link in the entry.  This will offer a selection of any links in the
9016 text belonging to the referenced Org node.  If there is only one link, it
9017 will be followed without a selection prompt.
9019 @tsubheading{Change display}
9020 @cindex display changing, in agenda
9021 @kindex A
9022 @item A
9023 Interactively select another agenda view and append it to the current view.
9025 @kindex o
9026 @item o
9027 Delete other windows.
9029 @orgcmdkskc{v d,d,org-agenda-day-view}
9030 @xorgcmdkskc{v w,w,org-agenda-week-view}
9031 @xorgcmd{v t,org-agenda-fortnight-view}
9032 @xorgcmd{v m,org-agenda-month-view}
9033 @xorgcmd{v y,org-agenda-year-view}
9034 @xorgcmd{v SPC,org-agenda-reset-view}
9035 @vindex org-agenda-span
9036 Switch to day/week/month/year view.  When switching to day or week view, this
9037 setting becomes the default for subsequent agenda refreshes.  Since month and
9038 year views are slow to create, they do not become the default.  A numeric
9039 prefix argument may be used to jump directly to a specific day of the year,
9040 ISO week, month, or year, respectively.  For example, @kbd{32 d} jumps to
9041 February 1st, @kbd{9 w} to ISO week number 9.  When setting day, week, or
9042 month view, a year may be encoded in the prefix argument as well.  For
9043 example, @kbd{200712 w} will jump to week 12 in 2007.  If such a year
9044 specification has only one or two digits, it will be mapped to the interval
9045 1938--2037.  @kbd{v @key{SPC}} will reset to what is set in
9046 @code{org-agenda-span}.
9048 @orgcmd{f,org-agenda-later}
9049 Go forward in time to display the following @code{org-agenda-current-span} days.
9050 For example, if the display covers a week, switch to the following week.
9051 With prefix arg, go forward that many times @code{org-agenda-current-span} days.
9053 @orgcmd{b,org-agenda-earlier}
9054 Go backward in time to display earlier dates.
9056 @orgcmd{.,org-agenda-goto-today}
9057 Go to today.
9059 @orgcmd{j,org-agenda-goto-date}
9060 Prompt for a date and go there.
9062 @orgcmd{J,org-agenda-clock-goto}
9063 Go to the currently clocked-in task @i{in the agenda buffer}.
9065 @orgcmd{D,org-agenda-toggle-diary}
9066 Toggle the inclusion of diary entries.  See @ref{Weekly/daily agenda}.
9068 @orgcmdkskc{v l,l,org-agenda-log-mode}
9069 @kindex v L
9070 @vindex org-log-done
9071 @vindex org-agenda-log-mode-items
9072 Toggle Logbook mode.  In Logbook mode, entries that were marked DONE while
9073 logging was on (variable @code{org-log-done}) are shown in the agenda, as are
9074 entries that have been clocked on that day.  You can configure the entry
9075 types that should be included in log mode using the variable
9076 @code{org-agenda-log-mode-items}.  When called with a @kbd{C-u} prefix, show
9077 all possible logbook entries, including state changes.  When called with two
9078 prefix arguments @kbd{C-u C-u}, show only logging information, nothing else.
9079 @kbd{v L} is equivalent to @kbd{C-u v l}.
9081 @orgcmdkskc{v [,[,org-agenda-manipulate-query-add}
9082 Include inactive timestamps into the current view.  Only for weekly/daily
9083 agenda.
9085 @orgcmd{v a,org-agenda-archives-mode}
9086 @xorgcmd{v A,org-agenda-archives-mode 'files}
9087 @cindex Archives mode
9088 Toggle Archives mode.  In Archives mode, trees that are marked
9089 @code{ARCHIVED} are also scanned when producing the agenda.  When you use the
9090 capital @kbd{A}, even all archive files are included.  To exit archives mode,
9091 press @kbd{v a} again.
9093 @orgcmdkskc{v R,R,org-agenda-clockreport-mode}
9094 @vindex org-agenda-start-with-clockreport-mode
9095 @vindex org-clock-report-include-clocking-task
9096 Toggle Clockreport mode.  In Clockreport mode, the daily/weekly agenda will
9097 always show a table with the clocked times for the time span and file scope
9098 covered by the current agenda view.  The initial setting for this mode in new
9099 agenda buffers can be set with the variable
9100 @code{org-agenda-start-with-clockreport-mode}.  By using a prefix argument
9101 when toggling this mode (i.e., @kbd{C-u R}), the clock table will not show
9102 contributions from entries that are hidden by agenda filtering@footnote{Only
9103 tags filtering will be respected here, effort filtering is ignored.}.  See
9104 also the variable @code{org-clock-report-include-clocking-task}.
9106 @orgkey{v c}
9107 @vindex org-agenda-clock-consistency-checks
9108 Show overlapping clock entries, clocking gaps, and other clocking problems in
9109 the current agenda range.  You can then visit clocking lines and fix them
9110 manually.  See the variable @code{org-agenda-clock-consistency-checks} for
9111 information on how to customize the definition of what constituted a clocking
9112 problem.  To return to normal agenda display, press @kbd{l} to exit Logbook
9113 mode.
9115 @orgcmdkskc{v E,E,org-agenda-entry-text-mode}
9116 @vindex org-agenda-start-with-entry-text-mode
9117 @vindex org-agenda-entry-text-maxlines
9118 Toggle entry text mode.  In entry text mode, a number of lines from the Org
9119 outline node referenced by an agenda line will be displayed below the line.
9120 The maximum number of lines is given by the variable
9121 @code{org-agenda-entry-text-maxlines}.  Calling this command with a numeric
9122 prefix argument will temporarily modify that number to the prefix value.
9124 @orgcmd{G,org-agenda-toggle-time-grid}
9125 @vindex org-agenda-use-time-grid
9126 @vindex org-agenda-time-grid
9127 Toggle the time grid on and off.  See also the variables
9128 @code{org-agenda-use-time-grid} and @code{org-agenda-time-grid}.
9130 @orgcmd{r,org-agenda-redo}
9131 Recreate the agenda buffer, for example to reflect the changes after
9132 modification of the timestamps of items with @kbd{S-@key{left}} and
9133 @kbd{S-@key{right}}.  When the buffer is the global TODO list, a prefix
9134 argument is interpreted to create a selective list for a specific TODO
9135 keyword.
9136 @orgcmd{g,org-agenda-redo}
9137 Same as @kbd{r}.
9139 @orgcmdkskc{C-x C-s,s,org-save-all-org-buffers}
9140 Save all Org buffers in the current Emacs session, and also the locations of
9141 IDs.
9143 @orgcmd{C-c C-x C-c,org-agenda-columns}
9144 @vindex org-columns-default-format
9145 Invoke column view (@pxref{Column view}) in the agenda buffer.  The column
9146 view format is taken from the entry at point, or (if there is no entry at
9147 point), from the first entry in the agenda view.  So whatever the format for
9148 that entry would be in the original buffer (taken from a property, from a
9149 @code{#+COLUMNS} line, or from the default variable
9150 @code{org-columns-default-format}), will be used in the agenda.
9152 @orgcmd{C-c C-x >,org-agenda-remove-restriction-lock}
9153 Remove the restriction lock on the agenda, if it is currently restricted to a
9154 file or subtree (@pxref{Agenda files}).
9156 @tsubheading{Secondary filtering and query editing}
9158 For a detailed description of these commands, @pxref{Filtering/limiting
9159 agenda items}.
9161 @orgcmd{/,org-agenda-filter-by-tag}
9162 Filter the agenda view with respect to a tag and/or effort estimates.
9164 @orgcmd{<,org-agenda-filter-by-category}
9165 Filter the current agenda view with respect to the category of the item at
9166 point.
9168 @orgcmd{^,org-agenda-filter-by-top-headline}
9169 Filter the current agenda view and only display the siblings and the parent
9170 headline of the one at point.
9172 @orgcmd{=,org-agenda-filter-by-regexp}
9173 Filter the agenda view by a regular expression.
9175 @orgcmd{_,org-agenda-filter-by-effort}
9176 Filter the agenda view with respect to effort estimates.
9178 @orgcmd{|,org-agenda-filter-remove-all}
9179 Remove all filters in the current agenda view.
9181 @tsubheading{Remote editing}
9182 @cindex remote editing, from agenda
9184 @item 0--9
9185 Digit argument.
9187 @cindex undoing remote-editing events
9188 @cindex remote editing, undo
9189 @orgcmd{C-_,org-agenda-undo}
9190 Undo a change due to a remote editing command.  The change is undone
9191 both in the agenda buffer and in the remote buffer.
9193 @orgcmd{t,org-agenda-todo}
9194 Change the TODO state of the item, both in the agenda and in the
9195 original org file.
9197 @orgcmd{C-S-@key{right},org-agenda-todo-nextset}
9198 @orgcmd{C-S-@key{left},org-agenda-todo-previousset}
9199 Switch to the next/previous set of TODO keywords.
9201 @orgcmd{C-k,org-agenda-kill}
9202 @vindex org-agenda-confirm-kill
9203 Delete the current agenda item along with the entire subtree belonging
9204 to it in the original Org file.  If the text to be deleted remotely
9205 is longer than one line, the kill needs to be confirmed by the user.  See
9206 variable @code{org-agenda-confirm-kill}.
9208 @orgcmd{C-c C-w,org-agenda-refile}
9209 Refile the entry at point.
9211 @orgcmdkskc{C-c C-x C-a,a,org-agenda-archive-default-with-confirmation}
9212 @vindex org-archive-default-command
9213 Archive the subtree corresponding to the entry at point using the default
9214 archiving command set in @code{org-archive-default-command}.  When using the
9215 @code{a} key, confirmation will be required.
9217 @orgcmd{C-c C-x a,org-agenda-toggle-archive-tag}
9218 Toggle the ARCHIVE tag for the current headline.
9220 @orgcmd{C-c C-x A,org-agenda-archive-to-archive-sibling}
9221 Move the subtree corresponding to the current entry to its @emph{archive
9222 sibling}.
9224 @orgcmdkskc{C-c C-x C-s,$,org-agenda-archive}
9225 Archive the subtree corresponding to the current headline.  This means the
9226 entry will be moved to the configured archive location, most likely a
9227 different file.
9229 @orgcmd{T,org-agenda-show-tags}
9230 @vindex org-agenda-show-inherited-tags
9231 Show all tags associated with the current item.  This is useful if you have
9232 turned off @code{org-agenda-show-inherited-tags}, but still want to see all
9233 tags of a headline occasionally.
9235 @orgcmd{:,org-agenda-set-tags}
9236 Set tags for the current headline.  If there is an active region in the
9237 agenda, change a tag for all headings in the region.
9239 @kindex ,
9240 @item ,
9241 Set the priority for the current item (@command{org-agenda-priority}).
9242 Org mode prompts for the priority character.  If you reply with @key{SPC},
9243 the priority cookie is removed from the entry.
9245 @orgcmd{P,org-agenda-show-priority}
9246 Display weighted priority of current item.
9248 @orgcmdkkc{+,S-@key{up},org-agenda-priority-up}
9249 Increase the priority of the current item.  The priority is changed in
9250 the original buffer, but the agenda is not resorted.  Use the @kbd{r}
9251 key for this.
9253 @orgcmdkkc{-,S-@key{down},org-agenda-priority-down}
9254 Decrease the priority of the current item.
9256 @orgcmdkkc{z,C-c C-z,org-agenda-add-note}
9257 @vindex org-log-into-drawer
9258 Add a note to the entry.  This note will be recorded, and then filed to the
9259 same location where state change notes are put.  Depending on
9260 @code{org-log-into-drawer}, this may be inside a drawer.
9262 @orgcmd{C-c C-a,org-attach}
9263 Dispatcher for all command related to attachments.
9265 @orgcmd{C-c C-s,org-agenda-schedule}
9266 Schedule this item.  With prefix arg remove the scheduling timestamp
9268 @orgcmd{C-c C-d,org-agenda-deadline}
9269 Set a deadline for this item.  With prefix arg remove the deadline.
9271 @orgcmd{S-@key{right},org-agenda-do-date-later}
9272 Change the timestamp associated with the current line by one day into the
9273 future.  If the date is in the past, the first call to this command will move
9274 it to today.@*
9275 With a numeric prefix argument, change it by that many days.  For example,
9276 @kbd{3 6 5 S-@key{right}} will change it by a year.  With a @kbd{C-u} prefix,
9277 change the time by one hour.  If you immediately repeat the command, it will
9278 continue to change hours even without the prefix arg.  With a double @kbd{C-u
9279 C-u} prefix, do the same for changing minutes.@*
9280 The stamp is changed in the original Org file, but the change is not directly
9281 reflected in the agenda buffer.  Use @kbd{r} or @kbd{g} to update the buffer.
9283 @orgcmd{S-@key{left},org-agenda-do-date-earlier}
9284 Change the timestamp associated with the current line by one day
9285 into the past.
9287 @orgcmd{>,org-agenda-date-prompt}
9288 Change the timestamp associated with the current line.  The key @kbd{>} has
9289 been chosen, because it is the same as @kbd{S-.}  on my keyboard.
9291 @orgcmd{I,org-agenda-clock-in}
9292 Start the clock on the current item.  If a clock is running already, it
9293 is stopped first.
9295 @orgcmd{O,org-agenda-clock-out}
9296 Stop the previously started clock.
9298 @orgcmd{X,org-agenda-clock-cancel}
9299 Cancel the currently running clock.
9301 @orgcmd{J,org-agenda-clock-goto}
9302 Jump to the running clock in another window.
9304 @orgcmd{k,org-agenda-capture}
9305 Like @code{org-capture}, but use the date at point as the default date for
9306 the capture template.  See @code{org-capture-use-agenda-date} to make this
9307 the default behavior of @code{org-capture}.
9308 @cindex capturing, from agenda
9309 @vindex org-capture-use-agenda-date
9311 @tsubheading{Dragging agenda lines forward/backward}
9312 @cindex dragging, agenda lines
9314 @orgcmd{M-<up>,org-agenda-drag-line-backward}
9315 Drag the line at point backward one line@footnote{Moving agenda lines does
9316 not persist after an agenda refresh and does not modify the contributing
9317 @file{.org} files}.  With a numeric prefix argument, drag backward by that
9318 many lines.
9320 @orgcmd{M-<down>,org-agenda-drag-line-forward}
9321 Drag the line at point forward one line.  With a numeric prefix argument,
9322 drag forward by that many lines.
9324 @tsubheading{Bulk remote editing selected entries}
9325 @cindex remote editing, bulk, from agenda
9326 @vindex org-agenda-bulk-custom-functions
9328 @orgcmd{m,org-agenda-bulk-mark}
9329 Mark the entry at point for bulk action.  With numeric prefix argument, mark
9330 that many successive entries.
9332 @orgcmd{*,org-agenda-bulk-mark-all}
9333 Mark all visible agenda entries for bulk action.
9335 @orgcmd{u,org-agenda-bulk-unmark}
9336 Unmark entry at point for bulk action.
9338 @orgcmd{U,org-agenda-bulk-remove-all-marks}
9339 Unmark all marked entries for bulk action.
9341 @orgcmd{M-m,org-agenda-bulk-toggle}
9342 Toggle mark of the entry at point for bulk action.
9344 @orgcmd{M-*,org-agenda-bulk-toggle-all}
9345 Toggle marks of all visible entries for bulk action.
9347 @orgcmd{%,org-agenda-bulk-mark-regexp}
9348 Mark entries matching a regular expression for bulk action.
9350 @orgcmd{B,org-agenda-bulk-action}
9351 Bulk action: act on all marked entries in the agenda.  This will prompt for
9352 another key to select the action to be applied.  The prefix arg to @kbd{B}
9353 will be passed through to the @kbd{s} and @kbd{d} commands, to bulk-remove
9354 these special timestamps.  By default, marks are removed after the bulk.  If
9355 you want them to persist, set @code{org-agenda-persistent-marks} to @code{t}
9356 or hit @kbd{p} at the prompt.
9358 @table @kbd
9359 @item *
9360 Toggle persistent marks.
9361 @item $
9362 Archive all selected entries.
9363 @item A
9364 Archive entries by moving them to their respective archive siblings.
9365 @item t
9366 Change TODO state.  This prompts for a single TODO keyword and changes the
9367 state of all selected entries, bypassing blocking and suppressing logging
9368 notes (but not timestamps).
9369 @item +
9370 Add a tag to all selected entries.
9371 @item -
9372 Remove a tag from all selected entries.
9373 @item s
9374 Schedule all items to a new date.  To shift existing schedule dates by a
9375 fixed number of days, use something starting with double plus at the prompt,
9376 for example @samp{++8d} or @samp{++2w}.
9377 @item d
9378 Set deadline to a specific date.
9379 @item r
9380 Prompt for a single refile target and move all entries.  The entries will no
9381 longer be in the agenda; refresh (@kbd{g}) to bring them back.
9382 @item S
9383 Reschedule randomly into the coming N days.  N will be prompted for.  With
9384 prefix arg (@kbd{C-u B S}), scatter only across weekdays.
9385 @item f
9386 Apply a function@footnote{You can also create persistent custom functions
9387 through @code{org-agenda-bulk-custom-functions}.} to marked entries.  For
9388 example, the function below sets the CATEGORY property of the entries to web.
9390 @lisp
9391 @group
9392 (defun set-category ()
9393   (interactive "P")
9394   (let* ((marker (or (org-get-at-bol 'org-hd-marker)
9395                      (org-agenda-error)))
9396          (buffer (marker-buffer marker)))
9397     (with-current-buffer buffer
9398       (save-excursion
9399         (save-restriction
9400           (widen)
9401           (goto-char marker)
9402           (org-back-to-heading t)
9403           (org-set-property "CATEGORY" "web"))))))
9404 @end group
9405 @end lisp
9406 @end table
9408 @tsubheading{Calendar commands}
9409 @cindex calendar commands, from agenda
9411 @orgcmd{c,org-agenda-goto-calendar}
9412 Open the Emacs calendar and move to the date at the agenda cursor.
9414 @orgcmd{c,org-calendar-goto-agenda}
9415 When in the calendar, compute and show the Org mode agenda for the
9416 date at the cursor.
9418 @cindex diary entries, creating from agenda
9419 @orgcmd{i,org-agenda-diary-entry}
9420 @vindex org-agenda-diary-file
9421 Insert a new entry into the diary, using the date at the cursor and (for
9422 block entries) the date at the mark.  This will add to the Emacs diary
9423 file@footnote{This file is parsed for the agenda when
9424 @code{org-agenda-include-diary} is set.}, in a way similar to the @kbd{i}
9425 command in the calendar.  The diary file will pop up in another window, where
9426 you can add the entry.
9428 If you configure @code{org-agenda-diary-file} to point to an Org mode file,
9429 Org will create entries (in Org mode syntax) in that file instead.  Most
9430 entries will be stored in a date-based outline tree that will later make it
9431 easy to archive appointments from previous months/years.  The tree will be
9432 built under an entry with a @code{DATE_TREE} property, or else with years as
9433 top-level entries.  Emacs will prompt you for the entry text---if you specify
9434 it, the entry will be created in @code{org-agenda-diary-file} without further
9435 interaction.  If you directly press @key{RET} at the prompt without typing
9436 text, the target file will be shown in another window for you to finish the
9437 entry there.  See also the @kbd{k r} command.
9439 @orgcmd{M,org-agenda-phases-of-moon}
9440 Show the phases of the moon for the three months around current date.
9442 @orgcmd{S,org-agenda-sunrise-sunset}
9443 Show sunrise and sunset times.  The geographical location must be set
9444 with calendar variables, see the documentation for the Emacs calendar.
9446 @orgcmd{C,org-agenda-convert-date}
9447 Convert the date at cursor into many other cultural and historic
9448 calendars.
9450 @orgcmd{H,org-agenda-holidays}
9451 Show holidays for three months around the cursor date.
9453 @item M-x org-icalendar-combine-agenda-files RET
9454 Export a single iCalendar file containing entries from all agenda files.
9455 This is a globally available command, and also available in the agenda menu.
9457 @tsubheading{Exporting to a file}
9458 @orgcmd{C-x C-w,org-agenda-write}
9459 @cindex exporting agenda views
9460 @cindex agenda views, exporting
9461 @vindex org-agenda-exporter-settings
9462 Write the agenda view to a file.  Depending on the extension of the selected
9463 file name, the view will be exported as HTML (@file{.html} or @file{.htm}),
9464 Postscript (@file{.ps}), PDF (@file{.pdf}), Org (@file{.org}) and plain text
9465 (any other extension).  When exporting to Org, only the body of original
9466 headlines are exported, not subtrees or inherited tags.  When called with a
9467 @kbd{C-u} prefix argument, immediately open the newly created file.  Use the
9468 variable @code{org-agenda-exporter-settings} to set options for
9469 @file{ps-print} and for @file{htmlize} to be used during export.
9471 @tsubheading{Quit and Exit}
9472 @orgcmd{q,org-agenda-quit}
9473 Quit agenda, remove the agenda buffer.
9475 @cindex agenda files, removing buffers
9476 @orgcmd{x,org-agenda-exit}
9477 Exit agenda, remove the agenda buffer and all buffers loaded by Emacs
9478 for the compilation of the agenda.  Buffers created by the user to
9479 visit Org files will not be removed.
9480 @end table
9483 @node Custom agenda views
9484 @section Custom agenda views
9485 @cindex custom agenda views
9486 @cindex agenda views, custom
9488 Custom agenda commands serve two purposes: to store and quickly access
9489 frequently used TODO and tags searches, and to create special composite
9490 agenda buffers.  Custom agenda commands will be accessible through the
9491 dispatcher (@pxref{Agenda dispatcher}), just like the default commands.
9493 @menu
9494 * Storing searches::            Type once, use often
9495 * Block agenda::                All the stuff you need in a single buffer
9496 * Setting options::             Changing the rules
9497 @end menu
9499 @node Storing searches
9500 @subsection Storing searches
9502 The first application of custom searches is the definition of keyboard
9503 shortcuts for frequently used searches, either creating an agenda
9504 buffer, or a sparse tree (the latter covering of course only the current
9505 buffer).
9506 @kindex C-c a C
9507 @vindex org-agenda-custom-commands
9508 @cindex agenda views, main example
9509 @cindex agenda, as an agenda views
9510 @cindex agenda*, as an agenda views
9511 @cindex tags, as an agenda view
9512 @cindex todo, as an agenda view
9513 @cindex tags-todo
9514 @cindex todo-tree
9515 @cindex occur-tree
9516 @cindex tags-tree
9518 Custom commands are configured in the variable
9519 @code{org-agenda-custom-commands}.  You can customize this variable, for
9520 example by pressing @kbd{C-c a C}.  You can also directly set it with Emacs
9521 Lisp in the Emacs init file.  The following example contains all valid agenda
9522 views:
9524 @lisp
9525 @group
9526 (setq org-agenda-custom-commands
9527       '(("x" agenda)
9528         ("y" agenda*)
9529         ("w" todo "WAITING")
9530         ("W" todo-tree "WAITING")
9531         ("u" tags "+boss-urgent")
9532         ("v" tags-todo "+boss-urgent")
9533         ("U" tags-tree "+boss-urgent")
9534         ("f" occur-tree "\\<FIXME\\>")
9535         ("h" . "HOME+Name tags searches") ; description for "h" prefix
9536         ("hl" tags "+home+Lisa")
9537         ("hp" tags "+home+Peter")
9538         ("hk" tags "+home+Kim")))
9539 @end group
9540 @end lisp
9542 @noindent
9543 The initial string in each entry defines the keys you have to press
9544 after the dispatcher command @kbd{C-c a} in order to access the command.
9545 Usually this will be just a single character, but if you have many
9546 similar commands, you can also define two-letter combinations where the
9547 first character is the same in several combinations and serves as a
9548 prefix key@footnote{You can provide a description for a prefix key by
9549 inserting a cons cell with the prefix and the description.}.  The second
9550 parameter is the search type, followed by the string or regular
9551 expression to be used for the matching.  The example above will
9552 therefore define:
9554 @table @kbd
9555 @item C-c a x
9556 as a global search for agenda entries planned@footnote{@emph{Planned} means
9557 here that these entries have some planning information attached to them, like
9558 a time-stamp, a scheduled or a deadline string.  See
9559 @code{org-agenda-entry-types} on how to set what planning information will be
9560 taken into account.} this week/day.
9561 @item C-c a y
9562 as a global search for agenda entries planned this week/day, but only those
9563 with an hour specification like @code{[h]h:mm}---think of them as appointments.
9564 @item C-c a w
9565 as a global search for TODO entries with @samp{WAITING} as the TODO
9566 keyword
9567 @item C-c a W
9568 as the same search, but only in the current buffer and displaying the
9569 results as a sparse tree
9570 @item C-c a u
9571 as a global tags search for headlines marked @samp{:boss:} but not
9572 @samp{:urgent:}
9573 @item C-c a v
9574 as the same search as @kbd{C-c a u}, but limiting the search to
9575 headlines that are also TODO items
9576 @item C-c a U
9577 as the same search as @kbd{C-c a u}, but only in the current buffer and
9578 displaying the result as a sparse tree
9579 @item C-c a f
9580 to create a sparse tree (again: current buffer only) with all entries
9581 containing the word @samp{FIXME}
9582 @item C-c a h
9583 as a prefix command for a HOME tags search where you have to press an
9584 additional key (@kbd{l}, @kbd{p} or @kbd{k}) to select a name (Lisa,
9585 Peter, or Kim) as additional tag to match.
9586 @end table
9588 Note that the @code{*-tree} agenda views need to be called from an
9589 Org buffer as they operate on the current buffer only.
9591 @node Block agenda
9592 @subsection Block agenda
9593 @cindex block agenda
9594 @cindex agenda, with block views
9596 Another possibility is the construction of agenda views that comprise
9597 the results of @emph{several} commands, each of which creates a block in
9598 the agenda buffer.  The available commands include @code{agenda} for the
9599 daily or weekly agenda (as created with @kbd{C-c a a}), @code{alltodo}
9600 for the global TODO list (as constructed with @kbd{C-c a t}), and the
9601 matching commands discussed above: @code{todo}, @code{tags}, and
9602 @code{tags-todo}.  Here are two examples:
9604 @lisp
9605 @group
9606 (setq org-agenda-custom-commands
9607       '(("h" "Agenda and Home-related tasks"
9608          ((agenda "")
9609           (tags-todo "home")
9610           (tags "garden")))
9611         ("o" "Agenda and Office-related tasks"
9612          ((agenda "")
9613           (tags-todo "work")
9614           (tags "office")))))
9615 @end group
9616 @end lisp
9618 @noindent
9619 This will define @kbd{C-c a h} to create a multi-block view for stuff
9620 you need to attend to at home.  The resulting agenda buffer will contain
9621 your agenda for the current week, all TODO items that carry the tag
9622 @samp{home}, and also all lines tagged with @samp{garden}.  Finally the
9623 command @kbd{C-c a o} provides a similar view for office tasks.
9625 @node Setting options
9626 @subsection Setting options for custom commands
9627 @cindex options, for custom agenda views
9629 @vindex org-agenda-custom-commands
9630 Org mode contains a number of variables regulating agenda construction
9631 and display.  The global variables define the behavior for all agenda
9632 commands, including the custom commands.  However, if you want to change
9633 some settings just for a single custom view, you can do so.  Setting
9634 options requires inserting a list of variable names and values at the
9635 right spot in @code{org-agenda-custom-commands}.  For example:
9637 @lisp
9638 @group
9639 (setq org-agenda-custom-commands
9640       '(("w" todo "WAITING"
9641          ((org-agenda-sorting-strategy '(priority-down))
9642           (org-agenda-prefix-format "  Mixed: ")))
9643         ("U" tags-tree "+boss-urgent"
9644          ((org-show-context-detail 'minimal)))
9645         ("N" search ""
9646          ((org-agenda-files '("~org/notes.org"))
9647           (org-agenda-text-search-extra-files nil)))))
9648 @end group
9649 @end lisp
9651 @noindent
9652 Now the @kbd{C-c a w} command will sort the collected entries only by
9653 priority, and the prefix format is modified to just say @samp{  Mixed: }
9654 instead of giving the category of the entry.  The sparse tags tree of
9655 @kbd{C-c a U} will now turn out ultra-compact, because neither the
9656 headline hierarchy above the match, nor the headline following the match
9657 will be shown.  The command @kbd{C-c a N} will do a text search limited
9658 to only a single file.
9660 @vindex org-agenda-custom-commands
9661 For command sets creating a block agenda,
9662 @code{org-agenda-custom-commands} has two separate spots for setting
9663 options.  You can add options that should be valid for just a single
9664 command in the set, and options that should be valid for all commands in
9665 the set.  The former are just added to the command entry; the latter
9666 must come after the list of command entries.  Going back to the block
9667 agenda example (@pxref{Block agenda}), let's change the sorting strategy
9668 for the @kbd{C-c a h} commands to @code{priority-down}, but let's sort
9669 the results for GARDEN tags query in the opposite order,
9670 @code{priority-up}.  This would look like this:
9672 @lisp
9673 @group
9674 (setq org-agenda-custom-commands
9675       '(("h" "Agenda and Home-related tasks"
9676          ((agenda)
9677           (tags-todo "home")
9678           (tags "garden"
9679                 ((org-agenda-sorting-strategy '(priority-up)))))
9680          ((org-agenda-sorting-strategy '(priority-down))))
9681         ("o" "Agenda and Office-related tasks"
9682          ((agenda)
9683           (tags-todo "work")
9684           (tags "office")))))
9685 @end group
9686 @end lisp
9688 As you see, the values and parentheses setting is a little complex.
9689 When in doubt, use the customize interface to set this variable---it
9690 fully supports its structure.  Just one caveat: when setting options in
9691 this interface, the @emph{values} are just Lisp expressions.  So if the
9692 value is a string, you need to add the double-quotes around the value
9693 yourself.
9695 @vindex org-agenda-custom-commands-contexts
9696 To control whether an agenda command should be accessible from a specific
9697 context, you can customize @code{org-agenda-custom-commands-contexts}.  Let's
9698 say for example that you have an agenda command @code{"o"} displaying a view
9699 that you only need when reading emails.  Then you would configure this option
9700 like this:
9702 @lisp
9703 (setq org-agenda-custom-commands-contexts
9704       '(("o" (in-mode . "message-mode"))))
9705 @end lisp
9707 You can also tell that the command key @code{"o"} should refer to another
9708 command key @code{"r"}.  In that case, add this command key like this:
9710 @lisp
9711 (setq org-agenda-custom-commands-contexts
9712       '(("o" "r" (in-mode . "message-mode"))))
9713 @end lisp
9715 See the docstring of the variable for more information.
9717 @node Exporting agenda views
9718 @section Exporting agenda views
9719 @cindex agenda views, exporting
9721 If you are away from your computer, it can be very useful to have a printed
9722 version of some agenda views to carry around.  Org mode can export custom
9723 agenda views as plain text, HTML@footnote{You need to install
9724 @file{htmlize.el} from @uref{https://github.com/hniksic/emacs-htmlize,Hrvoje
9725 Niksic's repository.}}, Postscript, PDF@footnote{To create PDF output, the
9726 ghostscript @file{ps2pdf} utility must be installed on the system.  Selecting
9727 a PDF file will also create the postscript file.}, and iCalendar files.  If
9728 you want to do this only occasionally, use the command
9730 @table @kbd
9731 @orgcmd{C-x C-w,org-agenda-write}
9732 @cindex exporting agenda views
9733 @cindex agenda views, exporting
9734 @vindex org-agenda-exporter-settings
9735 Write the agenda view to a file.  Depending on the extension of the selected
9736 file name, the view will be exported as HTML (extension @file{.html} or
9737 @file{.htm}), Postscript (extension @file{.ps}), iCalendar (extension
9738 @file{.ics}), or plain text (any other extension).  Use the variable
9739 @code{org-agenda-exporter-settings} to set options for @file{ps-print} and
9740 for @file{htmlize} to be used during export, for example
9742 @vindex org-agenda-add-entry-text-maxlines
9743 @vindex htmlize-output-type
9744 @vindex ps-number-of-columns
9745 @vindex ps-landscape-mode
9746 @lisp
9747 (setq org-agenda-exporter-settings
9748       '((ps-number-of-columns 2)
9749         (ps-landscape-mode t)
9750         (org-agenda-add-entry-text-maxlines 5)
9751         (htmlize-output-type 'css)))
9752 @end lisp
9753 @end table
9755 If you need to export certain agenda views frequently, you can associate
9756 any custom agenda command with a list of output file names
9757 @footnote{If you want to store standard views like the weekly agenda
9758 or the global TODO list as well, you need to define custom commands for
9759 them in order to be able to specify file names.}.  Here is an example
9760 that first defines custom commands for the agenda and the global
9761 TODO list, together with a number of files to which to export them.
9762 Then we define two block agenda commands and specify file names for them
9763 as well.  File names can be relative to the current working directory,
9764 or absolute.
9766 @lisp
9767 @group
9768 (setq org-agenda-custom-commands
9769       '(("X" agenda "" nil ("agenda.html" "agenda.ps"))
9770         ("Y" alltodo "" nil ("todo.html" "todo.txt" "todo.ps"))
9771         ("h" "Agenda and Home-related tasks"
9772          ((agenda "")
9773           (tags-todo "home")
9774           (tags "garden"))
9775          nil
9776          ("~/views/home.html"))
9777         ("o" "Agenda and Office-related tasks"
9778          ((agenda)
9779           (tags-todo "work")
9780           (tags "office"))
9781          nil
9782          ("~/views/office.ps" "~/calendars/office.ics"))))
9783 @end group
9784 @end lisp
9786 The extension of the file name determines the type of export.  If it is
9787 @file{.html}, Org mode will try to use the @file{htmlize.el} package to
9788 convert the buffer to HTML and save it to this file name.  If the extension
9789 is @file{.ps}, @code{ps-print-buffer-with-faces} is used to produce
9790 Postscript output.  If the extension is @file{.ics}, iCalendar export is run
9791 export over all files that were used to construct the agenda, and limit the
9792 export to entries listed in the agenda.  Any other extension produces a plain
9793 ASCII file.
9795 The export files are @emph{not} created when you use one of those
9796 commands interactively because this might use too much overhead.
9797 Instead, there is a special command to produce @emph{all} specified
9798 files in one step:
9800 @table @kbd
9801 @orgcmd{C-c a e,org-store-agenda-views}
9802 Export all agenda views that have export file names associated with
9803 them.
9804 @end table
9806 You can use the options section of the custom agenda commands to also
9807 set options for the export commands.  For example:
9809 @lisp
9810 (setq org-agenda-custom-commands
9811       '(("X" agenda ""
9812          ((ps-number-of-columns 2)
9813           (ps-landscape-mode t)
9814           (org-agenda-prefix-format " [ ] ")
9815           (org-agenda-with-colors nil)
9816           (org-agenda-remove-tags t))
9817          ("theagenda.ps"))))
9818 @end lisp
9820 @noindent
9821 This command sets two options for the Postscript exporter, to make it
9822 print in two columns in landscape format---the resulting page can be cut
9823 in two and then used in a paper agenda.  The remaining settings modify
9824 the agenda prefix to omit category and scheduling information, and
9825 instead include a checkbox to check off items.  We also remove the tags
9826 to make the lines compact, and we don't want to use colors for the
9827 black-and-white printer.  Settings specified in
9828 @code{org-agenda-exporter-settings} will also apply, but the settings
9829 in @code{org-agenda-custom-commands} take precedence.
9831 @noindent
9832 From the command line you may also use
9833 @example
9834 emacs -eval (org-batch-store-agenda-views) -kill
9835 @end example
9836 @noindent
9837 or, if you need to modify some parameters@footnote{Quoting depends on the
9838 system you use, please check the FAQ for examples.}
9839 @example
9840 emacs -eval '(org-batch-store-agenda-views                      \
9841               org-agenda-span (quote month)                     \
9842               org-agenda-start-day "2007-11-01"                 \
9843               org-agenda-include-diary nil                      \
9844               org-agenda-files (quote ("~/org/project.org")))'  \
9845       -kill
9846 @end example
9847 @noindent
9848 which will create the agenda views restricted to the file
9849 @file{~/org/project.org}, without diary entries and with a 30-day
9850 extent.
9852 You can also extract agenda information in a way that allows further
9853 processing by other programs.  See @ref{Extracting agenda information}, for
9854 more information.
9857 @node Agenda column view
9858 @section Using column view in the agenda
9859 @cindex column view, in agenda
9860 @cindex agenda, column view
9862 Column view (@pxref{Column view}) is normally used to view and edit
9863 properties embedded in the hierarchical structure of an Org file.  It can be
9864 quite useful to use column view also from the agenda, where entries are
9865 collected by certain criteria.
9867 @table @kbd
9868 @orgcmd{C-c C-x C-c,org-agenda-columns}
9869 Turn on column view in the agenda.
9870 @end table
9872 To understand how to use this properly, it is important to realize that the
9873 entries in the agenda are no longer in their proper outline environment.
9874 This causes the following issues:
9876 @enumerate
9877 @item
9878 @vindex org-columns-default-format
9879 @vindex org-overriding-columns-format
9880 Org needs to make a decision which @code{COLUMNS} format to use.  Since the
9881 entries in the agenda are collected from different files, and different files
9882 may have different @code{COLUMNS} formats, this is a non-trivial problem.
9883 Org first checks if the variable @code{org-agenda-overriding-columns-format}
9884 is currently set, and if so, takes the format from there.  Otherwise it takes
9885 the format associated with the first item in the agenda, or, if that item
9886 does not have a specific format---defined in a property, or in its file---it
9887 uses @code{org-columns-default-format}.
9889 @item
9890 @cindex property, special, CLOCKSUM
9891 If any of the columns has a summary type defined (@pxref{Column attributes}),
9892 turning on column view in the agenda will visit all relevant agenda files and
9893 make sure that the computations of this property are up to date.  This is
9894 also true for the special @code{CLOCKSUM} property.  Org will then sum the
9895 values displayed in the agenda.  In the daily/weekly agenda, the sums will
9896 cover a single day; in all other views they cover the entire block.  It is
9897 vital to realize that the agenda may show the same entry @emph{twice}---for
9898 example as scheduled and as a deadline---and it may show two entries from the
9899 same hierarchy---for example a @emph{parent} and its @emph{child}.  In these
9900 cases, the summation in the agenda will lead to incorrect results because
9901 some values will count double.
9903 @item
9904 When the column view in the agenda shows the @code{CLOCKSUM}, that is always
9905 the entire clocked time for this item.  So even in the daily/weekly agenda,
9906 the clocksum listed in column view may originate from times outside the
9907 current view.  This has the advantage that you can compare these values with
9908 a column listing the planned total effort for a task---one of the major
9909 applications for column view in the agenda.  If you want information about
9910 clocked time in the displayed period use clock table mode (press @kbd{R} in
9911 the agenda).
9913 @item
9914 @cindex property, special, CLOCKSUM_T
9915 When the column view in the agenda shows the @code{CLOCKSUM_T}, that is
9916 always today's clocked time for this item.  So even in the weekly agenda, the
9917 clocksum listed in column view only originates from today.  This lets you
9918 compare the time you spent on a task for today, with the time already
9919 spent ---via @code{CLOCKSUM}---and with the planned total effort for it.
9920 @end enumerate
9923 @node Markup
9924 @chapter Markup for rich export
9926 When exporting Org mode documents, the exporter tries to reflect the
9927 structure of the document as accurately as possible in the back-end.  Since
9928 export targets like HTML and @LaTeX{} allow much richer formatting, Org mode has
9929 rules on how to prepare text for rich export.  This section summarizes the
9930 markup rules used in an Org mode buffer.
9932 @menu
9933 * Paragraphs::                  The basic unit of text
9934 * Emphasis and monospace::      Bold, italic, etc.
9935 * Horizontal rules::            Make a line
9936 * Images and tables::           Images, tables and caption mechanism
9937 * Literal examples::            Source code examples with special formatting
9938 * Special symbols::             Greek letters and other symbols
9939 * Subscripts and superscripts::  Simple syntax for raising/lowering text
9940 * Embedded @LaTeX{}::           LaTeX can be freely used inside Org documents
9941 @end menu
9943 @node Paragraphs
9944 @section Paragraphs, line breaks, and quoting
9945 @cindex paragraphs, markup rules
9947 Paragraphs are separated by at least one empty line.  If you need to enforce
9948 a line break within a paragraph, use @samp{\\} at the end of a line.
9950 To preserve the line breaks, indentation and blank lines in a region, but
9951 otherwise use normal formatting, you can use this construct, which can also
9952 be used to format poetry.
9954 @cindex #+BEGIN_VERSE
9955 @cindex verse blocks
9956 @example
9957 #+BEGIN_VERSE
9958  Great clouds overhead
9959  Tiny black birds rise and fall
9960  Snow covers Emacs
9962      -- AlexSchroeder
9963 #+END_VERSE
9964 @end example
9966 When quoting a passage from another document, it is customary to format this
9967 as a paragraph that is indented on both the left and the right margin.  You
9968 can include quotations in Org mode documents like this:
9970 @cindex #+BEGIN_QUOTE
9971 @cindex quote blocks
9972 @example
9973 #+BEGIN_QUOTE
9974 Everything should be made as simple as possible,
9975 but not any simpler -- Albert Einstein
9976 #+END_QUOTE
9977 @end example
9979 If you would like to center some text, do it like this:
9980 @cindex #+BEGIN_CENTER
9981 @cindex center blocks
9982 @example
9983 #+BEGIN_CENTER
9984 Everything should be made as simple as possible, \\
9985 but not any simpler
9986 #+END_CENTER
9987 @end example
9989 @node Emphasis and monospace
9990 @section Emphasis and monospace
9992 @cindex underlined text, markup rules
9993 @cindex bold text, markup rules
9994 @cindex italic text, markup rules
9995 @cindex verbatim text, markup rules
9996 @cindex code text, markup rules
9997 @cindex strike-through text, markup rules
9998 @vindex org-fontify-emphasized-text
9999 @vindex org-emphasis-regexp-components
10000 @vindex org-emphasis-alist
10001 You can make words @b{*bold*}, @i{/italic/}, _underlined_, @code{=verbatim=}
10002 and @code{~code~}, and, if you must, @samp{+strike-through+}.  Text
10003 in the code and verbatim string is not processed for Org mode specific
10004 syntax, it is exported verbatim.
10006 To turn off fontification for marked up text, you can set
10007 @code{org-fontify-emphasized-text} to @code{nil}.  To narrow down the list of
10008 available markup syntax, you can customize @code{org-emphasis-alist}.  To fine
10009 tune what characters are allowed before and after the markup characters, you
10010 can tweak @code{org-emphasis-regexp-components}.  Beware that changing one of
10011 the above variables will no take effect until you reload Org, for which you
10012 may need to restart Emacs.
10014 @node Horizontal rules
10015 @section Horizontal rules
10016 @cindex horizontal rules, markup rules
10017 A line consisting of only dashes, and at least 5 of them, will be exported as
10018 a horizontal line.
10020 @node Images and tables
10021 @section Images and Tables
10023 @cindex tables, markup rules
10024 @cindex #+CAPTION
10025 @cindex #+NAME
10026 Both the native Org mode tables (@pxref{Tables}) and tables formatted with
10027 the @file{table.el} package will be exported properly.  For Org mode tables,
10028 the lines before the first horizontal separator line will become table header
10029 lines.  You can use the following lines somewhere before the table to assign
10030 a caption and a label for cross references, and in the text you can refer to
10031 the object with @code{[[tab:basic-data]]} (@pxref{Internal links}):
10033 @example
10034 #+CAPTION: This is the caption for the next table (or link)
10035 #+NAME:   tab:basic-data
10036    | ... | ...|
10037    |-----|----|
10038 @end example
10040 Optionally, the caption can take the form:
10041 @example
10042 #+CAPTION[Caption for list of tables]: Caption for table.
10043 @end example
10045 @cindex inlined images, markup rules
10046 Some back-ends allow you to directly include images into the exported
10047 document.  Org does this, if a link to an image files does not have
10048 a description part, for example @code{[[./img/a.jpg]]}.  If you wish to
10049 define a caption for the image and maybe a label for internal cross
10050 references, make sure that the link is on a line by itself and precede it
10051 with @code{#+CAPTION} and @code{#+NAME} as follows:
10053 @example
10054 #+CAPTION: This is the caption for the next figure link (or table)
10055 #+NAME:   fig:SED-HR4049
10056 [[./img/a.jpg]]
10057 @end example
10059 @noindent
10060 Such images can be displayed within the buffer.  @xref{Handling links,the
10061 discussion of image links}.
10063 Even though images and tables are prominent examples of captioned structures,
10064 the same caption mechanism can apply to many others (e.g., @LaTeX{}
10065 equations, source code blocks).  Depending on the export back-end, those may
10066 or may not be handled.
10068 @node Literal examples
10069 @section Literal examples
10070 @cindex literal examples, markup rules
10071 @cindex code line references, markup rules
10073 You can include literal examples that should not be subjected to
10074 markup.  Such examples will be typeset in monospace, so this is well suited
10075 for source code and similar examples.
10076 @cindex #+BEGIN_EXAMPLE
10078 @example
10079 #+BEGIN_EXAMPLE
10080 Some example from a text file.
10081 #+END_EXAMPLE
10082 @end example
10084 Note that such blocks may be @i{indented} in order to align nicely with
10085 indented text and in particular with plain list structure (@pxref{Plain
10086 lists}).  For simplicity when using small examples, you can also start the
10087 example lines with a colon followed by a space.  There may also be additional
10088 whitespace before the colon:
10090 @example
10091 Here is an example
10092    : Some example from a text file.
10093 @end example
10095 @cindex formatting source code, markup rules
10096 @vindex org-latex-listings
10097 If the example is source code from a programming language, or any other text
10098 that can be marked up by font-lock in Emacs, you can ask for the example to
10099 look like the fontified Emacs buffer@footnote{This works automatically for
10100 the HTML back-end (it requires version 1.34 of the @file{htmlize.el} package,
10101 which you need to install).  Fontified code chunks in @LaTeX{} can be
10102 achieved using either the
10103 @url{https://www.ctan.org/tex-archive/macros/latex/contrib/listings/?lang=en, listings,}
10104 or the
10105 @url{https://github.com/gpoore/minted, minted,} package.
10106 If you use minted or listing, you must load the packages manually, for
10107 example by adding the desired package to
10108 @code{org-latex-packages-alist}.  Refer to @code{org-latex-listings}
10109 for details.}.  This is done with the @samp{src} block, where you also need
10110 to specify the name of the major mode that should be used to fontify the
10111 example@footnote{Code in @samp{src} blocks may also be evaluated either
10112 interactively or on export.  @xref{Working with source code}, for more
10113 information on evaluating code blocks.}, see @ref{Easy templates} for
10114 shortcuts to easily insert code blocks.
10115 @cindex #+BEGIN_SRC
10117 @example
10118 #+BEGIN_SRC emacs-lisp
10119   (defun org-xor (a b)
10120      "Exclusive or."
10121      (if a (not b) b))
10122 #+END_SRC
10123 @end example
10125 Both in @code{example} and in @code{src} snippets, you can add a @code{-n}
10126 switch to the end of the @code{BEGIN} line, to get the lines of the example
10127 numbered.  The @code{-n} takes an optional numeric argument specifying the
10128 starting line number of the block.  If you use a @code{+n} switch, the
10129 numbering from the previous numbered snippet will be continued in the current
10130 one.  The @code{+n} can also take a numeric argument.  The value of the
10131 argument will be added to the last line of the previous block to determine
10132 the starting line number.
10134 @example
10135 #+BEGIN_SRC emacs-lisp -n 20
10136  ;; this will export with line number 20
10137  (message "This is line 21")
10138 #+END_SRC
10139 #+BEGIN_SRC emacs-lisp +n 10
10140  ;; This will be listed as line 31
10141  (message "This is line 32")
10142 #+END_SRC
10143 @end example
10145 In literal examples, Org will interpret strings like @samp{(ref:name)} as
10146 labels, and use them as targets for special hyperlinks like @code{[[(name)]]}
10147 (i.e., the reference name enclosed in single parenthesis).  In HTML, hovering
10148 the mouse over such a link will remote-highlight the corresponding code line,
10149 which is kind of cool.
10151 You can also add a @code{-r} switch which @i{removes} the labels from the
10152 source code@footnote{Adding @code{-k} to @code{-n -r} will @i{keep} the
10153 labels in the source code while using line numbers for the links, which might
10154 be useful to explain those in an Org mode example code.}.  With the @code{-n}
10155 switch, links to these references will be labeled by the line numbers from
10156 the code listing, otherwise links will use the labels with no parentheses.
10157 Here is an example:
10159 @example
10160 #+BEGIN_SRC emacs-lisp -n -r
10161 (save-excursion                  (ref:sc)
10162    (goto-char (point-min)))      (ref:jump)
10163 #+END_SRC
10164 In line [[(sc)]] we remember the current position.  [[(jump)][Line (jump)]]
10165 jumps to point-min.
10166 @end example
10168 @cindex indentation, in source blocks
10169 Finally, you can use @code{-i} to preserve the indentation of a specific code
10170 block (@pxref{Editing source code}).
10172 @vindex org-coderef-label-format
10173 If the syntax for the label format conflicts with the language syntax, use a
10174 @code{-l} switch to change the format, for example @samp{#+BEGIN_SRC pascal
10175 -n -r -l "((%s))"}.  See also the variable @code{org-coderef-label-format}.
10177 HTML export also allows examples to be published as text areas (@pxref{Text
10178 areas in HTML export}).
10180 Because the @code{#+BEGIN_...} and @code{#+END_...} patterns need to be added
10181 so often, shortcuts are provided using the Easy templates facility
10182 (@pxref{Easy templates}).
10184 @table @kbd
10185 @kindex C-c '
10186 @item C-c '
10187 Edit the source code example at point in its native mode.  This works by
10188 switching to a temporary buffer with the source code.  You need to exit by
10189 pressing @kbd{C-c '} again@footnote{Upon exit, lines starting with @samp{*},
10190 @samp{,*}, @samp{#+} and @samp{,#+} will get a comma prepended, to keep them
10191 from being interpreted by Org as outline nodes or special syntax.  These
10192 commas will be stripped for editing with @kbd{C-c '}, and also for export.}.
10193 The edited version will then replace the old version in the Org buffer.
10194 Fixed-width regions (where each line starts with a colon followed by a space)
10195 will be edited using @code{artist-mode}@footnote{You may select
10196 a different-mode with the variable @code{org-edit-fixed-width-region-mode}.}
10197 to allow creating ASCII drawings easily.  Using this command in an empty line
10198 will create a new fixed-width region.
10199 @kindex C-c l
10200 @item C-c l
10201 Calling @code{org-store-link} while editing a source code example in a
10202 temporary buffer created with @kbd{C-c '} will prompt for a label.  Make sure
10203 that it is unique in the current buffer, and insert it with the proper
10204 formatting like @samp{(ref:label)} at the end of the current line.  Then the
10205 label is stored as a link @samp{(label)}, for retrieval with @kbd{C-c C-l}.
10206 @end table
10208 @node Special symbols
10209 @section Special symbols
10210 @cindex Org entities
10211 @cindex math symbols
10212 @cindex special symbols
10213 @cindex HTML entities
10214 @cindex @LaTeX{} entities
10216 You can use @LaTeX{}-like syntax to insert special symbols---named
10217 entities---like @samp{\alpha} to indicate the Greek letter, or @samp{\to} to
10218 indicate an arrow.  Completion for these symbols is available, just type
10219 @samp{\} and maybe a few letters, and press @kbd{M-@key{TAB}} to see possible
10220 completions.  If you need such a symbol inside a word, terminate it with
10221 a pair of curly brackets.  For example
10223 @example
10224 Pro tip: Given a circle \Gamma of diameter d, the length of its circumference
10225 is \pi@{@}d.
10226 @end example
10228 @findex org-entities-help
10229 @vindex org-entities-user
10230 A large number of entities is provided, with names taken from both HTML and
10231 @LaTeX{}; you can comfortably browse the complete list from a dedicated
10232 buffer using the command @code{org-entities-help}.  It is also possible to
10233 provide your own special symbols in the variable @code{org-entities-user}.
10235 During export, these symbols are transformed into the native format of the
10236 exporter back-end.  Strings like @code{\alpha} are exported as @code{&alpha;}
10237 in the HTML output, and as @code{\(\alpha\)} in the @LaTeX{} output.
10238 Similarly, @code{\nbsp} becomes @code{&nbsp;} in HTML and @code{~} in
10239 @LaTeX{}.
10241 @cindex escaping characters
10242 Entities may also be used as a may to escape markup in an Org document, e.g.,
10243 @samp{\under@{@}not underlined\under} exports as @samp{_not underlined_}.
10245 @cindex special symbols, in-buffer display
10246 If you would like to see entities displayed as UTF-8 characters, use the
10247 following command@footnote{You can turn this on by default by setting the
10248 variable @code{org-pretty-entities}, or on a per-file base with the
10249 @code{#+STARTUP} option @code{entitiespretty}.}:
10251 @table @kbd
10252 @cindex @code{entitiespretty}, STARTUP keyword
10253 @kindex C-c C-x \
10254 @item C-c C-x \
10255 Toggle display of entities as UTF-8 characters.  This does not change the
10256 buffer content which remains plain ASCII, but it overlays the UTF-8 character
10257 for display purposes only.
10258 @end table
10260 @cindex shy hyphen, special symbol
10261 @cindex dash, special symbol
10262 @cindex ellipsis, special symbol
10263 In addition to regular entities defined above, Org exports in a special
10264 way@footnote{This behaviour can be disabled with @code{-} export setting
10265 (@pxref{Export settings}).} the following commonly used character
10266 combinations: @samp{\-} is treated as a shy hyphen, @samp{--} and @samp{---}
10267 are converted into dashes, and @samp{...} becomes a compact set of dots.
10269 @node Subscripts and superscripts
10270 @section Subscripts and superscripts
10271 @cindex subscript
10272 @cindex superscript
10274 @samp{^} and @samp{_} are used to indicate super- and subscripts.  To
10275 increase the readability of ASCII text, it is not necessary---but OK---to
10276 surround multi-character sub- and superscripts with curly braces.  Those are,
10277 however, mandatory, when more than one word is involved.  For example
10279 @example
10280 The radius of the sun is R_sun = 6.96 x 10^8 m.  On the other hand, the
10281 radius of Alpha Centauri is R_@{Alpha Centauri@} = 1.28 x R_@{sun@}.
10282 @end example
10284 @vindex org-use-sub-superscripts
10285 If you write a text where the underscore is often used in a different
10286 context, Org's convention to always interpret these as subscripts can get in
10287 your way.  Configure the variable @code{org-use-sub-superscripts} to change
10288 this convention.  For example, when setting this variable to @code{@{@}},
10289 @samp{a_b} will not be interpreted as a subscript, but @samp{a_@{b@}} will.
10291 @table @kbd
10292 @kindex C-c C-x \
10293 @item C-c C-x \
10294 In addition to showing entities as UTF-8 characters, this command will also
10295 format sub- and superscripts in a WYSIWYM way.
10296 @end table
10298 @node Embedded @LaTeX{}
10299 @section Embedded @LaTeX{}
10300 @cindex @TeX{} interpretation
10301 @cindex @LaTeX{} interpretation
10303 Plain ASCII is normally sufficient for almost all note taking.  Exceptions
10304 include scientific notes, which often require mathematical symbols and the
10305 occasional formula.  @LaTeX{}@footnote{@LaTeX{} is a macro system based on
10306 Donald E. Knuth's @TeX{} system.  Many of the features described here as
10307 ``@LaTeX{}'' are really from @TeX{}, but for simplicity I am blurring this
10308 distinction.}  is widely used to typeset scientific documents.  Org mode
10309 supports embedding @LaTeX{} code into its files, because many academics are
10310 used to writing and reading @LaTeX{} source code, and because it can be
10311 readily processed to produce pretty output for a number of export back-ends.
10313 @menu
10314 * @LaTeX{} fragments::          Complex formulas made easy
10315 * Previewing @LaTeX{} fragments::  What will this snippet look like?
10316 * CDLaTeX mode::                Speed up entering of formulas
10317 @end menu
10319 @node @LaTeX{} fragments
10320 @subsection @LaTeX{} fragments
10321 @cindex @LaTeX{} fragments
10323 @vindex org-format-latex-header
10324 Org mode can contain @LaTeX{} math fragments, and it supports ways to process
10325 these for several export back-ends.  When exporting to @LaTeX{}, the code is
10326 left as it is.  When exporting to HTML, Org can use either
10327 @uref{http://www.mathjax.org, MathJax} (@pxref{Math formatting in HTML
10328 export}) or transcode the math into images (see @pxref{Previewing @LaTeX{}
10329 fragments}).
10331 @LaTeX{} fragments don't need any special marking at all.  The following
10332 snippets will be identified as @LaTeX{} source code:
10333 @itemize @bullet
10334 @item
10335 Environments of any kind@footnote{When MathJax is used, only the
10336 environments recognized by MathJax will be processed.  When
10337 @file{dvipng} program, @file{dvisvgm} program or @file{imagemagick} suite is
10338 used to create images, any @LaTeX{} environment will be handled.}.  The only
10339 requirement is that the @code{\begin} statement appears on a new line, at the
10340 beginning of the line or after whitespaces only.
10341 @item
10342 Text within the usual @LaTeX{} math delimiters.  To avoid conflicts with
10343 currency specifications, single @samp{$} characters are only recognized as
10344 math delimiters if the enclosed text contains at most two line breaks, is
10345 directly attached to the @samp{$} characters with no whitespace in between,
10346 and if the closing @samp{$} is followed by whitespace or punctuation
10347 (parentheses and quotes are considered to be punctuation in this
10348 context).  For the other delimiters, there is no such restriction, so when in
10349 doubt, use @samp{\(...\)} as inline math delimiters.
10350 @end itemize
10352 @noindent For example:
10354 @example
10355 \begin@{equation@}
10356 x=\sqrt@{b@}
10357 \end@{equation@}
10359 If $a^2=b$ and \( b=2 \), then the solution must be
10360 either $$ a=+\sqrt@{2@} $$ or \[ a=-\sqrt@{2@} \].
10361 @end example
10363 @c FIXME
10364 @c @noindent
10365 @c @vindex org-format-latex-options
10366 @c If you need any of the delimiter ASCII sequences for other purposes, you
10367 @c can configure the option @code{org-format-latex-options} to deselect the
10368 @c ones you do not wish to have interpreted by the @LaTeX{} converter.
10370 @vindex org-export-with-latex
10371 @LaTeX{} processing can be configured with the variable
10372 @code{org-export-with-latex}.  The default setting is @code{t} which means
10373 MathJax for HTML, and no processing for ASCII and @LaTeX{} back-ends.
10374 You can also set this variable on a per-file basis using one of these
10375 lines:
10377 @example
10378 #+OPTIONS: tex:t          @r{Do the right thing automatically (MathJax)}
10379 #+OPTIONS: tex:nil        @r{Do not process @LaTeX{} fragments at all}
10380 #+OPTIONS: tex:verbatim   @r{Verbatim export, for jsMath or so}
10381 @end example
10383 @node Previewing @LaTeX{} fragments
10384 @subsection Previewing @LaTeX{} fragments
10385 @cindex @LaTeX{} fragments, preview
10387 @vindex org-preview-latex-default-process
10388 If you have a working @LaTeX{} installation and @file{dvipng}, @file{dvisvgm}
10389 or @file{convert} installed@footnote{These are respectively available at
10390 @url{http://sourceforge.net/projects/dvipng/}, @url{http://dvisvgm.bplaced.net/}
10391 and from the @file{imagemagick} suite.  Choose the converter by setting the
10392 variable @code{org-preview-latex-default-process} accordingly.}, @LaTeX{}
10393 fragments can be processed to produce images of the typeset expressions to be
10394 used for inclusion while exporting to HTML (see @pxref{@LaTeX{} fragments}),
10395 or for inline previewing within Org mode.
10397 @vindex org-format-latex-options
10398 @vindex org-format-latex-header
10399 You can customize the variables @code{org-format-latex-options} and
10400 @code{org-format-latex-header} to influence some aspects of the preview.  In
10401 particular, the @code{:scale} (and for HTML export, @code{:html-scale})
10402 property of the former can be used to adjust the size of the preview images.
10404 @table @kbd
10405 @kindex C-c C-x C-l
10406 @item C-c C-x C-l
10407 Produce a preview image of the @LaTeX{} fragment at point and overlay it
10408 over the source code.  If there is no fragment at point, process all
10409 fragments in the current entry (between two headlines).  When called
10410 with a prefix argument, process the entire subtree.  When called with
10411 two prefix arguments, or when the cursor is before the first headline,
10412 process the entire buffer.
10413 @kindex C-c C-c
10414 @item C-c C-c
10415 Remove the overlay preview images.
10416 @end table
10418 @vindex org-startup-with-latex-preview
10419 You can turn on the previewing of all @LaTeX{} fragments in a file with
10421 @example
10422 #+STARTUP: latexpreview
10423 @end example
10425 To disable it, simply use
10427 @example
10428 #+STARTUP: nolatexpreview
10429 @end example
10431 @node CDLaTeX mode
10432 @subsection Using CD@LaTeX{} to enter math
10433 @cindex CD@LaTeX{}
10435 CD@LaTeX{} mode is a minor mode that is normally used in combination with a
10436 major @LaTeX{} mode like AUC@TeX{} in order to speed-up insertion of
10437 environments and math templates.  Inside Org mode, you can make use of
10438 some of the features of CD@LaTeX{} mode.  You need to install
10439 @file{cdlatex.el} and @file{texmathp.el} (the latter comes also with
10440 AUC@TeX{}) from @url{https://staff.fnwi.uva.nl/c.dominik/Tools/cdlatex}.
10441 Don't use CD@LaTeX{} mode itself under Org mode, but use the light
10442 version @code{org-cdlatex-mode} that comes as part of Org mode.  Turn it
10443 on for the current buffer with @kbd{M-x org-cdlatex-mode RET}, or for all
10444 Org files with
10446 @lisp
10447 (add-hook 'org-mode-hook 'turn-on-org-cdlatex)
10448 @end lisp
10450 When this mode is enabled, the following features are present (for more
10451 details see the documentation of CD@LaTeX{} mode):
10452 @itemize @bullet
10453 @kindex C-c @{
10454 @item
10455 Environment templates can be inserted with @kbd{C-c @{}.
10456 @item
10457 @kindex @key{TAB}
10458 The @key{TAB} key will do template expansion if the cursor is inside a
10459 @LaTeX{} fragment@footnote{Org mode has a method to test if the cursor is
10460 inside such a fragment, see the documentation of the function
10461 @code{org-inside-LaTeX-fragment-p}.}.  For example, @key{TAB} will
10462 expand @code{fr} to @code{\frac@{@}@{@}} and position the cursor
10463 correctly inside the first brace.  Another @key{TAB} will get you into
10464 the second brace.  Even outside fragments, @key{TAB} will expand
10465 environment abbreviations at the beginning of a line.  For example, if
10466 you write @samp{equ} at the beginning of a line and press @key{TAB},
10467 this abbreviation will be expanded to an @code{equation} environment.
10468 To get a list of all abbreviations, type @kbd{M-x cdlatex-command-help RET}.
10469 @item
10470 @kindex _
10471 @kindex ^
10472 @vindex cdlatex-simplify-sub-super-scripts
10473 Pressing @kbd{_} and @kbd{^} inside a @LaTeX{} fragment will insert these
10474 characters together with a pair of braces.  If you use @key{TAB} to move
10475 out of the braces, and if the braces surround only a single character or
10476 macro, they are removed again (depending on the variable
10477 @code{cdlatex-simplify-sub-super-scripts}).
10478 @item
10479 @kindex `
10480 Pressing the grave accent @kbd{`} followed by a character inserts math
10481 macros, also outside @LaTeX{} fragments.  If you wait more than 1.5 seconds
10482 after the grave accent, a help window will pop up.
10483 @item
10484 @kindex '
10485 Pressing the apostrophe @kbd{'} followed by another character modifies
10486 the symbol before point with an accent or a font.  If you wait more than
10487 1.5 seconds after the apostrophe, a help window will pop up.  Character
10488 modification will work only inside @LaTeX{} fragments; outside the quote
10489 is normal.
10490 @end itemize
10492 @node Exporting
10493 @chapter Exporting
10494 @cindex exporting
10496 Sometimes, you may want to pretty print your notes, publish them on the web
10497 or even share them with people not using Org.  In these cases, the Org export
10498 facilities can be used to convert your documents to a variety of other
10499 formats, while retaining as much structure (@pxref{Document structure}) and
10500 markup (@pxref{Markup}) as possible.
10502 @cindex export back-end
10503 Libraries responsible for such translation are called back-ends.  Org ships
10504 with the following ones
10506 @itemize
10507 @item ascii (ASCII format)
10508 @item beamer (@LaTeX{} Beamer format)
10509 @item html (HTML format)
10510 @item icalendar (iCalendar format)
10511 @item latex (@LaTeX{} format)
10512 @item md (Markdown format)
10513 @item odt (OpenDocument Text format)
10514 @item org (Org format)
10515 @item texinfo (Texinfo format)
10516 @item man (Man page format)
10517 @end itemize
10519 @noindent Org also uses additional libraries located in @code{contrib/}
10520 directory (@pxref{Installation}).  Users can install additional export
10521 libraries for additional formats from the Emacs packaging system.  For easy
10522 discovery, these packages have a common naming scheme: @file{ox-NAME}, where
10523 NAME is one of the formats.  For example, @file{ox-koma-letter} for
10524 @code{koma-letter} back-end.
10526 @vindex org-export-backends
10527 Org loads back-ends for the following formats by default: @code{ascii},
10528 @code{html}, @code{icalendar}, @code{latex} and @code{odt}.
10530 Org can load additional back-ends either of two ways: through the
10531 @code{org-export-backends} variable configuration; or, by requiring the
10532 library in the Emacs init file like this:
10534 @lisp
10535 (require 'ox-md)
10536 @end lisp
10538 @menu
10539 * The export dispatcher::       The main interface
10540 * Export settings::             Common export settings
10541 * Table of contents::           The if and where of the table of contents
10542 * Include files::               Include additional files into a document
10543 * Macro replacement::           Use macros to create templates
10544 * Comment lines::               What will not be exported
10545 * ASCII/Latin-1/UTF-8 export::  Exporting to flat files with encoding
10546 * Beamer export::               Exporting as a Beamer presentation
10547 * HTML export::                 Exporting to HTML
10548 * @LaTeX{} export::             Exporting to @LaTeX{}, and processing to PDF
10549 * Markdown export::             Exporting to Markdown
10550 * OpenDocument Text export::    Exporting to OpenDocument Text
10551 * Org export::                  Exporting to Org
10552 * Texinfo export::              Exporting to Texinfo
10553 * iCalendar export::            Exporting to iCalendar
10554 * Other built-in back-ends::    Exporting to a man page
10555 * Advanced configuration::      Fine-tuning the export output
10556 * Export in foreign buffers::   Author tables and lists in Org syntax
10557 @end menu
10559 @node The export dispatcher
10560 @section The export dispatcher
10561 @vindex org-export-dispatch-use-expert-ui
10562 @cindex Export, dispatcher
10564 The export dispatcher is the main interface for Org's exports.  A
10565 hierarchical menu presents the currently configured export formats.  Options
10566 are shown as easy toggle switches on the same screen.
10568 Org also has a minimal prompt interface for the export dispatcher.  When the
10569 variable @code{org-export-dispatch-use-expert-ui} is set to a non-@code{nil}
10570 value, Org prompts in the minibuffer.  To switch back to the hierarchical
10571 menu, press @key{?}.
10573 @table @asis
10574 @orgcmd{C-c C-e,org-export-dispatch}
10576 Invokes the export dispatcher interface.  The options show default settings.
10577 The @kbd{C-u} prefix argument preserves options from the previous export,
10578 including any sub-tree selections.
10580 @end table
10582 Org exports the entire buffer by default.  If the Org buffer has an active
10583 region, then Org exports just that region.
10585 These are the export options, the key combinations that toggle them
10586 (@pxref{Export settings}):
10588 @table @kbd
10589 @item C-a
10590 @vindex org-export-async-init-file
10591 Toggles asynchronous export.  Asynchronous export uses an external Emacs
10592 process with a specially configured initialization file to complete the
10593 exporting process in the background thereby releasing the current interface.
10594 This is particularly useful when exporting long documents.
10596 Output from an asynchronous export is saved on the ``the export stack''.  To
10597 view this stack, call the export dispatcher with a double @kbd{C-u} prefix
10598 argument.  If already in the export dispatcher menu, @kbd{&} displays the
10599 stack.
10601 @vindex org-export-in-background
10602 To make the background export process the default, customize the variable,
10603 @code{org-export-in-background}.
10605 @item C-b
10606 Toggle body-only export.  Useful for excluding headers and footers in the
10607 export.  Affects only those back-end formats that have such sections---like
10608 @code{<head>...</head>} in HTML.
10610 @item C-s
10611 @vindex org-export-initial-scope
10612 Toggle sub-tree export.  When turned on, Org exports only the sub-tree starting
10613 from the cursor position at the time the export dispatcher was invoked.  Org
10614 uses the top heading of this sub-tree as the document's title.  If the cursor
10615 is not on a heading, Org uses the nearest enclosing header.  If the cursor is
10616 in the document preamble, Org signals an error and aborts export.
10618 To make the sub-tree export the default, customize the variable,
10619 @code{org-export-initial-scope}.
10621 @item C-v
10622 Toggle visible-only export.  Useful for exporting only visible parts of an
10623 Org document by adjusting outline visibility settings.
10624 @end table
10626 @node Export settings
10627 @section Export settings
10628 @cindex Export, settings
10630 @cindex #+OPTIONS
10631 Export options can be set: globally with variables; for an individual file by
10632 making variables buffer-local with in-buffer settings (@pxref{In-buffer
10633 settings}), by setting individual keywords, or by specifying them in a
10634 compact form with the @code{#+OPTIONS} keyword; or for a tree by setting
10635 properties (@pxref{Properties and columns}).  Options set at a specific level
10636 override options set at a more general level.
10638 @cindex #+SETUPFILE
10639 In-buffer settings may appear anywhere in the file, either directly or
10640 indirectly through a file included using @samp{#+SETUPFILE: filename or URL}
10641 syntax.  Option keyword sets tailored to a particular back-end can be
10642 inserted from the export dispatcher (@pxref{The export dispatcher}) using the
10643 @code{Insert template} command by pressing @key{#}.  To insert keywords
10644 individually, a good way to make sure the keyword is correct is to type
10645 @code{#+} and then to use @kbd{M-@key{TAB}}@footnote{Many desktops intercept
10646 @kbd{M-TAB} to switch windows.  Use @kbd{C-M-i} or @kbd{@key{ESC} @key{TAB}}
10647 instead.} for completion.
10649 The export keywords available for every back-end, and their equivalent global
10650 variables, include:
10652 @table @samp
10653 @item AUTHOR
10654 @cindex #+AUTHOR
10655 @vindex user-full-name
10656 The document author (@code{user-full-name}).
10658 @item CREATOR
10659 @cindex #+CREATOR
10660 @vindex org-export-creator-string
10661 Entity responsible for output generation (@code{org-export-creator-string}).
10663 @item DATE
10664 @cindex #+DATE
10665 @vindex org-export-date-timestamp-format
10666 A date or a time-stamp@footnote{The variable
10667 @code{org-export-date-timestamp-format} defines how this time-stamp will be
10668 exported.}.
10670 @item EMAIL
10671 @cindex #+EMAIL
10672 @vindex user-mail-address
10673 The email address (@code{user-mail-address}).
10675 @item LANGUAGE
10676 @cindex #+LANGUAGE
10677 @vindex org-export-default-language
10678 Language to use for translating certain strings
10679 (@code{org-export-default-language}).  With @samp{#+LANGUAGE: fr}, for
10680 example, Org translates @emph{Table of contents} to the French @emph{Table
10681 des matières}.
10683 @item SELECT_TAGS
10684 @cindex #+SELECT_TAGS
10685 @vindex org-export-select-tags
10686 The default value is @code{:export:}.  When a tree is tagged with
10687 @code{:export:} (@code{org-export-select-tags}), Org selects that tree and
10688 its sub-trees for export.  Org excludes trees with @code{:noexport:} tags,
10689 see below.  When selectively exporting files with @code{:export:} tags set,
10690 Org does not export any text that appears before the first headline.
10692 @item EXCLUDE_TAGS
10693 @cindex #+EXCLUDE_TAGS
10694 @vindex org-export-exclude-tags
10695 The default value is @code{:noexport:}.  When a tree is tagged with
10696 @code{:noexport:} (@code{org-export-exclude-tags}), Org excludes that tree
10697 and its sub-trees from export.  Entries tagged with @code{:noexport:} will be
10698 unconditionally excluded from the export, even if they have an
10699 @code{:export:} tag.  Even if a sub-tree is not exported, Org will execute any
10700 code blocks contained in them.
10702 @item TITLE
10703 @cindex #+TITLE
10704 @cindex document title
10705 Org displays this title.  For long titles, use multiple @code{#+TITLE} lines.
10707 @item EXPORT_FILE_NAME
10708 @cindex #+EXPORT_FILE_NAME
10709 The name of the output file to be generated.  Otherwise, Org generates the
10710 file name based on the buffer name and the extension based on the back-end
10711 format.
10712 @end table
10714 The @code{#+OPTIONS} keyword is a compact form.  To configure multiple
10715 options, use several @code{#+OPTIONS} lines.  @code{#+OPTIONS} recognizes the
10716 following arguments.
10718 @table @code
10719 @item ':
10720 @vindex org-export-with-smart-quotes
10721 Toggle smart quotes (@code{org-export-with-smart-quotes}).  Depending on the
10722 language used, when activated, Org treats pairs of double quotes as primary
10723 quotes, pairs of single quotes as secondary quotes, and single quote marks as
10724 apostrophes.
10726 @item *:
10727 Toggle emphasized text (@code{org-export-with-emphasize}).
10729 @item -:
10730 @vindex org-export-with-special-strings
10731 Toggle conversion of special strings
10732 (@code{org-export-with-special-strings}).
10734 @item ::
10735 @vindex org-export-with-fixed-width
10736 Toggle fixed-width sections
10737 (@code{org-export-with-fixed-width}).
10739 @item <:
10740 @vindex org-export-with-timestamps
10741 Toggle inclusion of time/date active/inactive stamps
10742 (@code{org-export-with-timestamps}).
10744 @item \n:
10745 @vindex org-export-preserve-breaks
10746 Toggles whether to preserve line breaks (@code{org-export-preserve-breaks}).
10748 @item ^:
10749 @vindex org-export-with-sub-superscripts
10750 Toggle @TeX{}-like syntax for sub- and superscripts.  If you write "^:@{@}",
10751 @samp{a_@{b@}} will be interpreted, but the simple @samp{a_b} will be left as
10752 it is (@code{org-export-with-sub-superscripts}).
10754 @item arch:
10755 @vindex org-export-with-archived-trees
10756 Configure how archived trees are exported.  When set to @code{headline}, the
10757 export process skips the contents and processes only the headlines
10758 (@code{org-export-with-archived-trees}).
10760 @item author:
10761 @vindex org-export-with-author
10762 Toggle inclusion of author name into exported file
10763 (@code{org-export-with-author}).
10765 @item broken-links:
10766 @vindex org-export-with-broken-links
10767 Toggles if Org should continue exporting upon finding a broken internal link.
10768 When set to @code{mark}, Org clearly marks the problem link in the output
10769 (@code{org-export-with-broken-links}).
10771 @item c:
10772 @vindex org-export-with-clocks
10773 Toggle inclusion of CLOCK keywords (@code{org-export-with-clocks}).
10775 @item creator:
10776 @vindex org-export-with-creator
10777 Toggle inclusion of creator information in the exported file
10778 (@code{org-export-with-creator}).
10780 @item d:
10781 @vindex org-export-with-drawers
10782 Toggles inclusion of drawers, or list of drawers to include, or list of
10783 drawers to exclude (@code{org-export-with-drawers}).
10785 @item date:
10786 @vindex org-export-with-date
10787 Toggle inclusion of a date into exported file (@code{org-export-with-date}).
10789 @item e:
10790 @vindex org-export-with-entities
10791 Toggle inclusion of entities (@code{org-export-with-entities}).
10793 @item email:
10794 @vindex org-export-with-email
10795 Toggle inclusion of the author's e-mail into exported file
10796 (@code{org-export-with-email}).
10798 @item f:
10799 @vindex org-export-with-footnotes
10800 Toggle the inclusion of footnotes (@code{org-export-with-footnotes}).
10802 @item H:
10803 @vindex org-export-headline-levels
10804 Set the number of headline levels for export
10805 (@code{org-export-headline-levels}).  Below that level, headlines are treated
10806 differently.  In most back-ends, they become list items.
10808 @item inline:
10809 @vindex org-export-with-inlinetasks
10810 Toggle inclusion of inlinetasks (@code{org-export-with-inlinetasks}).
10812 @item num:
10813 @vindex org-export-with-section-numbers
10814 @cindex property, UNNUMBERED
10815 Toggle section-numbers (@code{org-export-with-section-numbers}).  When set to
10816 number @samp{n}, Org numbers only those headlines at level @samp{n} or above.
10817 Set @code{UNNUMBERED} property to non-@code{nil} to disable numbering of
10818 heading and subheadings entirely.
10820 @item p:
10821 @vindex org-export-with-planning
10822 Toggle export of planning information (@code{org-export-with-planning}).
10823 ``Planning information'' comes from lines located right after the headline
10824 and contain any combination of these cookies: @code{SCHEDULED:},
10825 @code{DEADLINE:}, or @code{CLOSED:}.
10827 @item pri:
10828 @vindex org-export-with-priority
10829 Toggle inclusion of priority cookies (@code{org-export-with-priority}).
10831 @item prop:
10832 @vindex org-export-with-properties
10833 Toggle inclusion of property drawers, or list the properties to include
10834 (@code{org-export-with-properties}).
10836 @item stat:
10837 @vindex org-export-with-statistics-cookies
10838 Toggle inclusion of statistics cookies
10839 (@code{org-export-with-statistics-cookies}).
10841 @item tags:
10842 @vindex org-export-with-tags
10843 Toggle inclusion of tags, may also be @code{not-in-toc}
10844 (@code{org-export-with-tags}).
10846 @item tasks:
10847 @vindex org-export-with-tasks
10848 Toggle inclusion of tasks (TODO items); or @code{nil} to remove all tasks; or
10849 @code{todo} to remove DONE tasks; or list the keywords to keep
10850 (@code{org-export-with-tasks}).
10852 @item tex:
10853 @vindex org-export-with-latex
10854 @code{nil} does not export; @code{t} exports; @code{verbatim} keeps
10855 everything in verbatim (@code{org-export-with-latex}).
10857 @item timestamp:
10858 @vindex org-export-time-stamp-file
10859 Toggle inclusion of the creation time in the exported file
10860 (@code{org-export-time-stamp-file}).
10862 @item title:
10863 @vindex org-export-with-title
10864 Toggle inclusion of title (@code{org-export-with-title}).
10866 @item toc:
10867 @vindex org-export-with-toc
10868 Toggle inclusion of the table of contents, or set the level limit
10869 (@code{org-export-with-toc}).
10871 @item todo:
10872 @vindex org-export-with-todo-keywords
10873 Toggle inclusion of TODO keywords into exported text
10874 (@code{org-export-with-todo-keywords}).
10876 @item |:
10877 @vindex org-export-with-tables
10878 Toggle inclusion of tables (@code{org-export-with-tables}).
10880 @end table
10882 When exporting sub-trees, special node properties in them can override the
10883 above keywords.  They are special because they have an @samp{EXPORT_} prefix.
10884 For example, @samp{DATE} and @samp{EXPORT_FILE_NAME} keywords become,
10885 respectively, @samp{EXPORT_DATE} and @samp{EXPORT_FILE_NAME}.  Except for
10886 @samp{SETUPFILE}, all other keywords listed above have an @samp{EXPORT_}
10887 equivalent.
10889 @cindex #+BIND
10890 @vindex org-export-allow-bind-keywords
10891 If @code{org-export-allow-bind-keywords} is non-@code{nil}, Emacs variables
10892 can become buffer-local during export by using the BIND keyword.  Its syntax
10893 is @samp{#+BIND: variable value}.  This is particularly useful for in-buffer
10894 settings that cannot be changed using keywords.
10896 @node Table of contents
10897 @section Table of contents
10898 @cindex table of contents
10899 @cindex list of tables
10900 @cindex list of listings
10902 @vindex org-export-with-toc
10903 The table of contents includes all @emph{numbered} headlines in the document.
10904 Its depth is therefore the same as the headline levels in the file.  If you
10905 need to use a different depth, or turn it off entirely, set the
10906 @code{org-export-with-toc} variable accordingly.  You can achieve the same on
10907 a per file basis, using the following @samp{toc} item in @samp{#+OPTIONS}
10908 keyword:
10910 @example
10911 #+OPTIONS: toc:2          @r{only include two levels in TOC}
10912 #+OPTIONS: toc:nil        @r{no default TOC at all}
10913 @end example
10915 @cindex #+TOC
10916 Org normally inserts the table of contents directly before the first headline
10917 of the file.  To move the table of contents to a different location, first
10918 turn off the default with @code{org-export-with-toc} variable or with
10919 @code{#+OPTIONS: toc:nil}.  Then insert @code{#+TOC: headlines N} at the
10920 desired location(s).
10922 @example
10923 #+OPTIONS: toc:nil        @r{no default TOC}
10925 #+TOC: headlines 2        @r{insert TOC here, with two headline levels}
10926 @end example
10928 To adjust the TOC depth for a specific section of the Org document, append an
10929 additional @samp{local} parameter.  This parameter becomes a relative depth
10930 for the current level.
10932 Note that for this feature to work properly in @LaTeX{} export, the Org file
10933 requires the inclusion of the @code{titletoc} package.  Because of
10934 compatibility issues, @code{titletoc} has to be loaded @emph{before}
10935 @code{hyperref}.  Customize the @code{org-latex-default-packages-alist}
10936 variable.
10938 @example
10939 * Section #+TOC: headlines 1 local @r{insert local TOC, with direct children
10940 only}
10941 @end example
10943 Use the @code{TOC} keyword to generate list of tables (resp.@: all listings)
10944 with captions.
10946 @example
10947 #+TOC: listings           @r{build a list of listings}
10948 #+TOC: tables             @r{build a list of tables}
10949 @end example
10951 @cindex property, ALT_TITLE
10952 Normally Org uses the headline for its entry in the table of contents.  But
10953 with @code{ALT_TITLE} property, a different entry can be specified for the
10954 table of contents.
10956 @node Include files
10957 @section Include files
10958 @cindex include files, during export
10959 Include other files during export.  For example, to include your @file{.emacs}
10960 file, you could use:
10961 @cindex #+INCLUDE
10963 @example
10964 #+INCLUDE: "~/.emacs" src emacs-lisp
10965 @end example
10967 @noindent
10968 The first parameter is the file name to include.  The optional second
10969 parameter specifies the block type: @samp{example}, @samp{export} or
10970 @samp{src}.  The optional third parameter specifies the source code language
10971 to use for formatting the contents.  This is relevant to both @samp{export}
10972 and @samp{src} block types.
10974 If an include file is specified as having a markup language, Org neither
10975 checks for valid syntax nor changes the contents in any way.  For
10976 @samp{example} and @samp{src} blocks, Org code-escapes the contents before
10977 inclusion.
10979 If an include file is not specified as having any markup language, Org
10980 assumes it be in Org format and proceeds as usual with a few exceptions.  Org
10981 makes the footnote labels (@pxref{Footnotes}) in the included file local to
10982 that file.  The contents of the included file will belong to the same
10983 structure---headline, item---containing the @code{INCLUDE} keyword.  In
10984 particular, headlines within the file will become children of the current
10985 section.  That behavior can be changed by providing an additional keyword
10986 parameter, @code{:minlevel}.  It shifts the headlines in the included file to
10987 become the lowest level.  For example, this syntax makes the included file
10988 a sibling of the current top-level headline:
10990 @example
10991 #+INCLUDE: "~/my-book/chapter2.org" :minlevel 1
10992 @end example
10994 Inclusion of only portions of files are specified using ranges parameter with
10995 @code{:lines} keyword.  The line at the upper end of the range will not be
10996 included.  The start and/or the end of the range may be omitted to use the
10997 obvious defaults.
10999 @example
11000 #+INCLUDE: "~/.emacs" :lines "5-10"   @r{Include lines 5 to 10, 10 excluded}
11001 #+INCLUDE: "~/.emacs" :lines "-10"    @r{Include lines 1 to 10, 10 excluded}
11002 #+INCLUDE: "~/.emacs" :lines "10-"    @r{Include lines from 10 to EOF}
11003 @end example
11005 Inclusions may specify a file-link to extract an object matched by
11006 @code{org-link-search}@footnote{Note that
11007 @code{org-link-search-must-match-exact-headline} is locally bound to
11008 non-@code{nil}.  Therefore, @code{org-link-search} only matches headlines and
11009 named elements.}  (@pxref{Search options}).
11011 To extract only the contents of the matched object, set @code{:only-contents}
11012 property to non-@code{nil}.  This will omit any planning lines or property
11013 drawers.  The ranges for @code{:lines} keyword are relative to the requested
11014 element.  Some examples:
11016 @example
11017 #+INCLUDE: "./paper.org::#theory" :only-contents t
11018    @r{Include the body of the heading with the custom id @samp{theory}}
11019 #+INCLUDE: "./paper.org::mytable"  @r{Include named element.}
11020 #+INCLUDE: "./paper.org::*conclusion" :lines 1-20
11021    @r{Include the first 20 lines of the headline named @samp{conclusion}.}
11022 @end example
11024 @table @kbd
11025 @kindex C-c '
11026 @item C-c '
11027 Visit the include file at point.
11028 @end table
11030 @node Macro replacement
11031 @section Macro replacement
11032 @cindex macro replacement, during export
11033 @cindex #+MACRO
11035 @vindex org-export-global-macros
11036 Macros replace text snippets during export.  Macros are defined globally in
11037 @code{org-export-global-macros}, or document-wise with the following syntax:
11039 @example
11040 #+MACRO: name   replacement text $1, $2 are arguments
11041 @end example
11043 @noindent which can be referenced using
11044 @code{@{@{@{name(arg1, arg2)@}@}@}}@footnote{Since commas separate the
11045 arguments, commas within arguments have to be escaped with the backslash
11046 character.  So only those backslash characters before a comma need escaping
11047 with another backslash character.}.
11049 Org recognizes macro references in following Org markup areas: paragraphs,
11050 headlines, verse blocks, tables cells and lists.  Org also recognizes macro
11051 references in keywords, such as @code{#+CAPTION}, @code{#+TITLE},
11052 @code{#+AUTHOR}, @code{#+DATE}, and for some back-end specific export
11053 options.
11055 Org comes with following pre-defined macros:
11057 @table @code
11058 @item @{@{@{title@}@}@}
11059 @itemx @{@{@{author@}@}@}
11060 @itemx @{@{@{email@}@}@}
11061 @cindex title, macro
11062 @cindex author, macro
11063 @cindex email, macro
11064 Org replaces these macro references with available information at the time of
11065 export.
11067 @item @{@{@{date@}@}@}
11068 @itemx @{@{@{date(@var{FORMAT})@}@}@}
11069 @cindex date, macro
11070 This macro refers to the @code{#+DATE} keyword.  @var{FORMAT} is an optional
11071 argument to the @code{@{@{@{date@}@}@}} macro that will be used only if
11072 @code{#+DATE} is a single timestamp.  @var{FORMAT} should be a format string
11073 understood by @code{format-time-string}.
11075 @item @{@{@{time(@var{FORMAT})@}@}@}
11076 @itemx @{@{@{modification-time(@var{FORMAT}, @var{VC})@}@}@}
11077 @cindex time, macro
11078 @cindex modification time, macro
11079 These macros refer to the document's date and time of export and date and
11080 time of modification.  @var{FORMAT} is a string understood by
11081 @code{format-time-string}.  If the second argument to the
11082 @code{modification-time} macro is non-@code{nil}, Org uses @file{vc.el} to
11083 retrieve the document's modification time from the version control
11084 system.  Otherwise Org reads the file attributes.
11086 @item @{@{@{input-file@}@}@}
11087 @cindex input file, macro
11088 This macro refers to the filename of the exported file.
11090 @item @{@{@{property(@var{PROPERTY-NAME})@}@}@}
11091 @itemx @{@{@{property(@var{PROPERTY-NAME},@var{SEARCH-OPTION})@}@}@}
11092 @cindex property, macro
11093 This macro returns the value of property @var{PROPERTY-NAME} in the current
11094 entry.  If @var{SEARCH-OPTION} (@pxref{Search options}) refers to a remote
11095 entry, that will be used instead.
11097 @item @{@{@{n@}@}@}
11098 @itemx @{@{@{n(@var{NAME})@}@}@}
11099 @itemx @{@{@{n(@var{NAME},@var{ACTION})@}@}@}
11100 @cindex n, macro
11101 @cindex counter, macro
11102 This macro implements custom counters by returning the number of times the
11103 macro has been expanded so far while exporting the buffer.  You can create
11104 more than one counter using different @var{NAME} values.  If @var{ACTION} is
11105 @code{-}, previous value of the counter is held, i.e. the specified counter
11106 is not incremented.  If the value is a number, the specified counter is set
11107 to that value.  If it is any other non-empty string, the specified counter is
11108 reset to 1.  You may leave @var{NAME} empty to reset the default counter.
11109 @end table
11111 The surrounding brackets can be made invisible by setting
11112 @code{org-hide-macro-markers} non-@code{nil}.
11114 Org expands macros at the very beginning of the export process.
11116 @node Comment lines
11117 @section Comment lines
11118 @cindex exporting, not
11120 @cindex comment lines
11121 Lines starting with zero or more whitespace characters followed by one
11122 @samp{#} and a whitespace are treated as comments and, as such, are not
11123 exported.
11125 @cindex #+BEGIN_COMMENT
11126 Likewise, regions surrounded by @samp{#+BEGIN_COMMENT}
11127 ... @samp{#+END_COMMENT} are not exported.
11129 @cindex comment trees
11130 Finally, a @samp{COMMENT} keyword at the beginning of an entry, but after any
11131 other keyword or priority cookie, comments out the entire subtree.  In this
11132 case, the subtree is not exported and no code block within it is executed
11133 either@footnote{For a less drastic behavior, consider using a select tag
11134 (@pxref{Export settings}) instead.}.  The command below helps changing the
11135 comment status of a headline.
11137 @table @kbd
11138 @kindex C-c ;
11139 @item C-c ;
11140 Toggle the @samp{COMMENT} keyword at the beginning of an entry.
11141 @end table
11143 @node ASCII/Latin-1/UTF-8 export
11144 @section ASCII/Latin-1/UTF-8 export
11145 @cindex ASCII export
11146 @cindex Latin-1 export
11147 @cindex UTF-8 export
11149 ASCII export produces an output file containing only plain ASCII characters.
11150 This is the most simplest and direct text output.  It does not contain any
11151 Org markup either.  Latin-1 and UTF-8 export use additional characters and
11152 symbols available in these encoding standards.  All three of these export
11153 formats offer the most basic of text output for maximum portability.
11155 @vindex org-ascii-text-width
11156 On export, Org fills and justifies text according to the text width set in
11157 @code{org-ascii-text-width}.
11159 @vindex org-ascii-links-to-notes
11160 Org exports links using a footnote-like style where the descriptive part is
11161 in the text and the link is in a note before the next heading.  See the
11162 variable @code{org-ascii-links-to-notes} for details.
11164 @subheading ASCII export commands
11166 @table @kbd
11167 @orgcmd{C-c C-e t a/l/u,org-ascii-export-to-ascii}
11168 Export as an ASCII file with a @file{.txt} extension.  For @file{myfile.org},
11169 Org exports to @file{myfile.txt}, overwriting without warning.  For
11170 @file{myfile.txt}, Org exports to @file{myfile.txt.txt} in order to prevent
11171 data loss.
11172 @orgcmd{C-c C-e t A/L/U,org-ascii-export-as-ascii}
11173 Export to a temporary buffer.  Does not create a file.
11174 @end table
11176 @subheading ASCII specific export settings
11177 The ASCII export back-end has one extra keyword for customizing ASCII output.
11178 Setting this keyword works similar to the general options (@pxref{Export
11179 settings}).
11181 @table @samp
11182 @item SUBTITLE
11183 @cindex #+SUBTITLE (ASCII)
11184 The document subtitle.  For long subtitles, use multiple @code{#+SUBTITLE}
11185 lines in the Org file.  Org prints them on one continuous line, wrapping into
11186 multiple lines if necessary.
11187 @end table
11189 @subheading Header and sectioning structure
11191 Org converts the first three outline levels into headlines for ASCII export.
11192 The remaining levels are turned into lists.  To change this cut-off point
11193 where levels become lists, @pxref{Export settings}.
11195 @subheading Quoting ASCII text
11197 To insert text within the Org file by the ASCII back-end, use one the
11198 following constructs, inline, keyword, or export block:
11200 @cindex #+ASCII
11201 @cindex #+BEGIN_EXPORT ascii
11202 @example
11203 Inline text @@@@ascii:and additional text@@@@ within a paragraph.
11205 #+ASCII: Some text
11207 #+BEGIN_EXPORT ascii
11208 Org exports text in this block only when using ASCII back-end.
11209 #+END_EXPORT
11210 @end example
11212 @subheading ASCII specific attributes
11213 @cindex #+ATTR_ASCII
11214 @cindex horizontal rules, in ASCII export
11216 ASCII back-end recognizes only one attribute, @code{:width}, which specifies
11217 the width of an horizontal rule in number of characters.  The keyword and
11218 syntax for specifying widths is:
11220 @example
11221 #+ATTR_ASCII: :width 10
11222 -----
11223 @end example
11225 @subheading ASCII special blocks
11226 @cindex special blocks, in ASCII export
11227 @cindex #+BEGIN_JUSTIFYLEFT
11228 @cindex #+BEGIN_JUSTIFYRIGHT
11230 Besides @code{#+BEGIN_CENTER} blocks (@pxref{Paragraphs}), ASCII back-end has
11231 these two left and right justification blocks:
11233 @example
11234 #+BEGIN_JUSTIFYLEFT
11235 It's just a jump to the left...
11236 #+END_JUSTIFYLEFT
11238 #+BEGIN_JUSTIFYRIGHT
11239 ...and then a step to the right.
11240 #+END_JUSTIFYRIGHT
11241 @end example
11243 @node Beamer export
11244 @section Beamer export
11245 @cindex Beamer export
11247 Org uses @emph{Beamer} export to convert an Org file tree structure into a
11248 high-quality interactive slides for presentations.  @emph{Beamer} is a
11249 @LaTeX{} document class for creating presentations in PDF, HTML, and other
11250 popular display formats.
11252 @menu
11253 * Beamer export commands::      For creating Beamer documents.
11254 * Beamer specific export settings::  For customizing Beamer export.
11255 * Sectioning Frames and Blocks in Beamer::  For composing Beamer slides.
11256 * Beamer specific syntax::      For using in Org documents.
11257 * Editing support::             For using helper functions.
11258 * A Beamer example::            A complete presentation.
11259 @end menu
11261 @node Beamer export commands
11262 @subsection Beamer export commands
11264 @table @kbd
11265 @orgcmd{C-c C-e l b,org-beamer-export-to-latex}
11266 Export as @LaTeX{} file with a @file{.tex} extension.  For @file{myfile.org},
11267 Org exports to @file{myfile.tex}, overwriting without warning.
11268 @orgcmd{C-c C-e l B,org-beamer-export-as-latex}
11269 Export to a temporary buffer.  Does not create a file.
11270 @orgcmd{C-c C-e l P,org-beamer-export-to-pdf}
11271 Export as @LaTeX{} file and then convert it to PDF format.
11272 @item C-c C-e l O
11273 Export as @LaTeX{} file, convert it to PDF format, and then open the PDF
11274 file.
11275 @end table
11277 @node Beamer specific export settings
11278 @subsection Beamer specific export settings
11280 Beamer export back-end has several additional keywords for customizing Beamer
11281 output.  These keywords work similar to the general options settings
11282 (@pxref{Export settings}).
11284 @table @samp
11285 @item BEAMER_THEME
11286 @cindex #+BEAMER_THEME
11287 @vindex org-beamer-theme
11288 The Beamer layout theme (@code{org-beamer-theme}).  Use square brackets for
11289 options.  For example:
11290 @smallexample
11291 #+BEAMER_THEME: Rochester [height=20pt]
11292 @end smallexample
11294 @item BEAMER_FONT_THEME
11295 @cindex #+BEAMER_FONT_THEME
11296 The Beamer font theme.
11298 @item BEAMER_INNER_THEME
11299 @cindex #+BEAMER_INNER_THEME
11300 The Beamer inner theme.
11302 @item BEAMER_OUTER_THEME
11303 @cindex #+BEAMER_OUTER_THEME
11304 The Beamer outer theme.
11306 @item BEAMER_HEADER
11307 @cindex #+BEAMER_HEADER
11308 Arbitrary lines inserted in the preamble, just before the @samp{hyperref}
11309 settings.
11311 @item DESCRIPTION
11312 @cindex #+DESCRIPTION (Beamer)
11313 The document description.  For long descriptions, use multiple
11314 @code{#+DESCRIPTION} keywords.  By default, @samp{hyperref} inserts
11315 @code{#+DESCRIPTION} as metadata.  Use @code{org-latex-hyperref-template} to
11316 configure document metadata.  Use @code{org-latex-title-command} to configure
11317 typesetting of description as part of front matter.
11319 @item KEYWORDS
11320 @cindex #+KEYWORDS (Beamer)
11321 The keywords for defining the contents of the document.  Use multiple
11322 @code{#+KEYWORDS} lines if necessary.  By default, @samp{hyperref} inserts
11323 @code{#+KEYWORDS} as metadata.  Use @code{org-latex-hyperref-template} to
11324 configure document metadata.  Use @code{org-latex-title-command} to configure
11325 typesetting of keywords as part of front matter.
11327 @item SUBTITLE
11328 @cindex #+SUBTITLE (Beamer)
11329 @vindex org-beamer-subtitle-format
11330 Document's subtitle.  For typesetting, use @code{org-beamer-subtitle-format}
11331 string.  Use @code{org-latex-hyperref-template} to configure document
11332 metadata.  Use @code{org-latex-title-command} to configure typesetting of
11333 subtitle as part of front matter.
11334 @end table
11336 @node Sectioning Frames and Blocks in Beamer
11337 @subsection Sectioning, Frames and Blocks in Beamer
11339 Org transforms heading levels into Beamer's sectioning elements, frames and
11340 blocks.  Any Org tree with a not-too-deep-level nesting should in principle
11341 be exportable as a Beamer presentation.
11343 @itemize @minus
11344 @item
11345 @vindex org-beamer-frame-level
11346 Org headlines become Beamer frames when the heading level in Org is equal to
11347 @code{org-beamer-frame-level} or @code{H} value in an @code{OPTIONS} line
11348 (@pxref{Export settings}).
11350 @cindex property, BEAMER_ENV
11351 Org overrides headlines to frames conversion for the current tree of an Org
11352 file if it encounters the @code{BEAMER_ENV} property set to @code{frame} or
11353 @code{fullframe}.  Org ignores whatever @code{org-beamer-frame-level} happens
11354 to be for that headline level in the Org tree.  In Beamer terminology, a
11355 @code{fullframe} is a frame without its title.
11357 @item
11358 @vindex org-beamer-environments-default
11359 @vindex org-beamer-environments-extra
11360 Org exports a Beamer frame's objects as @code{block} environments.  Org can
11361 enforce wrapping in special block types when @code{BEAMER_ENV} property is
11362 set@footnote{If @code{BEAMER_ENV} is set, Org export adds
11363 @code{:B_environment:} tag to make it visible.  The tag serves as a visual
11364 aid and has no semantic relevance.}.  For valid values see
11365 @code{org-beamer-environments-default}.  To add more values, see
11366 @code{org-beamer-environments-extra}.
11368 @item
11369 @cindex property, BEAMER_REF
11370 If @code{BEAMER_ENV} is set to @code{appendix}, Org exports the entry as an
11371 appendix.  When set to @code{note}, Org exports the entry as a note within
11372 the frame or between frames, depending on the entry's heading level.  When
11373 set to @code{noteNH}, Org exports the entry as a note without its title.
11374 When set to @code{againframe}, Org exports the entry with @code{\againframe}
11375 command, which makes setting the @code{BEAMER_REF} property mandatory because
11376 @code{\againframe} needs frame to resume.
11378 When @code{ignoreheading} is set, Org export ignores the entry's headline but
11379 not its content.  This is useful for inserting content between frames.  It is
11380 also useful for properly closing a @code{column} environment.
11381 @end itemize
11383 @cindex property, BEAMER_ACT
11384 @cindex property, BEAMER_OPT
11385 When @code{BEAMER_ACT} is set for a headline, Org export translates that
11386 headline as an overlay or action specification.  When enclosed in square
11387 brackets, Org export makes the overlay specification a default.  Use
11388 @code{BEAMER_OPT} to set any options applicable to the current Beamer frame
11389 or block.  The Beamer export back-end wraps with appropriate angular or
11390 square brackets.  It also adds the @code{fragile} option for any code that may
11391 require a verbatim block.
11393 @cindex property, BEAMER_COL
11394 To create a column on the Beamer slide, use the @code{BEAMER_COL} property
11395 for its headline in the Org file.  Set the value of @code{BEAMER_COL} to a
11396 decimal number representing the fraction of the total text width.  Beamer
11397 export uses this value to set the column's width and fills the column with
11398 the contents of the Org entry.  If the Org entry has no specific environment
11399 defined, Beamer export ignores the heading.  If the Org entry has a defined
11400 environment, Beamer export uses the heading as title.  Behind the scenes,
11401 Beamer export automatically handles @LaTeX{} column separations for
11402 contiguous headlines.  To manually adjust them for any unique configurations
11403 needs, use the @code{BEAMER_ENV} property.
11405 @node Beamer specific syntax
11406 @subsection Beamer specific syntax
11407 Since Org's Beamer export back-end is an extension of the @LaTeX{} back-end,
11408 it recognizes other @LaTeX{} specific syntax---for example, @samp{#+LATEX:}
11409 or @samp{#+ATTR_LATEX:}.  @xref{@LaTeX{} export}, for details.
11411 Beamer export wraps the table of contents generated with @code{toc:t}
11412 @code{OPTION} keyword in a @code{frame} environment.  Beamer export does not
11413 wrap the table of contents generated with @code{TOC} keyword (@pxref{Table of
11414 contents}).  Use square brackets for specifying options.
11416 @example
11417 #+TOC: headlines [currentsection]
11418 @end example
11420 Insert Beamer-specific code using the following constructs:
11422 @cindex #+BEAMER
11423 @cindex #+BEGIN_EXPORT beamer
11424 @example
11425 #+BEAMER: \pause
11427 #+BEGIN_EXPORT beamer
11428 Only Beamer export back-end will export this line.
11429 #+END_BEAMER
11431 Text @@@@beamer:some code@@@@ within a paragraph.
11432 @end example
11434 Inline constructs, such as the last one above, are useful for adding overlay
11435 specifications to objects with @code{bold}, @code{item}, @code{link},
11436 @code{radio-target} and @code{target} types.  Enclose the value in angular
11437 brackets and place the specification at the beginning the object as shown in
11438 this example:
11440 @example
11441 A *@@@@beamer:<2->@@@@useful* feature
11442 @end example
11444 @cindex #+ATTR_BEAMER
11445 Beamer export recognizes the @code{ATTR_BEAMER} keyword with the following
11446 attributes from Beamer configurations: @code{:environment} for changing local
11447 Beamer environment, @code{:overlay} for specifying Beamer overlays in angular
11448 or square brackets, and @code{:options} for inserting optional arguments.
11450 @example
11451 #+ATTR_BEAMER: :environment nonindentlist
11452 - item 1, not indented
11453 - item 2, not indented
11454 - item 3, not indented
11455 @end example
11457 @example
11458 #+ATTR_BEAMER: :overlay <+->
11459 - item 1
11460 - item 2
11461 @end example
11463 @example
11464 #+ATTR_BEAMER: :options [Lagrange]
11465 Let $G$ be a finite group, and let $H$ be
11466 a subgroup of $G$.  Then the order of $H$ divides the order of $G$.
11467 @end example
11469 @node Editing support
11470 @subsection Editing support
11473 The @code{org-beamer-mode} is a special minor mode for faster editing of
11474 Beamer documents.
11476 @example
11477 #+STARTUP: beamer
11478 @end example
11480 @table @kbd
11481 @orgcmd{C-c C-b,org-beamer-select-environment}
11482 The @code{org-beamer-mode} provides this key for quicker selections in Beamer
11483 normal environments, and for selecting the @code{BEAMER_COL} property.
11484 @end table
11486 @node A Beamer example
11487 @subsection A Beamer example
11489 Here is an example of an Org document ready for Beamer export.
11491 @example
11492 #+TITLE: Example Presentation
11493 #+AUTHOR: Carsten Dominik
11494 #+OPTIONS: H:2 toc:t num:t
11495 #+LATEX_CLASS: beamer
11496 #+LATEX_CLASS_OPTIONS: [presentation]
11497 #+BEAMER_THEME: Madrid
11498 #+COLUMNS: %45ITEM %10BEAMER_ENV(Env) %10BEAMER_ACT(Act) %4BEAMER_COL(Col) %8BEAMER_OPT(Opt)
11500 * This is the first structural section
11502 ** Frame 1
11503 *** Thanks to Eric Fraga                                           :B_block:
11504     :PROPERTIES:
11505     :BEAMER_COL: 0.48
11506     :BEAMER_ENV: block
11507     :END:
11508     for the first viable Beamer setup in Org
11509 *** Thanks to everyone else                                        :B_block:
11510     :PROPERTIES:
11511     :BEAMER_COL: 0.48
11512     :BEAMER_ACT: <2->
11513     :BEAMER_ENV: block
11514     :END:
11515     for contributing to the discussion
11516 **** This will be formatted as a beamer note                       :B_note:
11517      :PROPERTIES:
11518      :BEAMER_env: note
11519      :END:
11520 ** Frame 2 (where we will not use columns)
11521 *** Request
11522     Please test this stuff!
11523 @end example
11525 @node HTML export
11526 @section HTML export
11527 @cindex HTML export
11529 Org mode contains an HTML exporter with extensive HTML formatting compatible
11530 with XHTML 1.0 strict standard.
11532 @menu
11533 * HTML Export commands::        Invoking HTML export
11534 * HTML Specific export settings::  Settings for HTML export
11535 * HTML doctypes::               Exporting various (X)HTML flavors
11536 * HTML preamble and postamble::  Inserting preamble and postamble
11537 * Quoting HTML tags::           Using direct HTML in Org files
11538 * Links in HTML export::        Interpreting and formatting links
11539 * Tables in HTML export::       Formatting and modifying tables
11540 * Images in HTML export::       Inserting figures with HTML output
11541 * Math formatting in HTML export::  Handling math equations
11542 * Text areas in HTML export::   Showing an alternate approach, an example
11543 * CSS support::                 Styling HTML output
11544 * JavaScript support::          Folding scripting in the web browser
11545 @end menu
11548 @node HTML Export commands
11549 @subsection HTML export commands
11551 @table @kbd
11552 @orgcmd{C-c C-e h h,org-html-export-to-html}
11553 Export as HTML file with a @file{.html} extension.  For @file{myfile.org},
11554 Org exports to @file{myfile.html}, overwriting without warning.  @kbd{C-c C-e
11555 h o} Exports to HTML and opens it in a web browser.
11557 @orgcmd{C-c C-e h H,org-html-export-as-html}
11558 Exports to a temporary buffer.  Does not create a file.
11559 @end table
11561 @node HTML Specific export settings
11562 @subsection HTML Specific export settings
11563 HTML export has a number of keywords, similar to the general options settings
11564 described in @ref{Export settings}.
11566 @table @samp
11567 @item DESCRIPTION
11568 @cindex #+DESCRIPTION (HTML)
11569 This is the document's description, which the HTML exporter inserts it as a
11570 HTML meta tag in the HTML file.  For long descriptions, use multiple
11571 @code{#+DESCRIPTION} lines.  The exporter takes care of wrapping the lines
11572 properly.
11574 @item HTML_DOCTYPE
11575 @cindex #+HTML_DOCTYPE
11576 @vindex org-html-doctype
11577 Specify the document type, for example: HTML5 (@code{org-html-doctype}).
11579 @item HTML_CONTAINER
11580 @cindex #+HTML_CONTAINER
11581 @vindex org-html-container-element
11582 Specify the HTML container, such as @samp{div}, for wrapping sections and
11583 elements (@code{org-html-container-element}).
11585 @item HTML_LINK_HOME
11586 @cindex #+HTML_LINK_HOME
11587 @vindex org-html-link-home
11588 The URL for home link (@code{org-html-link-home}).
11590 @item HTML_LINK_UP
11591 @cindex #+HTML_LINK_UP
11592 @vindex org-html-link-up
11593 The URL for the up link of exported HTML pages (@code{org-html-link-up}).
11595 @item HTML_MATHJAX
11596 @cindex #+HTML_MATHJAX
11597 @vindex org-html-mathjax-options
11598 Options for MathJax (@code{org-html-mathjax-options}).  MathJax is used to
11599 typeset @LaTeX{} math in HTML documents.  @xref{Math formatting in HTML
11600 export}, for an example.
11602 @item HTML_HEAD
11603 @cindex #+HTML_HEAD
11604 @vindex org-html-head
11605 Arbitrary lines for appending to the HTML document's head
11606 (@code{org-html-head}).
11608 @item HTML_HEAD_EXTRA
11609 @cindex #+HTML_HEAD_EXTRA
11610 @vindex org-html-head-extra
11611 More arbitrary lines for appending to the HTML document's head
11612 (@code{org-html-head-extra}).
11614 @item KEYWORDS
11615 @cindex #+KEYWORDS (HTML)
11616 Keywords to describe the document's content.  HTML exporter inserts these
11617 keywords as HTML meta tags.  For long keywords, use multiple
11618 @code{#+KEYWORDS} lines.
11620 @item LATEX_HEADER
11621 @cindex #+LATEX_HEADER (HTML)
11622 Arbitrary lines for appending to the preamble; HTML exporter appends when
11623 transcoding @LaTeX{} fragments to images (@pxref{Math formatting in HTML
11624 export}).
11626 @item SUBTITLE
11627 @cindex #+SUBTITLE (HTML)
11628 The document's subtitle.  HTML exporter formats subtitle if document type is
11629 @samp{HTML5} and the CSS has a @samp{subtitle} class.
11630 @end table
11632 Some of these keywords are explained in more detail in the following sections
11633 of the manual.
11635 @node HTML doctypes
11636 @subsection HTML doctypes
11638 Org can export to various (X)HTML flavors.
11640 @vindex org-html-doctype
11641 @vindex org-html-doctype-alist
11642 Set the @code{org-html-doctype} variable for different (X)HTML variants.
11643 Depending on the variant, the HTML exporter adjusts the syntax of HTML
11644 conversion accordingly.  Org includes the following ready-made variants:
11646 @itemize
11647 @item
11648 ``html4-strict''
11649 @item
11650 ``html4-transitional''
11651 @item
11652 ``html4-frameset''
11653 @item
11654 ``xhtml-strict''
11655 @item
11656 ``xhtml-transitional''
11657 @item
11658 ``xhtml-frameset''
11659 @item
11660 ``xhtml-11''
11661 @item
11662 ``html5''
11663 @item
11664 ``xhtml5''
11665 @end itemize
11667 @noindent See the variable @code{org-html-doctype-alist} for details.
11668 The default is ``xhtml-strict''.
11670 @vindex org-html-html5-fancy
11671 @cindex HTML5, export new elements
11672 Org's HTML exporter does not by default enable new block elements introduced
11673 with the HTML5 standard.  To enable them, set @code{org-html-html5-fancy} to
11674 non-@code{nil}.  Or use an @code{OPTIONS} line in the file to set
11675 @code{html5-fancy}.  HTML5 documents can now have arbitrary @code{#+BEGIN}
11676 and @code{#+END} blocks.  For example:
11678 @example
11679 #+BEGIN_aside
11680 Lorem ipsum
11681 #+END_aside
11682 @end example
11684 Will export to:
11686 @example
11687 <aside>
11688   <p>Lorem ipsum</p>
11689 </aside>
11690 @end example
11692 While this:
11694 @example
11695 #+ATTR_HTML: :controls controls :width 350
11696 #+BEGIN_video
11697 #+HTML: <source src="movie.mp4" type="video/mp4">
11698 #+HTML: <source src="movie.ogg" type="video/ogg">
11699 Your browser does not support the video tag.
11700 #+END_video
11701 @end example
11703 Exports to:
11705 @example
11706 <video controls="controls" width="350">
11707   <source src="movie.mp4" type="video/mp4">
11708   <source src="movie.ogg" type="video/ogg">
11709   <p>Your browser does not support the video tag.</p>
11710 </video>
11711 @end example
11713 @vindex org-html-html5-elements
11714 When special blocks do not have a corresponding HTML5 element, the HTML
11715 exporter reverts to standard translation (see
11716 @code{org-html-html5-elements}).  For example, @code{#+BEGIN_lederhosen}
11717 exports to @samp{<div class="lederhosen">}.
11719 Special blocks cannot have headlines.  For the HTML exporter to wrap the
11720 headline and its contents in @samp{<section>} or @samp{<article>} tags, set
11721 the @code{HTML_CONTAINER} property for the headline.
11723 @node HTML preamble and postamble
11724 @subsection HTML preamble and postamble
11725 @vindex org-html-preamble
11726 @vindex org-html-postamble
11727 @vindex org-html-preamble-format
11728 @vindex org-html-postamble-format
11729 @vindex org-html-validation-link
11730 @vindex org-export-creator-string
11731 @vindex org-export-time-stamp-file
11733 The HTML exporter has delineations for preamble and postamble.  The default
11734 value for @code{org-html-preamble} is @code{t}, which makes the HTML exporter
11735 insert the preamble.  See the variable @code{org-html-preamble-format} for
11736 the format string.
11738 Set @code{org-html-preamble} to a string to override the default format
11739 string.  If the string is a function, the HTML exporter expects the function
11740 to return a string upon execution.  The HTML exporter inserts this string in
11741 the preamble.  The HTML exporter will not insert a preamble if
11742 @code{org-html-preamble} is set @code{nil}.
11744 The default value for @code{org-html-postamble} is @code{auto}, which makes
11745 the HTML exporter build a postamble from looking up author's name, email
11746 address, creator's name, and date.  Set @code{org-html-postamble} to @code{t}
11747 to insert the postamble in the format specified in the
11748 @code{org-html-postamble-format} variable.  The HTML exporter will not insert
11749 a postamble if @code{org-html-postamble} is set to @code{nil}.
11751 @node Quoting HTML tags
11752 @subsection Quoting HTML tags
11754 The HTML export back-end transforms @samp{<} and @samp{>} to @samp{&lt;} and
11755 @samp{&gt;}.  To include raw HTML code in the Org file so the HTML export
11756 back-end can insert that HTML code in the output, use this inline syntax:
11757 @samp{@@@@html:}.  For example: @samp{@@@@html:<b>@@@@bold
11758 text@@@@html:</b>@@@@}.  For larger raw HTML code blocks, use these HTML
11759 export code blocks:
11761 @cindex #+HTML
11762 @cindex #+BEGIN_EXPORT html
11763 @example
11764 #+HTML: Literal HTML code for export
11765 @end example
11767 @noindent or
11768 @cindex #+BEGIN_EXPORT html
11770 @example
11771 #+BEGIN_EXPORT html
11772 All lines between these markers are exported literally
11773 #+END_EXPORT
11774 @end example
11777 @node Links in HTML export
11778 @subsection Links in HTML export
11780 @cindex links, in HTML export
11781 @cindex internal links, in HTML export
11782 @cindex external links, in HTML export
11783 @vindex org-html-link-org-files-as-html
11784 The HTML export back-end transforms Org's internal links (@pxref{Internal
11785 links}) to equivalent HTML links in the output.  The back-end similarly
11786 handles Org's automatic links created by radio targets (@pxref{Radio
11787 targets}) similarly.  For Org links to external files, the back-end
11788 transforms the links to @emph{relative} paths.
11790 For Org links to other @file{.org} files, the back-end automatically changes
11791 the file extension to @file{.html} and makes file paths relative.  If the
11792 @file{.org} files have an equivalent @file{.html} version at the same
11793 location, then the converted links should work without any further manual
11794 intervention.  However, to disable this automatic path translation, set
11795 @code{org-html-link-org-files-as-html} to @code{nil}.  When disabled, the
11796 HTML export back-end substitutes the @samp{id:}-based links in the HTML
11797 output.  For more about linking files when publishing to a directory,
11798 @pxref{Publishing links}.
11800 Org files can also have special directives to the HTML export back-end.  For
11801 example, by using @code{#+ATTR_HTML} lines to specify new format attributes
11802 to @code{<a>} or @code{<img>} tags.  This example shows changing the link's
11803 @code{title} and @code{style}:
11805 @cindex #+ATTR_HTML
11806 @example
11807 #+ATTR_HTML: :title The Org mode homepage :style color:red;
11808 [[http://orgmode.org]]
11809 @end example
11811 @node Tables in HTML export
11812 @subsection Tables in HTML export
11813 @cindex tables, in HTML
11814 @vindex org-html-table-default-attributes
11816 The HTML export back-end uses @code{org-html-table-default-attributes} when
11817 exporting Org tables to HTML.  By default, the exporter does not draw frames
11818 and cell borders.  To change for this for a table, use the following lines
11819 before the table in the Org file:
11821 @cindex #+CAPTION
11822 @cindex #+ATTR_HTML
11823 @example
11824 #+CAPTION: This is a table with lines around and between cells
11825 #+ATTR_HTML: :border 2 :rules all :frame border
11826 @end example
11828 The HTML export back-end preserves column groupings in Org tables
11829 (@pxref{Column groups}) when exporting to HTML.
11831 Additional options for customizing tables for  HTML export.
11833 @table @code
11834 @vindex org-html-table-align-individual-fields
11835 @item org-html-table-align-individual-fields
11836 Non-@code{nil} attaches style attributes for alignment to each table field.
11838 @vindex org-html-table-caption-above
11839 @item org-html-table-caption-above
11840 Non-@code{nil} places caption string at the beginning of the table.
11842 @vindex org-html-table-data-tags
11843 @item org-html-table-data-tags
11844 Opening and ending tags for table data fields.
11846 @vindex org-html-table-default-attributes
11847 @item org-html-table-default-attributes
11848 Default attributes and values for table tags.
11850 @vindex org-html-table-header-tags
11851 @item org-html-table-header-tags
11852 Opening and ending tags for table's header fields.
11854 @vindex org-html-table-row-tags
11855 @item org-html-table-row-tags
11856 Opening and ending tags for table rows.
11858 @vindex org-html-table-use-header-tags-for-first-column
11859 @item org-html-table-use-header-tags-for-first-column
11860 Non-@code{nil} formats column one in tables with header tags.
11861 @end table
11863 @node Images in HTML export
11864 @subsection Images in HTML export
11866 @cindex images, inline in HTML
11867 @cindex inlining images in HTML
11868 @vindex org-html-inline-images
11870 The HTML export back-end has features to convert Org image links to HTML
11871 inline images and HTML clickable image links.
11873 When the link in the Org file has no description, the HTML export back-end by
11874 default in-lines that image.  For example: @samp{[[file:myimg.jpg]]} is
11875 in-lined, while @samp{[[file:myimg.jpg][the image]]} links to the text,
11876 @samp{the image}.
11878 For more details, see the variable @code{org-html-inline-images}.
11880 On the other hand, if the description part of the Org link is itself another
11881 link, such as @code{file:} or @code{http:} URL pointing to an image, the HTML
11882 export back-end in-lines this image and links to the main image.  This Org
11883 syntax enables the back-end to link low-resolution thumbnail to the
11884 high-resolution version of the image, as shown in this example:
11886 @example
11887 [[file:highres.jpg][file:thumb.jpg]]
11888 @end example
11890 To change attributes of in-lined images, use @code{#+ATTR_HTML} lines in the
11891 Org file.  This example shows realignment to right, and adds @code{alt} and
11892 @code{title} attributes in support of text viewers and modern web accessibility
11893 standards.
11895 @cindex #+CAPTION
11896 @cindex #+ATTR_HTML
11897 @example
11898 #+CAPTION: A black cat stalking a spider
11899 #+ATTR_HTML: :alt cat/spider image :title Action! :align right
11900 [[./img/a.jpg]]
11901 @end example
11903 @noindent
11904 The HTML export back-end copies the @code{http} links from the Org file as
11907 @node Math formatting in HTML export
11908 @subsection Math formatting in HTML export
11909 @cindex MathJax
11910 @cindex dvipng
11911 @cindex dvisvgm
11912 @cindex imagemagick
11914 @LaTeX{} math snippets (@pxref{@LaTeX{} fragments}) can be displayed in two
11915 different ways on HTML pages.  The default is to use
11916 @uref{http://www.mathjax.org, MathJax} which should work out of the box with
11917 Org@footnote{By default Org loads MathJax from @uref{https://cdnjs.com, cdnjs.com} as
11918 recommended by @uref{http://www.mathjax.org, MathJax}.}.  Some MathJax display
11919 options can be configured via @code{org-html-mathjax-options}, or in the
11920 buffer.  For example, with the following settings,
11921 @smallexample
11922 #+HTML_MATHJAX: align: left indent: 5em tagside: left font: Neo-Euler
11923 @end smallexample
11924 equation labels will be displayed on the left margin and equations will be
11925 five ems from the left margin.
11927 @noindent See the docstring of
11928 @code{org-html-mathjax-options} for all supported variables.  The MathJax
11929 template can be configure via @code{org-html-mathjax-template}.
11931 If you prefer, you can also request that @LaTeX{} fragments are processed
11932 into small images that will be inserted into the browser page.  Before the
11933 availability of MathJax, this was the default method for Org files.  This
11934 method requires that the @file{dvipng} program, @file{dvisvgm} or
11935 @file{imagemagick} suite is available on your system.  You can still get
11936 this processing with
11938 @example
11939 #+OPTIONS: tex:dvipng
11940 @end example
11942 @example
11943 #+OPTIONS: tex:dvisvgm
11944 @end example
11948 @example
11949 #+OPTIONS: tex:imagemagick
11950 @end example
11952 @node Text areas in HTML export
11953 @subsection Text areas in HTML export
11955 @cindex text areas, in HTML
11956 Before Org mode's Babel, one popular approach to publishing code in HTML was
11957 by using @code{:textarea}.  The advantage of this approach was that copying
11958 and pasting was built into browsers with simple JavaScript commands.  Even
11959 editing before pasting was made simple.
11961 The HTML export back-end can create such text areas.  It requires an
11962 @code{#+ATTR_HTML:} line as shown in the example below with the
11963 @code{:textarea} option.  This must be followed by either an
11964 @code{example} or a @code{src} code block.  Other Org block types will not
11965 honor the @code{:textarea} option.
11967 By default, the HTML export back-end creates a text area 80 characters wide
11968 and height just enough to fit the content.  Override these defaults with
11969 @code{:width} and @code{:height} options on the @code{#+ATTR_HTML:} line.
11971 @example
11972 #+ATTR_HTML: :textarea t :width 40
11973 #+BEGIN_EXAMPLE
11974   (defun org-xor (a b)
11975      "Exclusive or."
11976      (if a (not b) b))
11977 #+END_EXAMPLE
11978 @end example
11981 @node CSS support
11982 @subsection CSS support
11983 @cindex CSS, for HTML export
11984 @cindex HTML export, CSS
11986 @vindex org-html-todo-kwd-class-prefix
11987 @vindex org-html-tag-class-prefix
11988 You can modify the CSS style definitions for the exported file.  The HTML
11989 exporter assigns the following special CSS classes@footnote{If the classes on
11990 TODO keywords and tags lead to conflicts, use the variables
11991 @code{org-html-todo-kwd-class-prefix} and @code{org-html-tag-class-prefix} to
11992 make them unique.} to appropriate parts of the document---your style
11993 specifications may change these, in addition to any of the standard classes
11994 like for headlines, tables, etc.
11995 @example
11996 p.author            @r{author information, including email}
11997 p.date              @r{publishing date}
11998 p.creator           @r{creator info, about org mode version}
11999 .title              @r{document title}
12000 .subtitle           @r{document subtitle}
12001 .todo               @r{TODO keywords, all not-done states}
12002 .done               @r{the DONE keywords, all states that count as done}
12003 .WAITING            @r{each TODO keyword also uses a class named after itself}
12004 .timestamp          @r{timestamp}
12005 .timestamp-kwd      @r{keyword associated with a timestamp, like SCHEDULED}
12006 .timestamp-wrapper  @r{span around keyword plus timestamp}
12007 .tag                @r{tag in a headline}
12008 ._HOME              @r{each tag uses itself as a class, "@@" replaced by "_"}
12009 .target             @r{target for links}
12010 .linenr             @r{the line number in a code example}
12011 .code-highlighted   @r{for highlighting referenced code lines}
12012 div.outline-N       @r{div for outline level N (headline plus text))}
12013 div.outline-text-N  @r{extra div for text at outline level N}
12014 .section-number-N   @r{section number in headlines, different for each level}
12015 .figure-number      @r{label like "Figure 1:"}
12016 .table-number       @r{label like "Table 1:"}
12017 .listing-number     @r{label like "Listing 1:"}
12018 div.figure          @r{how to format an in-lined image}
12019 pre.src             @r{formatted source code}
12020 pre.example         @r{normal example}
12021 p.verse             @r{verse paragraph}
12022 div.footnotes       @r{footnote section headline}
12023 p.footnote          @r{footnote definition paragraph, containing a footnote}
12024 .footref            @r{a footnote reference number (always a <sup>)}
12025 .footnum            @r{footnote number in footnote definition (always <sup>)}
12026 .org-svg            @r{default class for a linked @file{.svg} image}
12027 @end example
12029 @vindex org-html-style-default
12030 @vindex org-html-head-include-default-style
12031 @vindex org-html-head
12032 @vindex org-html-head-extra
12033 @cindex #+HTML_INCLUDE_STYLE
12034 The HTML export back-end includes a compact default style in each exported
12035 HTML file.  To override the default style with another style, use these
12036 keywords in the Org file.  They will replace the global defaults the HTML
12037 exporter uses.
12039 @cindex #+HTML_HEAD
12040 @cindex #+HTML_HEAD_EXTRA
12041 @example
12042 #+HTML_HEAD: <link rel="stylesheet" type="text/css" href="style1.css" />
12043 #+HTML_HEAD_EXTRA: <link rel="alternate stylesheet" type="text/css" href="style2.css" />
12044 @end example
12046 To just turn off the default style, customize
12047 @code{org-html-head-include-default-style} variable, or use this option line in
12048 the Org file.
12050 @example
12051 #+OPTIONS: html-style:nil
12052 @end example
12054 @noindent
12055 For longer style definitions, either use several @code{#+HTML_HEAD} and
12056 @code{#+HTML_HEAD_EXTRA} lines, or use @code{<style>} @code{</style>} blocks
12057 around them.  Both of these approaches can avoid referring to an external
12058 file.
12060 In order to add styles to a sub-tree, use the @code{:HTML_CONTAINER_CLASS:}
12061 property to assign a class to the tree.  In order to specify CSS styles for a
12062 particular headline, you can use the id specified in a @code{:CUSTOM_ID:}
12063 property.
12065 Never change the @code{org-html-style-default} constant.  Instead use other
12066 simpler ways of customizing as described above.
12069 @c FIXME: More about header and footer styles
12070 @c FIXME: Talk about links and targets.
12072 @node JavaScript support
12073 @subsection JavaScript supported display of web pages
12075 @cindex Rose, Sebastian
12076 Sebastian Rose has written a JavaScript program especially designed to
12077 enhance the web viewing experience of HTML files created with Org.  This
12078 program enhances large files in two different ways of viewing.  One is an
12079 @emph{Info}-like mode where each section is displayed separately and
12080 navigation can be done with the @kbd{n} and @kbd{p} keys (and some other keys
12081 as well, press @kbd{?} for an overview of the available keys).  The second
12082 one has a @emph{folding} view, much like Org provides inside Emacs.  The
12083 script is available at @url{http://orgmode.org/org-info.js} and the
12084 documentation at @url{http://orgmode.org/worg/code/org-info-js/}.  The script
12085 is hosted on @url{http://orgmode.org}, but for reliability, prefer installing
12086 it on your own web server.
12088 To use this program, just add this line to the Org file:
12090 @cindex #+INFOJS_OPT
12091 @example
12092 #+INFOJS_OPT: view:info toc:nil
12093 @end example
12095 @noindent
12096 The HTML header now has the code needed to automatically invoke the script.
12097 For setting options, use the syntax from the above line for options described
12098 below:
12100 @example
12101 path:    @r{The path to the script.  The default grabs the script from}
12102          @r{@url{http://orgmode.org/org-info.js}, but you might want to have}
12103          @r{a local copy and use a path like @samp{../scripts/org-info.js}.}
12104 view:    @r{Initial view when the website is first shown.  Possible values are:}
12105          info      @r{Info-like interface with one section per page.}
12106          overview  @r{Folding interface, initially showing only top-level.}
12107          content   @r{Folding interface, starting with all headlines visible.}
12108          showall   @r{Folding interface, all headlines and text visible.}
12109 sdepth:  @r{Maximum headline level that will still become an independent}
12110          @r{section for info and folding modes.  The default is taken from}
12111          @r{@code{org-export-headline-levels} (= the @code{H} switch in @code{#+OPTIONS}).}
12112          @r{If this is smaller than in @code{org-export-headline-levels}, each}
12113          @r{info/folding section can still contain child headlines.}
12114 toc:     @r{Should the table of contents @emph{initially} be visible?}
12115          @r{Even when @code{nil}, you can always get to the "toc" with @kbd{i}.}
12116 tdepth:  @r{The depth of the table of contents.  The defaults are taken from}
12117          @r{the variables @code{org-export-headline-levels} and @code{org-export-with-toc}.}
12118 ftoc:    @r{Does the CSS of the page specify a fixed position for the "toc"?}
12119          @r{If yes, the toc will never be displayed as a section.}
12120 ltoc:    @r{Should there be short contents (children) in each section?}
12121          @r{Make this @code{above} if the section should be above initial text.}
12122 mouse:   @r{Headings are highlighted when the mouse is over them.  Should be}
12123          @r{@samp{underline} (default) or a background color like @samp{#cccccc}.}
12124 buttons: @r{Should view-toggle buttons be everywhere?  When @code{nil} (the}
12125          @r{default), only one such button will be present.}
12126 @end example
12127 @noindent
12128 @vindex org-html-infojs-options
12129 @vindex org-html-use-infojs
12130 You can choose default values for these options by customizing the variable
12131 @code{org-html-infojs-options}.  If you want the script to always apply to
12132 your pages, configure the variable @code{org-html-use-infojs}.
12134 @node @LaTeX{} export
12135 @section @LaTeX{} export
12136 @cindex @LaTeX{} export
12137 @cindex PDF export
12139 The @LaTeX{} export back-end can handle complex documents, incorporate
12140 standard or custom @LaTeX{} document classes, generate documents using
12141 alternate @LaTeX{} engines, and produce fully linked PDF files with indexes,
12142 bibliographies, and tables of contents, destined for interactive online
12143 viewing or high-quality print publication.
12145 While the details are covered in-depth in this section, here are some quick
12146 references to variables for the impatient: for engines, see
12147 @code{org-latex-compiler}; for build sequences, see
12148 @code{org-latex-pdf-process}; for packages, see
12149 @code{org-latex-default-packages-alist} and @code{org-latex-packages-alist}.
12151 An important note about the @LaTeX{} export back-end: it is sensitive to
12152 blank lines in the Org document.  That's because @LaTeX{} itself depends on
12153 blank lines to tell apart syntactical elements, such as paragraphs.
12155 @menu
12156 * @LaTeX{} export commands::    For producing @LaTeX{} and PDF documents.
12157 * @LaTeX{} specific export settings::  Unique to this @LaTeX{} back-end.
12158 * @LaTeX{} header and sectioning::  For file structure.
12159 * Quoting @LaTeX{} code::       Directly in the Org document.
12160 * Tables in @LaTeX{} export::   Attributes specific to tables.
12161 * Images in @LaTeX{} export::   Attributes specific to images.
12162 * Plain lists in @LaTeX{} export::  Attributes specific to lists.
12163 * Source blocks in @LaTeX{} export::  Attributes specific to source code blocks.
12164 * Example blocks in @LaTeX{} export::  Attributes specific to example blocks.
12165 * Special blocks in @LaTeX{} export::  Attributes specific to special blocks.
12166 * Horizontal rules in @LaTeX{} export::  Attributes specific to horizontal rules.
12167 @end menu
12169 @node @LaTeX{} export commands
12170 @subsection @LaTeX{} export commands
12172 @table @kbd
12173 @orgcmd{C-c C-e l l,org-latex-export-to-latex}
12174 Export as @LaTeX{} file with a @file{.tex} extension.  For @file{myfile.org},
12175 Org exports to @file{myfile.tex}, overwriting without warning.  @kbd{C-c C-e
12176 l l} Exports to @LaTeX{} file.
12178 @orgcmd{C-c C-e l L,org-latex-export-as-latex}
12179 Export to a temporary buffer.  Do not create a file.
12180 @orgcmd{C-c C-e l p,org-latex-export-to-pdf}
12181 Export as @LaTeX{} file and convert it to PDF file.
12182 @item C-c C-e l o
12183 Export as @LaTeX{} file and convert it to PDF, then open the PDF using the default viewer.
12184 @end table
12186 @vindex org-latex-compiler
12187 @vindex org-latex-bibtex-compiler
12188 @vindex org-latex-default-packages-alist
12189 The @LaTeX{} export back-end can use any of these @LaTeX{} engines:
12190 @samp{pdflatex}, @samp{xelatex}, and @samp{lualatex}.  These engines compile
12191 @LaTeX{} files with different compilers, packages, and output options.  The
12192 @LaTeX{} export back-end finds the compiler version to use from
12193 @code{org-latex-compiler} variable or the @code{#+LATEX_COMPILER} keyword in
12194 the Org file.  See the docstring for the
12195 @code{org-latex-default-packages-alist} for loading packages with certain
12196 compilers.  Also see @code{org-latex-bibtex-compiler} to set the bibliography
12197 compiler@footnote{This does not allow setting different bibliography
12198 compilers for different files.  However, ``smart'' @LaTeX{} compilation
12199 systems, such as @samp{latexmk}, can select the correct bibliography
12200 compiler.}.
12202 @node @LaTeX{} specific export settings
12203 @subsection @LaTeX{} specific export settings
12205 The @LaTeX{} export back-end has several additional keywords for customizing
12206 @LaTeX{} output.  Setting these keywords works similar to the general options
12207 (@pxref{Export settings}).
12209 @table @samp
12210 @item DESCRIPTION
12211 @cindex #+DESCRIPTION (@LaTeX{})
12212 The document's description.  The description along with author name,
12213 keywords, and related file metadata are inserted in the output file by the
12214 @samp{hyperref} package.  See @code{org-latex-hyperref-template} for
12215 customizing metadata items.  See @code{org-latex-title-command} for
12216 typesetting description into the document's front matter.  Use multiple
12217 @code{#+DESCRIPTION} lines for long descriptions.
12219 @item LATEX_CLASS
12220 @cindex #+LATEX_CLASS
12221 @vindex org-latex-default-class
12222 @vindex org-latex-classes
12223 This is @LaTeX{} document class, such as @code{article}, @code{report},
12224 @code{book}, and so on, which contain predefined preamble and headline level
12225 mapping that the @LaTeX{} export back-end needs.  The back-end reads the
12226 default class name from the @code{org-latex-default-class} variable.  Org has
12227 @code{article} as the default class.  A valid default class must be an
12228 element of @code{org-latex-classes}.
12230 @item LATEX_CLASS_OPTIONS
12231 @cindex #+LATEX_CLASS_OPTIONS
12232 Options the @LaTeX{} export back-end uses when calling the @LaTeX{} document
12233 class.
12235 @item LATEX_COMPILER
12236 @cindex #+LATEX_COMPILER
12237 @vindex org-latex-compiler
12238 The compiler, such as @samp{pdflatex}, @samp{xelatex}, @samp{lualatex}, for
12239 producing the PDF (@code{org-latex-compiler}).
12241 @item LATEX_HEADER
12242 @cindex #+LATEX_HEADER
12243 @vindex org-latex-classes
12244 Arbitrary lines to add to the document's preamble, before the @samp{hyperref}
12245 settings.  See @code{org-latex-classes} for adjusting the structure and order
12246 of the @LaTeX{} headers.
12248 @item LATEX_HEADER_EXTRA
12249 @cindex #+LATEX_HEADER_EXTRA
12250 @vindex org-latex-classes
12251 Arbitrary lines to add to the document's preamble, before the @samp{hyperref}
12252 settings.  See @code{org-latex-classes} for adjusting the structure and order
12253 of the @LaTeX{} headers.
12255 @item KEYWORDS
12256 @cindex #+KEYWORDS (@LaTeX{})
12257 The keywords for the document.  The description along with author name,
12258 keywords, and related file metadata are inserted in the output file by the
12259 @samp{hyperref} package.  See @code{org-latex-hyperref-template} for
12260 customizing metadata items.  See @code{org-latex-title-command} for
12261 typesetting description into the document's front matter.  Use multiple
12262 @code{#+KEYWORDS} lines if necessary.
12264 @item SUBTITLE
12265 @cindex #+SUBTITLE (@LaTeX{})
12266 @vindex org-latex-subtitle-separate
12267 @vindex org-latex-subtitle-format
12268 The document's subtitle.  It is typeset as per
12269 @code{org-latex-subtitle-format}.  If @code{org-latex-subtitle-separate} is
12270 non-@code{nil}, it is typed as part of the @samp{\title}-macro.  See
12271 @code{org-latex-hyperref-template} for customizing metadata items.  See
12272 @code{org-latex-title-command} for typesetting description into the
12273 document's front matter.
12274 @end table
12276 The following sections have further details.
12278 @node @LaTeX{} header and sectioning
12279 @subsection @LaTeX{} header and sectioning structure
12280 @cindex @LaTeX{} class
12281 @cindex @LaTeX{} sectioning structure
12282 @cindex @LaTeX{} header
12283 @cindex header, for @LaTeX{} files
12284 @cindex sectioning structure, for @LaTeX{} export
12286 The @LaTeX{} export back-end converts the first three of Org's outline levels
12287 into @LaTeX{} headlines.  The remaining Org levels are exported as
12288 @code{itemize} or @code{enumerate} lists.  To change this globally for the
12289 cut-off point between levels and lists, (@pxref{Export settings}).
12291 By default, the @LaTeX{} export back-end uses the @code{article} class.
12293 @vindex org-latex-default-class
12294 @vindex org-latex-classes
12295 @vindex org-latex-default-packages-alist
12296 @vindex org-latex-packages-alist
12297 To change the default class globally, edit @code{org-latex-default-class}.
12298 To change the default class locally in an Org file, add option lines
12299 @code{#+LATEX_CLASS: myclass}.  To change the default class for just a part
12300 of the Org file, set a sub-tree property, @code{EXPORT_LATEX_CLASS}.  The
12301 class name entered here must be valid member of @code{org-latex-classes}.
12302 This variable defines a header template for each class into which the
12303 exporter splices the values of @code{org-latex-default-packages-alist} and
12304 @code{org-latex-packages-alist}.  Use the same three variables to define
12305 custom sectioning or custom classes.
12307 @cindex #+LATEX_CLASS
12308 @cindex #+LATEX_CLASS_OPTIONS
12309 @cindex property, EXPORT_LATEX_CLASS
12310 @cindex property, EXPORT_LATEX_CLASS_OPTIONS
12311 The @LaTeX{} export back-end sends the @code{LATEX_CLASS_OPTIONS} keyword and
12312 @code{EXPORT_LATEX_CLASS_OPTIONS} property as options to the @LaTeX{}
12313 @code{\documentclass} macro.  The options and the syntax for specifying them,
12314 including enclosing them in square brackets, follow @LaTeX{} conventions.
12316 @example
12317 #+LATEX_CLASS_OPTIONS: [a4paper,11pt,twoside,twocolumn]
12318 @end example
12320 @cindex #+LATEX_HEADER
12321 @cindex #+LATEX_HEADER_EXTRA
12322 The @LaTeX{} export back-end appends values from @code{LATEX_HEADER} and
12323 @code{LATEX_HEADER_EXTRA} keywords to the @LaTeX{} header.  The docstring for
12324 @code{org-latex-classes} explains in more detail.  Also note that @LaTeX{}
12325 export back-end does not append @code{LATEX_HEADER_EXTRA} to the header when
12326 previewing @LaTeX{} snippets (@pxref{Previewing @LaTeX{} fragments}).
12328 A sample Org file with the above headers:
12330 @example
12331 #+LATEX_CLASS: article
12332 #+LATEX_CLASS_OPTIONS: [a4paper]
12333 #+LATEX_HEADER: \usepackage@{xyz@}
12335 * Headline 1
12336   some text
12337 * Headline 2
12338   some more text
12339 @end example
12341 @node Quoting @LaTeX{} code
12342 @subsection Quoting @LaTeX{} code
12344 The @LaTeX{} export back-end can insert any arbitrary @LaTeX{} code,
12345 @pxref{Embedded @LaTeX{}}.  There are three ways to embed such code in the
12346 Org file and they all use different quoting syntax.
12348 Inserting in-line quoted with @ symbols:
12349 @cindex inline, in @LaTeX{} export
12350 @example
12351 Code embedded in-line @@@@latex:any arbitrary LaTeX code@@@@ in a paragraph.
12352 @end example
12354 Inserting as one or more keyword lines in the Org file:
12355 @cindex #+LATEX
12356 @example
12357 #+LATEX: any arbitrary LaTeX code
12358 @end example
12360 Inserting as an export block in the Org file, where the back-end exports any
12361 code between begin and end markers:
12362 @cindex #+BEGIN_EXPORT latex
12363 @example
12364 #+BEGIN_EXPORT latex
12365 any arbitrary LaTeX code
12366 #+END_EXPORT
12367 @end example
12369 @node Tables in @LaTeX{} export
12370 @subsection Tables in @LaTeX{} export
12371 @cindex tables, in @LaTeX{} export
12372 @cindex #+ATTR_LATEX, in tables
12374 The @LaTeX{} export back-end can pass several @LaTeX{} attributes for table
12375 contents and layout.  Besides specifying label and caption (@pxref{Images and
12376 tables}), the other valid @LaTeX{} attributes include:
12378 @table @code
12379 @item :mode
12380 @vindex org-latex-default-table-mode
12381 The @LaTeX{} export back-end wraps the table differently depending on the
12382 mode for accurate rendering of math symbols.  Mode is either @code{table},
12383 @code{math}, @code{inline-math} or @code{verbatim}.  For @code{math} or
12384 @code{inline-math} mode, @LaTeX{} export back-end wraps the table in a math
12385 environment, but every cell in it is exported as-is.  The @LaTeX{} export
12386 back-end determines the default mode from
12387 @code{org-latex-default-table-mode}.  For , The @LaTeX{} export back-end
12388 merges contiguous tables in the same mode into a single environment.
12389 @item :environment
12390 @vindex org-latex-default-table-environment
12391 Set the default @LaTeX{} table environment for the @LaTeX{} export back-end
12392 to use when exporting Org tables.  Common @LaTeX{} table environments are
12393 provided by these packages: @code{tabularx}, @code{longtable}, @code{array},
12394 @code{tabu}, and @code{bmatrix}.  For packages, such as @code{tabularx} and
12395 @code{tabu}, or any newer replacements, include them in the
12396 @code{org-latex-packages-alist} variable so the @LaTeX{} export back-end can
12397 insert the appropriate load package headers in the converted @LaTeX{} file.
12398 Look in the docstring for the @code{org-latex-packages-alist} variable for
12399 configuring these packages for @LaTeX{} snippet previews, if any.
12400 @item :caption
12401 Use @code{#+CAPTION} keyword to set a simple caption for a table
12402 (@pxref{Images and tables}).  For custom captions, use @code{:caption}
12403 attribute, which accepts raw @LaTeX{} code.  @code{:caption} value overrides
12404 @code{#+CAPTION} value.
12405 @item :float
12406 @itemx :placement
12407 The table environments by default are not floats in @LaTeX{}.  To make them
12408 floating objects use @code{:float} with one of the following options:
12409 @code{sideways}, @code{multicolumn}, @code{t}, and @code{nil}.  Note that
12410 @code{sidewaystable} has been deprecated since Org 8.3.  @LaTeX{} floats can
12411 also have additional layout @code{:placement} attributes.  These are the
12412 usual @code{[h t b p ! H]} permissions specified in square brackets.  Note
12413 that for @code{:float sideways} tables, the @LaTeX{} export back-end ignores
12414 @code{:placement} attributes.
12415 @item :align
12416 @itemx :font
12417 @itemx :width
12418 The @LaTeX{} export back-end uses these attributes for regular tables to set
12419 their alignments, fonts, and widths.
12420 @item :spread
12421 When @code{:spread} is non-@code{nil}, the @LaTeX{} export back-end spreads
12422 or shrinks the table by the @code{:width} for @code{tabu} and @code{longtabu}
12423 environments.  @code{:spread} has no effect if @code{:width} is not set.
12424 @item :booktabs
12425 @itemx :center
12426 @itemx :rmlines
12427 @vindex org-latex-tables-booktabs
12428 @vindex org-latex-tables-centered
12429 All three commands are toggles.  @code{:booktabs} brings in modern
12430 typesetting enhancements to regular tables.  The @code{booktabs} package has
12431 to be loaded through @code{org-latex-packages-alist}.  @code{:center} is for
12432 centering the table.  @code{:rmlines} removes all but the very first
12433 horizontal line made of ASCII characters from "table.el" tables only.
12434 @item :math-prefix
12435 @itemx :math-suffix
12436 @itemx :math-arguments
12437 The @LaTeX{} export back-end inserts @code{:math-prefix} string value in a
12438 math environment before the table.  The @LaTeX{} export back-end inserts
12439 @code{:math-suffix} string value in a math environment after the table.  The
12440 @LaTeX{} export back-end inserts @code{:math-arguments} string value between
12441 the macro name and the table's contents.  @code{:math-arguments} comes in use
12442 for matrix macros that require more than one argument, such as
12443 @code{qbordermatrix}.
12444 @end table
12446 @LaTeX{} table attributes help formatting tables for a wide range of
12447 situations, such as matrix product or spanning multiple pages:
12449 @example
12450 #+ATTR_LATEX: :environment longtable :align l|lp@{3cm@}r|l
12451 | ..... | ..... |
12452 | ..... | ..... |
12454 #+ATTR_LATEX: :mode math :environment bmatrix :math-suffix \times
12455 | a | b |
12456 | c | d |
12457 #+ATTR_LATEX: :mode math :environment bmatrix
12458 | 1 | 2 |
12459 | 3 | 4 |
12460 @end example
12462 Set the caption with the @LaTeX{} command
12463 @code{\bicaption@{HeadingA@}@{HeadingB@}}:
12465 @example
12466 #+ATTR_LATEX: :caption \bicaption@{HeadingA@}@{HeadingB@}
12467 | ..... | ..... |
12468 | ..... | ..... |
12469 @end example
12472 @node Images in @LaTeX{} export
12473 @subsection Images in @LaTeX{} export
12474 @cindex images, inline in @LaTeX{}
12475 @cindex inlining images in @LaTeX{}
12476 @cindex #+ATTR_LATEX, in images
12478 The @LaTeX{} export back-end processes image links in Org files that do not
12479 have descriptions, such as these links @samp{[[file:img.jpg]]} or
12480 @samp{[[./img.jpg]]}, as direct image insertions in the final PDF output.  In
12481 the PDF, they are no longer links but actual images embedded on the page.
12482 The @LaTeX{} export back-end uses @code{\includegraphics} macro to insert the
12483 image.  But for TikZ@footnote{@url{http://sourceforge.net/projects/pgf/}}
12484 images, the back-end uses an @code{\input} macro wrapped within
12485 a @code{tikzpicture} environment.
12487 For specifying image @code{:width}, @code{:height}, and other
12488 @code{:options}, use this syntax:
12490 @example
12491 #+ATTR_LATEX: :width 5cm :options angle=90
12492 [[./img/sed-hr4049.pdf]]
12493 @end example
12495 For custom commands for captions, use the @code{:caption} attribute.  It will
12496 override the default @code{#+CAPTION} value:
12498 @example
12499 #+ATTR_LATEX: :caption \bicaption@{HeadingA@}@{HeadingB@}
12500 [[./img/sed-hr4049.pdf]]
12501 @end example
12503 When captions follow the method as described in @ref{Images and tables}, the
12504 @LaTeX{} export back-end wraps the picture in a floating @code{figure}
12505 environment.  To float an image without specifying a caption, set the
12506 @code{:float} attribute to one of the following:
12507 @itemize @minus
12508 @item
12509 @code{t}: for a standard @samp{figure} environment; used by default whenever
12510 an image has a caption.
12511 @item
12512 @code{multicolumn}: to span the image across multiple columns of a page; the
12513 back-end wraps the image in a @code{figure*} environment.
12514 @item
12515 @code{wrap}: for text to flow around the image on the right; the figure
12516 occupies the left half of the page.
12517 @item
12518 @code{sideways}: for a new page with the image sideways, rotated ninety
12519 degrees, in a @code{sidewaysfigure} environment; overrides @code{:placement}
12520 setting.
12521 @item
12522 @code{nil}: to avoid a @code{:float} even if using a caption.
12523 @end itemize
12524 @noindent
12525 Use the @code{placement} attribute to modify a floating environment's placement.
12527 @example
12528 #+ATTR_LATEX: :float wrap :width 0.38\textwidth :placement
12529 @{r@}@{0.4\textwidth@} [[./img/hst.png]]
12530 @end example
12532 @vindex org-latex-images-centered
12533 @cindex center image (@LaTeX{} export)
12534 @cindex image, centering (@LaTeX{} export)
12536 The @LaTeX{} export back-end centers all images by default.  Setting
12537 @code{:center} attribute to @code{nil} disables centering.  To disable
12538 centering globally, set @code{org-latex-images-centered} to @code{t}.
12540 Set the @code{:comment-include} attribute to non-@code{nil} value for the
12541 @LaTeX{} export back-end to comment out the @code{\includegraphics} macro.
12543 @node Plain lists in @LaTeX{} export
12544 @subsection Plain lists in @LaTeX{} export
12545 @cindex plain lists, in @LaTeX{} export
12546 @cindex #+ATTR_LATEX, in plain lists
12548 The @LaTeX{} export back-end accepts the @code{:environment} and
12549 @code{:options} attributes for plain lists.  Both attributes work together
12550 for customizing lists, as shown in the examples:
12552 @example
12553 #+LATEX_HEADER: \usepackage[inline]@{enumitem@}
12554 Some ways to say "Hello":
12555 #+ATTR_LATEX: :environment itemize*
12556 #+ATTR_LATEX: :options [label=@{@}, itemjoin=@{,@}, itemjoin*=@{, and@}]
12557 - Hola
12558 - Bonjour
12559 - Guten Tag.
12560 @end example
12562 Since @LaTeX{} supports only four levels of nesting for lists, use an
12563 external package, such as @samp{enumitem} in @LaTeX{}, for levels deeper than
12564 four:
12566 @example
12567 #+LATEX_HEADER: \usepackage@{enumitem@}
12568 #+LATEX_HEADER: \renewlist@{itemize@}@{itemize@}@{9@}
12569 #+LATEX_HEADER: \setlist[itemize]@{label=$\circ$@}
12570 - One
12571   - Two
12572     - Three
12573       - Four
12574         - Five
12575 @end example
12577 @node Source blocks in @LaTeX{} export
12578 @subsection Source blocks in @LaTeX{} export
12579 @cindex source blocks, in @LaTeX{} export
12580 @cindex #+ATTR_LATEX, in source blocks
12582 The @LaTeX{} export back-end can make source code blocks into floating
12583 objects through the attributes @code{:float} and @code{:options}.  For
12584 @code{:float}:
12586 @itemize @minus
12587 @item
12588 @code{t}: makes a source block float; by default floats any source block with
12589 a caption.
12590 @item
12591 @code{multicolumn}: spans the source block across multiple columns of a page.
12592 @item
12593 @code{nil}: avoids a @code{:float} even if using a caption; useful for
12594 source code blocks that may not fit on a page.
12595 @end itemize
12597 @example
12598 #+ATTR_LATEX: :float nil
12599 #+BEGIN_SRC emacs-lisp
12600 Lisp code that may not fit in a single page.
12601 #+END_SRC
12602 @end example
12604 @vindex org-latex-listings-options
12605 @vindex org-latex-minted-options
12606 The @LaTeX{} export back-end passes string values in @code{:options} to
12607 @LaTeX{} packages for customization of that specific source block.  In the
12608 example below, the @code{:options} are set for Minted.  Minted is a source
12609 code highlighting @LaTeX{}package with many configurable options.
12611 @example
12612 #+ATTR_LATEX: :options commentstyle=\bfseries
12613 #+BEGIN_SRC emacs-lisp
12614   (defun Fib (n)
12615     (if (< n 2) n (+ (Fib (- n 1)) (Fib (- n 2)))))
12616 #+END_SRC
12617 @end example
12619 To apply similar configuration options for all source blocks in a file, use
12620 the @code{org-latex-listings-options} and @code{org-latex-minted-options}
12621 variables.
12623 @node Example blocks in @LaTeX{} export
12624 @subsection Example blocks in @LaTeX{} export
12625 @cindex example blocks, in @LaTeX{} export
12626 @cindex verbatim blocks, in @LaTeX{} export
12627 @cindex #+ATTR_LATEX, in example blocks
12629 The @LaTeX{} export back-end wraps the contents of example blocks in a
12630 @samp{verbatim} environment.  To change this behavior to use another
12631 environment globally, specify an appropriate export filter (@pxref{Advanced
12632 configuration}).  To change this behavior to use another environment for each
12633 block, use the @code{:environment} parameter to specify a custom environment.
12635 @example
12636 #+ATTR_LATEX: :environment myverbatim
12637 #+BEGIN_EXAMPLE
12638 This sentence is false.
12639 #+END_EXAMPLE
12640 @end example
12642 @node Special blocks in @LaTeX{} export
12643 @subsection Special blocks in @LaTeX{} export
12644 @cindex special blocks, in @LaTeX{} export
12645 @cindex abstract, in @LaTeX{} export
12646 @cindex proof, in @LaTeX{} export
12647 @cindex #+ATTR_LATEX, in special blocks
12650 For other special blocks in the Org file, the @LaTeX{} export back-end makes
12651 a special environment of the same name.  The back-end also takes
12652 @code{:options}, if any, and appends as-is to that environment's opening
12653 string.  For example:
12655 @example
12656 #+BEGIN_abstract
12657 We demonstrate how to solve the Syracuse problem.
12658 #+END_abstract
12660 #+ATTR_LATEX: :options [Proof of important theorem]
12661 #+BEGIN_proof
12663 Therefore, any even number greater than 2 is the sum of two primes.
12664 #+END_proof
12665 @end example
12667 @noindent
12668 exports to
12670 @example
12671 \begin@{abstract@}
12672 We demonstrate how to solve the Syracuse problem.
12673 \end@{abstract@}
12675 \begin@{proof@}[Proof of important theorem]
12677 Therefore, any even number greater than 2 is the sum of two primes.
12678 \end@{proof@}
12679 @end example
12681 If you need to insert a specific caption command, use @code{:caption}
12682 attribute.  It will override standard @code{#+CAPTION} value, if any.  For
12683 example:
12685 @example
12686 #+ATTR_LATEX: :caption \MyCaption@{HeadingA@}
12687 #+BEGIN_proof
12689 #+END_proof
12690 @end example
12692 @node Horizontal rules in @LaTeX{} export
12693 @subsection Horizontal rules in @LaTeX{} export
12694 @cindex horizontal rules, in @LaTeX{} export
12695 @cindex #+ATTR_LATEX, in horizontal rules
12697 The @LaTeX{} export back-end converts horizontal rules by the specified
12698 @code{:width} and @code{:thickness} attributes.  For example:
12700 @example
12701 #+ATTR_LATEX: :width .6\textwidth :thickness 0.8pt
12702 -----
12703 @end example
12705 @node Markdown export
12706 @section Markdown export
12707 @cindex Markdown export
12709 The Markdown export back-end, @code{md}, converts an Org file to a Markdown
12710 format, as defined at @url{http://daringfireball.net/projects/markdown/}.
12712 Since @code{md} is built on top of the HTML back-end, any Org constructs not
12713 supported by Markdown, such as tables, the underlying @code{html} back-end
12714 (@pxref{HTML export}) converts them.
12716 @subheading Markdown export commands
12718 @table @kbd
12719 @orgcmd{C-c C-e m m,org-md-export-to-markdown}
12720 Export to a text file with Markdown syntax.  For @file{myfile.org}, Org
12721 exports to @file{myfile.md}, overwritten without warning.
12722 @orgcmd{C-c C-e m M,org-md-export-as-markdown}
12723 Export to a temporary buffer.  Does not create a file.
12724 @item C-c C-e m o
12725 Export as a text file with Markdown syntax, then open it.
12726 @end table
12728 @subheading Header and sectioning structure
12730 @vindex org-md-headline-style
12731 Based on @code{org-md-headline-style}, markdown export can generate headlines
12732 of both @code{atx} and @code{setext} types.  @code{atx} limits headline
12733 levels to two.  @code{setext} limits headline levels to six.  Beyond these
12734 limits, the export back-end converts headlines to lists.  To set a limit to a
12735 level before the absolute limit (@pxref{Export settings}).
12737 @c begin opendocument
12739 @node OpenDocument Text export
12740 @section OpenDocument Text export
12741 @cindex ODT
12742 @cindex OpenDocument
12743 @cindex export, OpenDocument
12744 @cindex LibreOffice
12746 The ODT export back-end handles creating of OpenDocument Text (ODT) format
12747 files.  The format complies with @cite{OpenDocument-v1.2
12748 specification}@footnote{@url{http://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2.html,
12749 Open Document Format for Office Applications (OpenDocument) Version 1.2}} and
12750 is compatible with LibreOffice 3.4.
12752 @menu
12753 * Pre-requisites for ODT export::  Required packages.
12754 * ODT export commands::         Invoking export.
12755 * ODT specific export settings::  Configuration options.
12756 * Extending ODT export::        Producing @file{.doc}, @file{.pdf} files.
12757 * Applying custom styles::      Styling the output.
12758 * Links in ODT export::         Handling and formatting links.
12759 * Tables in ODT export::        Org table conversions.
12760 * Images in ODT export::        Inserting images.
12761 * Math formatting in ODT export::  Formatting @LaTeX{} fragments.
12762 * Labels and captions in ODT export::  Rendering objects.
12763 * Literal examples in ODT export::  For source code and example blocks.
12764 * Advanced topics in ODT export::  For power users.
12765 @end menu
12767 @node Pre-requisites for ODT export
12768 @subsection Pre-requisites for ODT export
12769 @cindex zip
12770 The ODT export back-end relies on the @file{zip} program to create the final
12771 compressed ODT output.  Check if @file{zip} is locally available and
12772 executable.  Without @file{zip}, export cannot finish.
12774 @node ODT export commands
12775 @subsection ODT export commands
12776 @anchor{x-export-to-odt}
12777 @cindex region, active
12778 @cindex active region
12779 @cindex transient-mark-mode
12780 @table @kbd
12781 @orgcmd{C-c C-e o o,org-odt-export-to-odt}
12782 @cindex property EXPORT_FILE_NAME
12784 Export as OpenDocument Text file.
12786 @vindex org-odt-preferred-output-format
12787 If @code{org-odt-preferred-output-format} is specified, the ODT export
12788 back-end automatically converts the exported file to that format.
12789 @xref{x-export-to-other-formats, , Automatically exporting to other formats}.
12791 For @file{myfile.org}, Org exports to @file{myfile.odt}, overwriting without
12792 warning.  The ODT export back-end exports a region only if a region was
12793 active.  Note for exporting active regions, the @code{transient-mark-mode}
12794 has to be turned on.
12796 If the selected region is a single tree, the ODT export back-end makes the
12797 tree head the document title.  Incidentally, @kbd{C-c @@} selects the current
12798 sub-tree.  If the tree head entry has, or inherits, an
12799 @code{EXPORT_FILE_NAME} property, the ODT export back-end uses that for file
12800 name.
12802 @kbd{C-c C-e o O}
12803 Export to an OpenDocument Text file format and open it.
12805 @vindex org-odt-preferred-output-format
12806 When @code{org-odt-preferred-output-format} is specified, open the converted
12807 file instead.  @xref{x-export-to-other-formats, , Automatically exporting to
12808 other formats}.
12809 @end table
12811 @node ODT specific export settings
12812 @subsection ODT specific export settings
12813 The ODT export back-end has several additional keywords for customizing ODT
12814 output.  Setting these keywords works similar to the general options
12815 (@pxref{Export settings}).
12817 @table @samp
12818 @item DESCRIPTION
12819 @cindex #+DESCRIPTION (ODT)
12820 This is the document's description, which the ODT export back-end inserts as
12821 document metadata.  For long descriptions, use multiple @code{#+DESCRIPTION}
12822 lines.
12824 @item KEYWORDS
12825 @cindex #+KEYWORDS (ODT)
12826 The keywords for the document.  The ODT export back-end inserts the
12827 description along with author name, keywords, and related file metadata as
12828 metadata in the output file.  Use multiple @code{#+KEYWORDS} lines if
12829 necessary.
12831 @item ODT_STYLES_FILE
12832 @cindex ODT_STYLES_FILE
12833 @vindex org-odt-styles-file
12834 The ODT export back-end uses the @code{org-odt-styles-file} by default.  See
12835 @ref{Applying custom styles} for details.
12837 @item SUBTITLE
12838 @cindex SUBTITLE (ODT)
12839 The document subtitle.
12840 @end table
12842 @node Extending ODT export
12843 @subsection Extending ODT export
12845 The ODT export back-end can produce documents in other formats besides ODT
12846 using a specialized ODT converter process.  Its common interface works with
12847 popular converters to produce formats such as @samp{doc}, or convert a
12848 document from one format, say @samp{csv}, to another format, say @samp{xls}.
12850 @cindex @file{unoconv}
12851 @cindex LibreOffice
12853 Customize @code{org-odt-convert-process} variable to point to @code{unoconv},
12854 which is the ODT's preferred converter.  Working installations of LibreOffice
12855 would already have @code{unoconv} installed.  Alternatively, other converters
12856 may be substituted here.  @xref{Configuring a document converter}.
12858 @subsubheading Automatically exporting to other formats
12859 @anchor{x-export-to-other-formats}
12861 @vindex org-odt-preferred-output-format
12862 If ODT format is just an intermediate step to get to other formats, such as
12863 @samp{doc}, @samp{docx}, @samp{rtf}, or @samp{pdf}, etc., then extend the ODT
12864 export back-end to directly produce that format.  Specify the final format in
12865 the @code{org-odt-preferred-output-format} variable.  This is one way to
12866 extend (@pxref{x-export-to-odt,,Exporting to ODT}).
12868 @subsubheading Converting between document formats
12869 @anchor{x-convert-to-other-formats}
12871 The Org export back-end is made to be inter-operable with a wide range of text
12872 document format converters.  Newer generation converters, such as LibreOffice
12873 and Pandoc, can handle hundreds of formats at once.  Org provides a
12874 consistent interaction with whatever converter is installed.  Here are some
12875 generic commands:
12877 @vindex org-odt-convert
12878 @table @kbd
12880 @item M-x org-odt-convert RET
12881 Convert an existing document from one format to another.  With a prefix
12882 argument, opens the newly produced file.
12883 @end table
12885 @node Applying custom styles
12886 @subsection Applying custom styles
12887 @cindex styles, custom
12888 @cindex template, custom
12890 The ODT export back-end comes with many OpenDocument styles (@pxref{Working
12891 with OpenDocument style files}).  To expand or further customize these
12892 built-in style sheets, either edit the style sheets directly or generate them
12893 using an application such as LibreOffice.  The example here shows creating a
12894 style using LibreOffice.
12896 @subsubheading Applying custom styles: the easy way
12898 @enumerate
12899 @item
12900 Create a sample @file{example.org} file with settings as shown below, and
12901 export it to ODT format.
12903 @example
12904 #+OPTIONS: H:10 num:t
12905 @end example
12907 @item
12908 Open the above @file{example.odt} using LibreOffice.  Use the @file{Stylist}
12909 to locate the target styles, which typically have the @samp{Org} prefix.
12910 Open one, modify, and save as either OpenDocument Text (@file{.odt}) or
12911 OpenDocument Template (@file{.ott}) file.
12913 @item
12914 @cindex #+ODT_STYLES_FILE
12915 @vindex org-odt-styles-file
12916 Customize the variable @code{org-odt-styles-file} and point it to the
12917 newly created file.  For additional configuration options
12918 @pxref{x-overriding-factory-styles,,Overriding factory styles}.
12920 To apply and ODT style to a particular file, use the @code{#+ODT_STYLES_FILE}
12921 option as shown in the example below:
12923 @example
12924 #+ODT_STYLES_FILE: "/path/to/example.ott"
12925 @end example
12929 @example
12930 #+ODT_STYLES_FILE: ("/path/to/file.ott" ("styles.xml" "image/hdr.png"))
12931 @end example
12933 @end enumerate
12935 @subsubheading Using third-party styles and templates
12937 The ODT export back-end relies on many templates and style names.  Using
12938 third-party styles and templates can lead to mismatches.  Templates derived
12939 from built in ODT templates and styles seem to have fewer problems.
12941 @node Links in ODT export
12942 @subsection Links in ODT export
12943 @cindex links, in ODT export
12945 ODT export back-end creates native cross-references for internal links and
12946 Internet-style links for all other link types.
12948 A link with no description and pointing to a regular---un-itemized---outline
12949 heading is replaced with a cross-reference and section number of the heading.
12951 A @samp{\ref@{label@}}-style reference to an image, table etc.@: is replaced
12952 with a cross-reference and sequence number of the labeled entity.
12953 @xref{Labels and captions in ODT export}.
12955 @node Tables in ODT export
12956 @subsection Tables in ODT export
12957 @cindex tables, in ODT export
12959 The ODT export back-end handles native Org mode tables (@pxref{Tables}) and
12960 simple @file{table.el} tables.  Complex @file{table.el} tables having column
12961 or row spans are not supported.  Such tables are stripped from the exported
12962 document.
12964 By default, the ODT export back-end exports a table with top and bottom
12965 frames and with ruled lines separating row and column groups (@pxref{Column
12966 groups}).  All tables are typeset to occupy the same width.  The ODT export
12967 back-end honors any table alignments and relative widths for columns
12968 (@pxref{Column width and alignment}).
12970 Note that the ODT export back-end interprets column widths as weighted
12971 ratios, the default weight being 1.
12973 @cindex #+ATTR_ODT
12975 Specifying @code{:rel-width} property on an @code{#+ATTR_ODT} line controls
12976 the width of the table.  For example:
12978 @example
12979 #+ATTR_ODT: :rel-width 50
12980 | Area/Month    |   Jan |   Feb |   Mar |   Sum |
12981 |---------------+-------+-------+-------+-------|
12982 | /             |     < |       |       |     < |
12983 | <l13>         |  <r5> |  <r5> |  <r5> |  <r6> |
12984 | North America |     1 |    21 |   926 |   948 |
12985 | Middle East   |     6 |    75 |   844 |   925 |
12986 | Asia Pacific  |     9 |    27 |   790 |   826 |
12987 |---------------+-------+-------+-------+-------|
12988 | Sum           |    16 |   123 |  2560 |  2699 |
12989 @end example
12991 On export, the above table takes 50% of text width area.  The exporter sizes
12992 the columns in the ratio: 13:5:5:5:6.  The first column is left-aligned and
12993 rest of the columns, right-aligned.  Vertical rules separate the header and
12994 the last column.  Horizontal rules separate the header and the last row.
12996 For even more customization, create custom table styles and associate them
12997 with a table using the @code{#+ATTR_ODT} line.  @xref{Customizing tables in
12998 ODT export}.
13000 @node Images in ODT export
13001 @subsection Images in ODT export
13002 @cindex images, embedding in ODT
13003 @cindex embedding images in ODT
13005 @subsubheading Embedding images
13006 The ODT export back-end processes image links in Org files that do not have
13007 descriptions, such as these links @samp{[[file:img.jpg]]} or
13008 @samp{[[./img.jpg]]}, as direct image insertions in the final output.  Either
13009 of these examples works:
13011 @example
13012 [[file:img.png]]
13013 @end example
13015 @example
13016 [[./img.png]]
13017 @end example
13019 @subsubheading Embedding clickable images
13020 For clickable images, provide a link whose description is another link to an
13021 image file.  For example, to embed a image @file{org-mode-unicorn.png} which
13022 when clicked jumps to @uref{http://Orgmode.org} website, do the following
13024 @example
13025 [[http://orgmode.org][./org-mode-unicorn.png]]
13026 @end example
13028 @subsubheading Sizing and scaling of embedded images
13030 @cindex #+ATTR_ODT
13031 Control the size and scale of the embedded images with the @code{#+ATTR_ODT}
13032 attribute.
13034 @cindex identify, ImageMagick
13035 @vindex org-odt-pixels-per-inch
13036 The ODT export back-end starts with establishing the size of the image in the
13037 final document.  The dimensions of this size is measured in centimeters.  The
13038 back-end then queries the image file for its dimensions measured in pixels.
13039 For this measurement, the back-end relies on ImageMagick's @file{identify}
13040 program or Emacs @code{create-image} and @code{image-size} API.  ImageMagick
13041 is the preferred choice for large file sizes or frequent batch operations.
13042 The back-end then converts the pixel dimensions using
13043 @code{org-odt-pixels-per-inch} into the familiar 72 dpi or 96 dpi.  The
13044 default value for this is in @code{display-pixels-per-inch}, which can be
13045 tweaked for better results based on the capabilities of the output device.
13046 Here are some common image scaling operations:
13048 @table @asis
13049 @item Explicitly size the image
13050 To embed @file{img.png} as a 10 cm x 10 cm image, do the following:
13052 @example
13053 #+ATTR_ODT: :width 10 :height 10
13054 [[./img.png]]
13055 @end example
13057 @item Scale the image
13058 To embed @file{img.png} at half its size, do the following:
13060 @example
13061 #+ATTR_ODT: :scale 0.5
13062 [[./img.png]]
13063 @end example
13065 @item Scale the image to a specific width
13066 To embed @file{img.png} with a width of 10 cm while retaining the original
13067 height:width ratio, do the following:
13069 @example
13070 #+ATTR_ODT: :width 10
13071 [[./img.png]]
13072 @end example
13074 @item Scale the image to a specific height
13075 To embed @file{img.png} with a height of 10 cm while retaining the original
13076 height:width ratio, do the following
13078 @example
13079 #+ATTR_ODT: :height 10
13080 [[./img.png]]
13081 @end example
13082 @end table
13084 @subsubheading Anchoring of images
13086 @cindex #+ATTR_ODT
13087 The ODT export back-end can anchor images to @samp{"as-char"},
13088 @samp{"paragraph"}, or @samp{"page"}.  Set the preferred anchor using the
13089 @code{:anchor} property of the @code{#+ATTR_ODT} line.
13091 To create an image that is anchored to a page:
13092 @example
13093 #+ATTR_ODT: :anchor "page"
13094 [[./img.png]]
13095 @end example
13097 @node Math formatting in ODT export
13098 @subsection Math formatting in ODT export
13100 The ODT export back-end has special support built-in for handling math.
13102 @menu
13103 * Working with @LaTeX{} math snippets::  Embedding in @LaTeX{} format.
13104 * Working with MathML or OpenDocument formula files::  Embedding in native format.
13105 @end menu
13107 @node Working with @LaTeX{} math snippets
13108 @subsubheading Working with @LaTeX{} math snippets
13110 @LaTeX{} math snippets (@pxref{@LaTeX{} fragments}) can be embedded in an ODT
13111 document in one of the following ways:
13113 @cindex MathML
13114 @enumerate
13115 @item MathML
13117 Add this line to the Org file.  This option is activated on a per-file basis.
13119 @example
13120 #+OPTIONS: LaTeX:t
13121 @end example
13123 With this option, @LaTeX{} fragments are first converted into MathML
13124 fragments using an external @LaTeX{}-to-MathML converter program.  The
13125 resulting MathML fragments are then embedded as an OpenDocument Formula in
13126 the exported document.
13128 @vindex org-latex-to-mathml-convert-command
13129 @vindex org-latex-to-mathml-jar-file
13131 To specify the @LaTeX{}-to-MathML converter, customize the variables
13132 @code{org-latex-to-mathml-convert-command} and
13133 @code{org-latex-to-mathml-jar-file}.
13135 To use MathToWeb@footnote{See
13136 @uref{http://www.mathtoweb.com/cgi-bin/mathtoweb_home.pl, MathToWeb}.} as the
13137 preferred converter, configure the above variables as
13139 @lisp
13140 (setq org-latex-to-mathml-convert-command
13141       "java -jar %j -unicode -force -df %o %I"
13142       org-latex-to-mathml-jar-file
13143       "/path/to/mathtoweb.jar")
13144 @end lisp
13145 To use @LaTeX{}ML@footnote{See @uref{http://dlmf.nist.gov/LaTeXML/}.} use
13146 @lisp
13147 (setq org-latex-to-mathml-convert-command
13148       "latexmlmath \"%i\" --presentationmathml=%o")
13149 @end lisp
13151 To quickly verify the reliability of the @LaTeX{}-to-MathML converter, use
13152 the following commands:
13154 @table @kbd
13155 @item M-x org-odt-export-as-odf RET
13156 Convert a @LaTeX{} math snippet to an OpenDocument formula (@file{.odf}) file.
13158 @item M-x org-odt-export-as-odf-and-open RET
13159 Convert a @LaTeX{} math snippet to an OpenDocument formula (@file{.odf}) file
13160 and open the formula file with the system-registered application.
13161 @end table
13163 @cindex dvipng
13164 @cindex dvisvgm
13165 @cindex imagemagick
13166 @item PNG images
13168 Add this line to the Org file.  This option is activated on a per-file basis.
13170 @example
13171 #+OPTIONS: tex:dvipng
13172 @end example
13174 @example
13175 #+OPTIONS: tex:dvisvgm
13176 @end example
13180 @example
13181 #+OPTIONS: tex:imagemagick
13182 @end example
13184 Under this option, @LaTeX{} fragments are processed into PNG or SVG images
13185 and the resulting images are embedded in the exported document.  This method
13186 requires @file{dvipng} program, @file{dvisvgm} or @file{imagemagick}
13187 programs.
13188 @end enumerate
13190 @node Working with MathML or OpenDocument formula files
13191 @subsubheading Working with MathML or OpenDocument formula files
13193 When embedding @LaTeX{} math snippets in ODT documents is not reliable, there
13194 is one more option to try.  Embed an equation by linking to its MathML
13195 (@file{.mml}) source or its OpenDocument formula (@file{.odf}) file as shown
13196 below:
13198 @example
13199 [[./equation.mml]]
13200 @end example
13204 @example
13205 [[./equation.odf]]
13206 @end example
13208 @node Labels and captions in ODT export
13209 @subsection Labels and captions in ODT export
13211 ODT format handles labeling and captioning of objects based on their
13212 types.  Inline images, tables, @LaTeX{} fragments, and Math formulas are
13213 numbered and captioned separately.  Each object also gets a unique sequence
13214 number based on its order of first appearance in the Org file.  Each category
13215 has its own sequence.  A caption is just a label applied to these objects.
13217 @example
13218 #+CAPTION: Bell curve
13219 #+LABEL:   fig:SED-HR4049
13220 [[./img/a.png]]
13221 @end example
13223 When rendered, it may show as follows in the exported document:
13225 @example
13226 Figure 2: Bell curve
13227 @end example
13229 @vindex org-odt-category-map-alist
13230 To modify the category component of the caption, customize the option
13231 @code{org-odt-category-map-alist}.  For example, to tag embedded images with
13232 the string @samp{Illustration} instead of the default string @samp{Figure},
13233 use the following setting:
13235 @lisp
13236 (setq org-odt-category-map-alist
13237       '(("__Figure__" "Illustration" "value" "Figure" org-odt--enumerable-image-p)))
13238 @end lisp
13240 With the above modification, the previous example changes to:
13242 @example
13243 Illustration 2: Bell curve
13244 @end example
13246 @node Literal examples in ODT export
13247 @subsection Literal examples in ODT export
13249 The ODT export back-end supports literal examples (@pxref{Literal examples})
13250 with full fontification.  Internally, the ODT export back-end relies on
13251 @file{htmlfontify.el} to generate the style definitions needed for fancy
13252 listings.  The auto-generated styles get @samp{OrgSrc} prefix and inherit
13253 colors from the faces used by Emacs @code{font-lock} library for that source
13254 language.
13256 @vindex org-odt-fontify-srcblocks
13257 For custom fontification styles, customize the
13258 @code{org-odt-create-custom-styles-for-srcblocks} option.
13260 @vindex org-odt-create-custom-styles-for-srcblocks
13261 To turn off fontification of literal examples, customize the
13262 @code{org-odt-fontify-srcblocks} option.
13264 @node Advanced topics in ODT export
13265 @subsection Advanced topics in ODT export
13267 The ODT export back-end has extensive features useful for power users and
13268 frequent uses of ODT formats.
13270 @menu
13271 * Configuring a document converter::  Registering a document converter.
13272 * Working with OpenDocument style files::  Exploring internals.
13273 * Creating one-off styles::     Customizing styles, highlighting.
13274 * Customizing tables in ODT export::  Defining table templates.
13275 * Validating OpenDocument XML::  Debugging corrupted OpenDocument files.
13276 @end menu
13278 @node Configuring a document converter
13279 @subsubheading Configuring a document converter
13280 @cindex convert
13281 @cindex doc, docx, rtf
13282 @cindex converter
13284 The ODT export back-end works with popular converters with little or no extra
13285 configuration.  @xref{Extending ODT export}.  The following is for unsupported
13286 converters or tweaking existing defaults.
13288 @enumerate
13289 @item Register the converter
13291 @vindex org-odt-convert-processes
13292 Add the name of the converter to the @code{org-odt-convert-processes}
13293 variable.  Note that it also requires how the converter is invoked on the
13294 command line.  See the variable's docstring for details.
13296 @item Configure its capabilities
13298 @vindex org-odt-convert-capabilities
13299 @anchor{x-odt-converter-capabilities} Specify which formats the converter can
13300 handle by customizing the variable @code{org-odt-convert-capabilities}.  Use
13301 the entry for the default values in this variable for configuring the new
13302 converter.  Also see its docstring for details.
13304 @item Choose the converter
13306 @vindex org-odt-convert-process
13307 Select the newly added converter as the preferred one by customizing the
13308 option @code{org-odt-convert-process}.
13309 @end enumerate
13311 @node Working with OpenDocument style files
13312 @subsubheading Working with OpenDocument style files
13313 @cindex styles, custom
13314 @cindex template, custom
13316 This section explores the internals of the ODT exporter; the means by which
13317 it produces styled documents; the use of automatic and custom OpenDocument
13318 styles.
13320 @anchor{x-factory-styles}
13321 @subsubheading a) Factory styles
13323 The ODT exporter relies on two files for generating its output.
13324 These files are bundled with the distribution under the directory pointed to
13325 by the variable @code{org-odt-styles-dir}.  The two files are:
13327 @itemize
13328 @anchor{x-orgodtstyles-xml}
13329 @item
13330 @file{OrgOdtStyles.xml}
13332 This file contributes to the @file{styles.xml} file of the final @samp{ODT}
13333 document.  This file gets modified for the following purposes:
13334 @enumerate
13336 @item
13337 To control outline numbering based on user settings.
13339 @item
13340 To add styles generated by @file{htmlfontify.el} for fontification of code
13341 blocks.
13342 @end enumerate
13344 @anchor{x-orgodtcontenttemplate-xml}
13345 @item
13346 @file{OrgOdtContentTemplate.xml}
13348 This file contributes to the @file{content.xml} file of the final @samp{ODT}
13349 document.  The contents of the Org outline are inserted between the
13350 @samp{<office:text>}@dots{}@samp{</office:text>} elements of this file.
13352 Apart from serving as a template file for the final @file{content.xml}, the
13353 file serves the following purposes:
13354 @enumerate
13356 @item
13357 It contains automatic styles for formatting of tables which are referenced by
13358 the exporter.
13360 @item
13361 It contains @samp{<text:sequence-decl>}@dots{}@samp{</text:sequence-decl>}
13362 elements that control numbering of tables, images, equations, and similar
13363 entities.
13364 @end enumerate
13365 @end itemize
13367 @anchor{x-overriding-factory-styles}
13368 @subsubheading b) Overriding factory styles
13369 The following two variables control the location from where the ODT exporter
13370 picks up the custom styles and content template files.  Customize these
13371 variables to override the factory styles used by the exporter.
13373 @itemize
13374 @anchor{x-org-odt-styles-file}
13375 @item
13376 @code{org-odt-styles-file}
13378 The ODT export back-end uses the file pointed to by this variable, such as
13379 @file{styles.xml}, for the final output.  It can take one of the following
13380 values:
13382 @enumerate
13383 @item A @file{styles.xml} file
13385 Use this file instead of the default @file{styles.xml}
13387 @item A @file{.odt} or @file{.ott} file
13389 Use the @file{styles.xml} contained in the specified OpenDocument Text or
13390 Template file
13392 @item A @file{.odt} or @file{.ott} file and a subset of files contained within them
13394 Use the @file{styles.xml} contained in the specified OpenDocument Text or
13395 Template file.  Additionally extract the specified member files and embed
13396 those within the final @samp{ODT} document.
13398 Use this option if the @file{styles.xml} file references additional files
13399 like header and footer images.
13401 @item @code{nil}
13403 Use the default @file{styles.xml}
13404 @end enumerate
13406 @anchor{x-org-odt-content-template-file}
13407 @item
13408 @code{org-odt-content-template-file}
13410 Use this variable to specify the blank @file{content.xml} that will be used
13411 in the final output.
13412 @end itemize
13414 @node Creating one-off styles
13415 @subsubheading Creating one-off styles
13417 The ODT export back-end can read embedded raw OpenDocument XML from the Org
13418 file.  Such direct formatting are useful for one-off instances.
13420 @enumerate
13421 @item Embedding ODT tags as part of regular text
13423 Enclose OpenDocument syntax in @samp{@@@@odt:...@@@@} for inline markup.  For
13424 example, to highlight a region of text do the following:
13426 @example
13427 @@@@odt:<text:span text:style-name="Highlight">This is highlighted
13428 text</text:span>@@@@.  But this is regular text.
13429 @end example
13431 @strong{Hint:} To see the above example in action, edit the @file{styles.xml}
13432 (@pxref{x-orgodtstyles-xml,,Factory styles}) and add a custom
13433 @samp{Highlight} style as shown below:
13435 @example
13436 <style:style style:name="Highlight" style:family="text">
13437   <style:text-properties fo:background-color="#ff0000"/>
13438 </style:style>
13439 @end example
13441 @item Embedding a one-line OpenDocument XML
13443 The ODT export back-end can read one-liner options with @code{#+ODT:}
13444 in the Org file.  For example, to force a page break:
13446 @example
13447 #+ODT: <text:p text:style-name="PageBreak"/>
13448 @end example
13450 @strong{Hint:} To see the above example in action, edit your
13451 @file{styles.xml} (@pxref{x-orgodtstyles-xml,,Factory styles}) and add a
13452 custom @samp{PageBreak} style as shown below.
13454 @example
13455 <style:style style:name="PageBreak" style:family="paragraph"
13456              style:parent-style-name="Text_20_body">
13457   <style:paragraph-properties fo:break-before="page"/>
13458 </style:style>
13459 @end example
13461 @item Embedding a block of OpenDocument XML
13463 The ODT export back-end can also read ODT export blocks for OpenDocument XML.
13464 Such blocks use the @code{#+BEGIN_EXPORT odt}@dots{}@code{#+END_EXPORT}
13465 constructs.
13467 For example, to create a one-off paragraph that uses bold text, do the
13468 following:
13470 @example
13471 #+BEGIN_EXPORT odt
13472 <text:p text:style-name="Text_20_body_20_bold">
13473 This paragraph is specially formatted and uses bold text.
13474 </text:p>
13475 #+END_EXPORT
13476 @end example
13478 @end enumerate
13480 @node Customizing tables in ODT export
13481 @subsubheading Customizing tables in ODT export
13482 @cindex tables, in ODT export
13484 @cindex #+ATTR_ODT
13485 Override the default table format by specifying a custom table style with the
13486 @code{#+ATTR_ODT} line.  For a discussion on default formatting of tables
13487 @pxref{Tables in ODT export}.
13489 This feature closely mimics the way table templates are defined in the
13490 OpenDocument-v1.2
13491 specification.@footnote{@url{http://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2.html,
13492 OpenDocument-v1.2 Specification}}
13494 @vindex org-odt-table-styles
13495 For quick preview of this feature, install the settings below and export the
13496 table that follows:
13498 @lisp
13499 (setq org-odt-table-styles
13500       (append org-odt-table-styles
13501             '(("TableWithHeaderRowAndColumn" "Custom"
13502                 ((use-first-row-styles . t)
13503                  (use-first-column-styles . t)))
13504                 ("TableWithFirstRowandLastRow" "Custom"
13505                  ((use-first-row-styles . t)
13506                  (use-last-row-styles . t))))))
13507 @end lisp
13509 @example
13510 #+ATTR_ODT: :style TableWithHeaderRowAndColumn
13511 | Name  | Phone | Age |
13512 | Peter |  1234 |  17 |
13513 | Anna  |  4321 |  25 |
13514 @end example
13516 The example above used @samp{Custom} template and installed two table styles
13517 @samp{TableWithHeaderRowAndColumn} and @samp{TableWithFirstRowandLastRow}.
13518 @strong{Important:} The OpenDocument styles needed for producing the above
13519 template were pre-defined.  They are available in the section marked
13520 @samp{Custom Table Template} in @file{OrgOdtContentTemplate.xml}
13521 (@pxref{x-orgodtcontenttemplate-xml,,Factory styles}.  For adding new
13522 templates, define new styles here.
13524 To use this feature proceed as follows:
13526 @enumerate
13527 @item
13528 Create a table template@footnote{See the @code{<table:table-template>}
13529 element of the OpenDocument-v1.2 specification}
13531 A table template is set of @samp{table-cell} and @samp{paragraph} styles for
13532 each of the following table cell categories:
13534 @itemize @minus
13535 @item Body
13536 @item First column
13537 @item Last column
13538 @item First row
13539 @item Last row
13540 @item Even row
13541 @item Odd row
13542 @item Even column
13543 @item Odd Column
13544 @end itemize
13546 The names for the above styles must be chosen based on the name of the table
13547 template using a well-defined convention.
13549 The naming convention is better illustrated with an example.  For a table
13550 template with the name @samp{Custom}, the needed style names are listed in
13551 the following table.
13553 @multitable  {Table cell type} {CustomEvenColumnTableCell} {CustomEvenColumnTableParagraph}
13554 @headitem Table cell type
13555 @tab @code{table-cell} style
13556 @tab @code{paragraph} style
13557 @item
13558 @tab
13559 @tab
13560 @item Body
13561 @tab @samp{CustomTableCell}
13562 @tab @samp{CustomTableParagraph}
13563 @item First column
13564 @tab @samp{CustomFirstColumnTableCell}
13565 @tab @samp{CustomFirstColumnTableParagraph}
13566 @item Last column
13567 @tab @samp{CustomLastColumnTableCell}
13568 @tab @samp{CustomLastColumnTableParagraph}
13569 @item First row
13570 @tab @samp{CustomFirstRowTableCell}
13571 @tab @samp{CustomFirstRowTableParagraph}
13572 @item Last row
13573 @tab @samp{CustomLastRowTableCell}
13574 @tab @samp{CustomLastRowTableParagraph}
13575 @item Even row
13576 @tab @samp{CustomEvenRowTableCell}
13577 @tab @samp{CustomEvenRowTableParagraph}
13578 @item Odd row
13579 @tab @samp{CustomOddRowTableCell}
13580 @tab @samp{CustomOddRowTableParagraph}
13581 @item Even column
13582 @tab @samp{CustomEvenColumnTableCell}
13583 @tab @samp{CustomEvenColumnTableParagraph}
13584 @item Odd column
13585 @tab @samp{CustomOddColumnTableCell}
13586 @tab @samp{CustomOddColumnTableParagraph}
13587 @end multitable
13589 To create a table template with the name @samp{Custom}, define the above
13590 styles in the
13591 @code{<office:automatic-styles>}...@code{</office:automatic-styles>} element
13592 of the content template file (@pxref{x-orgodtcontenttemplate-xml,,Factory
13593 styles}).
13595 @item
13596 Define a table style@footnote{See the attributes @code{table:template-name},
13597 @code{table:use-first-row-styles}, @code{table:use-last-row-styles},
13598 @code{table:use-first-column-styles}, @code{table:use-last-column-styles},
13599 @code{table:use-banding-rows-styles}, and
13600 @code{table:use-banding-column-styles} of the @code{<table:table>} element in
13601 the OpenDocument-v1.2 specification}
13603 @vindex org-odt-table-styles
13604 To define a table style, create an entry for the style in the variable
13605 @code{org-odt-table-styles} and specify the following:
13607 @itemize @minus
13608 @item the name of the table template created in step (1)
13609 @item the set of cell styles in that template that are to be activated
13610 @end itemize
13612 For example, the entry below defines two different table styles
13613 @samp{TableWithHeaderRowAndColumn} and @samp{TableWithFirstRowandLastRow}
13614 based on the same template @samp{Custom}.  The styles achieve their intended
13615 effect by selectively activating the individual cell styles in that template.
13617 @lisp
13618 (setq org-odt-table-styles
13619       (append org-odt-table-styles
13620               '(("TableWithHeaderRowAndColumn" "Custom"
13621                  ((use-first-row-styles . t)
13622                   (use-first-column-styles . t)))
13623                 ("TableWithFirstRowandLastRow" "Custom"
13624                  ((use-first-row-styles . t)
13625                   (use-last-row-styles . t))))))
13626 @end lisp
13628 @item
13629 Associate a table with the table style
13631 To do this, specify the table style created in step (2) as part of
13632 the @code{ATTR_ODT} line as shown below.
13634 @example
13635 #+ATTR_ODT: :style "TableWithHeaderRowAndColumn"
13636 | Name  | Phone | Age |
13637 | Peter |  1234 |  17 |
13638 | Anna  |  4321 |  25 |
13639 @end example
13640 @end enumerate
13642 @node Validating OpenDocument XML
13643 @subsubheading Validating OpenDocument XML
13645 Sometimes ODT format files may not open due to @file{.odt} file corruption.
13646 To verify if the @file{.odt} file is corrupt, validate it against the
13647 OpenDocument RELAX NG Compact Syntax---RNC---schema.  But first the
13648 @file{.odt} files have to be decompressed using @samp{zip}.  Note that
13649 @file{.odt} files are @samp{zip} archives: @inforef{File Archives,,emacs}.
13650 The contents of @file{.odt} files are in @file{.xml}.  For general help with
13651 validation---and schema-sensitive editing---of XML files:
13652 @inforef{Introduction,,nxml-mode}.
13654 @vindex org-odt-schema-dir
13655 Customize @code{org-odt-schema-dir} to point to a directory with OpenDocument
13656 @file{.rnc} files and the needed schema-locating rules.  The ODT export
13657 back-end takes care of updating the @code{rng-schema-locating-files}.
13659 @c end opendocument
13661 @node Org export
13662 @section Org export
13663 @cindex Org export
13665 @code{org} export back-end creates a normalized version of the Org document
13666 in current buffer.  The exporter evaluates Babel code (@pxref{Evaluating code
13667 blocks}) and removes content specific to other back-ends.
13669 @subheading Org export commands
13671 @table @kbd
13672 @orgcmd{C-c C-e O o,org-org-export-to-org}
13673 Export as an Org file with a @file{.org} extension.  For @file{myfile.org},
13674 Org exports to @file{myfile.org.org}, overwriting without warning.
13676 @orgcmd{C-c C-e O O,org-org-export-as-org}
13677 Export to a temporary buffer.  Does not create a file.
13678 @item C-c C-e O v
13679 Export to an Org file, then open it.
13680 @end table
13682 @node Texinfo export
13683 @section Texinfo export
13684 @cindex Texinfo export
13686 The @samp{texinfo} export back-end generates documents with Texinfo code that
13687 can compile to Info format.
13689 @menu
13690 * Texinfo export commands::     Invoking commands.
13691 * Texinfo specific export settings::  Setting the environment.
13692 * Texinfo file header::         Generating the header.
13693 * Texinfo title and copyright page::  Creating preamble pages.
13694 * Info directory file::     Installing a manual in Info file hierarchy.
13695 * Headings and sectioning structure::  Building document structure.
13696 * Indices::                     Creating indices.
13697 * Quoting Texinfo code::        Incorporating literal Texinfo code.
13698 * Plain lists in Texinfo export::  List attributes.
13699 * Tables in Texinfo export::    Table attributes.
13700 * Images in Texinfo export::    Image attributes.
13701 * Special blocks in Texinfo export::  Special block attributes.
13702 * A Texinfo example::           Processing Org to Texinfo.
13703 @end menu
13705 @node Texinfo export commands
13706 @subsection Texinfo export commands
13708 @vindex org-texinfo-info-process
13709 @table @kbd
13710 @orgcmd{C-c C-e i t,org-texinfo-export-to-texinfo}
13711 Export as a Texinfo file with @file{.texi} extension.  For @file{myfile.org},
13712 Org exports to @file{myfile.texi}, overwriting without warning.
13713 @orgcmd{C-c C-e i i,org-texinfo-export-to-info}
13714 Export to Texinfo format first and then process it to make an Info file.  To
13715 generate other formats, such as DocBook, customize the
13716 @code{org-texinfo-info-process} variable.
13717 @end table
13719 @node Texinfo specific export settings
13720 @subsection Texinfo specific export settings
13721 The Texinfo export back-end has several additional keywords for customizing
13722 Texinfo output.  Setting these keywords works similar to the general options
13723 (@pxref{Export settings}).
13725 @table @samp
13727 @item SUBTITLE
13728 @cindex #+SUBTITLE (Texinfo)
13729 The document subtitle.
13731 @item SUBAUTHOR
13732 @cindex #+SUBAUTHOR
13733 The document subauthor.
13735 @item TEXINFO_FILENAME
13736 @cindex #+TEXINFO_FILENAME
13737 The Texinfo filename.
13739 @item TEXINFO_CLASS
13740 @cindex #+TEXINFO_CLASS
13741 @vindex org-texinfo-default-class
13742 The default document class (@code{org-texinfo-default-class}), which must be
13743 a member of @code{org-texinfo-classes}.
13745 @item TEXINFO_HEADER
13746 @cindex #+TEXINFO_HEADER
13747 Arbitrary lines inserted at the end of the header.
13749 @item TEXINFO_POST_HEADER
13750 @cindex #+TEXINFO_POST_HEADER
13751 Arbitrary lines inserted after the end of the header.
13753 @item TEXINFO_DIR_CATEGORY
13754 @cindex #+TEXINFO_DIR_CATEGORY
13755 The directory category of the document.
13757 @item TEXINFO_DIR_TITLE
13758 @cindex #+TEXINFO_DIR_TITLE
13759 The directory title of the document.
13761 @item TEXINFO_DIR_DESC
13762 @cindex #+TEXINFO_DIR_DESC
13763 The directory description of the document.
13765 @item TEXINFO_PRINTED_TITLE
13766 @cindex #+TEXINFO_PRINTED_TITLE
13767 The printed title of the document.
13768 @end table
13770 @node Texinfo file header
13771 @subsection Texinfo file header
13773 @cindex #+TEXINFO_FILENAME
13774 After creating the header for a Texinfo file, the Texinfo back-end
13775 automatically generates a name and destination path for the Info file.  To
13776 override this default with a more sensible path and name, specify the
13777 @code{#+TEXINFO_FILENAME} keyword.
13779 @vindex org-texinfo-coding-system
13780 @vindex org-texinfo-classes
13781 @cindex #+TEXINFO_HEADER
13782 @cindex #+TEXINFO_CLASS
13783 Along with the output's file name, the Texinfo header also contains language
13784 details (@pxref{Export settings}) and encoding system as set in the
13785 @code{org-texinfo-coding-system} variable.  Insert @code{#+TEXINFO_HEADER}
13786 keywords for each additional command in the header, for example:
13787 @@code@{@@synindex@}.
13789 Instead of repeatedly installing the same set of commands, define a class in
13790 @code{org-texinfo-classes} once, and then activate it in the document by
13791 setting the @code{#+TEXINFO_CLASS} keyword to that class.
13793 @node Texinfo title and copyright page
13794 @subsection Texinfo title and copyright page
13796 @cindex #+TEXINFO_PRINTED_TITLE
13797 The default template for hard copy output has a title page with
13798 @code{#+TITLE} and @code{#+AUTHOR} (@pxref{Export settings}).  To replace the
13799 regular @code{#+TITLE} with something different for the printed version, use
13800 the @code{#+TEXINFO_PRINTED_TITLE} and @code{#+SUBTITLE} keywords.  Both
13801 expect raw Texinfo code for setting their values.
13803 @cindex #+SUBAUTHOR
13804 If one @code{#+AUTHOR} is not sufficient, add multiple @code{#+SUBAUTHOR}
13805 keywords.  They have to be set in raw Texinfo code.
13807 @example
13808 #+AUTHOR: Jane Smith
13809 #+SUBAUTHOR: John Doe
13810 #+TEXINFO_PRINTED_TITLE: This Long Title@@inlinefmt@{tex,@@*@} Is Broken in @@TeX@{@}
13811 @end example
13813 @cindex property, COPYING
13814 Copying material is defined in a dedicated headline with a non-@code{nil}
13815 @code{:COPYING:} property.  The back-end inserts the contents within a
13816 @code{@@copying} command at the beginning of the document.  The heading
13817 itself does not appear in the structure of the document.
13819 Copyright information is printed on the back of the title page.
13821 @example
13822 * Legalese
13823   :PROPERTIES:
13824   :COPYING: t
13825   :END:
13827   This is a short example of a complete Texinfo file, version 1.0.
13829   Copyright \copy 2016 Free Software Foundation, Inc.
13830 @end example
13832 @node Info directory file
13833 @subsection Info directory file
13834 @cindex @samp{dir} file, in Texinfo export
13835 @cindex Texinfo export, @samp{dir} file
13836 @cindex Info directory file, in Texinfo export
13837 @cindex Texinfo export, Info directory file
13838 @cindex @code{install-info} parameters, in Texinfo export
13839 @cindex Texinfo export, @code{install-info} parameters
13841 @cindex #+TEXINFO_DIR_CATEGORY
13842 @cindex #+TEXINFO_DIR_TITLE
13843 @cindex #+TEXINFO_DIR_DESC
13844 The end result of the Texinfo export process is the creation of an Info file.
13845 This Info file's metadata has variables for category, title, and description:
13846 @code{#+TEXINFO_DIR_CATEGORY}, @code{#+TEXINFO_DIR_TITLE}, and
13847 @code{#+TEXINFO_DIR_DESC} that establish where in the Info hierarchy the file
13848 fits.
13850 Here is an example that writes to the Info directory file:
13852 @example
13853 #+TEXINFO_DIR_CATEGORY: Emacs
13854 #+TEXINFO_DIR_TITLE: Org Mode: (org)
13855 #+TEXINFO_DIR_DESC: Outline-based notes management and organizer
13856 @end example
13858 @node Headings and sectioning structure
13859 @subsection Headings and sectioning structure
13861 @vindex org-texinfo-classes
13862 @vindex org-texinfo-default-class
13863 @cindex #+TEXINFO_CLASS
13864 The Texinfo export back-end uses a pre-defined scheme to convert Org
13865 headlines to an equivalent Texinfo structuring commands.  A scheme like this
13866 maps top-level headlines to numbered chapters tagged as @code{@@chapter} and
13867 lower-level headlines to unnumbered chapters tagged as @code{@@unnumbered}.
13868 To override such mappings to introduce @code{@@part} or other Texinfo
13869 structuring commands, define a new class in @code{org-texinfo-classes}.
13870 Activate the new class with the @code{#+TEXINFO_CLASS} keyword.  When no new
13871 class is defined and activated, the Texinfo export back-end defaults to the
13872 @code{org-texinfo-default-class}.
13874 If an Org headline's level has no associated Texinfo structuring command, or
13875 is below a certain threshold (@pxref{Export settings}), then the Texinfo
13876 export back-end makes it into a list item.
13878 @cindex property, APPENDIX
13879 The Texinfo export back-end makes any headline with a non-@code{nil}
13880 @code{:APPENDIX:} property into an appendix.  This happens independent of the
13881 Org headline level or the @code{#+TEXINFO_CLASS}.
13883 @cindex property, DESCRIPTION
13884 The Texinfo export back-end creates a menu entry after the Org headline for
13885 each regular sectioning structure.  To override this with a shorter menu
13886 entry, use the @code{:ALT_TITLE:} property (@pxref{Table of contents}).
13887 Texinfo menu entries also have an option for a longer @code{:DESCRIPTION:}
13888 property.  Here's an example that uses both to override the default menu
13889 entry:
13891 @example
13892 * Controlling Screen Display
13893   :PROPERTIES:
13894   :ALT_TITLE: Display
13895   :DESCRIPTION: Controlling Screen Display
13896   :END:
13897 @end example
13899 @cindex The Top node, in Texinfo export
13900 @cindex Texinfo export, Top node
13901 The text before the first headline belongs to the @samp{Top} node, i.e., the
13902 node in which a reader enters an Info manual.  As such, it is expected not to
13903 appear in printed output generated from the @file{.texi} file.  @inforef{The
13904 Top Node,,texinfo}, for more information.
13906 @node Indices
13907 @subsection Indices
13909 @cindex #+CINDEX
13910 @cindex concept index, in Texinfo export
13911 @cindex Texinfo export, index, concept
13912 @cindex #+FINDEX
13913 @cindex function index, in Texinfo export
13914 @cindex Texinfo export, index, function
13915 @cindex #+KINDEX
13916 @cindex keystroke index, in Texinfo export
13917 @cindex Texinfo export, keystroke index
13918 @cindex #+PINDEX
13919 @cindex program index, in Texinfo export
13920 @cindex Texinfo export, program index
13921 @cindex #+TINDEX
13922 @cindex data type index, in Texinfo export
13923 @cindex Texinfo export, data type index
13924 @cindex #+VINDEX
13925 @cindex variable index, in Texinfo export
13926 @cindex Texinfo export, variable index
13927 The Texinfo export back-end recognizes these indexing keywords if used in the
13928 Org file: @code{#+CINDEX}, @code{#+FINDEX}, @code{#+KINDEX}, @code{#+PINDEX},
13929 @code{#+TINDEX}, and @code{#+VINDEX}.  Write their value as verbatim Texinfo
13930 code; in particular, @samp{@{}, @samp{@}} and @samp{@@} characters need to be
13931 escaped with @samp{@@} if they not belong to a Texinfo command.
13933 @example
13934 #+CINDEX: Defining indexing entries
13935 @end example
13937 @cindex property, INDEX
13938 For the back-end to generate an index entry for a headline, set the
13939 @code{:INDEX:} property to @samp{cp} or @samp{vr}.  These abbreviations come
13940 from Texinfo that stand for concept index and variable index.  The Texinfo
13941 manual has abbreviations for all other kinds of indexes.  The back-end
13942 exports the headline as an unnumbered chapter or section command, and then
13943 inserts the index after its contents.
13945 @example
13946 * Concept Index
13947   :PROPERTIES:
13948   :INDEX: cp
13949   :END:
13950 @end example
13952 @node Quoting Texinfo code
13953 @subsection Quoting Texinfo code
13955 Use any of the following three methods to insert or escape raw Texinfo code:
13957 @cindex #+TEXINFO
13958 @cindex #+BEGIN_EXPORT texinfo
13959 @example
13960 Richard @@@@texinfo:@@sc@{@@@@Stallman@@@@texinfo:@}@@@@ commence' GNU.
13962 #+TEXINFO: @@need800
13963 This paragraph is preceded by...
13965 #+BEGIN_EXPORT texinfo
13966 @@auindex Johnson, Mark
13967 @@auindex Lakoff, George
13968 #+END_EXPORT
13969 @end example
13971 @node Plain lists in Texinfo export
13972 @subsection Plain lists in Texinfo export
13973 @cindex #+ATTR_TEXINFO, in plain lists
13974 @cindex Two-column tables, in Texinfo export
13976 @cindex :table-type attribute, in Texinfo export
13977 The Texinfo export back-end by default converts description lists in the Org
13978 file using the default command @code{@@table}, which results in a table with
13979 two columns.  To change this behavior, specify @code{:table-type} with
13980 @code{ftable} or @code{vtable} attributes.  For more information,
13981 @inforef{Two-column Tables,,texinfo}.
13983 @vindex org-texinfo-table-default-markup
13984 @cindex :indic attribute, in Texinfo export
13985 The Texinfo export back-end by default also applies a text highlight based on
13986 the defaults stored in @code{org-texinfo-table-default-markup}.  To override
13987 the default highlight command, specify another one with the @code{:indic}
13988 attribute.
13990 @cindex Multiple entries in two-column tables, in Texinfo export
13991 @cindex :sep attribute, in Texinfo export
13992 Org syntax is limited to one entry per list item.  Nevertheless, the Texinfo
13993 export back-end can split that entry according to any text provided through
13994 the @code{:sep} attribute.  Each part then becomes a new entry in the first
13995 column of the table.
13997 The following example illustrates all the attributes above:
13999 @example
14000 #+ATTR_TEXINFO: :table-type vtable :sep , :indic asis
14001 - foo, bar :: This is the common text for variables foo and bar.
14002 @end example
14004 @noindent
14005 becomes
14007 @example
14008 @@vtable @@asis
14009 @@item foo
14010 @@itemx bar
14011 This is the common text for variables foo and bar.
14012 @@end table
14013 @end example
14015 @node Tables in Texinfo export
14016 @subsection Tables in Texinfo export
14017 @cindex #+ATTR_TEXINFO, in tables
14019 When exporting tables, the Texinfo export back-end uses the widest cell width
14020 in each column.  To override this and instead specify as fractions of line
14021 length, use the @code{:columns} attribute.  See example below.
14023 @example
14024 #+ATTR_TEXINFO: :columns .5 .5
14025 | a cell | another cell |
14026 @end example
14028 @node Images in Texinfo export
14029 @subsection Images in Texinfo export
14030 @cindex #+ATTR_TEXINFO, in images
14032 Insert a file link to the image in the Org file, and the Texinfo export
14033 back-end inserts the image.  These links must have the usual supported image
14034 extensions and no descriptions.  To scale the image, use @code{:width} and
14035 @code{:height} attributes.  For alternate text, use @code{:alt} and specify
14036 the text using Texinfo code, as shown in the example:
14038 @example
14039 #+ATTR_TEXINFO: :width 1in :alt Alternate @@i@{text@}
14040 [[ridt.pdf]]
14041 @end example
14043 @node Special blocks in Texinfo export
14044 @subsection Special blocks
14045 @cindex #+ATTR_TEXINFO, in special blocks
14047 The Texinfo export back-end converts special blocks to commands with the same
14048 name.  It also adds any @code{:options} attributes to the end of the command,
14049 as shown in this example:
14051 @example
14052 #+ATTR_TEXINFO: :options org-org-export-to-org ...
14053 #+begin_defun
14054 A somewhat obsessive function.
14055 #+end_defun
14056 @end example
14058 @noindent
14059 becomes
14061 @example
14062 @@defun org-org-export-to-org ...
14063 A somewhat obsessive function.
14064 @@end defun
14065 @end example
14067 @node A Texinfo example
14068 @subsection A Texinfo example
14070 Here is a more detailed example Org file.  @xref{GNU Sample
14071 Texts,,,texinfo,GNU Texinfo Manual} for an equivalent example using Texinfo
14072 code.
14074 @example
14075 #+TITLE: GNU Sample @{@{@{version@}@}@}
14076 #+SUBTITLE: for version @{@{@{version@}@}@}, @{@{@{updated@}@}@}
14077 #+AUTHOR: A.U. Thor
14078 #+EMAIL: bug-sample@@gnu.org
14080 #+OPTIONS: ':t toc:t author:t email:t
14081 #+LANGUAGE: en
14083 #+MACRO: version 2.0
14084 #+MACRO: updated last updated 4 March 2014
14086 #+TEXINFO_FILENAME: sample.info
14087 #+TEXINFO_HEADER: @@syncodeindex pg cp
14089 #+TEXINFO_DIR_CATEGORY: Texinfo documentation system
14090 #+TEXINFO_DIR_TITLE: sample: (sample)
14091 #+TEXINFO_DIR_DESC: Invoking sample
14093 #+TEXINFO_PRINTED_TITLE: GNU Sample
14095 This manual is for GNU Sample (version @{@{@{version@}@}@},
14096 @{@{@{updated@}@}@}).
14098 * Copying
14099   :PROPERTIES:
14100   :COPYING:  t
14101   :END:
14103   This manual is for GNU Sample (version @{@{@{version@}@}@},
14104   @{@{@{updated@}@}@}), which is an example in the Texinfo documentation.
14106   Copyright \copy 2016 Free Software Foundation, Inc.
14108   #+BEGIN_QUOTE
14109   Permission is granted to copy, distribute and/or modify this
14110   document under the terms of the GNU Free Documentation License,
14111   Version 1.3 or any later version published by the Free Software
14112   Foundation; with no Invariant Sections, with no Front-Cover Texts,
14113   and with no Back-Cover Texts.  A copy of the license is included in
14114   the section entitled "GNU Free Documentation License".
14115   #+END_QUOTE
14117 * Invoking sample
14119   #+PINDEX: sample
14120   #+CINDEX: invoking @@command@{sample@}
14122   This is a sample manual.  There is no sample program to invoke, but
14123   if there were, you could see its basic usage and command line
14124   options here.
14126 * GNU Free Documentation License
14127   :PROPERTIES:
14128   :APPENDIX: t
14129   :END:
14131   #+TEXINFO: @@include fdl.texi
14133 * Index
14134   :PROPERTIES:
14135   :INDEX:    cp
14136   :END:
14137 @end example
14139 @node iCalendar export
14140 @section iCalendar export
14141 @cindex iCalendar export
14143 @vindex org-icalendar-include-todo
14144 @vindex org-icalendar-use-deadline
14145 @vindex org-icalendar-use-scheduled
14146 @vindex org-icalendar-categories
14147 @vindex org-icalendar-alarm-time
14148 A large part of Org mode's inter-operability success is its ability to easily
14149 export to or import from external applications.  The iCalendar export
14150 back-end takes calendar data from Org files and exports to the standard
14151 iCalendar format.
14153 The iCalendar export back-end can also incorporate TODO entries based on the
14154 configuration of the @code{org-icalendar-include-todo} variable.  The
14155 back-end exports plain timestamps as VEVENT, TODO items as VTODO, and also
14156 create events from deadlines that are in non-TODO items.  The back-end uses
14157 the deadlines and scheduling dates in Org TODO items for setting the start
14158 and due dates for the iCalendar TODO entry.  Consult the
14159 @code{org-icalendar-use-deadline} and @code{org-icalendar-use-scheduled}
14160 variables for more details.
14162 For tags on the headline, the iCalendar export back-end makes them into
14163 iCalendar categories.  To tweak the inheritance of tags and TODO states,
14164 configure the variable @code{org-icalendar-categories}.  To assign clock
14165 alarms based on time, configure the @code{org-icalendar-alarm-time} variable.
14167 @vindex org-icalendar-store-UID
14168 @cindex property, ID
14169 The iCalendar format standard requires globally unique identifier---UID---for
14170 each entry.  The iCalendar export back-end creates UIDs during export.  To
14171 save a copy of the UID in the Org file set the variable
14172 @code{org-icalendar-store-UID}.  The back-end looks for the @code{:ID:}
14173 property of the entry for re-using the same UID for subsequent exports.
14175 Since a single Org entry can result in multiple iCalendar entries---as
14176 timestamp, deadline, scheduled item, or TODO item---Org adds prefixes to the
14177 UID, depending on which part of the Org entry triggered the creation of the
14178 iCalendar entry.  Prefixing ensures UIDs remains unique, yet enable
14179 synchronization programs trace the connections.
14181 @table @kbd
14182 @orgcmd{C-c C-e c f,org-icalendar-export-to-ics}
14183 Create iCalendar entries from the current Org buffer and store them in the
14184 same directory, using a file extension @file{.ics}.
14185 @orgcmd{C-c C-e c a, org-icalendar-export-agenda-files}
14186 @vindex org-agenda-files
14187 Create iCalendar entries from Org files in @code{org-agenda-files} and store
14188 in a separate iCalendar file for each Org file.
14189 @orgcmd{C-c C-e c c,org-icalendar-combine-agenda-files}
14190 @vindex org-icalendar-combined-agenda-file
14191 Create a combined iCalendar file from Org files in @code{org-agenda-files}
14192 and write it to @code{org-icalendar-combined-agenda-file} file name.
14193 @end table
14195 @vindex org-use-property-inheritance
14196 @vindex org-icalendar-include-body
14197 @cindex property, SUMMARY
14198 @cindex property, DESCRIPTION
14199 @cindex property, LOCATION
14200 @cindex property, TIMEZONE
14201 The iCalendar export back-end includes SUMMARY, DESCRIPTION, LOCATION and
14202 TIMEZONE properties from the Org entries when exporting.  To force the
14203 back-end to inherit the LOCATION and TIMEZONE properties, configure the
14204 @code{org-use-property-inheritance} variable.
14206 When Org entries do not have SUMMARY, DESCRIPTION and LOCATION properties,
14207 the iCalendar export back-end derives the summary from the headline, and
14208 derives the description from the body of the Org item.  The
14209 @code{org-icalendar-include-body} variable limits the maximum number of
14210 characters of the content are turned into its description.
14212 The TIMEZONE property can be used to specify a per-entry time zone, and will
14213 be applied to any entry with timestamp information.  Time zones should be
14214 specified as per the IANA time zone database format, e.g.@: ``Asia/Almaty''.
14215 Alternately, the property value can be ``UTC'', to force UTC time for this
14216 entry only.
14218 Exporting to iCalendar format depends in large part on the capabilities of
14219 the destination application.  Some are more lenient than others.  Consult the
14220 Org mode FAQ for advice on specific applications.
14222 @node Other built-in back-ends
14223 @section Other built-in back-ends
14224 @cindex export back-ends, built-in
14225 @vindex org-export-backends
14227 Other export back-ends included with Org are:
14229 @itemize
14230 @item @file{ox-man.el}: export to a man page.
14231 @end itemize
14233 To activate such back-ends, either customize @code{org-export-backends} or
14234 load directly with @code{(require 'ox-man)}.  On successful load, the
14235 back-end adds new keys in the export dispatcher (@pxref{The export
14236 dispatcher}).
14238 Follow the comment section of such files, for example, @file{ox-man.el}, for
14239 usage and configuration details.
14241 @node Advanced configuration
14242 @section Advanced configuration
14244 @subheading Hooks
14246 @vindex org-export-before-processing-hook
14247 @vindex org-export-before-parsing-hook
14248 The export process executes two hooks before the actual exporting begins.
14249 The first hook, @code{org-export-before-processing-hook}, runs before any
14250 expansions of macros, Babel code, and include keywords in the buffer.  The
14251 second hook, @code{org-export-before-parsing-hook}, runs before the buffer is
14252 parsed.  Both hooks are specified as functions, see example below.  Their main
14253 use is for heavy duty structural modifications of the Org content.  For
14254 example, removing every headline in the buffer during export:
14256 @lisp
14257 @group
14258 (defun my-headline-removal (backend)
14259   "Remove all headlines in the current buffer.
14260 BACKEND is the export back-end being used, as a symbol."
14261   (org-map-entries
14262    (lambda () (delete-region (point) (progn (forward-line) (point))))))
14264 (add-hook 'org-export-before-parsing-hook 'my-headline-removal)
14265 @end group
14266 @end lisp
14268 Note that the hook function must have a mandatory argument that is a symbol
14269 for the back-end.
14271 @subheading Filters
14273 @cindex Filters, exporting
14274 The Org export process relies on filters to process specific parts of
14275 conversion process.  Filters are just lists of functions to be applied to
14276 certain parts for a given back-end.  The output from the first function in
14277 the filter is passed on to the next function in the filter.  The final output
14278 is the output from the final function in the filter.
14280 The Org export process has many filter sets applicable to different types of
14281 objects, plain text, parse trees, export options, and final output formats.
14282 The filters are named after the element type or object type:
14283 @code{org-export-filter-TYPE-functions}, where @code{TYPE} is the type
14284 targeted by the filter.  Valid types are:
14286 @multitable @columnfractions .33 .33 .33
14287 @item body
14288 @tab bold
14289 @tab babel-call
14290 @item center-block
14291 @tab clock
14292 @tab code
14293 @item diary-sexp
14294 @tab drawer
14295 @tab dynamic-block
14296 @item entity
14297 @tab example-block
14298 @tab export-block
14299 @item export-snippet
14300 @tab final-output
14301 @tab fixed-width
14302 @item footnote-definition
14303 @tab footnote-reference
14304 @tab headline
14305 @item horizontal-rule
14306 @tab inline-babel-call
14307 @tab inline-src-block
14308 @item inlinetask
14309 @tab italic
14310 @tab item
14311 @item keyword
14312 @tab latex-environment
14313 @tab latex-fragment
14314 @item line-break
14315 @tab link
14316 @tab node-property
14317 @item options
14318 @tab paragraph
14319 @tab parse-tree
14320 @item plain-list
14321 @tab plain-text
14322 @tab planning
14323 @item property-drawer
14324 @tab quote-block
14325 @tab radio-target
14326 @item section
14327 @tab special-block
14328 @tab src-block
14329 @item statistics-cookie
14330 @tab strike-through
14331 @tab subscript
14332 @item superscript
14333 @tab table
14334 @tab table-cell
14335 @item table-row
14336 @tab target
14337 @tab timestamp
14338 @item underline
14339 @tab verbatim
14340 @tab verse-block
14341 @end multitable
14343 Here is an example filter that replaces non-breaking spaces @code{~} in the
14344 Org buffer with @code{_} for the @LaTeX{} back-end.
14346 @lisp
14347 @group
14348 (defun my-latex-filter-nobreaks (text backend info)
14349   "Ensure \"_\" are properly handled in LaTeX export."
14350   (when (org-export-derived-backend-p backend 'latex)
14351         (replace-regexp-in-string "_" "~" text)))
14353 (add-to-list 'org-export-filter-plain-text-functions
14354              'my-latex-filter-nobreaks)
14355 @end group
14356 @end lisp
14358 A filter requires three arguments: the code to be transformed, the name of
14359 the back-end, and some optional information about the export process.  The
14360 third argument can be safely ignored.  Note the use of
14361 @code{org-export-derived-backend-p} predicate that tests for @code{latex}
14362 back-end or any other back-end, such as @code{beamer}, derived from
14363 @code{latex}.
14365 @subheading Defining filters for individual files
14367 The Org export can filter not just for back-ends, but also for specific files
14368 through the @code{#+BIND} keyword.  Here is an example with two filters; one
14369 removes brackets from time stamps, and the other removes strike-through text.
14370 The filter functions are defined in a @samp{src} code block in the same Org
14371 file, which is a handy location for debugging.
14373 @example
14374 #+BIND: org-export-filter-timestamp-functions (tmp-f-timestamp)
14375 #+BIND: org-export-filter-strike-through-functions (tmp-f-strike-through)
14376 #+begin_src emacs-lisp :exports results :results none
14377   (defun tmp-f-timestamp (s backend info)
14378     (replace-regexp-in-string "&[lg]t;\\|[][]" "" s))
14379   (defun tmp-f-strike-through (s backend info) "")
14380 #+end_src
14381 @end example
14383 @subheading Extending an existing back-end
14385 Some parts of the conversion process can be extended for certain elements so
14386 as to introduce a new or revised translation.  That is how the HTML export
14387 back-end was extended to handle Markdown format.  The extensions work
14388 seamlessly so any aspect of filtering not done by the extended back-end is
14389 handled by the original back-end.  Of all the export customization in Org,
14390 extending is very powerful as it operates at the parser level.
14392 For this example, make the @code{ascii} back-end display the language used in
14393 a source code block.  Also make it display only when some attribute is
14394 non-@code{nil}, like the following:
14396 @example
14397 #+ATTR_ASCII: :language t
14398 @end example
14400 Then extend @code{ascii} back-end with a custom @code{my-ascii} back-end.
14402 @lisp
14403 @group
14404 (defun my-ascii-src-block (src-block contents info)
14405   "Transcode a SRC-BLOCK element from Org to ASCII.
14406 CONTENTS is nil.  INFO is a plist used as a communication
14407 channel."
14408   (if (not (org-export-read-attribute :attr_ascii src-block :language))
14409     (org-export-with-backend 'ascii src-block contents info)
14410   (concat
14411    (format ",--[ %s ]--\n%s`----"
14412            (org-element-property :language src-block)
14413            (replace-regexp-in-string
14414             "^" "| "
14415             (org-element-normalize-string
14416              (org-export-format-code-default src-block info)))))))
14418 (org-export-define-derived-backend 'my-ascii 'ascii
14419   :translate-alist '((src-block . my-ascii-src-block)))
14420 @end group
14421 @end lisp
14423 The @code{my-ascii-src-block} function looks at the attribute above the
14424 current element.  If not true, hands over to @code{ascii} back-end.  If true,
14425 which it is in this example, it creates a box around the code and leaves room
14426 for the inserting a string for language.  The last form creates the new
14427 back-end that springs to action only when translating @code{src-block} type
14428 elements.
14430 To use the newly defined back-end, call the following from an Org buffer:
14432 @smalllisp
14433 (org-export-to-buffer 'my-ascii "*Org MY-ASCII Export*")
14434 @end smalllisp
14436 Further steps to consider would be an interactive function, self-installing
14437 an item in the export dispatcher menu, and other user-friendly improvements.
14439 @node Export in foreign buffers
14440 @section Export in foreign buffers
14442 The export back-ends in Org often include commands to convert selected
14443 regions.  A convenient feature of this in-place conversion is that the
14444 exported output replaces the original source.  Here are such functions:
14446 @table @code
14447 @item org-html-convert-region-to-html
14448 Convert the selected region into HTML.
14449 @item org-latex-convert-region-to-latex
14450 Convert the selected region into @LaTeX{}.
14451 @item org-texinfo-convert-region-to-texinfo
14452 Convert the selected region into @code{Texinfo}.
14453 @item org-md-convert-region-to-md
14454 Convert the selected region into @code{MarkDown}.
14455 @end table
14457 In-place conversions are particularly handy for quick conversion of tables
14458 and lists in foreign buffers.  For example, turn on the minor mode @code{M-x
14459 orgstruct-mode} in an HTML buffer, then use the convenient Org keyboard
14460 commands to create a list, select it, and covert it to HTML with @code{M-x
14461 org-html-convert-region-to-html RET}.
14464 @node Publishing
14465 @chapter Publishing
14466 @cindex publishing
14468 Org includes a publishing management system that allows you to configure
14469 automatic HTML conversion of @emph{projects} composed of interlinked org
14470 files.  You can also configure Org to automatically upload your exported HTML
14471 pages and related attachments, such as images and source code files, to a web
14472 server.
14474 You can also use Org to convert files into PDF, or even combine HTML and PDF
14475 conversion so that files are available in both formats on the server.
14477 Publishing has been contributed to Org by David O'Toole.
14479 @menu
14480 * Configuration::               Defining projects
14481 * Uploading files::             How to get files up on the server
14482 * Sample configuration::        Example projects
14483 * Triggering publication::      Publication commands
14484 @end menu
14486 @node Configuration
14487 @section Configuration
14489 Publishing needs significant configuration to specify files, destination
14490 and many other properties of a project.
14492 @menu
14493 * Project alist::               The central configuration variable
14494 * Sources and destinations::    From here to there
14495 * Selecting files::             What files are part of the project?
14496 * Publishing action::           Setting the function doing the publishing
14497 * Publishing options::          Tweaking HTML/@LaTeX{} export
14498 * Publishing links::            Which links keep working after publishing?
14499 * Sitemap::                     Generating a list of all pages
14500 * Generating an index::         An index that reaches across pages
14501 @end menu
14503 @node Project alist
14504 @subsection The variable @code{org-publish-project-alist}
14505 @cindex org-publish-project-alist
14506 @cindex projects, for publishing
14508 @vindex org-publish-project-alist
14509 Publishing is configured almost entirely through setting the value of one
14510 variable, called @code{org-publish-project-alist}.  Each element of the list
14511 configures one project, and may be in one of the two following forms:
14513 @lisp
14514    ("project-name" :property value :property value ...)
14515      @r{i.e., a well-formed property list with alternating keys and values}
14516 @r{or}
14517    ("project-name" :components ("project-name" "project-name" ...))
14519 @end lisp
14521 In both cases, projects are configured by specifying property values.  A
14522 project defines the set of files that will be published, as well as the
14523 publishing configuration to use when publishing those files.  When a project
14524 takes the second form listed above, the individual members of the
14525 @code{:components} property are taken to be sub-projects, which group
14526 together files requiring different publishing options.  When you publish such
14527 a ``meta-project'', all the components will also be published, in the
14528 sequence given.
14530 @node Sources and destinations
14531 @subsection Sources and destinations for files
14532 @cindex directories, for publishing
14534 Most properties are optional, but some should always be set.  In
14535 particular, Org needs to know where to look for source files,
14536 and where to put published files.
14538 @multitable @columnfractions 0.3 0.7
14539 @item @code{:base-directory}
14540 @tab Directory containing publishing source files
14541 @item @code{:publishing-directory}
14542 @tab Directory where output files will be published.  You can directly
14543 publish to a web server using a file name syntax appropriate for
14544 the Emacs @file{tramp} package.  Or you can publish to a local directory and
14545 use external tools to upload your website (@pxref{Uploading files}).
14546 @item @code{:preparation-function}
14547 @tab Function or list of functions to be called before starting the
14548 publishing process, for example, to run @code{make} for updating files to be
14549 published.  Each preparation function is called with a single argument, the
14550 project property list.
14551 @item @code{:completion-function}
14552 @tab Function or list of functions called after finishing the publishing
14553 process, for example, to change permissions of the resulting files.  Each
14554 completion function is called with a single argument, the project property
14555 list.
14556 @end multitable
14557 @noindent
14559 @node Selecting files
14560 @subsection Selecting files
14561 @cindex files, selecting for publishing
14563 By default, all files with extension @file{.org} in the base directory
14564 are considered part of the project.  This can be modified by setting the
14565 properties
14566 @multitable @columnfractions 0.25 0.75
14567 @item @code{:base-extension}
14568 @tab Extension (without the dot!) of source files.  This actually is a
14569 regular expression.  Set this to the symbol @code{any} if you want to get all
14570 files in @code{:base-directory}, even without extension.
14572 @item @code{:exclude}
14573 @tab Regular expression to match file names that should not be
14574 published, even though they have been selected on the basis of their
14575 extension.
14577 @item @code{:include}
14578 @tab List of files to be included regardless of @code{:base-extension}
14579 and @code{:exclude}.
14581 @item @code{:recursive}
14582 @tab non-@code{nil} means, check base-directory recursively for files to publish.
14583 @end multitable
14585 @node Publishing action
14586 @subsection Publishing action
14587 @cindex action, for publishing
14589 Publishing means that a file is copied to the destination directory and
14590 possibly transformed in the process.  The default transformation is to export
14591 Org files as HTML files, and this is done by the function
14592 @code{org-html-publish-to-html}, which calls the HTML exporter (@pxref{HTML
14593 export}).  But you also can publish your content as PDF files using
14594 @code{org-latex-publish-to-pdf} or as @code{ascii}, @code{Texinfo}, etc.,
14595 using the corresponding functions.
14597 If you want to publish the Org file as an @code{.org} file but with the
14598 @i{archived}, @i{commented} and @i{tag-excluded} trees removed, use the
14599 function @code{org-org-publish-to-org}.  This will produce @file{file.org}
14600 and put it in the publishing directory.  If you want a htmlized version of
14601 this file, set the parameter @code{:htmlized-source} to @code{t}, it will
14602 produce @file{file.org.html} in the publishing directory@footnote{If the
14603 publishing directory is the same than the source directory, @file{file.org}
14604 will be exported as @file{file.org.org}, so probably don't want to do this.}.
14606 Other files like images only need to be copied to the publishing destination.
14607 For this you can use @code{org-publish-attachment}.  For non-org files, you
14608 always need to specify the publishing function:
14610 @multitable @columnfractions 0.3 0.7
14611 @item @code{:publishing-function}
14612 @tab Function executing the publication of a file.  This may also be a
14613 list of functions, which will all be called in turn.
14614 @item @code{:htmlized-source}
14615 @tab non-@code{nil} means, publish htmlized source.
14616 @end multitable
14618 The function must accept three arguments: a property list containing at least
14619 a @code{:publishing-directory} property, the name of the file to be published
14620 and the path to the publishing directory of the output file.  It should take
14621 the specified file, make the necessary transformation (if any) and place the
14622 result into the destination folder.
14624 @node Publishing options
14625 @subsection Options for the exporters
14626 @cindex options, for publishing
14628 The property list can be used to set export options during the publishing
14629 process.  In most cases, these properties correspond to user variables in
14630 Org.  While some properties are available for all export back-ends, most of
14631 them are back-end specific.  The following sections list properties along
14632 with the variable they belong to.  See the documentation string of these
14633 options for details.
14635 @vindex org-publish-project-alist
14636 When a property is given a value in @code{org-publish-project-alist}, its
14637 setting overrides the value of the corresponding user variable (if any)
14638 during publishing.  Options set within a file (@pxref{Export settings}),
14639 however, override everything.
14641 @subsubheading Generic properties
14643 @multitable {@code{:with-sub-superscript}}  {@code{org-export-with-sub-superscripts}}
14644 @item @code{:archived-trees}        @tab @code{org-export-with-archived-trees}
14645 @item @code{:exclude-tags}          @tab @code{org-export-exclude-tags}
14646 @item @code{:headline-levels}       @tab @code{org-export-headline-levels}
14647 @item @code{:language}              @tab @code{org-export-default-language}
14648 @item @code{:preserve-breaks}       @tab @code{org-export-preserve-breaks}
14649 @item @code{:section-numbers}       @tab @code{org-export-with-section-numbers}
14650 @item @code{:select-tags}           @tab @code{org-export-select-tags}
14651 @item @code{:with-author}           @tab @code{org-export-with-author}
14652 @item @code{:with-broken-links}     @tab @code{org-export-with-broken-links}
14653 @item @code{:with-clocks}           @tab @code{org-export-with-clocks}
14654 @item @code{:with-creator}          @tab @code{org-export-with-creator}
14655 @item @code{:with-date}             @tab @code{org-export-with-date}
14656 @item @code{:with-drawers}          @tab @code{org-export-with-drawers}
14657 @item @code{:with-email}            @tab @code{org-export-with-email}
14658 @item @code{:with-emphasize}        @tab @code{org-export-with-emphasize}
14659 @item @code{:with-fixed-width}      @tab @code{org-export-with-fixed-width}
14660 @item @code{:with-footnotes}        @tab @code{org-export-with-footnotes}
14661 @item @code{:with-latex}            @tab @code{org-export-with-latex}
14662 @item @code{:with-planning}         @tab @code{org-export-with-planning}
14663 @item @code{:with-priority}         @tab @code{org-export-with-priority}
14664 @item @code{:with-properties}       @tab @code{org-export-with-properties}
14665 @item @code{:with-special-strings}  @tab @code{org-export-with-special-strings}
14666 @item @code{:with-sub-superscript}  @tab @code{org-export-with-sub-superscripts}
14667 @item @code{:with-tables}           @tab @code{org-export-with-tables}
14668 @item @code{:with-tags}             @tab @code{org-export-with-tags}
14669 @item @code{:with-tasks}            @tab @code{org-export-with-tasks}
14670 @item @code{:with-timestamps}       @tab @code{org-export-with-timestamps}
14671 @item @code{:with-title}            @tab @code{org-export-with-title}
14672 @item @code{:with-toc}              @tab @code{org-export-with-toc}
14673 @item @code{:with-todo-keywords}    @tab @code{org-export-with-todo-keywords}
14674 @end multitable
14676 @subsubheading ASCII specific properties
14678 @multitable {@code{:ascii-table-keep-all-vertical-lines}} {@code{org-ascii-table-keep-all-vertical-lines}}
14679 @item @code{:ascii-bullets}                       @tab @code{org-ascii-bullets}
14680 @item @code{:ascii-caption-above}                 @tab @code{org-ascii-caption-above}
14681 @item @code{:ascii-charset}                       @tab @code{org-ascii-charset}
14682 @item @code{:ascii-global-margin}                 @tab @code{org-ascii-global-margin}
14683 @item @code{:ascii-format-drawer-function}        @tab @code{org-ascii-format-drawer-function}
14684 @item @code{:ascii-format-inlinetask-function}    @tab @code{org-ascii-format-inlinetask-function}
14685 @item @code{:ascii-headline-spacing}              @tab @code{org-ascii-headline-spacing}
14686 @item @code{:ascii-indented-line-width}           @tab @code{org-ascii-indented-line-width}
14687 @item @code{:ascii-inlinetask-width}              @tab @code{org-ascii-inlinetask-width}
14688 @item @code{:ascii-inner-margin}                  @tab @code{org-ascii-inner-margin}
14689 @item @code{:ascii-links-to-notes}                @tab @code{org-ascii-links-to-notes}
14690 @item @code{:ascii-list-margin}                   @tab @code{org-ascii-list-margin}
14691 @item @code{:ascii-paragraph-spacing}             @tab @code{org-ascii-paragraph-spacing}
14692 @item @code{:ascii-quote-margin}                  @tab @code{org-ascii-quote-margin}
14693 @item @code{:ascii-table-keep-all-vertical-lines} @tab @code{org-ascii-table-keep-all-vertical-lines}
14694 @item @code{:ascii-table-use-ascii-art}           @tab @code{org-ascii-table-use-ascii-art}
14695 @item @code{:ascii-table-widen-columns}           @tab @code{org-ascii-table-widen-columns}
14696 @item @code{:ascii-text-width}                    @tab @code{org-ascii-text-width}
14697 @item @code{:ascii-underline}                     @tab @code{org-ascii-underline}
14698 @item @code{:ascii-verbatim-format}               @tab @code{org-ascii-verbatim-format}
14699 @end multitable
14701 @subsubheading Beamer specific properties
14703 @multitable {@code{:beamer-frame-default-options}} {@code{org-beamer-frame-default-options}}
14704 @item @code{:beamer-theme}                 @tab @code{org-beamer-theme}
14705 @item @code{:beamer-column-view-format}    @tab @code{org-beamer-column-view-format}
14706 @item @code{:beamer-environments-extra}    @tab @code{org-beamer-environments-extra}
14707 @item @code{:beamer-frame-default-options} @tab @code{org-beamer-frame-default-options}
14708 @item @code{:beamer-outline-frame-options} @tab @code{org-beamer-outline-frame-options}
14709 @item @code{:beamer-outline-frame-title}   @tab @code{org-beamer-outline-frame-title}
14710 @item @code{:beamer-subtitle-format}       @tab @code{org-beamer-subtitle-format}
14711 @end multitable
14713 @subsubheading HTML specific properties
14715 @multitable {@code{:html-table-use-header-tags-for-first-column}} {@code{org-html-table-use-header-tags-for-first-column}}
14716 @item @code{:html-allow-name-attribute-in-anchors} @tab @code{org-html-allow-name-attribute-in-anchors}
14717 @item @code{:html-checkbox-type}              @tab @code{org-html-checkbox-type}
14718 @item @code{:html-container}                  @tab @code{org-html-container-element}
14719 @item @code{:html-divs}                       @tab @code{org-html-divs}
14720 @item @code{:html-doctype}                    @tab @code{org-html-doctype}
14721 @item @code{:html-extension}                  @tab @code{org-html-extension}
14722 @item @code{:html-footnote-format}            @tab @code{org-html-footnote-format}
14723 @item @code{:html-footnote-separator}         @tab @code{org-html-footnote-separator}
14724 @item @code{:html-footnotes-section}          @tab @code{org-html-footnotes-section}
14725 @item @code{:html-format-drawer-function}     @tab @code{org-html-format-drawer-function}
14726 @item @code{:html-format-headline-function}   @tab @code{org-html-format-headline-function}
14727 @item @code{:html-format-inlinetask-function} @tab @code{org-html-format-inlinetask-function}
14728 @item @code{:html-head-extra}                 @tab @code{org-html-head-extra}
14729 @item @code{:html-head-include-default-style} @tab @code{org-html-head-include-default-style}
14730 @item @code{:html-head-include-scripts}       @tab @code{org-html-head-include-scripts}
14731 @item @code{:html-head}                       @tab @code{org-html-head}
14732 @item @code{:html-home/up-format}             @tab @code{org-html-home/up-format}
14733 @item @code{:html-html5-fancy}                @tab @code{org-html-html5-fancy}
14734 @item @code{:html-indent}                     @tab @code{org-html-indent}
14735 @item @code{:html-infojs-options}             @tab @code{org-html-infojs-options}
14736 @item @code{:html-infojs-template}            @tab @code{org-html-infojs-template}
14737 @item @code{:html-inline-image-rules}         @tab @code{org-html-inline-image-rules}
14738 @item @code{:html-inline-images}              @tab @code{org-html-inline-images}
14739 @item @code{:html-link-home}                  @tab @code{org-html-link-home}
14740 @item @code{:html-link-org-files-as-html}     @tab @code{org-html-link-org-files-as-html}
14741 @item @code{:html-link-up}                    @tab @code{org-html-link-up}
14742 @item @code{:html-link-use-abs-url}           @tab @code{org-html-link-use-abs-url}
14743 @item @code{:html-mathjax-options}            @tab @code{org-html-mathjax-options}
14744 @item @code{:html-mathjax-template}           @tab @code{org-html-mathjax-template}
14745 @item @code{:html-metadata-timestamp-format}  @tab @code{org-html-metadata-timestamp-format}
14746 @item @code{:html-postamble-format}           @tab @code{org-html-postamble-format}
14747 @item @code{:html-postamble}                  @tab @code{org-html-postamble}
14748 @item @code{:html-preamble-format}            @tab @code{org-html-preamble-format}
14749 @item @code{:html-preamble}                   @tab @code{org-html-preamble}
14750 @item @code{:html-table-align-individual-fields} @tab @code{org-html-table-align-individual-fields}
14751 @item @code{:html-table-attributes}           @tab @code{org-html-table-default-attributes}
14752 @item @code{:html-table-caption-above}        @tab @code{org-html-table-caption-above}
14753 @item @code{:html-table-data-tags}            @tab @code{org-html-table-data-tags}
14754 @item @code{:html-table-header-tags}          @tab @code{org-html-table-header-tags}
14755 @item @code{:html-table-row-tags}             @tab @code{org-html-table-row-tags}
14756 @item @code{:html-table-use-header-tags-for-first-column} @tab @code{org-html-table-use-header-tags-for-first-column}
14757 @item @code{:html-tag-class-prefix}           @tab @code{org-html-tag-class-prefix}
14758 @item @code{:html-text-markup-alist}          @tab @code{org-html-text-markup-alist}
14759 @item @code{:html-todo-kwd-class-prefix}      @tab @code{org-html-todo-kwd-class-prefix}
14760 @item @code{:html-toplevel-hlevel}            @tab @code{org-html-toplevel-hlevel}
14761 @item @code{:html-use-infojs}                 @tab @code{org-html-use-infojs}
14762 @item @code{:html-validation-link}            @tab @code{org-html-validation-link}
14763 @item @code{:html-viewport}                   @tab @code{org-html-viewport}
14764 @item @code{:html-xml-declaration}            @tab @code{org-html-xml-declaration}
14765 @end multitable
14767 @subsubheading @LaTeX{} specific properties
14769 @multitable {@code{:latex-link-with-unknown-path-format}} {@code{org-latex-link-with-unknown-path-format}}
14770 @item @code{:latex-active-timestamp-format}    @tab @code{org-latex-active-timestamp-format}
14771 @item @code{:latex-caption-above}              @tab @code{org-latex-caption-above}
14772 @item @code{:latex-classes}                    @tab @code{org-latex-classes}
14773 @item @code{:latex-class}                      @tab @code{org-latex-default-class}
14774 @item @code{:latex-compiler}                   @tab @code{org-latex-compiler}
14775 @item @code{:latex-default-figure-position}    @tab @code{org-latex-default-figure-position}
14776 @item @code{:latex-default-table-environment}  @tab @code{org-latex-default-table-environment}
14777 @item @code{:latex-default-table-mode}         @tab @code{org-latex-default-table-mode}
14778 @item @code{:latex-diary-timestamp-format}     @tab @code{org-latex-diary-timestamp-format}
14779 @item @code{:latex-footnote-defined-format}    @tab @code{org-latex-footnote-defined-format}
14780 @item @code{:latex-footnote-separator}         @tab @code{org-latex-footnote-separator}
14781 @item @code{:latex-format-drawer-function}     @tab @code{org-latex-format-drawer-function}
14782 @item @code{:latex-format-headline-function}   @tab @code{org-latex-format-headline-function}
14783 @item @code{:latex-format-inlinetask-function} @tab @code{org-latex-format-inlinetask-function}
14784 @item @code{:latex-hyperref-template}          @tab @code{org-latex-hyperref-template}
14785 @item @code{:latex-image-default-height}       @tab @code{org-latex-image-default-height}
14786 @item @code{:latex-image-default-option}       @tab @code{org-latex-image-default-option}
14787 @item @code{:latex-image-default-width}        @tab @code{org-latex-image-default-width}
14788 @item @code{:latex-images-centered}            @tab @code{org-latex-images-centered}
14789 @item @code{:latex-inactive-timestamp-format}  @tab @code{org-latex-inactive-timestamp-format}
14790 @item @code{:latex-inline-image-rules}         @tab @code{org-latex-inline-image-rules}
14791 @item @code{:latex-link-with-unknown-path-format} @tab @code{org-latex-link-with-unknown-path-format}
14792 @item @code{:latex-listings-langs}             @tab @code{org-latex-listings-langs}
14793 @item @code{:latex-listings-options}           @tab @code{org-latex-listings-options}
14794 @item @code{:latex-listings}                   @tab @code{org-latex-listings}
14795 @item @code{:latex-minted-langs}               @tab @code{org-latex-minted-langs}
14796 @item @code{:latex-minted-options}             @tab @code{org-latex-minted-options}
14797 @item @code{:latex-prefer-user-labels}         @tab @code{org-latex-prefer-user-labels}
14798 @item @code{:latex-subtitle-format}            @tab @code{org-latex-subtitle-format}
14799 @item @code{:latex-subtitle-separate}          @tab @code{org-latex-subtitle-separate}
14800 @item @code{:latex-table-scientific-notation}  @tab @code{org-latex-table-scientific-notation}
14801 @item @code{:latex-tables-booktabs}            @tab @code{org-latex-tables-booktabs}
14802 @item @code{:latex-tables-centered}            @tab @code{org-latex-tables-centered}
14803 @item @code{:latex-text-markup-alist}          @tab @code{org-latex-text-markup-alist}
14804 @item @code{:latex-title-command}              @tab @code{org-latex-title-command}
14805 @item @code{:latex-toc-command}                @tab @code{org-latex-toc-command}
14806 @end multitable
14808 @subsubheading Markdown specific properties
14810 @multitable {@code{:md-footnotes-section}} {@code{org-md-footnotes-section}}
14811 @item @code{:md-footnote-format} @tab @code{org-md-footnote-format}
14812 @item @code{:md-footnotes-section} @tab @code{org-md-footnotes-section}
14813 @item @code{:md-headline-style} @tab @code{org-md-headline-style}
14814 @end multitable
14816 @subsubheading ODT specific properties
14818 @multitable {@code{:odt-format-inlinetask-function}} {@code{org-odt-format-inlinetask-function}}
14819 @item @code{:odt-content-template-file}      @tab @code{org-odt-content-template-file}
14820 @item @code{:odt-display-outline-level}      @tab @code{org-odt-display-outline-level}
14821 @item @code{:odt-fontify-srcblocks}          @tab @code{org-odt-fontify-srcblocks}
14822 @item @code{:odt-format-drawer-function}     @tab @code{org-odt-format-drawer-function}
14823 @item @code{:odt-format-headline-function}   @tab @code{org-odt-format-headline-function}
14824 @item @code{:odt-format-inlinetask-function} @tab @code{org-odt-format-inlinetask-function}
14825 @item @code{:odt-inline-formula-rules}       @tab @code{org-odt-inline-formula-rules}
14826 @item @code{:odt-inline-image-rules}         @tab @code{org-odt-inline-image-rules}
14827 @item @code{:odt-pixels-per-inch}            @tab @code{org-odt-pixels-per-inch}
14828 @item @code{:odt-styles-file}                @tab @code{org-odt-styles-file}
14829 @item @code{:odt-table-styles}               @tab @code{org-odt-table-styles}
14830 @item @code{:odt-use-date-fields}            @tab @code{org-odt-use-date-fields}
14831 @end multitable
14833 @subsubheading Texinfo specific properties
14835 @multitable {@code{:texinfo-link-with-unknown-path-format}} {@code{org-texinfo-link-with-unknown-path-format}}
14836 @item @code{:texinfo-active-timestamp-format}    @tab @code{org-texinfo-active-timestamp-format}
14837 @item @code{:texinfo-classes}                    @tab @code{org-texinfo-classes}
14838 @item @code{:texinfo-class}                      @tab @code{org-texinfo-default-class}
14839 @item @code{:texinfo-table-default-markup}       @tab @code{org-texinfo-table-default-markup}
14840 @item @code{:texinfo-diary-timestamp-format}     @tab @code{org-texinfo-diary-timestamp-format}
14841 @item @code{:texinfo-filename}                   @tab @code{org-texinfo-filename}
14842 @item @code{:texinfo-format-drawer-function}     @tab @code{org-texinfo-format-drawer-function}
14843 @item @code{:texinfo-format-headline-function}   @tab @code{org-texinfo-format-headline-function}
14844 @item @code{:texinfo-format-inlinetask-function} @tab @code{org-texinfo-format-inlinetask-function}
14845 @item @code{:texinfo-inactive-timestamp-format}  @tab @code{org-texinfo-inactive-timestamp-format}
14846 @item @code{:texinfo-link-with-unknown-path-format} @tab @code{org-texinfo-link-with-unknown-path-format}
14847 @item @code{:texinfo-node-description-column}    @tab @code{org-texinfo-node-description-column}
14848 @item @code{:texinfo-table-scientific-notation}  @tab @code{org-texinfo-table-scientific-notation}
14849 @item @code{:texinfo-tables-verbatim}            @tab @code{org-texinfo-tables-verbatim}
14850 @item @code{:texinfo-text-markup-alist}          @tab @code{org-texinfo-text-markup-alist}
14851 @end multitable
14853 @node Publishing links
14854 @subsection Links between published files
14855 @cindex links, publishing
14857 To create a link from one Org file to another, you would use something like
14858 @samp{[[file:foo.org][The foo]]} or simply @samp{file:foo.org}
14859 (@pxref{External links}).  When published, this link becomes a link to
14860 @file{foo.html}.  You can thus interlink the pages of your ``org web''
14861 project and the links will work as expected when you publish them to HTML.
14862 If you also publish the Org source file and want to link to it, use an
14863 @code{http:} link instead of a @code{file:} link, because @code{file:} links
14864 are converted to link to the corresponding @file{html} file.
14866 You may also link to related files, such as images.  Provided you are careful
14867 with relative file names, and provided you have also configured Org to upload
14868 the related files, these links will work too.  See @ref{Complex example}, for
14869 an example of this usage.
14871 Eventually, links between published documents can contain some search options
14872 (@pxref{Search options}), which will be resolved to the appropriate location
14873 in the linked file.  For example, once published to HTML, the following links
14874 all point to a dedicated anchor in @file{foo.html}.
14876 @example
14877 [[file:foo.org::*heading]]
14878 [[file:foo.org::#custom-id]]
14879 [[file:foo.org::target]]
14880 @end example
14882 @node Sitemap
14883 @subsection Generating a sitemap
14884 @cindex sitemap, of published pages
14886 The following properties may be used to control publishing of
14887 a map of files for a given project.
14889 @multitable @columnfractions 0.35 0.65
14890 @item @code{:auto-sitemap}
14891 @tab When non-@code{nil}, publish a sitemap during @code{org-publish-current-project}
14892 or @code{org-publish-all}.
14894 @item @code{:sitemap-filename}
14895 @tab Filename for output of sitemap.  Defaults to @file{sitemap.org} (which
14896 becomes @file{sitemap.html}).
14898 @item @code{:sitemap-title}
14899 @tab Title of sitemap page.  Defaults to name of file.
14901 @item @code{:sitemap-format-entry}
14902 @tab With this option one can tell how a site-map entry is formatted in the
14903 site-map.  It is a function called with three arguments: the file or
14904 directory name relative to base directory of the project, the site-map style
14905 and the current project.  It is expected to return a string.  Default value
14906 turns file names into links and use document titles as descriptions.  For
14907 specific formatting needs, one can use @code{org-publish-find-date},
14908 @code{org-publish-find-title} and @code{org-publish-find-property}, to
14909 retrieve additional information about published documents.
14911 @item @code{:sitemap-function}
14912 @tab Plug-in function to use for generation of the sitemap.  It is called
14913 with two arguments: the title of the site-map and a representation of the
14914 files and directories involved in the project as a radio list (@pxref{Radio
14915 lists}).  The latter can further be transformed using
14916 @code{org-list-to-generic}, @code{org-list-to-subtree} and alike.  Default
14917 value generates a plain list of links to all files in the project.
14919 @item @code{:sitemap-sort-folders}
14920 @tab Where folders should appear in the sitemap.  Set this to @code{first}
14921 (default) or @code{last} to display folders first or last, respectively.
14922 When set to @code{ignore}, folders are ignored altogether.  Any other value
14923 will mix files and folders.  This variable has no effect when site-map style
14924 is @code{tree}.
14926 @item @code{:sitemap-sort-files}
14927 @tab How the files are sorted in the site map.  Set this to
14928 @code{alphabetically} (default), @code{chronologically} or
14929 @code{anti-chronologically}.  @code{chronologically} sorts the files with
14930 older date first while @code{anti-chronologically} sorts the files with newer
14931 date first.  @code{alphabetically} sorts the files alphabetically.  The date of
14932 a file is retrieved with @code{org-publish-find-date}.
14934 @item @code{:sitemap-ignore-case}
14935 @tab Should sorting be case-sensitive?  Default @code{nil}.
14937 @item @code{:sitemap-date-format}
14938 @tab Format string for the @code{format-time-string} function that tells how
14939 a sitemap entry's date is to be formatted.  This property bypasses
14940 @code{org-publish-sitemap-date-format} which defaults to @code{%Y-%m-%d}.
14942 @end multitable
14944 @node Generating an index
14945 @subsection Generating an index
14946 @cindex index, in a publishing project
14948 Org mode can generate an index across the files of a publishing project.
14950 @multitable @columnfractions 0.25 0.75
14951 @item @code{:makeindex}
14952 @tab When non-@code{nil}, generate in index in the file @file{theindex.org} and
14953 publish it as @file{theindex.html}.
14954 @end multitable
14956 The file will be created when first publishing a project with the
14957 @code{:makeindex} set.  The file only contains a statement @code{#+INCLUDE:
14958 "theindex.inc"}.  You can then build around this include statement by adding
14959 a title, style information, etc.
14961 @cindex #+INDEX
14962 Index entries are specified with @code{#+INDEX} keyword.  An entry that
14963 contains an exclamation mark will create a sub item.
14965 @example
14966 * Curriculum Vitae
14967 #+INDEX: CV
14968 #+INDEX: Application!CV
14969 @end example
14971 @node Uploading files
14972 @section Uploading files
14973 @cindex rsync
14974 @cindex unison
14976 For those people already utilizing third party sync tools such as
14977 @command{rsync} or @command{unison}, it might be preferable not to use the built in
14978 @i{remote} publishing facilities of Org mode which rely heavily on
14979 Tramp.  Tramp, while very useful and powerful, tends not to be
14980 so efficient for multiple file transfer and has been known to cause problems
14981 under heavy usage.
14983 Specialized synchronization utilities offer several advantages.  In addition
14984 to timestamp comparison, they also do content and permissions/attribute
14985 checks.  For this reason you might prefer to publish your web to a local
14986 directory (possibly even @i{in place} with your Org files) and then use
14987 @file{unison} or @file{rsync} to do the synchronization with the remote host.
14989 Since Unison (for example) can be configured as to which files to transfer to
14990 a certain remote destination, it can greatly simplify the project publishing
14991 definition.  Simply keep all files in the correct location, process your Org
14992 files with @code{org-publish} and let the synchronization tool do the rest.
14993 You do not need, in this scenario, to include attachments such as @file{jpg},
14994 @file{css} or @file{gif} files in the project definition since the 3rd party
14995 tool syncs them.
14997 Publishing to a local directory is also much faster than to a remote one, so
14998 that you can afford more easily to republish entire projects.  If you set
14999 @code{org-publish-use-timestamps-flag} to @code{nil}, you gain the main
15000 benefit of re-including any changed external files such as source example
15001 files you might include with @code{#+INCLUDE:}.  The timestamp mechanism in
15002 Org is not smart enough to detect if included files have been modified.
15004 @node Sample configuration
15005 @section Sample configuration
15007 Below we provide two example configurations.  The first one is a simple
15008 project publishing only a set of Org files.  The second example is
15009 more complex, with a multi-component project.
15011 @menu
15012 * Simple example::              One-component publishing
15013 * Complex example::             A multi-component publishing example
15014 @end menu
15016 @node Simple example
15017 @subsection Example: simple publishing configuration
15019 This example publishes a set of Org files to the @file{public_html}
15020 directory on the local machine.
15022 @lisp
15023 (setq org-publish-project-alist
15024       '(("org"
15025          :base-directory "~/org/"
15026          :publishing-directory "~/public_html"
15027          :section-numbers nil
15028          :with-toc nil
15029          :html-head "<link rel=\"stylesheet\"
15030                     href=\"../other/mystyle.css\"
15031                     type=\"text/css\"/>")))
15032 @end lisp
15034 @node Complex example
15035 @subsection Example: complex publishing configuration
15037 This more complicated example publishes an entire website, including
15038 Org files converted to HTML, image files, Emacs Lisp source code, and
15039 style sheets.  The publishing directory is remote and private files are
15040 excluded.
15042 To ensure that links are preserved, care should be taken to replicate
15043 your directory structure on the web server, and to use relative file
15044 paths.  For example, if your Org files are kept in @file{~/org} and your
15045 publishable images in @file{~/images}, you would link to an image with
15047 @example
15048 file:../images/myimage.png
15049 @end example
15051 On the web server, the relative path to the image should be the
15052 same.  You can accomplish this by setting up an "images" folder in the
15053 right place on the web server, and publishing images to it.
15055 @lisp
15056 (setq org-publish-project-alist
15057       '(("orgfiles"
15058           :base-directory "~/org/"
15059           :base-extension "org"
15060           :publishing-directory "/ssh:user@@host:~/html/notebook/"
15061           :publishing-function org-html-publish-to-html
15062           :exclude "PrivatePage.org"   ;; regexp
15063           :headline-levels 3
15064           :section-numbers nil
15065           :with-toc nil
15066           :html-head "<link rel=\"stylesheet\"
15067                   href=\"../other/mystyle.css\" type=\"text/css\"/>"
15068           :html-preamble t)
15070          ("images"
15071           :base-directory "~/images/"
15072           :base-extension "jpg\\|gif\\|png"
15073           :publishing-directory "/ssh:user@@host:~/html/images/"
15074           :publishing-function org-publish-attachment)
15076          ("other"
15077           :base-directory "~/other/"
15078           :base-extension "css\\|el"
15079           :publishing-directory "/ssh:user@@host:~/html/other/"
15080           :publishing-function org-publish-attachment)
15081          ("website" :components ("orgfiles" "images" "other"))))
15082 @end lisp
15084 @node Triggering publication
15085 @section Triggering publication
15087 Once properly configured, Org can publish with the following commands:
15089 @table @kbd
15090 @orgcmd{C-c C-e P x,org-publish}
15091 Prompt for a specific project and publish all files that belong to it.
15092 @orgcmd{C-c C-e P p,org-publish-current-project}
15093 Publish the project containing the current file.
15094 @orgcmd{C-c C-e P f,org-publish-current-file}
15095 Publish only the current file.
15096 @orgcmd{C-c C-e P a,org-publish-all}
15097 Publish every project.
15098 @end table
15100 @vindex org-publish-use-timestamps-flag
15101 Org uses timestamps to track when a file has changed.  The above functions
15102 normally only publish changed files.  You can override this and force
15103 publishing of all files by giving a prefix argument to any of the commands
15104 above, or by customizing the variable @code{org-publish-use-timestamps-flag}.
15105 This may be necessary in particular if files include other files via
15106 @code{#+SETUPFILE:} or @code{#+INCLUDE:}.
15109 @node Working with source code
15110 @chapter Working with source code
15111 @cindex Schulte, Eric
15112 @cindex Davison, Dan
15113 @cindex source code, working with
15115 Source code here refers to any code typed in Org mode documents.  Org can
15116 manage source code in any Org file once such code is tagged with begin and
15117 end markers.  Working with source code begins with tagging source code
15118 blocks.  Tagged @samp{src} code blocks are not restricted to the preamble or
15119 the end of an Org document; they can go anywhere---with a few exceptions,
15120 such as not inside comments and fixed width areas.  Here's a sample
15121 @samp{src} code block in emacs-lisp:
15123 @example
15124 #+BEGIN_SRC emacs-lisp
15125   (defun org-xor (a b)
15126      "Exclusive or."
15127      (if a (not b) b))
15128 #+END_SRC
15129 @end example
15131 Org can take the code in the block between the @samp{#+BEGIN_SRC} and
15132 @samp{#+END_SRC} tags, and format, compile, execute, and show the results.
15133 Org can simplify many housekeeping tasks essential to modern code
15134 maintenance.  That's why these blocks in Org mode literature are sometimes
15135 referred to as @samp{live code} blocks (as compared to the static text and
15136 documentation around it).  Users can control how @samp{live} they want each
15137 block by tweaking the headers for compiling, execution, extraction.
15139 Org's @samp{src} code block type is one of many block types, such as quote,
15140 export, verse, latex, example, and verbatim.  This section pertains to
15141 @samp{src} code blocks between @samp{#+BEGIN_SRC} and @samp{#+END_SRC}
15143 For editing @samp{src} code blocks, Org provides native Emacs major-modes.
15144 That leverages the latest Emacs features for that source code language mode.
15146 For exporting, Org can then extract @samp{src} code blocks into compilable
15147 source files (in a conversion process known as @dfn{tangling} in literate
15148 programming terminology).
15150 For publishing, Org's back-ends can handle the @samp{src} code blocks and the
15151 text for output to a variety of formats with native syntax highlighting.
15153 For executing the source code in the @samp{src} code blocks, Org provides
15154 facilities that glue the tasks of compiling, collecting the results of the
15155 execution, and inserting them back to the Org file.  Besides text output,
15156 results may include links to other data types that Emacs can handle: audio,
15157 video, and graphics.
15159 An important feature of Org's execution of the @samp{src} code blocks is
15160 passing variables, functions, and results between @samp{src} blocks.  Such
15161 interoperability uses a common syntax even if these @samp{src} blocks are in
15162 different source code languages.  The integration extends to linking the
15163 debugger's error messages to the line in the @samp{src} code block in the Org
15164 file.  That should partly explain why this functionality by the original
15165 contributors, Eric Schulte and Dan Davison, was called @samp{Org Babel}.
15167 In literate programming, the main appeal is code and documentation
15168 co-existing in one file.  Org mode takes this several steps further.  First
15169 by enabling execution, and then by inserting results of that execution back
15170 into the Org file.  Along the way, Org provides extensive formatting
15171 features, including handling tables.  Org handles multiple source code
15172 languages in one file, and provides a common syntax for passing variables,
15173 functions, and results between @samp{src} code blocks.
15175 Org mode fulfills the promise of easy verification and maintenance of
15176 publishing reproducible research by keeping all these in the same file: text,
15177 data, code, configuration settings of the execution environment, the results
15178 of the execution, and associated narratives, claims, references, and internal
15179 and external links.
15181 Details of Org's facilities for working with source code are shown next.
15183 @menu
15184 * Structure of code blocks::    Code block syntax described
15185 * Editing source code::         Language major-mode editing
15186 * Exporting code blocks::       Export contents and/or results
15187 * Extracting source code::      Create pure source code files
15188 * Evaluating code blocks::      Place results of evaluation in the Org mode buffer
15189 * Library of Babel::            Use and contribute to a library of useful code blocks
15190 * Languages::                   List of supported code block languages
15191 * Header arguments::            Configure code block functionality
15192 * Results of evaluation::       How evaluation results are handled
15193 * Noweb reference syntax::      Literate programming in Org mode
15194 * Key bindings and useful functions::  Work quickly with code blocks
15195 * Batch execution::             Call functions from the command line
15196 @end menu
15199 @node Structure of code blocks
15200 @section Structure of code blocks
15201 @cindex code block, structure
15202 @cindex source code, block structure
15203 @cindex #+NAME
15204 @cindex #+BEGIN_SRC
15206 Org offers two ways to structure source code in Org documents: in a
15207 @samp{src} block, and directly inline.  Both specifications are shown below.
15209 A @samp{src} block conforms to this structure:
15211 @example
15212 #+NAME: <name>
15213 #+BEGIN_SRC <language> <switches> <header arguments>
15214   <body>
15215 #+END_SRC
15216 @end example
15218 Org mode's templates system (@pxref{Easy templates}) speeds up creating
15219 @samp{src} code blocks with just three keystrokes.  Do not be put-off by
15220 having to remember the source block syntax.  Org also works with other
15221 completion systems in Emacs, some of which predate Org and have custom
15222 domain-specific languages for defining templates.  Regular use of templates
15223 reduces errors, increases accuracy, and maintains consistency.
15225 @cindex source code, inline
15226 An inline code block conforms to this structure:
15228 @example
15229 src_<language>@{<body>@}
15230 @end example
15234 @example
15235 src_<language>[<header arguments>]@{<body>@}
15236 @end example
15238 @table @code
15239 @item #+NAME: <name>
15240 Optional.  Names the @samp{src} block so it can be called, like a function,
15241 from other @samp{src} blocks or inline blocks to evaluate or to capture the
15242 results.  Code from other blocks, other files, and from table formulas
15243 (@pxref{The spreadsheet}) can use the name to reference a @samp{src} block.
15244 This naming serves the same purpose as naming Org tables.  Org mode requires
15245 unique names.  For duplicate names, Org mode's behavior is undefined.
15246 @cindex #+NAME
15247 @item #+BEGIN_SRC
15248 @item #+END_SRC
15249 Mandatory.  They mark the start and end of a block that Org requires.  The
15250 @code{#+BEGIN_SRC} line takes additional arguments, as described next.
15251 @cindex begin block, end block
15252 @item <language>
15253 Mandatory for live code blocks.  It is the identifier of the source code
15254 language in the block.  @xref{Languages}, for identifiers of supported
15255 languages.
15256 @cindex source code, language
15257 @item <switches>
15258 Optional.  Switches provide finer control of the code execution, export, and
15259 format (see the discussion of switches in @ref{Literal examples})
15260 @cindex source code, switches
15261 @item <header arguments>
15262 Optional.  Heading arguments control many aspects of evaluation, export and
15263 tangling of code blocks (@pxref{Header arguments}).  Using Org's properties
15264 feature, header arguments can be selectively applied to the entire buffer or
15265 specific sub-trees of the Org document.
15266 @item source code, header arguments
15267 @item <body>
15268 Source code in the dialect of the specified language identifier.
15269 @end table
15271 @node Editing source code
15272 @section Editing source code
15273 @cindex code block, editing
15274 @cindex source code, editing
15276 @vindex org-edit-src-auto-save-idle-delay
15277 @vindex org-edit-src-turn-on-auto-save
15278 @kindex C-c '
15279 @kbd{C-c '} for editing the current code block.  It opens a new major-mode
15280 edit buffer containing the body of the @samp{src} code block, ready for any
15281 edits.  @kbd{C-c '} again to close the buffer and return to the Org buffer.
15283 @key{C-x C-s} saves the buffer and updates the contents of the Org buffer.
15285 Set @code{org-edit-src-auto-save-idle-delay} to save the base buffer after
15286 a certain idle delay time.
15288 Set @code{org-edit-src-turn-on-auto-save} to auto-save this buffer into a
15289 separate file using @code{auto-save-mode}.
15291 @kbd{C-c '} to close the major-mode buffer and return back to the Org buffer.
15293 While editing the source code in the major-mode, the @code{org-src-mode}
15294 minor mode remains active.  It provides these customization variables as
15295 described below.  For even more variables, look in the customization
15296 group @code{org-edit-structure}.
15298 @table @code
15299 @item org-src-lang-modes
15300 If an Emacs major-mode named @code{<lang>-mode} exists, where @code{<lang>}
15301 is the language identifier from code block's header line, then the edit
15302 buffer uses that major-mode.  Use this variable to arbitrarily map language
15303 identifiers to major modes.
15304 @item org-src-window-setup
15305 For specifying Emacs window arrangement when the new edit buffer is created.
15306 @item org-src-preserve-indentation
15307 @cindex indentation, in source blocks
15308 Default is @code{nil}.  Source code is indented.  This indentation applies
15309 during export or tangling, and depending on the context, may alter leading
15310 spaces and tabs.  When non-@code{nil}, source code is aligned with the
15311 leftmost column.  No lines are modified during export or tangling, which is
15312 very useful for white-space sensitive languages, such as Python.
15313 @item org-src-ask-before-returning-to-edit-buffer
15314 When @code{nil}, Org returns to the edit buffer without further prompts.  The
15315 default prompts for a confirmation.
15316 @end table
15318 Set @code{org-src-fontify-natively} to non-@code{nil} to turn on native code
15319 fontification in the @emph{Org} buffer.  Fontification of @samp{src} code
15320 blocks can give visual separation of text and code on the display page.  To
15321 further customize the appearance of @code{org-block} for specific languages,
15322 customize @code{org-src-block-faces}.  The following example shades the
15323 background of regular blocks, and colors source blocks only for Python and
15324 Emacs-Lisp languages.
15325 @lisp
15326 (require 'color)
15327 (set-face-attribute 'org-block nil :background
15328                     (color-darken-name
15329                      (face-attribute 'default :background) 3))
15331 (setq org-src-block-faces '(("emacs-lisp" (:background "#EEE2FF"))
15332                             ("python" (:background "#E5FFB8"))))
15333 @end lisp
15335 @node Exporting code blocks
15336 @section Exporting code blocks
15337 @cindex code block, exporting
15338 @cindex source code, exporting
15340 Org can flexibly export just the @emph{code} from the code blocks, just the
15341 @emph{results} of evaluation of the code block, @emph{both} the code and the
15342 results of the code block evaluation, or @emph{none}.  Org defaults to
15343 exporting @emph{code} for most languages.  For some languages, such as
15344 @code{ditaa}, Org defaults to @emph{results}.  To export just the body of
15345 code blocks, @pxref{Literal examples}.  To selectively export sub-trees of
15346 an Org document, @pxref{Exporting}.
15348 The @code{:exports} header arguments control exporting code blocks only and
15349 not inline code:
15351 @subsubheading Header arguments:
15353 @table @code
15354 @cindex @code{:exports}, src header argument
15355 @item :exports code
15356 This is the default for most languages where the body of the code block is
15357 exported.  See @ref{Literal examples} for more.
15358 @item :exports results
15359 On export, Org includes only the results and not the code block.  After each
15360 evaluation, Org inserts the results after the end of code block in the Org
15361 buffer.  By default, Org replaces any previous results.  Org can also append
15362 results.
15363 @item :exports both
15364 Org exports both the code block and the results.
15365 @item :exports none
15366 Org does not export the code block nor the results.
15367 @end table
15369 @vindex org-export-use-babel
15370 To stop Org from evaluating code blocks to speed exports, use the header
15371 argument @code{:eval never-export} (@pxref{eval}).  To stop Org from
15372 evaluating code blocks for greater security, set the
15373 @code{org-export-use-babel} variable to @code{nil}, but understand that
15374 header arguments will have no effect.
15376 Turning off evaluation comes in handy when batch processing.  For example,
15377 markup languages for wikis, which have a high risk of untrusted code.
15378 Stopping code block evaluation also stops evaluation of all header arguments
15379 of the code block.  This may not be desirable in some circumstances.  So
15380 during export, to allow evaluation of just the header arguments but not any
15381 code evaluation in the source block, set @code{:eval never-export}
15382 (@pxref{eval}).
15384 Org never evaluates code blocks in commented sub-trees when exporting
15385 (@pxref{Comment lines}).  On the other hand, Org does evaluate code blocks in
15386 sub-trees excluded from export (@pxref{Export settings}).
15388 @node Extracting source code
15389 @section Extracting source code
15390 @cindex tangling
15391 @cindex source code, extracting
15392 @cindex code block, extracting source code
15394 Extracting source code from code blocks is a basic task in literate
15395 programming.  Org has features to make this easy.  In literate programming
15396 parlance, documents on creation are @emph{woven} with code and documentation,
15397 and on export, the code is @emph{tangled} for execution by a computer.  Org
15398 facilitates weaving and tangling for producing, maintaining, sharing, and
15399 exporting literate programming documents.  Org provides extensive
15400 customization options for extracting source code.
15402 When Org tangles @samp{src} code blocks, it expands, merges, and transforms
15403 them.  Then Org recomposes them into one or more separate files, as
15404 configured through the options.  During this @emph{tangling} process, Org
15405 expands variables in the source code, and resolves any Noweb style references
15406 (@pxref{Noweb reference syntax}).
15408 @subsubheading Header arguments
15410 @table @code
15411 @cindex @code{:tangle}, src header argument
15412 @item :tangle no
15413 By default, Org does not tangle the @samp{src} code block on export.
15414 @item :tangle yes
15415 Org extracts the contents of the code block for the tangled output.  By
15416 default, the output file name is the same as the Org file but with a file
15417 extension derived from the language identifier of the @samp{src} code block.
15418 @item :tangle filename
15419 Override the default file name with this one for the tangled output.
15420 @end table
15422 @kindex  C-c C-v t
15423 @subsubheading Functions
15425 @table @code
15426 @item org-babel-tangle
15427 Tangle the current file.  Bound to @kbd{C-c C-v t}.
15429 With prefix argument only tangle the current @samp{src} code block.
15430 @item org-babel-tangle-file
15431 Choose a file to tangle.  Bound to @kbd{C-c C-v f}.
15432 @end table
15434 @subsubheading Hooks
15436 @table @code
15437 @item org-babel-post-tangle-hook
15438 This hook runs from within code tangled by @code{org-babel-tangle}, making it
15439 suitable for post-processing, compilation, and evaluation of code in the
15440 tangled files.
15441 @end table
15443 @subsubheading Jumping between code and Org
15445 Debuggers normally link errors and messages back to the source code.  But for
15446 tangled files, we want to link back to the Org file, not to the tangled
15447 source file.  To make this extra jump, Org uses
15448 @code{org-babel-tangle-jump-to-org} function with two additional source code
15449 block header arguments: One, set @code{padline} (@pxref{padline}) to true
15450 (the default setting).  Two, set @code{comments} (@pxref{comments}) to
15451 @code{link}, which makes Org insert links to the Org file.
15453 @node Evaluating code blocks
15454 @section Evaluating code blocks
15455 @cindex code block, evaluating
15456 @cindex source code, evaluating
15457 @cindex #+RESULTS
15459 A note about security: With code evaluation comes the risk of harm.  Org
15460 safeguards by prompting for user's permission before executing any code in
15461 the source block.  To customize this safeguard (or disable it) see @ref{Code
15462 evaluation security}.
15464 Org captures the results of the @samp{src} code block evaluation and inserts
15465 them in the Org file, right after the @samp{src} code block.  The insertion
15466 point is after a newline and the @code{#+RESULTS} label.  Org creates the
15467 @code{#+RESULTS} label if one is not already there.
15469 By default, Org enables only @code{emacs-lisp} @samp{src} code blocks for
15470 execution.  See @ref{Languages} for identifiers to enable other languages.
15472 @kindex C-c C-c
15473 Org provides many ways to execute @samp{src} code blocks.  @kbd{C-c C-c} or
15474 @kbd{C-c C-v e} with the point on a @samp{src} code block@footnote{The option
15475 @code{org-babel-no-eval-on-ctrl-c-ctrl-c} can be used to remove code
15476 evaluation from the @kbd{C-c C-c} key binding.} calls the
15477 @code{org-babel-execute-src-block} function, which executes the code in the
15478 block, collects the results, and inserts them in the buffer.
15480 @cindex #+CALL
15481 By calling a named code block@footnote{Actually, the constructs call_<name>()
15482 and src_<lang>@{@} are not evaluated when they appear in a keyword line
15483 (i.e. lines starting with @code{#+KEYWORD:}, @pxref{In-buffer settings}).}
15484 from an Org mode buffer or a table.  Org can call the named @samp{src} code
15485 blocks from the current Org mode buffer or from the ``Library of Babel''
15486 (@pxref{Library of Babel}).  Whether inline syntax or the @code{#+CALL:}
15487 syntax is used, the result is wrapped based on the variable
15488 @code{org-babel-inline-result-wrap}, which by default is set to @code{"=%s="}
15489 to produce verbatim text suitable for markup.
15491 The syntax for @code{#+CALL:} is
15493 @example
15494 #+CALL: <name>(<arguments>)
15495 #+CALL: <name>[<inside header arguments>](<arguments>) <end header arguments>
15496 @end example
15498 The syntax for inline named code block is
15500 @example
15501 ... call_<name>(<arguments>) ...
15502 ... call_<name>[<inside header arguments>](<arguments>)[<end header arguments>] ...
15503 @end example
15505 @table @code
15506 @item <name>
15507 This is the name of the code block to be evaluated (@pxref{Structure of
15508 code blocks}).
15509 @item <arguments>
15510 Org passes arguments to the code block using standard function call syntax.
15511 For example, a @code{#+CALL:} line that passes @samp{4} to a code block named
15512 @code{double}, which declares the header argument @code{:var n=2}, would be
15513 written as @code{#+CALL: double(n=4)}.  Note how this function call syntax is
15514 different from the header argument syntax.
15515 @item <inside header arguments>
15516 Org passes inside header arguments to the named @samp{src} code block using
15517 the header argument syntax.  Inside header arguments apply to code block
15518 evaluation.  For example, @code{[:results output]} collects results printed
15519 to @code{STDOUT} during code execution of that block.  Note how this header
15520 argument syntax is different from the function call syntax.
15521 @item <end header arguments>
15522 End header arguments affect the results returned by the code block.  For
15523 example, @code{:results html} wraps the results in a @code{BEGIN_EXPORT html}
15524 block before inserting the results in the Org buffer.
15526 For more examples of header arguments for @code{#+CALL:} lines,
15527 @pxref{Arguments in function calls}.
15528 @end table
15530 @node Library of Babel
15531 @section Library of Babel
15532 @cindex babel, library of
15533 @cindex source code, library
15534 @cindex code block, library
15536 The ``Library of Babel'' is a collection of code blocks.  Like a function
15537 library, these code blocks can be called from other Org files.  This
15538 collection is in a repository file in Org mode format in the @samp{doc}
15539 directory of Org mode installation.  For remote code block evaluation syntax,
15540 @pxref{Evaluating code blocks}.
15542 @kindex C-c C-v i
15543 For any user to add code to the library, first save the code in regular
15544 @samp{src} code blocks of an Org file, and then load the Org file with
15545 @code{org-babel-lob-ingest}, which is bound to @kbd{C-c C-v i}.
15547 @node Languages
15548 @section Languages
15549 @cindex babel, languages
15550 @cindex source code, languages
15551 @cindex code block, languages
15553 Org supports the following languages for the @samp{src} code blocks:
15555 @multitable @columnfractions 0.25 0.25 0.25 0.25
15556 @headitem @b{Language} @tab @b{Identifier} @tab @b{Language} @tab @b{Identifier}
15557 @item Asymptote @tab asymptote @tab Awk @tab awk
15558 @item C @tab C @tab C++ @tab C++
15559 @item Clojure @tab clojure @tab CSS @tab css
15560 @item D @tab d @tab ditaa @tab ditaa
15561 @item Graphviz @tab dot @tab Emacs Calc @tab calc
15562 @item Emacs Lisp @tab emacs-lisp @tab Fortran @tab fortran
15563 @item gnuplot @tab gnuplot @tab Haskell @tab haskell
15564 @item Java @tab java @tab Javascript @tab js
15565 @item LaTeX @tab latex @tab Ledger @tab ledger
15566 @item Lisp @tab lisp @tab Lilypond @tab lilypond
15567 @item Lua @tab lua @tab MATLAB @tab matlab
15568 @item Mscgen @tab mscgen @tab Objective Caml @tab ocaml
15569 @item Octave @tab octave @tab Org mode @tab org
15570 @item Oz @tab oz @tab Perl @tab perl
15571 @item Plantuml @tab plantuml @tab Processing.js @tab processing
15572 @item Python @tab python @tab R @tab R
15573 @item Ruby @tab ruby @tab Sass @tab sass
15574 @item Scheme @tab scheme @tab GNU Screen @tab screen
15575 @item Sed @tab sed @tab shell @tab sh
15576 @item SQL @tab sql @tab SQLite @tab sqlite
15577 @item Vala @tab vala
15578 @end multitable
15580 Additional documentation for some languages are at
15581 @uref{http://orgmode.org/worg/org-contrib/babel/languages.html}.
15583 @vindex org-babel-load-languages
15584 By default, only @code{emacs-lisp} is enabled for evaluation.  To enable or
15585 disable other languages, customize the @code{org-babel-load-languages}
15586 variable either through the Emacs customization interface, or by adding code
15587 to the init file as shown next:
15589 In this example, evaluation is disabled for @code{emacs-lisp}, and enabled
15590 for @code{R}.
15592 @lisp
15593 (org-babel-do-load-languages
15594  'org-babel-load-languages
15595  '((emacs-lisp . nil)
15596    (R . t)))
15597 @end lisp
15599 Note that this is not the only way to enable a language.  Org also enables
15600 languages when loaded with @code{require} statement.  For example, the
15601 following enables execution of @code{clojure} code blocks:
15603 @lisp
15604 (require 'ob-clojure)
15605 @end lisp
15607 @node Header arguments
15608 @section Header arguments
15609 @cindex code block, header arguments
15610 @cindex source code, block header arguments
15612 Details of configuring header arguments are shown here.
15614 @menu
15615 * Using header arguments::      Different ways to set header arguments
15616 * Specific header arguments::   List of header arguments
15617 @end menu
15619 @node Using header arguments
15620 @subsection Using header arguments
15622 Since header arguments can be set in several ways, Org prioritizes them in
15623 case of overlaps or conflicts by giving local settings a higher priority.
15624 Header values in function calls, for example, override header values from
15625 global defaults.
15626 @menu
15627 * System-wide header arguments::  Set globally, language-specific
15628 * Language-specific header arguments::  Set in the Org file's headers
15629 * Header arguments in Org mode properties::  Set in the Org file
15630 * Language-specific mode properties::
15631 * Code block specific header arguments::  The most commonly used method
15632 * Arguments in function calls::  The most specific level, takes highest priority
15633 @end menu
15636 @node System-wide header arguments
15637 @subsubheading System-wide header arguments
15638 @vindex org-babel-default-header-args
15639 System-wide values of header arguments can be specified by adapting the
15640 @code{org-babel-default-header-args} variable:
15642 @cindex @code{:session}, src header argument
15643 @cindex @code{:results}, src header argument
15644 @cindex @code{:exports}, src header argument
15645 @cindex @code{:cache}, src header argument
15646 @cindex @code{:noweb}, src header argument
15647 @example
15648 :session    => "none"
15649 :results    => "replace"
15650 :exports    => "code"
15651 :cache      => "no"
15652 :noweb      => "no"
15653 @end example
15655 This example sets @code{:noweb} header arguments to @code{yes}, which makes
15656 Org expand @code{:noweb} references by default.
15658 @lisp
15659 (setq org-babel-default-header-args
15660       (cons '(:noweb . "yes")
15661             (assq-delete-all :noweb org-babel-default-header-args)))
15662 @end lisp
15664 @node Language-specific header arguments
15665 @subsubheading Language-specific header arguments
15666 Each language can have separate default header arguments by customizing the
15667 variable @code{org-babel-default-header-args:<lang>}, where @code{<lang>} is
15668 the name of the language.  For details, see the language-specific online
15669 documentation at @uref{http://orgmode.org/worg/org-contrib/babel}.
15671 @node Header arguments in Org mode properties
15672 @subsubheading Header arguments in Org mode properties
15674 For header arguments applicable to the buffer, use @code{#+PROPERTY:} lines
15675 anywhere in the Org mode file (@pxref{Property syntax}).
15677 The following example sets only for @samp{R} code blocks to @code{session},
15678 making all the @samp{R} code blocks execute in the same session.  Setting
15679 @code{results} to @code{silent} ignores the results of executions for all
15680 blocks, not just @samp{R} code blocks; no results inserted for any block.
15682 @example
15683 #+PROPERTY: header-args:R  :session *R*
15684 #+PROPERTY: header-args    :results silent
15685 @end example
15687 @vindex org-use-property-inheritance
15688 Header arguments set through Org's property drawers (@pxref{Property syntax})
15689 apply at the sub-tree level on down.  Since these property drawers can appear
15690 anywhere in the file hierarchy, Org uses outermost call or source block to
15691 resolve the values.  Org ignores @code{org-use-property-inheritance} setting.
15693 In this example, @code{:cache} defaults to @code{yes} for all code blocks in
15694 the sub-tree starting with @samp{sample header}.
15696 @example
15697 * sample header
15698   :PROPERTIES:
15699   :header-args:    :cache yes
15700   :END:
15701 @end example
15703 @kindex C-c C-x p
15704 @vindex org-babel-default-header-args
15705 Properties defined through @code{org-set-property} function, bound to
15706 @kbd{C-c C-x p}, apply to all active languages.  They override properties set
15707 in @code{org-babel-default-header-args}.
15709 @node Language-specific mode properties
15710 @subsubheading Language-specific mode properties
15712 Language-specific header arguments are also read from properties
15713 @code{header-args:<lang>} where @code{<lang>} is the language identifier.
15714 For example,
15716 @example
15717 * Heading
15718   :PROPERTIES:
15719   :header-args:clojure:    :session *clojure-1*
15720   :header-args:R:          :session *R*
15721   :END:
15722 ** Subheading
15723   :PROPERTIES:
15724   :header-args:clojure:    :session *clojure-2*
15725   :END:
15726 @end example
15728 would force separate sessions for clojure blocks in Heading and Subheading,
15729 but use the same session for all @samp{R} blocks.  Blocks in Subheading
15730 inherit settings from Heading.
15732 @node Code block specific header arguments
15733 @subsubheading Code block specific header arguments
15735 Header arguments are most commonly set at the @samp{src} code block level, on
15736 the @code{#+BEGIN_SRC} line.  Arguments set at this level take precedence
15737 over those set in the @code{org-babel-default-header-args} variable, and also
15738 those set as header properties.
15740 In the following example, setting @code{results} to @code{silent} makes it
15741 ignore results of the code execution.  Setting @code{:exports} to @code{code}
15742 exports only the body of the @samp{src} code block to HTML or @LaTeX{}.:
15744 @example
15745 #+NAME: factorial
15746 #+BEGIN_SRC haskell :results silent :exports code :var n=0
15747 fac 0 = 1
15748 fac n = n * fac (n-1)
15749 #+END_SRC
15750 @end example
15752 The same header arguments in an inline @samp{src} code block:
15754 @example
15755 src_haskell[:exports both]@{fac 5@}
15756 @end example
15758 Code block header arguments can span multiple lines using @code{#+HEADER:} on
15759 each line.  Note that Org currently accepts the plural spelling of
15760 @code{#+HEADER:} only as a convenience for backward-compatibility.  It may be
15761 removed at some point.
15763 @cindex #+HEADER:
15765 Multi-line header arguments on an unnamed @samp{src} code block:
15767 @example
15768 #+HEADER: :var data1=1
15769 #+BEGIN_SRC emacs-lisp :var data2=2
15770    (message "data1:%S, data2:%S" data1 data2)
15771 #+END_SRC
15773 #+RESULTS:
15774 : data1:1, data2:2
15775 @end example
15777 Multi-line header arguments on a named @samp{src} code block:
15779 @example
15780 #+NAME: named-block
15781 #+HEADER: :var data=2
15782 #+BEGIN_SRC emacs-lisp
15783   (message "data:%S" data)
15784 #+END_SRC
15786 #+RESULTS: named-block
15787   : data:2
15788 @end example
15790 @node Arguments in function calls
15791 @subsubheading Arguments in function calls
15793 Header arguments in function calls are the most specific and override all
15794 other settings in case of an overlap.  They get the highest priority.  Two
15795 @code{#+CALL:} examples are shown below.  For the complete syntax of
15796 @code{#+CALL:} lines, see @ref{Evaluating code blocks}.
15798 In this example, @code{:exports results} header argument is applied to the
15799 evaluation of the @code{#+CALL:} line.
15801 @example
15802 #+CALL: factorial(n=5) :exports results
15803 @end example
15805 In this example, @code{:session special} header argument is applied to the
15806 evaluation of @code{factorial} code block.
15808 @example
15809 #+CALL: factorial[:session special](n=5)
15810 @end example
15812 @node Specific header arguments
15813 @subsection Specific header arguments
15814 Org comes with many header arguments common to all languages.  New header
15815 arguments are added for specific languages as they become available for use
15816 in @samp{src} code blocks.  A header argument is specified with an initial
15817 colon followed by the argument's name in lowercase.  Common header arguments
15818 are:
15820 @menu
15821 * var::                         Pass arguments to @samp{src} code blocks
15822 * results::                     Specify results type; how to collect
15823 * file::                        Specify a path for output file
15824 * file-desc::                   Specify a description for file results
15825 * file-ext::                    Specify an extension for file output
15826 * output-dir::                  Specify a directory for output file
15827 * dir::                         Specify the default directory for code block execution
15828 * exports::                     Specify exporting code, results, both, none
15829 * tangle::                      Toggle tangling; or specify file name
15830 * mkdirp::                      Toggle for parent directory creation for target files during tangling
15831 * comments::                    Toggle insertion of comments in tangled code files
15832 * padline::                     Control insertion of padding lines in tangled code files
15833 * no-expand::                   Turn off variable assignment and noweb expansion during tangling
15834 * session::                     Preserve the state of code evaluation
15835 * noweb::                       Toggle expansion of noweb references
15836 * noweb-ref::                   Specify block's noweb reference resolution target
15837 * noweb-sep::                   String to separate noweb references
15838 * cache::                       Avoid re-evaluating unchanged code blocks
15839 * sep::                         Delimiter for writing tabular results outside Org
15840 * hlines::                      Handle horizontal lines in tables
15841 * colnames::                    Handle column names in tables
15842 * rownames::                    Handle row names in tables
15843 * shebang::                     Make tangled files executable
15844 * tangle-mode::                 Set permission of tangled files
15845 * eval::                        Limit evaluation of specific code blocks
15846 * wrap::                        Mark source block evaluation results
15847 * post::                        Post processing of results of code block evaluation
15848 * prologue::                    Text to prepend to body of code block
15849 * epilogue::                    Text to append to body of code block
15850 @end menu
15852 For language-specific header arguments, see @ref{Languages}.
15854 @node var
15855 @subsubsection @code{:var}
15856 @cindex @code{:var}, src header argument
15857 Use @code{:var} for passing arguments to @samp{src} code blocks.  The
15858 specifics of variables in @samp{src} code blocks vary by the source language
15859 and are covered in the language-specific documentation.  The syntax for
15860 @code{:var}, however, is the same for all languages.  This includes declaring
15861 a variable, and assigning a default value.
15863 Arguments can take values as literals, or as references, or even as Emacs
15864 Lisp code (@pxref{var, Emacs Lisp evaluation of variables}).  References are
15865 names from the Org file from the lines @code{#+NAME:} or @code{#+RESULTS:}.
15866 References can also refer to tables, lists, @code{#+BEGIN_EXAMPLE} blocks,
15867 other types of @samp{src} code blocks, or the results of execution of
15868 @samp{src} code blocks.
15870 For better performance, Org can cache results of evaluations.  But caching
15871 comes with severe limitations (@pxref{cache}).
15873 Argument values are indexed like arrays (@pxref{var, Indexable variable
15874 values}).
15876 The following syntax is used to pass arguments to @samp{src} code blocks
15877 using the @code{:var} header argument.
15879 @example
15880 :var name=assign
15881 @end example
15883 The @code{assign} is a literal value, such as a string @samp{"string"}, a
15884 number @samp{9}, a reference to a table, a list, a literal example, another
15885 code block (with or without arguments), or the results from evaluating a code
15886 block.
15888 Here are examples of passing values by reference:
15890 @table @dfn
15892 @item table
15893 an Org mode table named with either a @code{#+NAME:} line
15895 @example
15896 #+NAME: example-table
15897 | 1 |
15898 | 2 |
15899 | 3 |
15900 | 4 |
15902 #+NAME: table-length
15903 #+BEGIN_SRC emacs-lisp :var table=example-table
15904 (length table)
15905 #+END_SRC
15907 #+RESULTS: table-length
15908 : 4
15909 @end example
15911 @item list
15912 a simple list named with a @code{#+NAME:} line.  Note that only the top level
15913 list items are passed along.  Nested list items are ignored.
15915 @example
15916 #+NAME: example-list
15917   - simple
15918     - not
15919     - nested
15920   - list
15922 #+BEGIN_SRC emacs-lisp :var x=example-list
15923   (print x)
15924 #+END_SRC
15926 #+RESULTS:
15927 | simple | list |
15928 @end example
15930 @item code block without arguments
15931 a code block name (from the example above), as assigned by @code{#+NAME:},
15932 optionally followed by parentheses
15934 @example
15935 #+BEGIN_SRC emacs-lisp :var length=table-length()
15936 (* 2 length)
15937 #+END_SRC
15939 #+RESULTS:
15940 : 8
15941 @end example
15943 @item code block with arguments
15944 a @samp{src} code block name, as assigned by @code{#+NAME:}, followed by
15945 parentheses and optional arguments passed within the parentheses following
15946 the @samp{src} code block name using standard function call syntax
15948 @example
15949 #+NAME: double
15950 #+BEGIN_SRC emacs-lisp :var input=8
15951 (* 2 input)
15952 #+END_SRC
15954 #+RESULTS: double
15955 : 16
15957 #+NAME: squared
15958 #+BEGIN_SRC emacs-lisp :var input=double(input=2)
15959 (* input input)
15960 #+END_SRC
15962 #+RESULTS: squared
15963 : 4
15964 @end example
15966 @item literal example
15967 a literal example block named with a @code{#+NAME:} line
15969 @example
15970 #+NAME: literal-example
15971 #+BEGIN_EXAMPLE
15972 A literal example
15973 on two lines
15974 #+END_EXAMPLE
15976 #+NAME: read-literal-example
15977 #+BEGIN_SRC emacs-lisp :var x=literal-example
15978   (concatenate 'string x " for you.")
15979 #+END_SRC
15981 #+RESULTS: read-literal-example
15982 : A literal example
15983 : on two lines for you.
15985 @end example
15987 @end table
15989 @subsubheading Indexable variable values
15990 Indexing variable values enables referencing portions of a variable.  Indexes
15991 are 0 based with negative values counting backwards from the end.  If an
15992 index is separated by @code{,}s then each subsequent section will index as
15993 the next dimension.  Note that this indexing occurs @emph{before} other
15994 table-related header arguments are applied, such as @code{:hlines},
15995 @code{:colnames} and @code{:rownames}.  The following example assigns the
15996 last cell of the first row the table @code{example-table} to the variable
15997 @code{data}:
15999 @example
16000 #+NAME: example-table
16001 | 1 | a |
16002 | 2 | b |
16003 | 3 | c |
16004 | 4 | d |
16006 #+BEGIN_SRC emacs-lisp :var data=example-table[0,-1]
16007   data
16008 #+END_SRC
16010 #+RESULTS:
16011 : a
16012 @end example
16014 Ranges of variable values can be referenced using two integers separated by a
16015 @code{:}, in which case the entire inclusive range is referenced.  For
16016 example the following assigns the middle three rows of @code{example-table}
16017 to @code{data}.
16019 @example
16020 #+NAME: example-table
16021 | 1 | a |
16022 | 2 | b |
16023 | 3 | c |
16024 | 4 | d |
16025 | 5 | 3 |
16027 #+BEGIN_SRC emacs-lisp :var data=example-table[1:3]
16028   data
16029 #+END_SRC
16031 #+RESULTS:
16032 | 2 | b |
16033 | 3 | c |
16034 | 4 | d |
16035 @end example
16037 To pick the entire range, use an empty index, or the single character
16038 @code{*}.  @code{0:-1} does the same thing.  Example below shows how to
16039 reference the first column only.
16041 @example
16042 #+NAME: example-table
16043 | 1 | a |
16044 | 2 | b |
16045 | 3 | c |
16046 | 4 | d |
16048 #+BEGIN_SRC emacs-lisp :var data=example-table[,0]
16049   data
16050 #+END_SRC
16052 #+RESULTS:
16053 | 1 | 2 | 3 | 4 |
16054 @end example
16056 Index referencing can be used for tables and code blocks.  Index referencing
16057 can handle any number of dimensions.  Commas delimit multiple dimensions, as
16058 shown below.
16060 @example
16061 #+NAME: 3D
16062 #+BEGIN_SRC emacs-lisp
16063   '(((1  2  3)  (4  5  6)  (7  8  9))
16064     ((10 11 12) (13 14 15) (16 17 18))
16065     ((19 20 21) (22 23 24) (25 26 27)))
16066 #+END_SRC
16068 #+BEGIN_SRC emacs-lisp :var data=3D[1,,1]
16069   data
16070 #+END_SRC
16072 #+RESULTS:
16073 | 11 | 14 | 17 |
16074 @end example
16076 @subsubheading Emacs Lisp evaluation of variables
16078 Emacs lisp code can set the values for variables.  To differentiate a value
16079 from lisp code, Org interprets any value starting with @code{(}, @code{[},
16080 @code{'} or @code{`} as Emacs Lisp code.  The result of evaluating that code
16081 is then assigned to the value of that variable.  The following example shows
16082 how to reliably query and pass file name of the Org mode buffer to a code
16083 block using headers.  We need reliability here because the file's name could
16084 change once the code in the block starts executing.
16086 @example
16087 #+BEGIN_SRC sh :var filename=(buffer-file-name) :exports both
16088   wc -w $filename
16089 #+END_SRC
16090 @end example
16092 Note that values read from tables and lists will not be mistakenly evaluated
16093 as Emacs Lisp code, as illustrated in the following example.
16095 @example
16096 #+NAME: table
16097 | (a b c) |
16099 #+HEADER: :var data=table[0,0]
16100 #+BEGIN_SRC perl
16101   $data
16102 #+END_SRC
16104 #+RESULTS:
16105 : (a b c)
16106 @end example
16108 @node results
16109 @subsubsection @code{:results}
16110 @cindex @code{:results}, src header argument
16112 There are four classes of @code{:results} header arguments.  Each @samp{src}
16113 code block can take only one option per class.
16115 @itemize @bullet
16116 @item
16117 @b{collection} for how the results should be collected from the @samp{src}
16118 code block
16119 @item
16120 @b{type} for which type of result the code block will return; affects how Org
16121 processes and inserts results in the Org buffer
16122 @item
16123 @b{format} for the result; affects how Org processes and inserts results in
16124 the Org buffer
16125 @item
16126 @b{handling} for processing results after evaluation of the @samp{src} code
16127 block
16128 @end itemize
16130 @subsubheading Collection
16131 Collection options specify the results.  Choose one of the options; they are
16132 mutually exclusive.
16134 @itemize @bullet
16135 @item @code{value}
16136 Default.  Functional mode.  Result is the value returned by the last
16137 statement in the @samp{src} code block.  Languages like Python may require an
16138 explicit @code{return} statement in the @samp{src} code block.  Usage
16139 example: @code{:results value}.
16140 @item @code{output}
16141 Scripting mode.  Result is collected from STDOUT during execution of the code
16142 in the @samp{src} code block.  Usage example: @code{:results output}.
16143 @end itemize
16145 @subsubheading Type
16146 Type tells what result types to expect from the execution of the code
16147 block.  Choose one of the options; they are mutually exclusive.  The default
16148 behavior is to automatically determine the result type.
16150 @itemize @bullet
16151 @item @code{table}, @code{vector}
16152 Interpret the results as an Org table.  If the result is a single value,
16153 create a table with one row and one column.  Usage example: @code{:results
16154 value table}.
16155 @item @code{list}
16156 Interpret the results as an Org list.  If the result is a single value,
16157 create a list of one element.
16158 @item @code{scalar}, @code{verbatim}
16159 Interpret literally and insert as quoted text.  Do not create a table.  Usage
16160 example: @code{:results value verbatim}.
16161 @item @code{file}
16162 Interpret as path to a file.  Inserts a link to the file.  Usage example:
16163 @code{:results value file}.
16164 @end itemize
16166 @subsubheading Format
16167 Format pertains to the type of the result returned by the @samp{src} code
16168 block.  Choose one of the options; they are mutually exclusive.  The default
16169 follows from the type specified above.
16171 @itemize @bullet
16172 @item @code{raw}
16173 Interpreted as raw Org mode.  Inserted directly into the buffer.  Aligned if
16174 it is a table.  Usage example: @code{:results value raw}.
16175 @item @code{org}
16176 Results enclosed in a @code{BEGIN_SRC org} block.  For comma-escape, either
16177 @kbd{TAB} in the block, or export the file.  Usage example: @code{:results
16178 value org}.
16179 @item @code{html}
16180 Results enclosed in a @code{BEGIN_EXPORT html} block.  Usage example:
16181 @code{:results value html}.
16182 @item @code{latex}
16183 Results enclosed in a @code{BEGIN_EXPORT latex} block.  Usage example:
16184 @code{:results value latex}.
16185 @item @code{code}
16186 Result enclosed in a @samp{src} code block.  Useful for parsing.  Usage
16187 example: @code{:results value code}.
16188 @item @code{pp}
16189 Result converted to pretty-print source code.  Enclosed in a @samp{src} code
16190 block.  Languages supported: Emacs Lisp, Python, and Ruby.  Usage example:
16191 @code{:results value pp}.
16192 @item @code{drawer}
16193 Result wrapped in a RESULTS drawer.  Useful for containing @code{raw} or
16194 @code{org} results for later scripting and automated processing.  Usage
16195 example: @code{:results value drawer}.
16196 @end itemize
16198 @subsubheading Handling
16199 Handling options after collecting the results.
16201 @itemize @bullet
16202 @item @code{silent}
16203 Do not insert results in the Org mode buffer, but echo them in the
16204 minibuffer.  Usage example: @code{:results output silent}.
16205 @item @code{replace}
16206 Default.  Insert results in the Org buffer.  Remove previous results.  Usage
16207 example: @code{:results output replace}.
16208 @item @code{append}
16209 Append results to the Org buffer.  Latest results are at the bottom.  Does
16210 not remove previous results.  Usage example: @code{:results output append}.
16211 @item @code{prepend}
16212 Prepend results to the Org buffer.  Latest results are at the top.  Does not
16213 remove previous results.  Usage example: @code{:results output prepend}.
16214 @end itemize
16216 @node file
16217 @subsubsection @code{:file}
16218 @cindex @code{:file}, src header argument
16220 An external @code{:file} that saves the results of execution of the code
16221 block.  The @code{:file} is either a file name or two strings, where the
16222 first is the file name and the second is the description.  A link to the file
16223 is inserted.  It uses an Org mode style @code{[[file:]]} link (@pxref{Link
16224 format}).  Some languages, such as @samp{R}, @samp{dot}, @samp{ditaa}, and
16225 @samp{gnuplot}, automatically wrap the source code in additional boilerplate
16226 code.  Such code wrapping helps recreate the output, especially graphics
16227 output, by executing just the @code{:file} contents.
16229 @node file-desc
16230 @subsubsection @code{:file-desc}
16232 A description of the results file.  Org uses this description for the link
16233 (see @ref{Link format}) it inserts in the Org file.  If the @code{:file-desc}
16234 has no value, Org will use file name for both the ``link'' and the
16235 ``description'' portion of the Org mode link.
16237 @node file-ext
16238 @subsubsection @code{:file-ext}
16239 @cindex @code{:file-ext}, src header argument
16241 File name extension for the output file.  Org generates the file's complete
16242 name, and extension by combining @code{:file-ext}, @code{#+NAME:} of the
16243 source block, and the @ref{output-dir} header argument.  To override this
16244 auto generated file name, use the @code{:file} header argument.
16246 @node output-dir
16247 @subsubsection @code{:output-dir}
16248 @cindex @code{:output-dir}, src header argument
16250 Specifies the @code{:output-dir} for the results file.  Org accepts an
16251 absolute path (beginning with @code{/}) or a relative directory (without
16252 @code{/}).  The value can be combined with @code{#+NAME:} of the source block
16253 and @ref{file} or @ref{file-ext} header arguments.
16255 @node dir
16256 @subsubsection @code{:dir} and remote execution
16257 @cindex @code{:dir}, src header argument
16259 While the @code{:file} header argument can be used to specify the path to the
16260 output file, @code{:dir} specifies the default directory during @samp{src}
16261 code block execution.  If it is absent, then the directory associated with
16262 the current buffer is used.  In other words, supplying @code{:dir path}
16263 temporarily has the same effect as changing the current directory with
16264 @kbd{M-x cd path RET}, and then not supplying @code{:dir}.  Under the
16265 surface, @code{:dir} simply sets the value of the Emacs variable
16266 @code{default-directory}.
16268 When using @code{:dir}, relative paths (for example, @code{:file myfile.jpg}
16269 or @code{:file results/myfile.jpg}) become relative to the default directory.
16271 For example, to save the plot file in the @samp{Work} folder of the home
16272 directory (notice tilde is expanded):
16274 @example
16275 #+BEGIN_SRC R :file myplot.png :dir ~/Work
16276 matplot(matrix(rnorm(100), 10), type="l")
16277 #+END_SRC
16278 @end example
16280 @subsubheading Remote execution
16281 To evaluate the @samp{src} code block on a remote machine, supply a remote s
16282 directory name using @samp{Tramp} syntax.  For example:
16284 @example
16285 #+BEGIN_SRC R :file plot.png :dir /scp:dand@@yakuba.princeton.edu:
16286 plot(1:10, main=system("hostname", intern=TRUE))
16287 #+END_SRC
16288 @end example
16290 Org first captures the text results as usual for insertion in the Org file.
16291 Then Org also inserts a link to the remote file, thanks to Emacs
16292 @samp{Tramp}.  Org constructs the remote path to the file name from
16293 @code{:dir} and @code{default-directory}, as illustrated here:
16295 @example
16296 [[file:/scp:dand@@yakuba.princeton.edu:/home/dand/plot.png][plot.png]]
16297 @end example
16300 @subsubheading Some more warnings
16302 @itemize @bullet
16303 @item
16304 When @code{:dir} is used with @code{:session}, Org sets the starting
16305 directory for a new session.  But Org will not alter the directory of an
16306 already existing session.
16307 @item
16308 Do not use @code{:dir} with @code{:exports results} or with @code{:exports
16309 both} to avoid Org inserting incorrect links to remote files.  That is because
16310 Org does not expand @code{default directory} to avoid some underlying
16311 portability issues.
16312 @end itemize
16314 @node exports
16315 @subsubsection @code{:exports}
16316 @cindex @code{:exports}, src header argument
16318 The @code{:exports} header argument is to specify if that part of the Org
16319 file is exported to, say, HTML or @LaTeX{} formats.  Note that
16320 @code{:exports} affects only @samp{src} code blocks and not inline code.
16322 @itemize @bullet
16323 @item @code{code}
16324 The default.  The body of code is included into the exported file.  Example:
16325 @code{:exports code}.
16326 @item @code{results}
16327 The results of evaluation of the code is included in the exported file.
16328 Example: @code{:exports results}.
16329 @item @code{both}
16330 Both the code and results of evaluation are included in the exported file.
16331 Example: @code{:exports both}.
16332 @item @code{none}
16333 Neither the code nor the results of evaluation is included in the exported
16334 file.  Whether the code is evaluated at all depends on other
16335 options.  Example: @code{:exports none}.
16336 @end itemize
16338 @node tangle
16339 @subsubsection @code{:tangle}
16340 @cindex @code{:tangle}, src header argument
16342 The @code{:tangle} header argument specifies if the @samp{src} code block is
16343 exported to source file(s).
16345 @itemize @bullet
16346 @item @code{tangle}
16347 Export the @samp{src} code block to source file.  The file name for the
16348 source file is derived from the name of the Org file, and the file extension
16349 is derived from the source code language identifier.  Example: @code{:tangle
16350 yes}.
16351 @item @code{no}
16352 The default.  Do not extract the code a source code file.  Example:
16353 @code{:tangle no}.
16354 @item other
16355 Export the @samp{src} code block to source file whose file name is derived
16356 from any string passed to the @code{:tangle} header argument.  Org derives
16357 the file name as being relative to the directory of the Org file's location.
16358 Example: @code{:tangle path}.
16359 @end itemize
16361 @node mkdirp
16362 @subsubsection @code{:mkdirp}
16363 @cindex @code{:mkdirp}, src header argument
16365 The @code{:mkdirp} header argument creates parent directories for tangled
16366 files if the directory does not exist.  @code{yes} enables directory creation
16367 and @code{no} inhibits directory creation.
16369 @node comments
16370 @subsubsection @code{:comments}
16371 @cindex @code{:comments}, src header argument
16372 Controls inserting comments into tangled files.  These are above and beyond
16373 whatever comments may already exist in the @samp{src} code block.
16375 @itemize @bullet
16376 @item @code{no}
16377 The default.  Do not insert any extra comments during tangling.
16378 @item @code{link}
16379 Wrap the @samp{src} code block in comments.  Include links pointing back to
16380 the place in the Org file from where the code was tangled.
16381 @item @code{yes}
16382 Kept for backward compatibility; same as ``link''.
16383 @item @code{org}
16384 Nearest headline text from Org file is inserted as comment.  The exact text
16385 that is inserted is picked from the leading context of the source block.
16386 @item @code{both}
16387 Includes both ``link'' and ``org'' comment options.
16388 @item @code{noweb}
16389 Includes ``link'' comment option, expands noweb references, and wraps them in
16390 link comments inside the body of the @samp{src} code block.
16391 @end itemize
16393 @node padline
16394 @subsubsection @code{:padline}
16395 @cindex @code{:padline}, src header argument
16396 Control insertion of newlines to pad @samp{src} code blocks in the tangled
16397 file.
16398 @itemize @bullet
16399 @item @code{yes}
16400 Default.  Insert a newline before and after each @samp{src} code block in the
16401 tangled file.
16402 @item @code{no}
16403 Do not insert newlines to pad the tangled @samp{src} code blocks.
16404 @end itemize
16406 @node no-expand
16407 @subsubsection @code{:no-expand}
16408 @cindex @code{:no-expand}, src header argument
16410 By default Org expands @samp{src} code blocks during tangling.  The
16411 @code{:no-expand} header argument turns off such expansions.  Note that one
16412 side-effect of expansion by @code{org-babel-expand-src-block} also assigns
16413 values to @code{:var} (@pxref{var}) variables.  Expansions also replace Noweb
16414 references with their targets (@pxref{Noweb reference syntax}).  Some of
16415 these expansions may cause premature assignment, hence this option.  This
16416 option makes a difference only for tangling.  It has no effect when exporting
16417 since @samp{src} code blocks for execution have to be expanded anyway.
16419 @node session
16420 @subsubsection @code{:session}
16421 @cindex @code{:session}, src header argument
16423 The @code{:session} header argument is for running multiple source code
16424 blocks under one session.  Org runs @samp{src} code blocks with the same
16425 session name in the same interpreter process.
16427 @itemize @bullet
16428 @item @code{none}
16429 Default.  Each @samp{src} code block gets a new interpreter process to
16430 execute.  The process terminates once the block is evaluated.
16431 @item @code{other}
16432 Any string besides @code{none} turns that string into the name of that
16433 session.  For example, @code{:session mysession} names it @samp{mysession}.
16434 If @code{:session} has no argument, then the session name is derived from the
16435 source language identifier.  Subsequent blocks with the same source code
16436 language use the same session.  Depending on the language, state variables,
16437 code from other blocks, and the overall interpreted environment may be
16438 shared.  Some interpreted languages support concurrent sessions when
16439 subsequent source code language blocks change session names.
16440 @end itemize
16442 @node noweb
16443 @subsubsection @code{:noweb}
16444 @cindex @code{:noweb}, src header argument
16446 The @code{:noweb} header argument controls expansion of Noweb syntax
16447 references (@pxref{Noweb reference syntax}).  Expansions occur when source
16448 code blocks are evaluated, tangled, or exported.
16450 @itemize @bullet
16451 @item @code{no}
16452 Default.  No expansion of Noweb syntax references in the body of the code
16453 when evaluating, tangling, or exporting.
16454 @item @code{yes}
16455 Expansion of Noweb syntax references in the body of the @samp{src} code block
16456 when evaluating, tangling, or exporting.
16457 @item @code{tangle}
16458 Expansion of Noweb syntax references in the body of the @samp{src} code block
16459 when tangling.  No expansion when evaluating or exporting.
16460 @item @code{no-export}
16461 Expansion of Noweb syntax references in the body of the @samp{src} code block
16462 when evaluating or tangling.  No expansion when exporting.
16463 @item @code{strip-export}
16464 Expansion of Noweb syntax references in the body of the @samp{src} code block
16465 when expanding prior to evaluating or tangling.  Removes Noweb syntax
16466 references when exporting.
16467 @item @code{eval}
16468 Expansion of Noweb syntax references in the body of the @samp{src} code block
16469 only before evaluating.
16470 @end itemize
16472 @subsubheading Noweb prefix lines
16473 Noweb insertions now honor prefix characters that appear before the Noweb
16474 syntax reference.
16476 This behavior is illustrated in the following example.  Because the
16477 @code{<<example>>} noweb reference appears behind the SQL comment syntax,
16478 each line of the expanded noweb reference will be commented.
16480 With:
16482 @example
16483 #+NAME: example
16484 #+BEGIN_SRC text
16485 this is the
16486 multi-line body of example
16487 #+END_SRC
16488 @end example
16490 this @samp{src} code block:
16492 @example
16493 #+BEGIN_SRC sql :noweb yes
16494 -- <<example>>
16495 #+END_SRC
16496 @end example
16498 expands to:
16500 @example
16501 -- this is the
16502 -- multi-line body of example
16503 @end example
16505 Since this change will not affect noweb replacement text without newlines in
16506 them, inline noweb references are acceptable.
16508 This feature can also be used for management of indentation in exported code snippets.
16510 With:
16512 @example
16513 #+NAME: if-true
16514 #+BEGIN_SRC python :exports none
16515 print('Do things when True')
16516 #+END_SRC
16518 #+NAME: if-false
16519 #+BEGIN_SRC python :exports none
16520 print('Do things when False')
16521 #+END_SRC
16522 @end example
16524 this @samp{src} code block:
16526 @example
16527 #+BEGIN_SRC python :noweb yes :results output
16528 if True:
16529     <<if-true>>
16530 else:
16531     <<if-false>>
16532 #+END_SRC
16533 @end example
16535 expands to:
16537 @example
16538 if True:
16539     print('Do things when True')
16540 else:
16541     print('Do things when False')
16542 @end example
16544 and evaluates to:
16546 @example
16547 Do things when True
16548 @end example
16550 @node noweb-ref
16551 @subsubsection @code{:noweb-ref}
16552 @cindex @code{:noweb-ref}, src header argument
16554 When expanding Noweb style references, Org concatenates @samp{src} code
16555 blocks by matching the reference name to either the code block name or the
16556 @code{:noweb-ref} header argument.
16558 For simple concatenation, set this @code{:noweb-ref} header argument at the
16559 sub-tree or file level.  In the example Org file shown next, the body of the
16560 source code in each block is extracted for concatenation to a pure code file
16561 when tangled.
16563 @example
16564  #+BEGIN_SRC sh :tangle yes :noweb yes :shebang #!/bin/sh
16565    <<fullest-disk>>
16566  #+END_SRC
16567  * the mount point of the fullest disk
16568    :PROPERTIES:
16569    :header-args: :noweb-ref fullest-disk
16570    :END:
16572  ** query all mounted disks
16573  #+BEGIN_SRC sh
16574    df \
16575  #+END_SRC
16577  ** strip the header row
16578  #+BEGIN_SRC sh
16579    |sed '1d' \
16580  #+END_SRC
16582  ** output mount point of fullest disk
16583  #+BEGIN_SRC sh
16584    |awk '@{if (u < +$5) @{u = +$5; m = $6@}@} END @{print m@}'
16585  #+END_SRC
16586 @end example
16588 @node noweb-sep
16589 @subsubsection @code{:noweb-sep}
16590 @cindex @code{:noweb-sep}, src header argument
16592 By default a newline separates each noweb reference concatenation.  To change
16593 this newline separator, edit the @code{:noweb-sep} (@pxref{noweb-sep}) header
16594 argument.
16596 @node cache
16597 @subsubsection @code{:cache}
16598 @cindex @code{:cache}, src header argument
16600 The @code{:cache} header argument is for caching results of evaluating code
16601 blocks.  Caching results can avoid re-evaluating @samp{src} code blocks that
16602 have not changed since the previous run.  To benefit from the cache and avoid
16603 redundant evaluations, the source block must have a result already present in
16604 the buffer, and neither the header arguments (including the value of
16605 @code{:var} references) nor the text of the block itself has changed since
16606 the result was last computed.  This feature greatly helps avoid long-running
16607 calculations.  For some edge cases, however, the cached results may not be
16608 reliable.
16610 The caching feature is best for when @samp{src} blocks are pure functions,
16611 that is functions that return the same value for the same input arguments
16612 (@pxref{var}), and that do not have side effects, and do not rely on external
16613 variables other than the input arguments.  Functions that depend on a timer,
16614 file system objects, and random number generators are clearly unsuitable for
16615 caching.
16617 A note of warning: when @code{:cache} is used for a @code{:session}, caching
16618 may cause unexpected results.
16620 When the caching mechanism tests for any source code changes, it will not
16621 expand Noweb style references (@pxref{Noweb reference syntax}).  For reasons
16622 why, see @uref{http://thread.gmane.org/gmane.emacs.orgmode/79046}.
16624 The @code{:cache} header argument can have one of two values: @code{yes} or
16625 @code{no}.
16627 @itemize @bullet
16628 @item @code{no}
16629 Default.  No caching of results; @samp{src} code block evaluated every time.
16630 @item @code{yes}
16631 Whether to run the code or return the cached results is determined by
16632 comparing the SHA1 hash value of the combined @samp{src} code block and
16633 arguments passed to it.  This hash value is packed on the @code{#+RESULTS:}
16634 line from previous evaluation.  When hash values match, Org does not evaluate
16635 the @samp{src} code block.  When hash values mismatch, Org evaluates the
16636 @samp{src} code block, inserts the results, recalculates the hash value, and
16637 updates @code{#+RESULTS:} line.
16638 @end itemize
16640 In this example, both functions are cached.  But @code{caller} runs only if
16641 the result from @code{random} has changed since the last run.
16643 @example
16644  #+NAME: random
16645  #+BEGIN_SRC R :cache yes
16646  runif(1)
16647  #+END_SRC
16649  #+RESULTS[a2a72cd647ad44515fab62e144796432793d68e1]: random
16650  0.4659510825295
16652  #+NAME: caller
16653  #+BEGIN_SRC emacs-lisp :var x=random :cache yes
16655  #+END_SRC
16657  #+RESULTS[bec9c8724e397d5df3b696502df3ed7892fc4f5f]: caller
16658  0.254227238707244
16659 @end example
16661 @node sep
16662 @subsubsection @code{:sep}
16663 @cindex @code{:sep}, src header argument
16665 The @code{:sep} header argument is the delimiter for saving results as tables
16666 to files (@pxref{file}) external to Org mode.  Org defaults to tab delimited
16667 output.  The function, @code{org-open-at-point}, which is bound to @kbd{C-c
16668 C-o}, also uses @code{:sep} for opening tabular results.
16670 @node hlines
16671 @subsubsection @code{:hlines}
16672 @cindex @code{:hlines}, src header argument
16674 In-between each table row or below the table headings, sometimes results have
16675 horizontal lines, which are also known as hlines.  The @code{:hlines}
16676 argument with the value @code{yes} accepts such lines.  The default is
16677 @code{no}.
16679 @itemize @bullet
16680 @item @code{no}
16681 Strips horizontal lines from the input table.  For most code, this is
16682 desirable, or else those @code{hline} symbols raise unbound variable errors.
16684 The default is @code{:hlines no}.  The example shows hlines removed from the
16685 input table.
16687 @example
16688 #+NAME: many-cols
16689 | a | b | c |
16690 |---+---+---|
16691 | d | e | f |
16692 |---+---+---|
16693 | g | h | i |
16695 #+NAME: echo-table
16696 #+BEGIN_SRC python :var tab=many-cols
16697   return tab
16698 #+END_SRC
16700 #+RESULTS: echo-table
16701 | a | b | c |
16702 | d | e | f |
16703 | g | h | i |
16704 @end example
16706 @item @code{yes}
16707 For @code{:hlines yes}, the example shows hlines unchanged.
16709 @example
16710 #+NAME: many-cols
16711 | a | b | c |
16712 |---+---+---|
16713 | d | e | f |
16714 |---+---+---|
16715 | g | h | i |
16717 #+NAME: echo-table
16718 #+BEGIN_SRC python :var tab=many-cols :hlines yes
16719   return tab
16720 #+END_SRC
16722 #+RESULTS: echo-table
16723 | a | b | c |
16724 |---+---+---|
16725 | d | e | f |
16726 |---+---+---|
16727 | g | h | i |
16728 @end example
16729 @end itemize
16731 @node colnames
16732 @subsubsection @code{:colnames}
16733 @cindex @code{:colnames}, src header argument
16735 The @code{:colnames} header argument accepts @code{yes}, @code{no}, or
16736 @code{nil} values.  The default value is @code{nil}, which is unassigned.
16737 But this header argument behaves differently depending on the source code
16738 language.
16740 @itemize @bullet
16741 @item @code{nil}
16742 If an input table has column names (because the second row is an hline), then
16743 Org removes the column names, processes the table, puts back the column
16744 names, and then writes the table to the results block.
16746 @example
16747 #+NAME: less-cols
16748 | a |
16749 |---|
16750 | b |
16751 | c |
16753 #+NAME: echo-table-again
16754 #+BEGIN_SRC python :var tab=less-cols
16755   return [[val + '*' for val in row] for row in tab]
16756 #+END_SRC
16758 #+RESULTS: echo-table-again
16759 | a  |
16760 |----|
16761 | b* |
16762 | c* |
16763 @end example
16765 Note that column names have to accounted for when using variable indexing
16766 (@pxref{var, Indexable variable values}) because column names are not removed
16767 for indexing.
16769 @item @code{no}
16770 Do not pre-process column names.
16772 @item @code{yes}
16773 For an input table that has no hlines, process it like the @code{nil}
16774 value.  That is, Org removes the column names, processes the table, puts back
16775 the column names, and then writes the table to the results block.
16776 @end itemize
16778 @node rownames
16779 @subsubsection @code{:rownames}
16780 @cindex @code{:rownames}, src header argument
16782 The @code{:rownames} header argument can take on values @code{yes} or
16783 @code{no} values.  The default is @code{no}.  Note that @code{emacs-lisp}
16784 code blocks ignore @code{:rownames} header argument because of the ease of
16785 table-handling in Emacs.
16787 @itemize @bullet
16788 @item @code{no}
16789 Org will not pre-process row names.
16791 @item @code{yes}
16792 If an input table has row names, then Org removes the row names, processes
16793 the table, puts back the row names, and then writes the table to the results
16794 block.
16796 @example
16797 #+NAME: with-rownames
16798 | one | 1 | 2 | 3 | 4 |  5 |
16799 | two | 6 | 7 | 8 | 9 | 10 |
16801 #+NAME: echo-table-once-again
16802 #+BEGIN_SRC python :var tab=with-rownames :rownames yes
16803   return [[val + 10 for val in row] for row in tab]
16804 #+END_SRC
16806 #+RESULTS: echo-table-once-again
16807 | one | 11 | 12 | 13 | 14 | 15 |
16808 | two | 16 | 17 | 18 | 19 | 20 |
16809 @end example
16811 Note that row names have to accounted for when using variable indexing
16812 (@pxref{var, Indexable variable values}) because row names are not removed
16813 for indexing.
16815 @end itemize
16817 @node shebang
16818 @subsubsection @code{:shebang}
16819 @cindex @code{:shebang}, src header argument
16821 This header argument can turn results into executable script files.  By
16822 setting the @code{:shebang} header argument to a string value (for example,
16823 @code{:shebang "#!/bin/bash"}), Org inserts that string as the first line of
16824 the tangled file that the @samp{src} code block is extracted to.  Org then
16825 turns on the tangled file's executable permission.
16827 @node tangle-mode
16828 @subsubsection @code{:tangle-mode}
16829 @cindex @code{:tangle-mode}, src header argument
16831 The @code{tangle-mode} header argument specifies what permissions to set for
16832 tangled files by @code{set-file-modes}.  For example, to make read-only
16833 tangled file, use @code{:tangle-mode (identity #o444)}.  To make it
16834 executable, use @code{:tangle-mode (identity #o755)}.
16836 On @samp{src} code blocks with @code{shebang} (@pxref{shebang}) header
16837 argument, Org will automatically set the tangled file to executable
16838 permissions.  But this can be overridden with custom permissions using
16839 @code{tangle-mode} header argument.
16841 When multiple @samp{src} code blocks tangle to a single file with different
16842 and conflicting @code{tangle-mode} header arguments, Org's behavior is
16843 undefined.
16845 @node eval
16846 @subsubsection @code{:eval}
16847 @cindex @code{:eval}, src header argument
16848 The @code{:eval} header argument can limit evaluation of specific code
16849 blocks.  It is useful for protection against evaluating untrusted @samp{src}
16850 code blocks by prompting for a confirmation.  This protection is independent
16851 of the @code{org-confirm-babel-evaluate} setting.
16853 @table @code
16854 @item never or no
16855 Org will never evaluate this @samp{src} code block.
16856 @item query
16857 Org prompts the user for permission to evaluate this @samp{src} code block.
16858 @item never-export or no-export
16859 Org will not evaluate this @samp{src} code block when exporting, yet the user
16860 can evaluate this source block interactively.
16861 @item query-export
16862 Org prompts the user for permission to export this @samp{src} code block.
16863 @end table
16865 If @code{:eval} header argument is not set for a source block, then Org
16866 determines whether to evaluate from the @code{org-confirm-babel-evaluate}
16867 variable (@pxref{Code evaluation security}).
16869 @node wrap
16870 @subsubsection @code{:wrap}
16871 @cindex @code{:wrap}, src header argument
16872 The @code{:wrap} header argument marks the results block by appending strings
16873 to @code{#+BEGIN_} and @code{#+END_}.  If no string is specified, Org wraps
16874 the results in a @code{#+BEGIN/END_RESULTS} block.
16876 @node post
16877 @subsubsection @code{:post}
16878 @cindex @code{:post}, src header argument
16879 The @code{:post} header argument is for post-processing results from
16880 @samp{src} block evaluation.  When @code{:post} has any value, Org binds the
16881 results to @code{*this*} variable for easy passing to @ref{var} header
16882 argument specifications.  That makes results available to other @samp{src}
16883 code blocks, or for even direct Emacs Lisp code execution.
16885 The following two examples illustrate @code{:post} header argument in action.
16886 The first one shows how to attach @code{#+ATTR_LATEX:} line using
16887 @code{:post}.
16889 @example
16890 #+name: attr_wrap
16891 #+begin_src sh :var data="" :var width="\\textwidth" :results output
16892   echo "#+ATTR_LATEX: :width $width"
16893   echo "$data"
16894 #+end_src
16896 #+header: :file /tmp/it.png
16897 #+begin_src dot :post attr_wrap(width="5cm", data=*this*) :results drawer
16898   digraph@{
16899           a -> b;
16900           b -> c;
16901           c -> a;
16902   @}
16903 #+end_src
16905 #+RESULTS:
16906 :RESULTS:
16907 #+ATTR_LATEX :width 5cm
16908 [[file:/tmp/it.png]]
16909 :END:
16910 @end example
16912 The second example shows use of @code{:colnames} in @code{:post} to pass
16913 data between @samp{src} code blocks.
16915 @example
16916 #+name: round-tbl
16917 #+begin_src emacs-lisp :var tbl="" fmt="%.3f"
16918   (mapcar (lambda (row)
16919             (mapcar (lambda (cell)
16920                       (if (numberp cell)
16921                           (format fmt cell)
16922                         cell))
16923                     row))
16924           tbl)
16925 #+end_src
16927 #+begin_src R :colnames yes :post round-tbl[:colnames yes](*this*)
16928 set.seed(42)
16929 data.frame(foo=rnorm(1))
16930 #+end_src
16932 #+RESULTS:
16933 |   foo |
16934 |-------|
16935 | 1.371 |
16936 @end example
16938 @node prologue
16939 @subsubsection @code{:prologue}
16940 @cindex @code{:prologue}, src header argument
16941 The @code{prologue} header argument is for appending to the top of the code
16942 block for execution.  For example, a clear or reset code at the start of new
16943 execution of a @samp{src} code block.  A @code{reset} for @samp{gnuplot}:
16944 @code{:prologue "reset"}.  See also @ref{epilogue}.
16946 @lisp
16947 (add-to-list 'org-babel-default-header-args:gnuplot
16948              '((:prologue . "reset")))
16949 @end lisp
16951 @node epilogue
16952 @subsubsection @code{:epilogue}
16953 @cindex @code{:epilogue}, src header argument
16954 The value of the @code{epilogue} header argument is for appending to the end
16955 of the code block for execution.  See also @ref{prologue}.
16957 @node Results of evaluation
16958 @section Results of evaluation
16959 @cindex code block, results of evaluation
16960 @cindex source code, results of evaluation
16962 How Org handles results of a code block execution depends on many header
16963 arguments working together.  Here is only a summary of these.  For an
16964 enumeration of all the header arguments that affect results, see
16965 @ref{results}.
16967 The primary determinant is the execution context.  Is it in a @code{:session}
16968 or not?  Orthogonal to that is if the expected result is a @code{:results
16969 value} or @code{:results output}, which is a concatenation of output from
16970 start to finish of the @samp{src} code block's evaluation.
16972 @multitable @columnfractions 0.26 0.33 0.41
16973 @item @tab @b{Non-session} @tab @b{Session}
16974 @item @code{:results value} @tab value of last expression @tab value of last expression
16975 @item @code{:results output} @tab contents of STDOUT @tab concatenation of interpreter output
16976 @end multitable
16978 For @code{:session} and non-session, the @code{:results value} turns the
16979 results into an Org mode table format.  Single values are wrapped in a one
16980 dimensional vector.  Rows and columns of a table are wrapped in a
16981 two-dimensional vector.
16983 @subsection Non-session
16984 @subsubsection @code{:results value}
16985 @cindex @code{:results}, src header argument
16986 Default.  Org gets the value by wrapping the code in a function definition in
16987 the language of the @samp{src} block.  That is why when using @code{:results
16988 value}, code should execute like a function and return a value.  For
16989 languages like Python, an explicit @code{return} statement is mandatory when
16990 using @code{:results value}.
16992 This is one of four evaluation contexts where Org automatically wraps the
16993 code in a function definition.
16995 @subsubsection @code{:results output}
16996 @cindex @code{:results}, src header argument
16997 For @code{:results output}, the code is passed to an external process running
16998 the interpreter.  Org returns the contents of the standard output stream as
16999 as text results.
17001 @subsection Session
17002 @subsubsection @code{:results value}
17003 @cindex @code{:results}, src header argument
17004 For @code{:results value} from a @code{:session}, Org passes the code to an
17005 interpreter running as an interactive Emacs inferior process.  So only
17006 languages that provide interactive evaluation can have session support.  Not
17007 all languages provide this support, such as @samp{C} and @samp{ditaa}.  Even
17008 those that do support, such as @samp{Python} and @samp{Haskell}, they impose
17009 limitations on allowable language constructs that can run interactively.  Org
17010 inherits those limitations for those @samp{src} code blocks running in a
17011 @code{:session}.
17013 Org gets the value from the source code interpreter's last statement
17014 output.  Org has to use language-specific methods to obtain the value.  For
17015 example, from the variable @code{_} in @samp{Python} and @samp{Ruby}, and the
17016 value of @code{.Last.value} in @samp{R}).
17018 @subsubsection @code{:results output}
17019 @cindex @code{:results}, src header argument
17020 For @code{:results output}, Org passes the code to the interpreter running as
17021 an interactive Emacs inferior process.  Org concatenates whatever text output
17022 emitted by the interpreter to return the collection as a result.  Note that
17023 this collection is not the same as collected from @code{STDOUT} of a
17024 non-interactive interpreter running as an external process.  Compare for
17025 example these two blocks:
17027 @example
17028 #+BEGIN_SRC python :results output
17029  print "hello"
17031  print "bye"
17032 #+END_SRC
17034 #+RESULTS:
17035 : hello
17036 : bye
17037 @end example
17039 In the above non-session mode, the ``2'' is not printed; so does not appear
17040 in results.
17042 @example
17043 #+BEGIN_SRC python :results output :session
17044  print "hello"
17046  print "bye"
17047 #+END_SRC
17049 #+RESULTS:
17050 : hello
17051 : 2
17052 : bye
17053 @end example
17055 In the above @code{:session} mode, the interactive interpreter receives and
17056 prints ``2''.  Results show that.
17058 @node Noweb reference syntax
17059 @section Noweb reference syntax
17060 @cindex code block, noweb reference
17061 @cindex syntax, noweb
17062 @cindex source code, noweb reference
17064 Org supports named blocks in Noweb style syntax.  For Noweb literate
17065 programming details, see @uref{http://www.cs.tufts.edu/~nr/noweb/}).
17067 @example
17068 <<code-block-name>>
17069 @end example
17071 For the header argument @code{:noweb yes}, Org expands Noweb style references
17072 in the @samp{src} code block before evaluation.
17074 For the header argument @code{:noweb no}, Org does not expand Noweb style
17075 references in the @samp{src} code block before evaluation.
17077 The default is @code{:noweb no}.  Org defaults to @code{:noweb no} so as not
17078 to cause errors in languages where Noweb syntax is ambiguous.  Change Org's
17079 default to @code{:noweb yes} for languages where there is no risk of
17080 confusion.
17082 Org offers a more flexible way to resolve Noweb style references
17083 (@pxref{noweb-ref}).
17085 Org can include the @emph{results} of a code block rather than its body.  To
17086 that effect, append parentheses, possibly including arguments, to the code
17087 block name, as show below.
17089 @example
17090 <<code-block-name(optional arguments)>>
17091 @end example
17093 Note that when using the above approach to a code block's results, the code
17094 block name set by @code{#+NAME} keyword is required; the reference set by
17095 @code{:noweb-ref} will not work.
17097 Here is an example that demonstrates how the exported content changes when
17098 Noweb style references are used with parentheses versus without.
17100 With:
17102 @example
17103 #+NAME: some-code
17104 #+BEGIN_SRC python :var num=0 :results output :exports none
17105 print(num*10)
17106 #+END_SRC
17107 @end example
17109 this code block:
17111 @example
17112 #+BEGIN_SRC text :noweb yes
17113 <<some-code>>
17114 #+END_SRC
17115 @end example
17117 expands to:
17119 @example
17120 print(num*10)
17121 @end example
17123 Below, a similar Noweb style reference is used, but with parentheses, while
17124 setting a variable @code{num} to 10:
17126 @example
17127 #+BEGIN_SRC text :noweb yes
17128 <<some-code(num=10)>>
17129 #+END_SRC
17130 @end example
17132 Note that now the expansion contains the @emph{results} of the code block
17133 @code{some-code}, not the code block itself:
17135 @example
17137 @end example
17139 For faster tangling of large Org mode files, set
17140 @code{org-babel-use-quick-and-dirty-noweb-expansion} variable to @code{t}.
17141 The speedup comes at the expense of not correctly resolving inherited values
17142 of the @code{:noweb-ref} header argument.
17145 @node Key bindings and useful functions
17146 @section Key bindings and useful functions
17147 @cindex code block, key bindings
17149 Many common Org mode key sequences are re-bound depending on the context.
17151 Active key bindings in code blocks:
17153 @multitable @columnfractions 0.25 0.75
17154 @kindex C-c C-c
17155 @item @kbd{C-c C-c} @tab @code{org-babel-execute-src-block}
17156 @kindex C-c C-o
17157 @item @kbd{C-c C-o} @tab @code{org-babel-open-src-block-result}
17158 @kindex M-up
17159 @item @kbd{M-@key{up}}    @tab @code{org-babel-load-in-session}
17160 @kindex M-down
17161 @item @kbd{M-@key{down}}  @tab @code{org-babel-switch-to-session}
17162 @end multitable
17164 Active key bindings in Org mode buffer:
17166 @multitable @columnfractions 0.5 0.5
17167 @kindex C-c C-v p
17168 @kindex C-c C-v C-p
17169 @item @kbd{C-c C-v p} @ @ @r{or} @ @ @kbd{C-c C-v C-p} @tab @code{org-babel-previous-src-block}
17170 @kindex C-c C-v n
17171 @kindex C-c C-v C-n
17172 @item @kbd{C-c C-v n} @ @ @r{or} @ @ @kbd{C-c C-v C-n} @tab @code{org-babel-next-src-block}
17173 @kindex C-c C-v e
17174 @kindex C-c C-v C-e
17175 @item @kbd{C-c C-v e} @ @ @r{or} @ @ @kbd{C-c C-v C-e} @tab @code{org-babel-execute-maybe}
17176 @kindex C-c C-v o
17177 @kindex C-c C-v C-o
17178 @item @kbd{C-c C-v o} @ @ @r{or} @ @ @kbd{C-c C-v C-o} @tab @code{org-babel-open-src-block-result}
17179 @kindex C-c C-v v
17180 @kindex C-c C-v C-v
17181 @item @kbd{C-c C-v v} @ @ @r{or} @ @ @kbd{C-c C-v C-v} @tab @code{org-babel-expand-src-block}
17182 @kindex C-c C-v u
17183 @kindex C-c C-v C-u
17184 @item @kbd{C-c C-v u} @ @ @r{or} @ @ @kbd{C-c C-v C-u} @tab @code{org-babel-goto-src-block-head}
17185 @kindex C-c C-v g
17186 @kindex C-c C-v C-g
17187 @item @kbd{C-c C-v g} @ @ @r{or} @ @ @kbd{C-c C-v C-g} @tab @code{org-babel-goto-named-src-block}
17188 @kindex C-c C-v r
17189 @kindex C-c C-v C-r
17190 @item @kbd{C-c C-v r} @ @ @r{or} @ @ @kbd{C-c C-v C-r} @tab @code{org-babel-goto-named-result}
17191 @kindex C-c C-v b
17192 @kindex C-c C-v C-b
17193 @item @kbd{C-c C-v b} @ @ @r{or} @ @ @kbd{C-c C-v C-b} @tab @code{org-babel-execute-buffer}
17194 @kindex C-c C-v s
17195 @kindex C-c C-v C-s
17196 @item @kbd{C-c C-v s} @ @ @r{or} @ @ @kbd{C-c C-v C-s} @tab @code{org-babel-execute-subtree}
17197 @kindex C-c C-v d
17198 @kindex C-c C-v C-d
17199 @item @kbd{C-c C-v d} @ @ @r{or} @ @ @kbd{C-c C-v C-d} @tab @code{org-babel-demarcate-block}
17200 @kindex C-c C-v t
17201 @kindex C-c C-v C-t
17202 @item @kbd{C-c C-v t} @ @ @r{or} @ @ @kbd{C-c C-v C-t} @tab @code{org-babel-tangle}
17203 @kindex C-c C-v f
17204 @kindex C-c C-v C-f
17205 @item @kbd{C-c C-v f} @ @ @r{or} @ @ @kbd{C-c C-v C-f} @tab @code{org-babel-tangle-file}
17206 @kindex C-c C-v c
17207 @kindex C-c C-v C-c
17208 @item @kbd{C-c C-v c} @ @ @r{or} @ @ @kbd{C-c C-v C-c} @tab @code{org-babel-check-src-block}
17209 @kindex C-c C-v j
17210 @kindex C-c C-v C-j
17211 @item @kbd{C-c C-v j} @ @ @r{or} @ @ @kbd{C-c C-v C-j} @tab @code{org-babel-insert-header-arg}
17212 @kindex C-c C-v l
17213 @kindex C-c C-v C-l
17214 @item @kbd{C-c C-v l} @ @ @r{or} @ @ @kbd{C-c C-v C-l} @tab @code{org-babel-load-in-session}
17215 @kindex C-c C-v i
17216 @kindex C-c C-v C-i
17217 @item @kbd{C-c C-v i} @ @ @r{or} @ @ @kbd{C-c C-v C-i} @tab @code{org-babel-lob-ingest}
17218 @kindex C-c C-v I
17219 @kindex C-c C-v C-I
17220 @item @kbd{C-c C-v I} @ @ @r{or} @ @ @kbd{C-c C-v C-I} @tab @code{org-babel-view-src-block-info}
17221 @kindex C-c C-v z
17222 @kindex C-c C-v C-z
17223 @item @kbd{C-c C-v z} @ @ @r{or} @ @ @kbd{C-c C-v C-z} @tab @code{org-babel-switch-to-session-with-code}
17224 @kindex C-c C-v a
17225 @kindex C-c C-v C-a
17226 @item @kbd{C-c C-v a} @ @ @r{or} @ @ @kbd{C-c C-v C-a} @tab @code{org-babel-sha1-hash}
17227 @kindex C-c C-v h
17228 @kindex C-c C-v C-h
17229 @item @kbd{C-c C-v h} @ @ @r{or} @ @ @kbd{C-c C-v C-h} @tab @code{org-babel-describe-bindings}
17230 @kindex C-c C-v x
17231 @kindex C-c C-v C-x
17232 @item @kbd{C-c C-v x} @ @ @r{or} @ @ @kbd{C-c C-v C-x} @tab @code{org-babel-do-key-sequence-in-edit-buffer}
17233 @end multitable
17235 @c Extended key bindings when control key is kept pressed:
17237 @c @multitable @columnfractions 0.25 0.75
17238 @c @item @kbd{C-c C-v C-a} @tab @code{org-babel-sha1-hash}
17239 @c @item @kbd{C-c C-v C-b} @tab @code{org-babel-execute-buffer}
17240 @c @item @kbd{C-c C-v C-f} @tab @code{org-babel-tangle-file}
17241 @c @item @kbd{C-c C-v C-l} @tab @code{org-babel-lob-ingest}
17242 @c @item @kbd{C-c C-v C-p} @tab @code{org-babel-expand-src-block}
17243 @c @item @kbd{C-c C-v C-s} @tab @code{org-babel-execute-subtree}
17244 @c @item @kbd{C-c C-v C-t} @tab @code{org-babel-tangle}
17245 @c @item @kbd{C-c C-v C-z} @tab @code{org-babel-switch-to-session}
17246 @c @end multitable
17248 @node Batch execution
17249 @section Batch execution
17250 @cindex code block, batch execution
17251 @cindex source code, batch execution
17253 Org mode features, including working with source code facilities can be
17254 invoked from the command line.  This enables building shell scripts for batch
17255 processing, running automated system tasks, and expanding Org mode's
17256 usefulness.
17258 The sample script shows batch processing of multiple files using
17259 @code{org-babel-tangle}.
17261 @example
17262 #!/bin/sh
17263 # tangle files with org-mode
17265 emacs -Q --batch --eval "
17266     (progn
17267       (require 'ob-tangle)
17268       (dolist (file command-line-args-left)
17269         (with-current-buffer (find-file-noselect file)
17270           (org-babel-tangle))))
17271   " "$@@"
17272 @end example
17274 @node Miscellaneous
17275 @chapter Miscellaneous
17277 @menu
17278 * Completion::                  M-TAB guesses completions
17279 * Easy templates::              Quick insertion of structural elements
17280 * Speed keys::                  Electric commands at the beginning of a headline
17281 * Code evaluation security::    Org mode files evaluate inline code
17282 * Customization::               Adapting Org to changing tastes
17283 * In-buffer settings::          Overview of the #+KEYWORDS
17284 * The very busy C-c C-c key::   When in doubt, press C-c C-c
17285 * Clean view::                  Getting rid of leading stars in the outline
17286 * TTY keys::                    Using Org on a tty
17287 * Interaction::                 With other Emacs packages
17288 * org-crypt::                   Encrypting Org files
17289 @end menu
17292 @node Completion
17293 @section Completion
17294 @cindex completion, of @TeX{} symbols
17295 @cindex completion, of TODO keywords
17296 @cindex completion, of dictionary words
17297 @cindex completion, of option keywords
17298 @cindex completion, of tags
17299 @cindex completion, of property keys
17300 @cindex completion, of link abbreviations
17301 @cindex @TeX{} symbol completion
17302 @cindex TODO keywords completion
17303 @cindex dictionary word completion
17304 @cindex option keyword completion
17305 @cindex tag completion
17306 @cindex link abbreviations, completion of
17308 Org has in-buffer completions.  Unlike minibuffer completions, which are
17309 useful for quick command interactions, Org's in-buffer completions are more
17310 suitable for content creation in Org documents.  Type one or more letters and
17311 invoke the hot key to complete the text in-place.  Depending on the context
17312 and the keys, Org will offer different types of completions.  No minibuffer
17313 is involved.  Such mode-specific hot keys have become an integral part of
17314 Emacs and Org provides several shortcuts.
17316 @table @kbd
17317 @kindex M-@key{TAB}
17318 @item M-@key{TAB}
17319 Complete word at point
17320 @itemize @bullet
17321 @item
17322 At the beginning of a headline, complete TODO keywords.
17323 @item
17324 After @samp{\}, complete @TeX{} symbols supported by the exporter.
17325 @item
17326 After @samp{*}, complete headlines in the current buffer so that they
17327 can be used in search links like @samp{[[*find this headline]]}.
17328 @item
17329 After @samp{:} in a headline, complete tags.  The list of tags is taken
17330 from the variable @code{org-tag-alist} (possibly set through the
17331 @samp{#+TAGS} in-buffer option, @pxref{Setting tags}), or it is created
17332 dynamically from all tags used in the current buffer.
17333 @item
17334 After @samp{:} and not in a headline, complete property keys.  The list
17335 of keys is constructed dynamically from all keys used in the current
17336 buffer.
17337 @item
17338 After @samp{[}, complete link abbreviations (@pxref{Link abbreviations}).
17339 @item
17340 After @samp{#+}, complete the special keywords like @samp{TYP_TODO} or
17341 file-specific @samp{OPTIONS}.  After option keyword is complete, pressing
17342 @kbd{M-@key{TAB}} again will insert example settings for that option.
17343 @item
17344 After @samp{#+STARTUP: }, complete startup keywords.
17345 @item
17346 When the point is anywhere else, complete dictionary words using Ispell.
17347 @end itemize
17348 @kindex C-M-i
17349 If your desktop intercepts the combo @kbd{M-@key{TAB}} to switch windows, use
17350 @kbd{C-M-i} or @kbd{@key{ESC} @key{TAB}} as an alternative or customize your
17351 environment.
17352 @end table
17354 @node Easy templates
17355 @section Easy templates
17356 @cindex template insertion
17357 @cindex insertion, of templates
17359 With just a few keystrokes, Org's easy templates inserts empty pairs of
17360 structural elements, such as @code{#+BEGIN_SRC} and @code{#+END_SRC}.  Easy
17361 templates use an expansion mechanism, which is native to Org, in a process
17362 similar to @file{yasnippet} and other Emacs template expansion packages.
17364 @kbd{<} @kbd{s} @kbd{@key{TAB}} expands to a @samp{src} code block.
17366 @kbd{<} @kbd{l} @kbd{@key{TAB}} expands to:
17368 #+BEGIN_EXPORT latex
17370 #+END_EXPORT
17372 Org comes with these pre-defined easy templates:
17374 @multitable @columnfractions 0.1 0.9
17375 @item @kbd{s} @tab @code{#+BEGIN_SRC ... #+END_SRC}
17376 @item @kbd{e} @tab @code{#+BEGIN_EXAMPLE ... #+END_EXAMPLE}
17377 @item @kbd{q} @tab @code{#+BEGIN_QUOTE ... #+END_QUOTE}
17378 @item @kbd{v} @tab @code{#+BEGIN_VERSE ... #+END_VERSE}
17379 @item @kbd{c} @tab @code{#+BEGIN_CENTER ... #+END_CENTER}
17380 @item @kbd{C} @tab @code{#+BEGIN_COMMENT ... #+END_COMMENT}
17381 @item @kbd{l} @tab @code{#+BEGIN_EXPORT latex ... #+END_EXPORT}
17382 @item @kbd{L} @tab @code{#+LATEX:}
17383 @item @kbd{h} @tab @code{#+BEGIN_EXPORT html ... #+END_EXPORT}
17384 @item @kbd{H} @tab @code{#+HTML:}
17385 @item @kbd{a} @tab @code{#+BEGIN_EXPORT ascii ... #+END_EXPORT}
17386 @item @kbd{A} @tab @code{#+ASCII:}
17387 @item @kbd{i} @tab @code{#+INDEX:} line
17388 @item @kbd{I} @tab @code{#+INCLUDE:} line
17389 @end multitable
17391 More templates can added by customizing the variable
17392 @code{org-structure-template-alist}, whose docstring has additional details.
17394 @node Speed keys
17395 @section Speed keys
17396 @cindex speed keys
17398 Single keystrokes can execute custom commands in an Org file when the cursor
17399 is on a headline.  Without the extra burden of a meta or modifier key, Speed
17400 Keys can speed navigation or execute custom commands.  Besides faster
17401 navigation, Speed Keys may come in handy on small mobile devices that do not
17402 have full keyboards.  Speed Keys may also work on TTY devices known for their
17403 problems when entering Emacs keychords.
17405 @vindex org-use-speed-commands
17406 By default, Org has Speed Keys disabled.  To activate Speed Keys, set the
17407 variable @code{org-use-speed-commands} to a non-@code{nil} value.  To trigger
17408 a Speed Key, the cursor must be at the beginning of an Org headline, before
17409 any of the stars.
17411 @vindex org-speed-commands-user
17412 @findex org-speed-command-help
17413 Org comes with a pre-defined list of Speed Keys.  To add or modify Speed
17414 Keys, customize the variable, @code{org-speed-commands-user}.  For more
17415 details, see the variable's docstring.  With Speed Keys activated, @kbd{M-x
17416 org-speed-command-help}, or @kbd{?} when cursor is at the beginning of an Org
17417 headline, shows currently active Speed Keys, including the user-defined ones.
17420 @node Code evaluation security
17421 @section Code evaluation and security issues
17423 Unlike plain text, running code comes with risk.  Each @samp{src} code block,
17424 in terms of risk, is equivalent to an executable file.  Org therefore puts a
17425 few confirmation prompts by default.  This is to alert the casual user from
17426 accidentally running untrusted code.
17428 For users who do not run code blocks or write code regularly, Org's default
17429 settings should suffice.  However, some users may want to tweak the prompts
17430 for fewer interruptions.  To weigh the risks of automatic execution of code
17431 blocks, here are some details about code evaluation.
17433 Org evaluates code in the following circumstances:
17435 @table @i
17436 @item Source code blocks
17437 Org evaluates @samp{src} code blocks in an Org file during export.  Org also
17438 evaluates a @samp{src} code block with the @kbd{C-c C-c} key chord.  Users
17439 exporting or running code blocks must load files only from trusted sources.
17440 Be wary of customizing variables that remove or alter default security
17441 measures.
17443 @defopt org-confirm-babel-evaluate
17444 When @code{t}, Org prompts the user for confirmation before executing each
17445 code block.  When @code{nil}, Org executes code blocks without prompting the
17446 user for confirmation.  When this option is set to a custom function, Org
17447 invokes the function with these two arguments: the source code language and
17448 the body of the code block.  The custom function must return either a
17449 @code{t} or @code{nil}, which determines if the user is prompted.  Each
17450 source code language can be handled separately through this function
17451 argument.
17452 @end defopt
17454 For example, this function enables execution of @samp{ditaa} code +blocks
17455 without prompting:
17457 @lisp
17458 (defun my-org-confirm-babel-evaluate (lang body)
17459   (not (string= lang "ditaa")))  ; don't ask for ditaa
17460 (setq org-confirm-babel-evaluate 'my-org-confirm-babel-evaluate)
17461 @end lisp
17463 @item Following @code{shell} and @code{elisp} links
17464 Org has two link types that can also directly evaluate code (@pxref{External
17465 links}).  Because such code is not visible, these links have a potential
17466 risk.  Org therefore prompts the user when it encounters such links.  The
17467 customization variables are:
17469 @defopt org-confirm-shell-link-function
17470 Function that prompts the user before executing a shell link.
17471 @end defopt
17472 @defopt org-confirm-elisp-link-function
17473 Function that prompts the user before executing an Emacs Lisp link.
17474 @end defopt
17476 @item Formulas in tables
17477 Org executes formulas in tables (@pxref{The spreadsheet}) either through the
17478 @emph{calc} or the @emph{Emacs Lisp} interpreters.
17479 @end table
17481 @node Customization
17482 @section Customization
17483 @cindex customization
17484 @cindex options, for customization
17485 @cindex variables, for customization
17487 Org has more than 500 variables for customization.  They can be accessed
17488 through the usual @kbd{M-x org-customize RET} command.  Or through the Org
17489 menu, @code{Org->Customization->Browse Org Group}.  Org also has per-file
17490 settings for some variables (@pxref{In-buffer settings}).
17492 @node In-buffer settings
17493 @section Summary of in-buffer settings
17494 @cindex in-buffer settings
17495 @cindex special keywords
17496 In-buffer settings start with @samp{#+}, followed by a keyword, a colon, and
17497 then a word for each setting.  Org accepts multiple settings on the same
17498 line.  Org also accepts multiple lines for a keyword.  This manual describes
17499 these settings throughout.  A summary follows here.
17501 @kbd{C-c C-c} activates any changes to the in-buffer settings.  Closing and
17502 reopening the Org file in Emacs also activates the changes.
17504 @vindex org-archive-location
17505 @table @kbd
17506 @item #+ARCHIVE: %s_done::
17507 Sets the archive location of the agenda file.  This location applies to the
17508 lines until the next @samp{#+ARCHIVE} line, if any, in the Org file.  The
17509 first archive location in the Org file also applies to any entries before it.
17510 The corresponding variable is @code{org-archive-location}.
17511 @item #+CATEGORY:
17512 Sets the category of the agenda file, which applies to the entire document.
17513 @item #+COLUMNS: %25ITEM ...
17514 @cindex property, COLUMNS
17515 Sets the default format for columns view.  Org uses this format for column
17516 views where there is no @code{COLUMNS} property.
17517 @item #+CONSTANTS: name1=value1 ...
17518 @vindex org-table-formula-constants
17519 @vindex org-table-formula
17520 Set file-local values for constants that table formulas can use.  This line
17521 sets the local variable @code{org-table-formula-constants-local}.  The global
17522 version of this variable is @code{org-table-formula-constants}.
17523 @item #+FILETAGS: :tag1:tag2:tag3:
17524 Set tags that all entries in the file will inherit from here, including the
17525 top-level entries.
17526 @item #+LINK: linkword replace
17527 @vindex org-link-abbrev-alist
17528 Each line specifies one abbreviation for one link.  Use multiple
17529 @code{#+LINK:} lines for more, @pxref{Link abbreviations}.  The corresponding
17530 variable is @code{org-link-abbrev-alist}.
17531 @item #+PRIORITIES: highest lowest default
17532 @vindex org-highest-priority
17533 @vindex org-lowest-priority
17534 @vindex org-default-priority
17535 This line sets the limits and the default for the priorities.  All three
17536 must be either letters A--Z or numbers 0--9.  The highest priority must
17537 have a lower ASCII number than the lowest priority.
17538 @item #+PROPERTY: Property_Name Value
17539 This line sets a default inheritance value for entries in the current
17540 buffer, most useful for specifying the allowed values of a property.
17541 @cindex #+SETUPFILE
17542 @item #+SETUPFILE: file or URL
17543 The setup file or a URL pointing to such file is for additional in-buffer
17544 settings.  Org loads this file and parses it for any settings in it only when
17545 Org opens the main file.  If URL is specified, the contents are downloaded
17546 and stored in a temporary file cache.  @kbd{C-c C-c} on the settings line
17547 will parse and load the file, and also reset the temporary file cache.  Org
17548 also parses and loads the document during normal exporting process.  Org
17549 parses the contents of this document as if it was included in the buffer.  It
17550 can be another Org file.  To visit the file (not a URL), @kbd{C-c '} while
17551 the cursor is on the line with the file name.
17552 @item #+STARTUP:
17553 @cindex #+STARTUP
17554 Startup options Org uses when first visiting a file.
17556 The first set of options deals with the initial visibility of the outline
17557 tree.  The corresponding variable for global default settings is
17558 @code{org-startup-folded} with a default value of @code{t}, which is the same
17559 as @code{overview}.
17561 @vindex org-startup-folded
17562 @cindex @code{overview}, STARTUP keyword
17563 @cindex @code{content}, STARTUP keyword
17564 @cindex @code{showall}, STARTUP keyword
17565 @cindex @code{showeverything}, STARTUP keyword
17566 @example
17567 overview         @r{top-level headlines only}
17568 content          @r{all headlines}
17569 showall          @r{no folding of any entries}
17570 showeverything   @r{show even drawer contents}
17571 @end example
17573 @vindex org-startup-indented
17574 @cindex @code{indent}, STARTUP keyword
17575 @cindex @code{noindent}, STARTUP keyword
17576 Dynamic virtual indentation is controlled by the variable
17577 @code{org-startup-indented}
17578 @example
17579 indent     @r{start with @code{org-indent-mode} turned on}
17580 noindent   @r{start with @code{org-indent-mode} turned off}
17581 @end example
17583 @vindex org-startup-align-all-tables
17584 Aligns tables consistently upon visiting a file.  The corresponding variable
17585 is @code{org-startup-align-all-tables} with @code{nil} as default value.
17587 @cindex @code{align}, STARTUP keyword
17588 @cindex @code{noalign}, STARTUP keyword
17589 @example
17590 align      @r{align all tables}
17591 noalign    @r{don't align tables on startup}
17592 @end example
17594 @vindex org-startup-shrink-all-tables
17595 Shrink table columns with a width cookie.  The corresponding variable is
17596 @code{org-startup-shrink-all-tables} with @code{nil} as default value.
17598 @vindex org-startup-with-inline-images
17599 Whether Org should automatically display inline images.  The corresponding
17600 variable is @code{org-startup-with-inline-images}, with a default value
17601 @code{nil} to avoid delays when visiting a file.
17602 @cindex @code{inlineimages}, STARTUP keyword
17603 @cindex @code{noinlineimages}, STARTUP keyword
17604 @example
17605 inlineimages   @r{show inline images}
17606 noinlineimages @r{don't show inline images on startup}
17607 @end example
17609 @vindex org-startup-with-latex-preview
17610 Whether Org should automatically convert @LaTeX{} fragments to images.  The
17611 variable @code{org-startup-with-latex-preview}, which controls this setting,
17612 is set to @code{nil} by default to avoid startup delays.
17613 @cindex @code{latexpreview}, STARTUP keyword
17614 @cindex @code{nolatexpreview}, STARTUP keyword
17615 @example
17616 latexpreview   @r{preview @LaTeX{} fragments}
17617 nolatexpreview @r{don't preview @LaTeX{} fragments}
17618 @end example
17620 @vindex org-log-done
17621 @vindex org-log-note-clock-out
17622 @vindex org-log-repeat
17623 Logging the closing and reopening of TODO items and clock intervals can be
17624 configured using these options (see variables @code{org-log-done},
17625 @code{org-log-note-clock-out} and @code{org-log-repeat})
17626 @cindex @code{logdone}, STARTUP keyword
17627 @cindex @code{lognotedone}, STARTUP keyword
17628 @cindex @code{nologdone}, STARTUP keyword
17629 @cindex @code{lognoteclock-out}, STARTUP keyword
17630 @cindex @code{nolognoteclock-out}, STARTUP keyword
17631 @cindex @code{logrepeat}, STARTUP keyword
17632 @cindex @code{lognoterepeat}, STARTUP keyword
17633 @cindex @code{nologrepeat}, STARTUP keyword
17634 @cindex @code{logreschedule}, STARTUP keyword
17635 @cindex @code{lognotereschedule}, STARTUP keyword
17636 @cindex @code{nologreschedule}, STARTUP keyword
17637 @cindex @code{logredeadline}, STARTUP keyword
17638 @cindex @code{lognoteredeadline}, STARTUP keyword
17639 @cindex @code{nologredeadline}, STARTUP keyword
17640 @cindex @code{logrefile}, STARTUP keyword
17641 @cindex @code{lognoterefile}, STARTUP keyword
17642 @cindex @code{nologrefile}, STARTUP keyword
17643 @cindex @code{logdrawer}, STARTUP keyword
17644 @cindex @code{nologdrawer}, STARTUP keyword
17645 @cindex @code{logstatesreversed}, STARTUP keyword
17646 @cindex @code{nologstatesreversed}, STARTUP keyword
17647 @example
17648 logdone             @r{record a timestamp when an item is marked DONE}
17649 lognotedone         @r{record timestamp and a note when DONE}
17650 nologdone           @r{don't record when items are marked DONE}
17651 logrepeat           @r{record a time when reinstating a repeating item}
17652 lognoterepeat       @r{record a note when reinstating a repeating item}
17653 nologrepeat         @r{do not record when reinstating repeating item}
17654 lognoteclock-out    @r{record a note when clocking out}
17655 nolognoteclock-out  @r{don't record a note when clocking out}
17656 logreschedule       @r{record a timestamp when scheduling time changes}
17657 lognotereschedule   @r{record a note when scheduling time changes}
17658 nologreschedule     @r{do not record when a scheduling date changes}
17659 logredeadline       @r{record a timestamp when deadline changes}
17660 lognoteredeadline   @r{record a note when deadline changes}
17661 nologredeadline     @r{do not record when a deadline date changes}
17662 logrefile           @r{record a timestamp when refiling}
17663 lognoterefile       @r{record a note when refiling}
17664 nologrefile         @r{do not record when refiling}
17665 logdrawer           @r{store log into drawer}
17666 nologdrawer         @r{store log outside of drawer}
17667 logstatesreversed   @r{reverse the order of states notes}
17668 nologstatesreversed @r{do not reverse the order of states notes}
17669 @end example
17671 @vindex org-hide-leading-stars
17672 @vindex org-odd-levels-only
17673 These options hide leading stars in outline headings, and indent outlines.
17674 The corresponding variables are @code{org-hide-leading-stars} and
17675 @code{org-odd-levels-only}, both with a default setting of @code{nil}
17676 (meaning @code{showstars} and @code{oddeven}).
17677 @cindex @code{hidestars}, STARTUP keyword
17678 @cindex @code{showstars}, STARTUP keyword
17679 @cindex @code{odd}, STARTUP keyword
17680 @cindex @code{even}, STARTUP keyword
17681 @example
17682 hidestars  @r{hide all stars on the headline except one.}
17683 showstars  @r{show all stars on the headline}
17684 indent     @r{virtual indents according to the outline level}
17685 noindent   @r{no virtual indents}
17686 odd        @r{show odd outline levels only (1,3,...)}
17687 oddeven    @r{show all outline levels}
17688 @end example
17690 @vindex org-put-time-stamp-overlays
17691 @vindex org-time-stamp-overlay-formats
17692 To turn on custom format overlays over timestamps (variables
17693 @code{org-put-time-stamp-overlays} and
17694 @code{org-time-stamp-overlay-formats}), use
17695 @cindex @code{customtime}, STARTUP keyword
17696 @example
17697 customtime @r{overlay custom time format}
17698 @end example
17700 @vindex constants-unit-system
17701 The following options influence the table spreadsheet (variable
17702 @code{constants-unit-system}).
17703 @cindex @code{constcgs}, STARTUP keyword
17704 @cindex @code{constSI}, STARTUP keyword
17705 @example
17706 constcgs   @r{@file{constants.el} should use the c-g-s unit system}
17707 constSI    @r{@file{constants.el} should use the SI unit system}
17708 @end example
17710 @vindex org-footnote-define-inline
17711 @vindex org-footnote-auto-label
17712 @vindex org-footnote-auto-adjust
17713 For footnote settings, use the following keywords.  The corresponding
17714 variables are @code{org-footnote-define-inline},
17715 @code{org-footnote-auto-label}, and @code{org-footnote-auto-adjust}.
17716 @cindex @code{fninline}, STARTUP keyword
17717 @cindex @code{nofninline}, STARTUP keyword
17718 @cindex @code{fnlocal}, STARTUP keyword
17719 @cindex @code{fnprompt}, STARTUP keyword
17720 @cindex @code{fnauto}, STARTUP keyword
17721 @cindex @code{fnconfirm}, STARTUP keyword
17722 @cindex @code{fnplain}, STARTUP keyword
17723 @cindex @code{fnadjust}, STARTUP keyword
17724 @cindex @code{nofnadjust}, STARTUP keyword
17725 @example
17726 fninline    @r{define footnotes inline}
17727 fnnoinline  @r{define footnotes in separate section}
17728 fnlocal     @r{define footnotes near first reference, but not inline}
17729 fnprompt    @r{prompt for footnote labels}
17730 fnauto      @r{create @code{[fn:1]}-like labels automatically (default)}
17731 fnconfirm   @r{offer automatic label for editing or confirmation}
17732 fnplain     @r{create @code{[1]}-like labels automatically}
17733 fnadjust    @r{automatically renumber and sort footnotes}
17734 nofnadjust  @r{do not renumber and sort automatically}
17735 @end example
17737 @cindex org-hide-block-startup
17738 To hide blocks on startup, use these keywords.  The corresponding variable is
17739 @code{org-hide-block-startup}.
17740 @cindex @code{hideblocks}, STARTUP keyword
17741 @cindex @code{nohideblocks}, STARTUP keyword
17742 @example
17743 hideblocks   @r{Hide all begin/end blocks on startup}
17744 nohideblocks @r{Do not hide blocks on startup}
17745 @end example
17747 @cindex org-pretty-entities
17748 The display of entities as UTF-8 characters is governed by the variable
17749 @code{org-pretty-entities} and the keywords
17750 @cindex @code{entitiespretty}, STARTUP keyword
17751 @cindex @code{entitiesplain}, STARTUP keyword
17752 @example
17753 entitiespretty  @r{Show entities as UTF-8 characters where possible}
17754 entitiesplain   @r{Leave entities plain}
17755 @end example
17757 @item #+TAGS:  TAG1(c1) TAG2(c2)
17758 @vindex org-tag-alist
17759 These lines specify valid tags for this file.  Org accepts multiple tags
17760 lines.  Tags could correspond to the @emph{fast tag selection} keys.  The
17761 corresponding variable is @code{org-tag-alist}.
17762 @cindex #+TBLFM
17763 @item #+TBLFM:
17764 This line is for formulas for the table directly above.  A table can have
17765 multiple @samp{#+TBLFM:} lines.  On table recalculation, Org applies only the
17766 first @samp{#+TBLFM:} line.  For details see @ref{Using multiple #+TBLFM
17767 lines} in @ref{Editing and debugging formulas}.
17768 @item #+TITLE:, #+AUTHOR:, #+EMAIL:, #+LANGUAGE:, #+DATE:,
17769 @itemx #+OPTIONS:, #+BIND:,
17770 @itemx #+SELECT_TAGS:, #+EXCLUDE_TAGS:
17771 These lines provide settings for exporting files.  For more details see
17772 @ref{Export settings}.
17773 @item #+TODO:    #+SEQ_TODO:   #+TYP_TODO:
17774 @vindex org-todo-keywords
17775 These lines set the TODO keywords and their significance to the current file.
17776 The corresponding variable is @code{org-todo-keywords}.
17777 @end table
17779 @node The very busy C-c C-c key
17780 @section The very busy C-c C-c key
17781 @kindex C-c C-c
17782 @cindex C-c C-c, overview
17784 The @kbd{C-c C-c} key in Org serves many purposes depending on the context.
17785 It is probably the most over-worked, multi-purpose key combination in Org.
17786 Its uses are well-documented through out this manual, but here is a
17787 consolidated list for easy reference.
17789 @itemize @minus
17790 @item
17791 If any highlights shown in the buffer from the creation of a sparse tree, or
17792 from clock display, remove such highlights.
17793 @item
17794 If the cursor is in one of the special @code{#+KEYWORD} lines, scan the
17795 buffer for these lines and update the information.  Also reset the Org file
17796 cache used to temporary store the contents of URLs used as values for
17797 keywords like @code{#+SETUPFILE}.
17798 @item
17799 If the cursor is inside a table, realign the table.  The table realigns even
17800 if automatic table editor is turned off.
17801 @item
17802 If the cursor is on a @code{#+TBLFM} line, re-apply the formulas to
17803 the entire table.
17804 @item
17805 If the current buffer is a capture buffer, close the note and file it.  With
17806 a prefix argument, also jump to the target location after saving the note.
17807 @item
17808 If the cursor is on a @code{<<<target>>>}, update radio targets and
17809 corresponding links in this buffer.
17810 @item
17811 If the cursor is on a property line or at the start or end of a property
17812 drawer, offer property commands.
17813 @item
17814 If the cursor is at a footnote reference, go to the corresponding
17815 definition, and @emph{vice versa}.
17816 @item
17817 If the cursor is on a statistics cookie, update it.
17818 @item
17819 If the cursor is in a plain list item with a checkbox, toggle the status
17820 of the checkbox.
17821 @item
17822 If the cursor is on a numbered item in a plain list, renumber the
17823 ordered list.
17824 @item
17825 If the cursor is on the @code{#+BEGIN} line of a dynamic block, the
17826 block is updated.
17827 @item
17828 If the cursor is at a timestamp, fix the day name in the timestamp.
17829 @end itemize
17831 @node Clean view
17832 @section A cleaner outline view
17833 @cindex hiding leading stars
17834 @cindex dynamic indentation
17835 @cindex odd-levels-only outlines
17836 @cindex clean outline view
17838 Org's default outline with stars and no indents can become too cluttered for
17839 short documents.  For @emph{book-like} long documents, the effect is not as
17840 noticeable.  Org provides an alternate stars and indentation scheme, as shown
17841 on the right in the following table.  It uses only one star and indents text
17842 to line with the heading:
17844 @example
17845 @group
17846 * Top level headline             |    * Top level headline
17847 ** Second level                  |      * Second level
17848 *** 3rd level                    |        * 3rd level
17849 some text                        |          some text
17850 *** 3rd level                    |        * 3rd level
17851 more text                        |          more text
17852 * Another top level headline     |    * Another top level headline
17853 @end group
17854 @end example
17856 @noindent
17858 To turn this mode on, use the minor mode, @code{org-indent-mode}.  Text lines
17859 that are not headlines are prefixed with spaces to vertically align with the
17860 headline text@footnote{The @code{org-indent-mode} also sets the
17861 @code{wrap-prefix} correctly for indenting and wrapping long lines of
17862 headlines or text.  This minor mode handles @code{visual-line-mode} and
17863 directly applied settings through @code{word-wrap}.}.
17865 To make more horizontal space, the headlines are shifted by two stars.  This
17866 can be configured by the @code{org-indent-indentation-per-level} variable.
17867 Only one star on each headline is visible, the rest are masked with the same
17868 font color as the background.  This font face can be configured with the
17869 @code{org-hide} variable.
17871 Note that turning on @code{org-indent-mode} sets
17872 @code{org-hide-leading-stars} to @code{t} and @code{org-adapt-indentation} to
17873 @code{nil}; @samp{2.} below shows how this works.
17875 To globally turn on @code{org-indent-mode} for all files, customize the
17876 variable @code{org-startup-indented}.
17878 To turn on indenting for individual files, use @code{#+STARTUP} option as
17879 follows:
17881 @example
17882 #+STARTUP: indent
17883 @end example
17885 Indent on startup makes Org use hard spaces to align text with headings as
17886 shown in examples below.
17888 @enumerate
17889 @item
17890 @emph{Indentation of text below headlines}@*
17891 Indent text to align with the headline.
17893 @example
17894 *** 3rd level
17895     more text, now indented
17896 @end example
17898 @vindex org-adapt-indentation
17899 Org adapts indentations with paragraph filling, line wrapping, and structure
17900 editing@footnote{Also see the variable @code{org-adapt-indentation}.}.
17902 @item
17903 @vindex org-hide-leading-stars
17904 @emph{Hiding leading stars}@* Org can make leading stars invisible.  For
17905 global preference, configure the variable @code{org-hide-leading-stars}.  For
17906 per-file preference, use these file @code{#+STARTUP} options:
17908 @example
17909 #+STARTUP: hidestars
17910 #+STARTUP: showstars
17911 @end example
17913 With stars hidden, the tree is shown as:
17915 @example
17916 @group
17917 * Top level headline
17918  * Second level
17919   * 3rd level
17920   ...
17921 @end group
17922 @end example
17924 @noindent
17925 @vindex org-hide @r{(face)}
17926 Because Org makes the font color same as the background color to hide to
17927 stars, sometimes @code{org-hide} face may need tweaking to get the effect
17928 right.  For some black and white combinations, @code{grey90} on a white
17929 background might mask the stars better.
17931 @item
17932 @vindex org-odd-levels-only
17933 Using stars for only odd levels, 1, 3, 5, @dots{}, can also clean up the
17934 clutter.  This removes two stars from each level@footnote{Because
17935 @samp{LEVEL=2} has 3 stars, @samp{LEVEL=3} has 4 stars, and so on}.  For Org
17936 to properly handle this cleaner structure during edits and exports, configure
17937 the variable @code{org-odd-levels-only}.  To set this per-file, use either
17938 one of the following lines:
17940 @example
17941 #+STARTUP: odd
17942 #+STARTUP: oddeven
17943 @end example
17945 To switch between single and double stars layouts, use @kbd{M-x
17946 org-convert-to-odd-levels RET} and @kbd{M-x org-convert-to-oddeven-levels}.
17947 @end enumerate
17949 @node TTY keys
17950 @section Using Org on a tty
17951 @cindex tty key bindings
17953 Org provides alternative key bindings for TTY and modern mobile devices that
17954 cannot handle cursor keys and complex modifier key chords.  Some of these
17955 workarounds may be more cumbersome than necessary.  Users should look into
17956 customizing these further based on their usage needs.  For example, the
17957 normal @kbd{S-@key{cursor}} for editing timestamp might be better with
17958 @kbd{C-c .} chord.
17960 @multitable @columnfractions 0.15 0.2 0.1 0.2
17961 @item @b{Default} @tab @b{Alternative 1} @tab @b{Speed key} @tab @b{Alternative 2}
17962 @item @kbd{S-@key{TAB}}     @tab @kbd{C-u @key{TAB}}       @tab @kbd{C} @tab
17963 @item @kbd{M-@key{left}}    @tab @kbd{C-c C-x l}           @tab @kbd{l} @tab @kbd{@key{Esc} @key{left}}
17964 @item @kbd{M-S-@key{left}}  @tab @kbd{C-c C-x L}           @tab @kbd{L} @tab
17965 @item @kbd{M-@key{right}}   @tab @kbd{C-c C-x r}           @tab @kbd{r} @tab @kbd{@key{Esc} @key{right}}
17966 @item @kbd{M-S-@key{right}} @tab @kbd{C-c C-x R}           @tab @kbd{R} @tab
17967 @item @kbd{M-@key{up}}      @tab @kbd{C-c C-x u}           @tab @kbd{ } @tab @kbd{@key{Esc} @key{up}}
17968 @item @kbd{M-S-@key{up}}    @tab @kbd{C-c C-x U}           @tab @kbd{U} @tab
17969 @item @kbd{M-@key{down}}    @tab @kbd{C-c C-x d}           @tab @kbd{ } @tab @kbd{@key{Esc} @key{down}}
17970 @item @kbd{M-S-@key{down}}  @tab @kbd{C-c C-x D}           @tab @kbd{D} @tab
17971 @item @kbd{S-@key{RET}}     @tab @kbd{C-c C-x c}           @tab @kbd{ } @tab
17972 @item @kbd{M-@key{RET}}     @tab @kbd{C-c C-x m}           @tab @kbd{ } @tab @kbd{@key{Esc} @key{RET}}
17973 @item @kbd{M-S-@key{RET}}   @tab @kbd{C-c C-x M}           @tab @kbd{ } @tab
17974 @item @kbd{S-@key{left}}    @tab @kbd{C-c @key{left}}      @tab @kbd{ } @tab
17975 @item @kbd{S-@key{right}}   @tab @kbd{C-c @key{right}}     @tab @kbd{ } @tab
17976 @item @kbd{S-@key{up}}      @tab @kbd{C-c @key{up}}        @tab @kbd{ } @tab
17977 @item @kbd{S-@key{down}}    @tab @kbd{C-c @key{down}}      @tab @kbd{ } @tab
17978 @item @kbd{C-S-@key{left}}  @tab @kbd{C-c C-x @key{left}}  @tab @kbd{ } @tab
17979 @item @kbd{C-S-@key{right}} @tab @kbd{C-c C-x @key{right}} @tab @kbd{ } @tab
17980 @end multitable
17983 @node Interaction
17984 @section Interaction with other packages
17985 @cindex packages, interaction with other
17986 Org's compatibility and the level of interaction with other Emacs packages
17987 are documented here.
17990 @menu
17991 * Cooperation::                 Packages Org cooperates with
17992 * Conflicts::                   Packages that lead to conflicts
17993 @end menu
17995 @node Cooperation
17996 @subsection Packages that Org cooperates with
17998 @table @asis
17999 @cindex @file{calc.el}
18000 @cindex Gillespie, Dave
18001 @item @file{calc.el} by Dave Gillespie
18002 Org uses the Calc package for tables to implement spreadsheet functionality
18003 (@pxref{The spreadsheet}).  Org also uses Calc for embedded calculations.
18004 @xref{Embedded Mode, , Embedded Mode, calc, GNU Emacs Calc Manual}.
18005 @item @file{constants.el} by Carsten Dominik
18006 @cindex @file{constants.el}
18007 @cindex Dominik, Carsten
18008 @vindex org-table-formula-constants
18009 Org can use names for constants in formulas in tables.  Org can also use
18010 calculation suffixes for units, such as @samp{M} for @samp{Mega}.  For a
18011 standard collection of such constants, install the @file{constants} package.
18012 Install version 2.0 of this package, available at
18013 @url{https://staff.fnwi.uva.nl/c.dominik/Tools/}.  Org checks if the function
18014 @code{constants-get} has been autoloaded.  Installation instructions are in
18015 the file, @file{constants.el}.
18016 @item @file{cdlatex.el} by Carsten Dominik
18017 @cindex @file{cdlatex.el}
18018 @cindex Dominik, Carsten
18019 Org mode can use CD@LaTeX{} package to efficiently enter @LaTeX{} fragments
18020 into Org files (@pxref{CDLaTeX mode}).
18021 @item @file{imenu.el} by Ake Stenhoff and Lars Lindberg
18022 @cindex @file{imenu.el}
18023 Imenu creates dynamic menus based on an index of items in a file.  Org mode
18024 supports Imenu menus.  Enable it with a mode hook as follows:
18025 @lisp
18026 (add-hook 'org-mode-hook
18027           (lambda () (imenu-add-to-menubar "Imenu")))
18028 @end lisp
18029 @vindex org-imenu-depth
18030 By default the Imenu index is two levels deep.  Change the index depth using
18031 thes variable, @code{org-imenu-depth}.
18032 @item @file{speedbar.el} by Eric M. Ludlam
18033 @cindex @file{speedbar.el}
18034 @cindex Ludlam, Eric M.
18035 Speedbar package creates a special Emacs frame for displaying files and index
18036 items in files.  Org mode supports Speedbar; users can drill into Org files
18037 directly from the Speedbar.  The @kbd{<} in the Speedbar frame tweaks the
18038 agenda commands to that file or to a subtree.
18039 @cindex @file{table.el}
18040 @item @file{table.el} by Takaaki Ota
18041 @kindex C-c C-c
18042 @cindex table editor, @file{table.el}
18043 @cindex @file{table.el}
18044 @cindex Ota, Takaaki
18046 Complex ASCII tables with automatic line wrapping, column- and row-spanning,
18047 and alignment can be created using the Emacs table package by Takaaki Ota.
18048 Org mode recognizes such tables and export them properly.  @kbd{C-c '} to
18049 edit these tables in a special buffer, much like Org's @samp{src} code
18050 blocks.  Because of interference with other Org mode functionality, Takaaki
18051 Ota tables cannot be edited directly in the Org buffer.
18052 @table @kbd
18053 @orgcmd{C-c ',org-edit-special}
18054 Edit a @file{table.el} table.  Works when the cursor is in a table.el table.
18056 @orgcmd{C-c ~,org-table-create-with-table.el}
18057 Insert a @file{table.el} table.  If there is already a table at point, this
18058 command converts it between the @file{table.el} format and the Org mode
18059 format.  See the documentation string of the command @code{org-convert-table}
18060 for details.
18061 @end table
18062 @end table
18064 @node Conflicts
18065 @subsection Packages that conflict with Org mode
18067 @table @asis
18069 @cindex @code{shift-selection-mode}
18070 @vindex org-support-shift-select
18071 In Emacs, @code{shift-selection-mode} combines cursor motions with shift key
18072 to enlarge regions.  Emacs sets this mode by default.  This conflicts with
18073 Org's use of @kbd{S-@key{cursor}} commands to change timestamps, TODO
18074 keywords, priorities, and item bullet types, etc.  Since @kbd{S-@key{cursor}}
18075 commands outside of specific contexts don't do anything, Org offers the
18076 variable @code{org-support-shift-select} for customization.  Org mode
18077 accommodates shift selection by (i) making it available outside of the
18078 special contexts where special commands apply, and (ii) extending an
18079 existing active region even if the cursor moves across a special context.
18081 @item @file{CUA.el} by Kim. F. Storm
18082 @cindex @file{CUA.el}
18083 @cindex Storm, Kim. F.
18084 @vindex org-replace-disputed-keys
18085 Org key bindings conflict with @kbd{S-<cursor>} keys used by CUA mode.  For
18086 Org to relinquish these bindings to CUA mode, configure the variable
18087 @code{org-replace-disputed-keys}.  When set, Org moves the following key
18088 bindings in Org files, and in the agenda buffer (but not during date
18089 selection).
18091 @example
18092 S-UP      @result{}  M-p             S-DOWN     @result{}  M-n
18093 S-LEFT    @result{}  M--             S-RIGHT    @result{}  M-+
18094 C-S-LEFT  @result{}  M-S--           C-S-RIGHT  @result{}  M-S-+
18095 @end example
18097 @vindex org-disputed-keys
18098 Yes, these are unfortunately more difficult to remember.  To define a
18099 different replacement keys, look at the variable @code{org-disputed-keys}.
18101 @item @file{ecomplete.el} by Lars Magne Ingebrigtsen @email{larsi@@gnus.org}
18102 @cindex @file{ecomplete.el}
18104 Ecomplete provides ``electric'' address completion in address header
18105 lines in message buffers.  Sadly Orgtbl mode cuts ecompletes power
18106 supply: No completion happens when Orgtbl mode is enabled in message
18107 buffers while entering text in address header lines.  If one wants to
18108 use ecomplete one should @emph{not} follow the advice to automagically
18109 turn on Orgtbl mode in message buffers (see @ref{Orgtbl mode}), but
18110 instead---after filling in the message headers---turn on Orgtbl mode
18111 manually when needed in the messages body.
18113 @item @file{filladapt.el} by Kyle Jones
18114 @cindex @file{filladapt.el}
18116 Org mode tries to do the right thing when filling paragraphs, list items and
18117 other elements.  Many users reported problems using both @file{filladapt.el}
18118 and Org mode, so a safe thing to do is to disable filladapt like this:
18120 @lisp
18121 (add-hook 'org-mode-hook 'turn-off-filladapt-mode)
18122 @end lisp
18124 @item @file{yasnippet.el}
18125 @cindex @file{yasnippet.el}
18126 The way Org mode binds the @key{TAB} key (binding to @code{[tab]} instead of
18127 @code{"\t"}) overrules YASnippet's access to this key.  The following code
18128 fixed this problem:
18130 @lisp
18131 (add-hook 'org-mode-hook
18132           (lambda ()
18133             (setq-local yas/trigger-key [tab])
18134             (define-key yas/keymap [tab] 'yas/next-field-or-maybe-expand)))
18135 @end lisp
18137 The latest version of yasnippet doesn't play well with Org mode.  If the
18138 above code does not fix the conflict, first define the following function:
18140 @lisp
18141 (defun yas/org-very-safe-expand ()
18142   (let ((yas/fallback-behavior 'return-nil)) (yas/expand)))
18143 @end lisp
18145 Then tell Org mode to use that function:
18147 @lisp
18148 (add-hook 'org-mode-hook
18149           (lambda ()
18150             (make-variable-buffer-local 'yas/trigger-key)
18151             (setq yas/trigger-key [tab])
18152             (add-to-list 'org-tab-first-hook 'yas/org-very-safe-expand)
18153             (define-key yas/keymap [tab] 'yas/next-field)))
18154 @end lisp
18156 @item @file{windmove.el} by Hovav Shacham
18157 @cindex @file{windmove.el}
18158 This package also uses the @kbd{S-<cursor>} keys, so everything written
18159 in the paragraph above about CUA mode also applies here.  If you want make
18160 the windmove function active in locations where Org mode does not have
18161 special functionality on @kbd{S-@key{cursor}}, add this to your
18162 configuration:
18164 @lisp
18165 ;; Make windmove work in org-mode:
18166 (add-hook 'org-shiftup-final-hook 'windmove-up)
18167 (add-hook 'org-shiftleft-final-hook 'windmove-left)
18168 (add-hook 'org-shiftdown-final-hook 'windmove-down)
18169 (add-hook 'org-shiftright-final-hook 'windmove-right)
18170 @end lisp
18172 @item @file{viper.el} by Michael Kifer
18173 @cindex @file{viper.el}
18174 @kindex C-c /
18175 Viper uses @kbd{C-c /} and therefore makes this key not access the
18176 corresponding Org mode command @code{org-sparse-tree}.  You need to find
18177 another key for this command, or override the key in
18178 @code{viper-vi-global-user-map} with
18180 @lisp
18181 (define-key viper-vi-global-user-map "C-c /" 'org-sparse-tree)
18182 @end lisp
18186 @end table
18188 @node org-crypt
18189 @section org-crypt.el
18190 @cindex @file{org-crypt.el}
18191 @cindex @code{org-decrypt-entry}
18193 Org crypt encrypts the text of an Org entry, but not the headline, or
18194 properties.  Org crypt uses the Emacs EasyPG library to encrypt and decrypt.
18196 Any text below a headline that has a @samp{:crypt:} tag will be automatically
18197 be encrypted when the file is saved.  To use a different tag, customize the
18198 @code{org-crypt-tag-matcher} variable.
18200 Suggested Org crypt settings in Emacs init file:
18202 @lisp
18203 (require 'org-crypt)
18204 (org-crypt-use-before-save-magic)
18205 (setq org-tags-exclude-from-inheritance (quote ("crypt")))
18207 (setq org-crypt-key nil)
18208   ;; GPG key to use for encryption
18209   ;; Either the Key ID or set to nil to use symmetric encryption.
18211 (setq auto-save-default nil)
18212   ;; Auto-saving does not cooperate with org-crypt.el: so you need
18213   ;; to turn it off if you plan to use org-crypt.el quite often.
18214   ;; Otherwise, you'll get an (annoying) message each time you
18215   ;; start Org.
18217   ;; To turn it off only locally, you can insert this:
18218   ;;
18219   ;; # -*- buffer-auto-save-file-name: nil; -*-
18220 @end lisp
18222 Excluding the crypt tag from inheritance prevents encrypting previously
18223 encrypted text.
18225 @node Hacking
18226 @appendix Hacking
18227 @cindex hacking
18229 This appendix covers some areas where users can extend the functionality of
18230 Org.
18232 @menu
18233 * Hooks::                       How to reach into Org's internals
18234 * Add-on packages::             Available extensions
18235 * Adding hyperlink types::      New custom link types
18236 * Adding export back-ends::     How to write new export back-ends
18237 * Context-sensitive commands::  How to add functionality to such commands
18238 * Tables in arbitrary syntax::  Orgtbl for @LaTeX{} and other programs
18239 * Dynamic blocks::              Automatically filled blocks
18240 * Special agenda views::        Customized views
18241 * Speeding up your agendas::    Tips on how to speed up your agendas
18242 * Extracting agenda information::  Post-processing of agenda information
18243 * Using the property API::      Writing programs that use entry properties
18244 * Using the mapping API::       Mapping over all or selected entries
18245 @end menu
18247 @node Hooks
18248 @section Hooks
18249 @cindex hooks
18251 Org has a large number of hook variables for adding functionality.  This
18252 appendix illustrates using a few.  A complete list of hooks with
18253 documentation is maintained by the Worg project at
18254 @uref{http://orgmode.org/worg/doc.html#hooks}.
18256 @node Add-on packages
18257 @section Add-on packages
18258 @cindex add-on packages
18260 Various authors wrote a large number of add-on packages for Org.
18262 These packages are not part of Emacs, but they are distributed as contributed
18263 packages with the separate release available at @uref{http://orgmode.org}.
18264 See the @file{contrib/README} file in the source code directory for a list of
18265 contributed files.  Worg page with more information is at:
18266 @uref{http://orgmode.org/worg/org-contrib/}.
18268 @node Adding hyperlink types
18269 @section Adding hyperlink types
18270 @cindex hyperlinks, adding new types
18272 Org has many built-in hyperlink types (@pxref{Hyperlinks}), and an interface
18273 for adding new link types.  The example file, @file{org-man.el}, shows the
18274 process of adding Org links to Unix man pages, which look like this:
18275 @samp{[[man:printf][The printf manpage]]}:
18277 @lisp
18278 ;;; org-man.el - Support for links to manpages in Org
18280 (require 'org)
18282 (org-add-link-type "man" 'org-man-open)
18283 (add-hook 'org-store-link-functions 'org-man-store-link)
18285 (defcustom org-man-command 'man
18286   "The Emacs command to be used to display a man page."
18287   :group 'org-link
18288   :type '(choice (const man) (const woman)))
18290 (defun org-man-open (path)
18291   "Visit the manpage on PATH.
18292 PATH should be a topic that can be thrown at the man command."
18293   (funcall org-man-command path))
18295 (defun org-man-store-link ()
18296   "Store a link to a manpage."
18297   (when (memq major-mode '(Man-mode woman-mode))
18298     ;; This is a man page, we do make this link
18299     (let* ((page (org-man-get-page-name))
18300            (link (concat "man:" page))
18301            (description (format "Manpage for %s" page)))
18302       (org-store-link-props
18303        :type "man"
18304        :link link
18305        :description description))))
18307 (defun org-man-get-page-name ()
18308   "Extract the page name from the buffer name."
18309   ;; This works for both `Man-mode' and `woman-mode'.
18310   (if (string-match " \\(\\S-+\\)\\*" (buffer-name))
18311       (match-string 1 (buffer-name))
18312     (error "Cannot create link to this man page")))
18314 (provide 'org-man)
18316 ;;; org-man.el ends here
18317 @end lisp
18319 @noindent
18320 To activate links to man pages in Org, enter this in the init file:
18322 @lisp
18323 (require 'org-man)
18324 @end lisp
18326 @noindent
18327 A review of @file{org-man.el}:
18328 @enumerate
18329 @item
18330 First, @code{(require 'org)} ensures @file{org.el} is loaded.
18331 @item
18332 The @code{org-add-link-type} defines a new link type with @samp{man} prefix.
18333 The call contains the function to call that follows the link type.
18334 @item
18335 @vindex org-store-link-functions
18336 The next line adds a function to @code{org-store-link-functions} that records
18337 a useful link with the command @kbd{C-c l} in a buffer displaying a man page.
18338 @end enumerate
18340 The rest of the file defines necessary variables and functions.  First is the
18341 customization variable @code{org-man-command}.  It has two options,
18342 @code{man} and @code{woman}.  Next is a function whose argument is the link
18343 path, which for man pages is the topic of the man command.  To follow the
18344 link, the function calls the @code{org-man-command} to display the man page.
18347 @kbd{C-c l} constructs and stores the link.
18349 @kbd{C-c l} calls the function @code{org-man-store-link}, which first checks
18350 if the @code{major-mode} is appropriate.  If check fails, the function
18351 returns @code{nil}.  Otherwise the function makes a link string by combining
18352 the @samp{man:} prefix with the man topic.  The function then calls
18353 @code{org-store-link-props} with @code{:type} and @code{:link} properties.  A
18354 @code{:description} property is an optional string that is displayed when the
18355 function inserts the link in the Org buffer.
18357 @kbd{C-c C-l} inserts the stored link.
18359 To define new link types, define a function that implements completion
18360 support with @kbd{C-c C-l}.  This function should not accept any arguments
18361 but return the appropriate prefix and complete link string.
18363 @node Adding export back-ends
18364 @section Adding export back-ends
18365 @cindex Export, writing back-ends
18367 Org's export engine makes it easy for writing new back-ends.  The framework
18368 on which the engine was built makes it easy to derive new back-ends from
18369 existing ones.
18371 The two main entry points to the export engine are:
18372 @code{org-export-define-backend} and
18373 @code{org-export-define-derived-backend}.  To grok these functions, see
18374 @file{ox-latex.el} for an example of defining a new back-end from scratch,
18375 and @file{ox-beamer.el} for an example of deriving from an existing engine.
18377 For creating a new back-end from scratch, first set its name as a symbol in
18378 an alist consisting of elements and export functions.  To make the back-end
18379 visible to the export dispatcher, set @code{:menu-entry} keyword.  For export
18380 options specific to this back-end, set the @code{:options-alist}.
18382 For creating a new back-end from an existing one, set @code{:translate-alist}
18383 to an alist of export functions.  This alist replaces the parent back-end
18384 functions.
18386 For complete documentation, see
18387 @url{http://orgmode.org/worg/dev/org-export-reference.html, the Org Export
18388 Reference on Worg}.
18390 @node Context-sensitive commands
18391 @section Context-sensitive commands
18392 @cindex context-sensitive commands, hooks
18393 @cindex add-ons, context-sensitive commands
18394 @vindex org-ctrl-c-ctrl-c-hook
18396 Org has facilities for building context sensitive commands.  Authors of Org
18397 add-ons can tap into this functionality.
18399 Some Org commands change depending on the context.  The most important
18400 example of this behavior is the @kbd{C-c C-c} (@pxref{The very busy C-c C-c
18401 key}).  Other examples are @kbd{M-cursor} and @kbd{M-S-cursor}.
18403 These context sensitive commands work by providing a function that detects
18404 special context for that add-on and executes functionality appropriate for
18405 that context.
18407 @node Tables in arbitrary syntax
18408 @section Tables and lists in arbitrary syntax
18409 @cindex tables, in other modes
18410 @cindex lists, in other modes
18411 @cindex Orgtbl mode
18413 Because of Org's success in handling tables with Orgtbl, a frequently asked
18414 feature is to Org's usability functions to other table formats native to
18415 other modem's, such as @LaTeX{}.  This would be hard to do in a general way
18416 without complicated customization nightmares.  Moreover, that would take Org
18417 away from its simplicity roots that Orgtbl has proven.  There is, however, an
18418 alternate approach to accomplishing the same.
18420 This approach involves implementing a custom @emph{translate} function that
18421 operates on a native Org @emph{source table} to produce a table in another
18422 format.  This strategy would keep the excellently working Orgtbl simple and
18423 isolate complications, if any, confined to the translate function.  To add
18424 more alien table formats, we just add more translate functions.  Also the
18425 burden of developing custom translate functions for new table formats will be
18426 in the hands of those who know those formats best.
18428 For an example of how this strategy works, see Orgstruct mode.  In that mode,
18429 Bastien added the ability to use Org's facilities to edit and re-structure
18430 lists.  He did by turning @code{orgstruct-mode} on, and then exporting the
18431 list locally to another format, such as HTML, @LaTeX{} or Texinfo.
18433 @menu
18434 * Radio tables::                Sending and receiving radio tables
18435 * A @LaTeX{} example::          Step by step, almost a tutorial
18436 * Translator functions::        Copy and modify
18437 * Radio lists::                 Sending and receiving lists
18438 @end menu
18440 @node Radio tables
18441 @subsection Radio tables
18442 @cindex radio tables
18444 Radio tables are target locations for translated tables that are not near
18445 their source.  Org finds the target location and inserts the translated
18446 table.
18448 The key to finding the target location are the magic words @code{BEGIN/END
18449 RECEIVE ORGTBL}.  They have to appear as comments in the current mode.  If
18450 the mode is C, then:
18452 @example
18453 /* BEGIN RECEIVE ORGTBL table_name */
18454 /* END RECEIVE ORGTBL table_name */
18455 @end example
18457 @noindent
18458 At the location of source, Org needs a special line to direct Orgtbl to
18459 translate and to find the target for inserting the translated table.  For
18460 example:
18461 @cindex #+ORGTBL
18462 @example
18463 #+ORGTBL: SEND table_name translation_function arguments...
18464 @end example
18466 @noindent
18467 @code{table_name} is the table's reference name, which is also used in the
18468 receiver lines, and the @code{translation_function} is the Lisp function that
18469 translates.  This line, in addition, may also contain alternating key and
18470 value arguments at the end.  The translation function gets these values as a
18471 property list.  A few standard parameters are already recognized and acted
18472 upon before the translation function is called:
18474 @table @code
18475 @item :skip N
18476 Skip the first N lines of the table.  Hlines do count; include them if they
18477 are to be skipped.
18479 @item :skipcols (n1 n2 ...)
18480 List of columns to be skipped.  First Org automatically discards columns with
18481 calculation marks and then sends the table to the translator function, which
18482 then skips columns as specified in @samp{skipcols}.
18483 @end table
18485 @noindent
18486 To keep the source table intact in the buffer without being disturbed when
18487 the source file is compiled or otherwise being worked on, use one of these
18488 strategies:
18490 @itemize @bullet
18491 @item
18492 Place the table in a block comment.  For example, in C mode you could wrap
18493 the table between @samp{/*} and @samp{*/} lines.
18494 @item
18495 Put the table after an @samp{END} statement.  For example @samp{\bye} in
18496 @TeX{} and @samp{\end@{document@}} in @LaTeX{}.
18497 @item
18498 Comment and uncomment each line of the table during edits.  The @kbd{M-x
18499 orgtbl-toggle-comment RET} command makes toggling easy.
18500 @end itemize
18502 @node A @LaTeX{} example
18503 @subsection A @LaTeX{} example of radio tables
18504 @cindex @LaTeX{}, and Orgtbl mode
18506 To wrap a source table in @LaTeX{}, use the @code{comment} environment
18507 provided by @file{comment.sty}.  To activate it, put
18508 @code{\usepackage@{comment@}} in the document header.  Orgtbl mode inserts a
18509 radio table skeleton@footnote{By default this works only for @LaTeX{}, HTML,
18510 and Texinfo.  Configure the variable @code{orgtbl-radio-table-templates} to
18511 install templates for other export formats.}  with the command @kbd{M-x
18512 orgtbl-insert-radio-table RET}, which prompts for a table name.  For example,
18513 if @samp{salesfigures} is the name, the template inserts:
18515 @cindex #+ORGTBL, SEND
18516 @example
18517 % BEGIN RECEIVE ORGTBL salesfigures
18518 % END RECEIVE ORGTBL salesfigures
18519 \begin@{comment@}
18520 #+ORGTBL: SEND salesfigures orgtbl-to-latex
18521 | | |
18522 \end@{comment@}
18523 @end example
18525 @noindent
18526 @vindex @LaTeX{}-verbatim-environments
18527 The line @code{#+ORGTBL: SEND} tells Orgtbl mode to use the function
18528 @code{orgtbl-to-latex} to convert the table to @LaTeX{} format, then insert
18529 the table at the target (receive) location named @code{salesfigures}.  Now
18530 the table is ready for data entry.  It can even use spreadsheet
18531 features@footnote{If the @samp{#+TBLFM} line contains an odd number of dollar
18532 characters, this may cause problems with font-lock in @LaTeX{} mode.  As
18533 shown in the example you can fix this by adding an extra line inside the
18534 @code{comment} environment that is used to balance the dollar expressions.
18535 If you are using AUC@TeX{} with the font-latex library, a much better
18536 solution is to add the @code{comment} environment to the variable
18537 @code{LaTeX-verbatim-environments}.}:
18539 @example
18540 % BEGIN RECEIVE ORGTBL salesfigures
18541 % END RECEIVE ORGTBL salesfigures
18542 \begin@{comment@}
18543 #+ORGTBL: SEND salesfigures orgtbl-to-latex
18544 | Month | Days | Nr sold | per day |
18545 |-------+------+---------+---------|
18546 | Jan   |   23 |      55 |     2.4 |
18547 | Feb   |   21 |      16 |     0.8 |
18548 | March |   22 |     278 |    12.6 |
18549 #+TBLFM: $4=$3/$2;%.1f
18550 % $ (optional extra dollar to keep font-lock happy, see footnote)
18551 \end@{comment@}
18552 @end example
18554 @noindent
18555 After editing, @kbd{C-c C-c} inserts translated table at the target location,
18556 between the two marker lines.
18558 For hand-made custom tables, note that the translator needs to skip the first
18559 two lines of the source table.  Also the command has to @emph{splice} out the
18560 target table without the header and footer.
18562 @example
18563 \begin@{tabular@}@{lrrr@}
18564 Month & \multicolumn@{1@}@{c@}@{Days@} & Nr.\ sold & per day\\
18565 % BEGIN RECEIVE ORGTBL salesfigures
18566 % END RECEIVE ORGTBL salesfigures
18567 \end@{tabular@}
18569 \begin@{comment@}
18570 #+ORGTBL: SEND salesfigures orgtbl-to-latex :splice t :skip 2
18571 | Month | Days | Nr sold | per day |
18572 |-------+------+---------+---------|
18573 | Jan   |   23 |      55 |     2.4 |
18574 | Feb   |   21 |      16 |     0.8 |
18575 | March |   22 |     278 |    12.6 |
18576 #+TBLFM: $4=$3/$2;%.1f
18577 \end@{comment@}
18578 @end example
18580 The @LaTeX{} translator function @code{orgtbl-to-latex} is already part of
18581 Orgtbl mode and uses @code{tabular} environment by default to typeset the
18582 table and mark the horizontal lines with @code{\hline}.  For additional
18583 parameters to control output, @pxref{Translator functions}:
18585 @table @code
18586 @item :splice nil/t
18587 When non-@code{nil}, returns only table body lines; not wrapped in tabular
18588 environment.  Default is @code{nil}.
18590 @item :fmt fmt
18591 Format to warp each field.  It should contain @code{%s} for the original
18592 field value.  For example, to wrap each field value in dollar symbol, you
18593 could use @code{:fmt "$%s$"}.  Format can also wrap a property list with
18594 column numbers and formats, for example @code{:fmt (2 "$%s$" 4 "%s\\%%")}.
18595 In place of a string, a function of one argument can be used; the function
18596 must return a formatted string.
18598 @item :efmt efmt
18599 Format numbers as exponentials.  The spec should have @code{%s} twice for
18600 inserting mantissa and exponent, for example @code{"%s\\times10^@{%s@}"}.
18601 This may also be a property list with column numbers and formats, for example
18602 @code{:efmt (2 "$%s\\times10^@{%s@}$" 4 "$%s\\cdot10^@{%s@}$")}.  After
18603 @code{efmt} has been applied to a value, @code{fmt} will also be applied.
18604 Functions with two arguments can be supplied instead of strings.  By default,
18605 no special formatting is applied.
18606 @end table
18608 @node Translator functions
18609 @subsection Translator functions
18610 @cindex HTML, and Orgtbl mode
18611 @cindex translator function
18613 Orgtbl mode has built-in translator functions: @code{orgtbl-to-csv}
18614 (comma-separated values), @code{orgtbl-to-tsv} (TAB-separated values),
18615 @code{orgtbl-to-latex}, @code{orgtbl-to-html}, @code{orgtbl-to-texinfo},
18616 @code{orgtbl-to-unicode} and @code{orgtbl-to-orgtbl}.  They use the generic
18617 translator, @code{orgtbl-to-generic}, which delegates translations to various
18618 export back-ends.
18620 Properties passed to the function through the @samp{ORGTBL SEND} line take
18621 precedence over properties defined inside the function.  For example, this
18622 overrides the default @LaTeX{} line endings, @samp{\\}, with @samp{\\[2mm]}:
18624 @example
18625 #+ORGTBL: SEND test orgtbl-to-latex :lend " \\\\[2mm]"
18626 @end example
18628 For a new language translator, define a converter function.  It can be a
18629 generic function, such as shown in this example.  It marks a beginning and
18630 ending of a table with @samp{!BTBL!} and @samp{!ETBL!}; a beginning and
18631 ending of lines with @samp{!BL!} and @samp{!EL!}; and uses a TAB for a field
18632 separator:
18634 @lisp
18635 (defun orgtbl-to-language (table params)
18636   "Convert the orgtbl-mode TABLE to language."
18637   (orgtbl-to-generic
18638    table
18639    (org-combine-plists
18640     '(:tstart "!BTBL!" :tend "!ETBL!" :lstart "!BL!" :lend "!EL!" :sep "\t")
18641     params)))
18642 @end lisp
18644 @noindent
18645 The documentation for the @code{orgtbl-to-generic} function shows a complete
18646 list of parameters, each of which can be passed through to
18647 @code{orgtbl-to-latex}, @code{orgtbl-to-texinfo}, and any other function
18648 using that generic function.
18650 For complicated translations the generic translator function could be
18651 replaced by a custom translator function.  Such a custom function must take
18652 two arguments and return a single string containing the formatted table.  The
18653 first argument is the table whose lines are a list of fields or the symbol
18654 @code{hline}.  The second argument is the property list consisting of
18655 parameters specified in the @samp{#+ORGTBL: SEND} line.  Please share your
18656 translator functions by posting them to the Org users mailing list,
18657 @email{emacs-orgmode@@gnu.org}.
18659 @node Radio lists
18660 @subsection Radio lists
18661 @cindex radio lists
18662 @cindex org-list-insert-radio-list
18664 Call the @code{org-list-insert-radio-list} function to insert a radio list
18665 template in HTML, @LaTeX{}, and Texinfo mode documents.  Sending and
18666 receiving radio lists works is the same as for radio tables (@pxref{Radio
18667 tables}) except for these differences:
18669 @cindex #+ORGLST
18670 @itemize @minus
18671 @item
18672 Orgstruct mode must be active.
18673 @item
18674 Use @code{ORGLST} keyword instead of @code{ORGTBL}.
18675 @item
18676 @kbd{C-c C-c} works only on the first list item.
18677 @end itemize
18679 Built-in translators functions are: @code{org-list-to-latex},
18680 @code{org-list-to-html} and @code{org-list-to-texinfo}.  They use the
18681 @code{org-list-to-generic} translator function.  See its documentation for
18682 parameters for accurate customizations of lists.  Here is a @LaTeX{} example:
18684 @example
18685 % BEGIN RECEIVE ORGLST to-buy
18686 % END RECEIVE ORGLST to-buy
18687 \begin@{comment@}
18688 #+ORGLST: SEND to-buy org-list-to-latex
18689 - a new house
18690 - a new computer
18691   + a new keyboard
18692   + a new mouse
18693 - a new life
18694 \end@{comment@}
18695 @end example
18697 @kbd{C-c C-c} on @samp{a new house} inserts the translated @LaTeX{} list
18698 in-between the BEGIN and END marker lines.
18700 @node Dynamic blocks
18701 @section Dynamic blocks
18702 @cindex dynamic blocks
18704 Org supports @emph{dynamic blocks} in Org documents.  They are inserted with
18705 begin and end markers like any other @samp{src} code block, but the contents
18706 are updated automatically by a user function.  For example, @kbd{C-c C-x C-r}
18707 inserts a dynamic table that updates the work time (@pxref{Clocking work
18708 time}).
18710 Dynamic blocks can have names and function parameters.  The syntax is similar
18711 to @samp{src} code block specifications:
18713 @cindex #+BEGIN:dynamic block
18714 @example
18715 #+BEGIN: myblock :parameter1 value1 :parameter2 value2 ...
18717 #+END:
18718 @end example
18720 These command update dynamic blocks:
18722 @table @kbd
18723 @orgcmd{C-c C-x C-u,org-dblock-update}
18724 Update dynamic block at point.
18725 @orgkey{C-u C-c C-x C-u}
18726 Update all dynamic blocks in the current file.
18727 @end table
18729 Before updating a dynamic block, Org removes content between the BEGIN and
18730 END markers.  Org then reads the parameters on the BEGIN line for passing to
18731 the writer function.  If the function expects to access the removed content,
18732 then Org expects an extra parameter, @code{:content}, on the BEGIN line.
18734 To syntax for calling a writer function with a named block, @code{myblock}
18735 is: @code{org-dblock-write:myblock}.  Parameters come from the BEGIN line.
18737 The following is an example of a dynamic block and a block writer function
18738 that updates the time when the function was last run:
18740 @example
18741 #+BEGIN: block-update-time :format "on %m/%d/%Y at %H:%M"
18743 #+END:
18744 @end example
18746 @noindent
18747 The dynamic block's writer function:
18749 @lisp
18750 (defun org-dblock-write:block-update-time (params)
18751   (let ((fmt (or (plist-get params :format) "%d. %m. %Y")))
18752     (insert "Last block update at: "
18753             (format-time-string fmt))))
18754 @end lisp
18756 To keep dynamic blocks up-to-date in an Org file, use the function,
18757 @code{org-update-all-dblocks} in hook, such as @code{before-save-hook}.  The
18758 @code{org-update-all-dblocks} function does not run if the file is not in
18759 Org mode.
18761 Dynamic blocks, like any other block, can be narrowed with
18762 @code{org-narrow-to-block}.
18764 @node Special agenda views
18765 @section Special agenda views
18766 @cindex agenda views, user-defined
18768 @vindex org-agenda-skip-function
18769 @vindex org-agenda-skip-function-global
18770 Org provides a special hook to further limit items in agenda views:
18771 @code{agenda}, @code{agenda*}@footnote{The @code{agenda*} view is the same as
18772 @code{agenda} except that it only considers @emph{appointments}, i.e.,
18773 scheduled and deadline items that have a time specification @samp{[h]h:mm} in
18774 their time-stamps.}, @code{todo}, @code{alltodo}, @code{tags},
18775 @code{tags-todo}, @code{tags-tree}.  Specify a custom function that tests
18776 inclusion of every matched item in the view.  This function can also
18777 skip as much as is needed.
18779 For a global condition applicable to agenda views, use the
18780 @code{org-agenda-skip-function-global} variable.  Org uses a global condition
18781 with @code{org-agenda-skip-function} for custom searching.
18783 This example defines a function for a custom view showing TODO items with
18784 WAITING status.  Manually this is a multi step search process, but with a
18785 custom view, this can be automated as follows:
18787 The custom function searches the subtree for the WAITING tag and returns
18788 @code{nil} on match.  Otherwise it gives the location from where the search
18789 continues.
18791 @lisp
18792 (defun my-skip-unless-waiting ()
18793   "Skip trees that are not waiting"
18794   (let ((subtree-end (save-excursion (org-end-of-subtree t))))
18795     (if (re-search-forward ":waiting:" subtree-end t)
18796         nil          ; tag found, do not skip
18797       subtree-end))) ; tag not found, continue after end of subtree
18798 @end lisp
18800 To use this custom function in a custom agenda command:
18802 @lisp
18803 (org-add-agenda-custom-command
18804  '("b" todo "PROJECT"
18805    ((org-agenda-skip-function 'my-skip-unless-waiting)
18806     (org-agenda-overriding-header "Projects waiting for something: "))))
18807 @end lisp
18809 @vindex org-agenda-overriding-header
18810 Note that this also binds @code{org-agenda-overriding-header} to a more
18811 meaningful string suitable for the agenda view.
18813 @vindex org-odd-levels-only
18814 @vindex org-agenda-skip-function
18816 Search for entries with a limit set on levels for the custom search.  This is
18817 a general approach to creating custom searches in Org.  To include all
18818 levels, use @samp{LEVEL>0}@footnote{Note that, for
18819 @code{org-odd-levels-only}, a level number corresponds to order in the
18820 hierarchy, not to the number of stars.}.  Then to selectively pick the
18821 matched entries, use @code{org-agenda-skip-function}, which also accepts Lisp
18822 forms, such as @code{org-agenda-skip-entry-if} and
18823 @code{org-agenda-skip-subtree-if}.  For example:
18825 @table @code
18826 @item (org-agenda-skip-entry-if 'scheduled)
18827 Skip current entry if it has been scheduled.
18828 @item (org-agenda-skip-entry-if 'notscheduled)
18829 Skip current entry if it has not been scheduled.
18830 @item (org-agenda-skip-entry-if 'deadline)
18831 Skip current entry if it has a deadline.
18832 @item (org-agenda-skip-entry-if 'scheduled 'deadline)
18833 Skip current entry if it has a deadline, or if it is scheduled.
18834 @item (org-agenda-skip-entry-if 'todo '("TODO" "WAITING"))
18835 Skip current entry if the TODO keyword is TODO or WAITING.
18836 @item (org-agenda-skip-entry-if 'todo 'done)
18837 Skip current entry if the TODO keyword marks a DONE state.
18838 @item (org-agenda-skip-entry-if 'timestamp)
18839 Skip current entry if it has any timestamp, may also be deadline or scheduled.
18840 @anchor{x-agenda-skip-entry-regexp}
18841 @item (org-agenda-skip-entry-if 'regexp "regular expression")
18842 Skip current entry if the regular expression matches in the entry.
18843 @item (org-agenda-skip-entry-if 'notregexp "regular expression")
18844 Skip current entry unless the regular expression matches.
18845 @item (org-agenda-skip-subtree-if 'regexp "regular expression")
18846 Same as above, but check and skip the entire subtree.
18847 @end table
18849 The following is an example of a search for @samp{WAITING} without the
18850 special function:
18852 @lisp
18853 (org-add-agenda-custom-command
18854  '("b" todo "PROJECT"
18855    ((org-agenda-skip-function '(org-agenda-skip-subtree-if
18856                                 'regexp ":waiting:"))
18857     (org-agenda-overriding-header "Projects waiting for something: "))))
18858 @end lisp
18860 @node Speeding up your agendas
18861 @section Speeding up your agendas
18862 @cindex agenda views, optimization
18864 Some agenda commands slow down when the Org files grow in size or number.
18865 Here are tips to speed up:
18867 @enumerate
18868 @item
18869 Reduce the number of Org agenda files to avoid slowdowns due to hard drive
18870 accesses.
18871 @item
18872 Reduce the number of @samp{DONE} and archived headlines so agenda operations
18873 that skip over these can finish faster.
18874 @item
18875 @vindex org-agenda-dim-blocked-tasks
18876 Do not dim blocked tasks:
18877 @lisp
18878 (setq org-agenda-dim-blocked-tasks nil)
18879 @end lisp
18880 @item
18881 @vindex org-startup-folded
18882 @vindex org-agenda-inhibit-startup
18883 Stop preparing agenda buffers on startup:
18884 @lisp
18885 (setq org-agenda-inhibit-startup nil)
18886 @end lisp
18887 @item
18888 @vindex org-agenda-show-inherited-tags
18889 @vindex org-agenda-use-tag-inheritance
18890 Disable tag inheritance for agendas:
18891 @lisp
18892 (setq org-agenda-use-tag-inheritance nil)
18893 @end lisp
18894 @end enumerate
18896 These options can be applied to selected agenda views.  For more details
18897 about generation of agenda views, see the docstrings for the relevant
18898 variables, and this @uref{http://orgmode.org/worg/agenda-optimization.html,
18899 dedicated Worg page} for agenda optimization.
18901 @node Extracting agenda information
18902 @section Extracting agenda information
18903 @cindex agenda, pipe
18904 @cindex Scripts, for agenda processing
18906 @vindex org-agenda-custom-commands
18907 Org provides commands to access agendas through Emacs batch mode.  Through
18908 this command-line interface, agendas are automated for further processing or
18909 printing.
18911 @code{org-batch-agenda} creates an agenda view in ASCII and outputs to
18912 STDOUT.  This command takes one string parameter.  When string length=1, Org
18913 uses it as a key to @code{org-agenda-custom-commands}.  These are the same
18914 ones available through @kbd{C-c a}.
18916 This example command line directly prints the TODO list to the printer:
18918 @example
18919 emacs -batch -l ~/.emacs -eval '(org-batch-agenda "t")' | lpr
18920 @end example
18922 When the string parameter length is two or more characters, Org matches it
18923 with tags/TODO strings.  For example, this example command line prints items
18924 tagged with @samp{shop}, but excludes items tagged with @samp{NewYork}:
18926 @example
18927 emacs -batch -l ~/.emacs                                      \
18928       -eval '(org-batch-agenda "+shop-NewYork")' | lpr
18929 @end example
18931 @noindent
18932 An example showing on-the-fly parameter modifications:
18934 @example
18935 emacs -batch -l ~/.emacs                                      \
18936    -eval '(org-batch-agenda "a"                               \
18937             org-agenda-span (quote month)                     \
18938             org-agenda-include-diary nil                      \
18939             org-agenda-files (quote ("~/org/project.org")))'  \
18940    | lpr
18941 @end example
18943 @noindent
18944 which will produce an agenda for the next 30 days from just the
18945 @file{~/org/projects.org} file.
18947 For structured processing of agenda output, use @code{org-batch-agenda-csv}
18948 with the following fields:
18950 @example
18951 category     @r{The category of the item}
18952 head         @r{The headline, without TODO keyword, TAGS and PRIORITY}
18953 type         @r{The type of the agenda entry, can be}
18954                 todo               @r{selected in TODO match}
18955                 tagsmatch          @r{selected in tags match}
18956                 diary              @r{imported from diary}
18957                 deadline           @r{a deadline}
18958                 scheduled          @r{scheduled}
18959                 timestamp          @r{appointment, selected by timestamp}
18960                 closed             @r{entry was closed on date}
18961                 upcoming-deadline  @r{warning about nearing deadline}
18962                 past-scheduled     @r{forwarded scheduled item}
18963                 block              @r{entry has date block including date}
18964 todo         @r{The TODO keyword, if any}
18965 tags         @r{All tags including inherited ones, separated by colons}
18966 date         @r{The relevant date, like 2007-2-14}
18967 time         @r{The time, like 15:00-16:50}
18968 extra        @r{String with extra planning info}
18969 priority-l   @r{The priority letter if any was given}
18970 priority-n   @r{The computed numerical priority}
18971 @end example
18973 @noindent
18974 If the selection of the agenda item was based on a timestamp, including those
18975 items with @samp{DEADLINE} and @samp{SCHEDULED} keywords, then Org includes
18976 date and time in the output.
18978 If the selection of the agenda item was based on a timestamp  (or
18979 deadline/scheduled), then Org includes date and time in the output.
18981 Here is an example of a post-processing script in Perl.  It takes the CSV
18982 output from Emacs and prints with a checkbox:
18984 @example
18985 #!/usr/bin/perl
18987 # define the Emacs command to run
18988 $cmd = "emacs -batch -l ~/.emacs -eval '(org-batch-agenda-csv \"t\")'";
18990 # run it and capture the output
18991 $agenda = qx@{$cmd 2>/dev/null@};
18993 # loop over all lines
18994 foreach $line (split(/\n/,$agenda)) @{
18995   # get the individual values
18996   ($category,$head,$type,$todo,$tags,$date,$time,$extra,
18997    $priority_l,$priority_n) = split(/,/,$line);
18998   # process and print
18999   print "[ ] $head\n";
19001 @end example
19003 @node Using the property API
19004 @section Using the property API
19005 @cindex API, for properties
19006 @cindex properties, API
19008 Functions for working with properties.
19010 @defun org-entry-properties &optional pom which
19011 Get all properties of the entry at point-or-marker POM.@*
19012 This includes the TODO keyword, the tags, time strings for deadline,
19013 scheduled, and clocking, and any additional properties defined in the
19014 entry.  The return value is an alist.  Keys may occur multiple times
19015 if the property key was used several times.@*
19016 POM may also be @code{nil}, in which case the current entry is used.
19017 If WHICH is @code{nil} or @code{all}, get all properties.  If WHICH is
19018 @code{special} or @code{standard}, only get that subclass.
19019 @end defun
19021 @vindex org-use-property-inheritance
19022 @findex org-insert-property-drawer
19023 @defun org-entry-get pom property &optional inherit
19024 Get value of @code{PROPERTY} for entry at point-or-marker @code{POM}@.  By
19025 default, this only looks at properties defined locally in the entry.  If
19026 @code{INHERIT} is non-@code{nil} and the entry does not have the property,
19027 then also check higher levels of the hierarchy.  If @code{INHERIT} is the
19028 symbol @code{selective}, use inheritance if and only if the setting of
19029 @code{org-use-property-inheritance} selects @code{PROPERTY} for inheritance.
19030 @end defun
19032 @defun org-entry-delete pom property
19033 Delete the property @code{PROPERTY} from entry at point-or-marker POM.
19034 @end defun
19036 @defun org-entry-put pom property value
19037 Set @code{PROPERTY} to @code{VALUE} for entry at point-or-marker POM.
19038 @end defun
19040 @defun org-buffer-property-keys &optional include-specials
19041 Get all property keys in the current buffer.
19042 @end defun
19044 @defun org-insert-property-drawer
19045 Insert a property drawer for the current entry.
19046 @end defun
19048 @defun org-entry-put-multivalued-property pom property &rest values
19049 Set @code{PROPERTY} at point-or-marker @code{POM} to @code{VALUES}@.
19050 @code{VALUES} should be a list of strings.  They will be concatenated, with
19051 spaces as separators.
19052 @end defun
19054 @defun org-entry-get-multivalued-property pom property
19055 Treat the value of the property @code{PROPERTY} as a whitespace-separated
19056 list of values and return the values as a list of strings.
19057 @end defun
19059 @defun org-entry-add-to-multivalued-property pom property value
19060 Treat the value of the property @code{PROPERTY} as a whitespace-separated
19061 list of values and make sure that @code{VALUE} is in this list.
19062 @end defun
19064 @defun org-entry-remove-from-multivalued-property pom property value
19065 Treat the value of the property @code{PROPERTY} as a whitespace-separated
19066 list of values and make sure that @code{VALUE} is @emph{not} in this list.
19067 @end defun
19069 @defun org-entry-member-in-multivalued-property pom property value
19070 Treat the value of the property @code{PROPERTY} as a whitespace-separated
19071 list of values and check if @code{VALUE} is in this list.
19072 @end defun
19074 @defopt org-property-allowed-value-functions
19075 Hook for functions supplying allowed values for a specific property.
19076 The functions must take a single argument, the name of the property, and
19077 return a flat list of allowed values.  If @samp{:ETC} is one of
19078 the values, use the values as completion help, but allow also other values
19079 to be entered.  The functions must return @code{nil} if they are not
19080 responsible for this property.
19081 @end defopt
19083 @node Using the mapping API
19084 @section Using the mapping API
19085 @cindex API, for mapping
19086 @cindex mapping entries, API
19088 Org has sophisticated mapping capabilities for finding entries.  Org uses
19089 this functionality internally for generating agenda views.  Org also exposes
19090 an API for executing arbitrary functions for each selected entry.  The API's
19091 main entry point is:
19093 @defun org-map-entries func &optional match scope &rest skip
19094 Call @samp{FUNC} at each headline selected by @code{MATCH} in @code{SCOPE}.
19096 @samp{FUNC} is a function or a Lisp form.  With the cursor positioned at the
19097 beginning of the headline, call the function without arguments.  Org returns
19098 an alist of return values of calls to the function.
19100 To avoid preserving point, Org wraps the call to @code{FUNC} in
19101 save-excursion form.  After evaluation, Org moves the cursor to the end of
19102 the line that was just processed.  Search continues from that point forward.
19103 This may not always work as expected under some conditions, such as if the
19104 current sub-tree was removed by a previous archiving operation.  In such rare
19105 circumstances, Org skips the next entry entirely when it should not.  To stop
19106 Org from such skips, make @samp{FUNC} set the variable
19107 @code{org-map-continue-from} to a specific buffer position.
19109 @samp{MATCH} is a tags/property/TODO match.  Org iterates only matched
19110 headlines.  Org iterates over all headlines when @code{MATCH} is @code{nil}
19111 or @code{t}.
19113 @samp{SCOPE} determines the scope of this command.  It can be any of:
19115 @example
19116 nil     @r{the current buffer, respecting the restriction if any}
19117 tree    @r{the subtree started with the entry at point}
19118 region  @r{The entries within the active region, if any}
19119 file    @r{the current buffer, without restriction}
19120 file-with-archives
19121         @r{the current buffer, and any archives associated with it}
19122 agenda  @r{all agenda files}
19123 agenda-with-archives
19124         @r{all agenda files with any archive files associated with them}
19125 (file1 file2 ...)
19126         @r{if this is a list, all files in the list will be scanned}
19127 @end example
19128 @noindent
19129 The remaining args are treated as settings for the scanner's skipping
19130 facilities.  Valid args are:
19132 @vindex org-agenda-skip-function
19133 @example
19134 archive   @r{skip trees with the archive tag}
19135 comment   @r{skip trees with the COMMENT keyword}
19136 function or Lisp form
19137           @r{will be used as value for @code{org-agenda-skip-function},}
19138           @r{so whenever the function returns t, FUNC}
19139           @r{will not be called for that entry and search will}
19140           @r{continue from the point where the function leaves it}
19141 @end example
19142 @end defun
19144 The mapping routine can call any arbitrary function, even functions that
19145 change meta data or query the property API (@pxref{Using the property API}).
19146 Here are some handy functions:
19148 @defun org-todo &optional arg
19149 Change the TODO state of the entry.  See the docstring of the functions for
19150 the many possible values for the argument @code{ARG}.
19151 @end defun
19153 @defun org-priority &optional action
19154 Change the priority of the entry.  See the docstring of this function for the
19155 possible values for @code{ACTION}.
19156 @end defun
19158 @defun org-toggle-tag tag &optional onoff
19159 Toggle the tag @code{TAG} in the current entry.  Setting @code{ONOFF} to
19160 either @code{on} or @code{off} will not toggle tag, but ensure that it is
19161 either on or off.
19162 @end defun
19164 @defun org-promote
19165 Promote the current entry.
19166 @end defun
19168 @defun org-demote
19169 Demote the current entry.
19170 @end defun
19172 This example turns all entries tagged with @code{TOMORROW} into TODO entries
19173 with keyword @code{UPCOMING}.  Org ignores entries in comment trees and
19174 archive trees.
19176 @lisp
19177 (org-map-entries
19178  '(org-todo "UPCOMING")
19179  "+TOMORROW" 'file 'archive 'comment)
19180 @end lisp
19182 The following example counts the number of entries with TODO keyword
19183 @code{WAITING}, in all agenda files.
19185 @lisp
19186 (length (org-map-entries t "/+WAITING" 'agenda))
19187 @end lisp
19189 @node MobileOrg
19190 @appendix MobileOrg
19191 @cindex iPhone
19192 @cindex MobileOrg
19194 MobileOrg is a companion mobile app that runs on iOS and Android devices.
19195 MobileOrg enables offline-views and capture support for an Org mode system
19196 that is rooted on a ``real'' computer.  MobileOrg can record changes to
19197 existing entries.
19199 The @uref{https://github.com/MobileOrg/, iOS implementation} for the
19200 @emph{iPhone/iPod Touch/iPad} series of devices, was started by Richard
19201 Moreland and is now in the hands Sean Escriva.  Android users should check
19202 out @uref{http://wiki.github.com/matburt/mobileorg-android/, MobileOrg
19203 Android} by Matt Jones.  Though the two implementations are not identical,
19204 they offer similar features.
19206 This appendix describes Org's support for agenda view formats compatible with
19207 MobileOrg.  It also describes synchronizing changes, such as to notes,
19208 between MobileOrg and the computer.
19210 To change tags and TODO states in MobileOrg, first customize the variables
19211 @code{org-todo-keywords} and @code{org-tag-alist}.  These should cover all
19212 the important tags and TODO keywords, even if Org files use only some of
19213 them.  Though MobileOrg has in-buffer settings, it understands TODO states
19214 @emph{sets} (@pxref{Per-file keywords}) and @emph{mutually exclusive} tags
19215 (@pxref{Setting tags}) only for those set in these variables.
19217 @menu
19218 * Setting up the staging area::  For the mobile device
19219 * Pushing to MobileOrg::        Uploading Org files and agendas
19220 * Pulling from MobileOrg::      Integrating captured and flagged items
19221 @end menu
19223 @node Setting up the staging area
19224 @section Setting up the staging area
19226 MobileOrg needs access to a file directory on a server to interact with
19227 Emacs.  With a public server, consider encrypting the files.  MobileOrg
19228 version 1.5 supports encryption for the iPhone.  Org also requires
19229 @file{openssl} installed on the local computer.  To turn on encryption, set
19230 the same password in MobileOrg and in Emacs.  Set the password in the
19231 variable @code{org-mobile-use-encryption}@footnote{If Emacs is configured for
19232 safe storing of passwords, then configure the variable,
19233 @code{org-mobile-encryption-password}; please read the docstring of that
19234 variable.}.  Note that even after MobileOrg encrypts the file contents, the
19235 file names will remain visible on the file systems of the local computer, the
19236 server, and the mobile device.
19238 For a server to host files, consider options like
19239 @uref{http://dropbox.com,Dropbox.com} account@footnote{An alternative is to
19240 use webdav server.  MobileOrg documentation has details of webdav server
19241 configuration.  Additional help is at
19242 @uref{http://orgmode.org/worg/org-faq.html#mobileorg_webdav, FAQ entry}.}.
19243 On first connection, MobileOrg creates a directory @file{MobileOrg/} on
19244 Dropbox.  Pass its location to Emacs through an init file variable as
19245 follows:
19247 @lisp
19248 (setq org-mobile-directory "~/Dropbox/MobileOrg")
19249 @end lisp
19251 Org copies files to the above directory for MobileOrg.  Org also uses the
19252 same directory for sharing notes between Org and MobileOrg.
19254 @node Pushing to MobileOrg
19255 @section Pushing to MobileOrg
19257 Org pushes files listed in @code{org-mobile-files} to
19258 @code{org-mobile-directory}.  Files include agenda files (as listed in
19259 @code{org-agenda-files}).  Customize @code{org-mobile-files} to add other
19260 files.  File names will be staged with paths relative to
19261 @code{org-directory}, so all files should be inside this
19262 directory@footnote{Symbolic links in @code{org-directory} should have the
19263 same name as their targets.}.
19265 Push creates a special Org file @file{agendas.org} with custom agenda views
19266 defined by the user@footnote{While creating the agendas, Org mode will force
19267 ID properties on all referenced entries, so that these entries can be
19268 uniquely identified if MobileOrg flags them for further action.  To avoid
19269 setting properties configure the variable
19270 @code{org-mobile-force-id-on-agenda-items} to @code{nil}.  Org mode will then
19271 rely on outline paths, assuming they are unique.}.
19273 Org writes the file @file{index.org}, containing links to other files.
19274 MobileOrg reads this file first from the server to determine what other files
19275 to download for agendas.  For faster downloads, MobileOrg will read only
19276 those files whose checksums@footnote{Checksums are stored automatically in
19277 the file @file{checksums.dat}.} have changed.
19279 @node Pulling from MobileOrg
19280 @section Pulling from MobileOrg
19282 When MobileOrg synchronizes with the server, it pulls the Org files for
19283 viewing.  It then appends to the file @file{mobileorg.org} on the server the
19284 captured entries, pointers to flagged and changed entries.  Org integrates
19285 its data in an inbox file format.
19287 @enumerate
19288 @item
19289 Org moves all entries found in
19290 @file{mobileorg.org}@footnote{@file{mobileorg.org} will be empty after this
19291 operation.} and appends them to the file pointed to by the variable
19292 @code{org-mobile-inbox-for-pull}.  Each captured entry and each editing event
19293 is a top-level entry in the inbox file.
19294 @item
19295 After moving the entries, Org attempts changes to MobileOrg.  Some changes
19296 are applied directly and without user interaction.  Examples include changes
19297 to tags, TODO state, headline and body text.  Entries for further action are
19298 tagged as @code{:FLAGGED:}.  Org marks entries with problems with an error
19299 message in the inbox.  They have to be resolved manually.
19300 @item
19301 Org generates an agenda view for flagged entries for user intervention to
19302 clean up.  For notes stored in flagged entries, MobileOrg displays them in
19303 the echo area when the cursor is on the corresponding agenda item.
19305 @table @kbd
19306 @kindex ?
19307 @item ?
19308 Pressing @kbd{?} displays the entire flagged note in another window.  Org
19309 also pushes it to the kill ring.  To store flagged note as a normal note, use
19310 @kbd{?  z C-y C-c C-c}.  Pressing @kbd{?} twice does these things: first it
19311 removes the @code{:FLAGGED:} tag; second, it removes the flagged note from
19312 the property drawer; third, it signals that manual editing of the flagged
19313 entry is now finished.
19314 @end table
19315 @end enumerate
19317 @kindex C-c a ?
19318 @kbd{C-c a ?} returns to the agenda view to finish processing flagged
19319 entries.  Note that these entries may not be the most recent since MobileOrg
19320 searches files that were last pulled.  To get an updated agenda view with
19321 changes since the last pull, pull again.
19323 @node History and acknowledgments
19324 @appendix History and acknowledgments
19325 @cindex acknowledgments
19326 @cindex history
19327 @cindex thanks
19329 @section From Carsten
19331 Org was born in 2003, out of frustration over the user interface of the Emacs
19332 Outline mode.  I was trying to organize my notes and projects, and using
19333 Emacs seemed to be the natural way to go.  However, having to remember eleven
19334 different commands with two or three keys per command, only to hide and show
19335 parts of the outline tree, that seemed entirely unacceptable.  Also, when
19336 using outlines to take notes, I constantly wanted to restructure the tree,
19337 organizing it paralleling my thoughts and plans.  @emph{Visibility cycling}
19338 and @emph{structure editing} were originally implemented in the package
19339 @file{outline-magic.el}, but quickly moved to the more general @file{org.el}.
19340 As this environment became comfortable for project planning, the next step
19341 was adding @emph{TODO entries}, basic @emph{timestamps}, and @emph{table
19342 support}.  These areas highlighted the two main goals that Org still has
19343 today: to be a new, outline-based, plain text mode with innovative and
19344 intuitive editing features, and to incorporate project planning functionality
19345 directly into a notes file.
19347 Since the first release, literally thousands of emails to me or to
19348 @email{emacs-orgmode@@gnu.org} have provided a constant stream of bug
19349 reports, feedback, new ideas, and sometimes patches and add-on code.
19350 Many thanks to everyone who has helped to improve this package.  I am
19351 trying to keep here a list of the people who had significant influence
19352 in shaping one or more aspects of Org.  The list may not be
19353 complete, if I have forgotten someone, please accept my apologies and
19354 let me know.
19356 Before I get to this list, a few special mentions are in order:
19358 @table @i
19359 @item Bastien Guerry
19360 Bastien has written a large number of extensions to Org (most of them
19361 integrated into the core by now), including the @LaTeX{} exporter and the
19362 plain list parser.  His support during the early days was central to the
19363 success of this project.  Bastien also invented Worg, helped establishing the
19364 Web presence of Org, and sponsored hosting costs for the orgmode.org website.
19365 Bastien stepped in as maintainer of Org between 2011 and 2013, at a time when
19366 I desperately needed a break.
19367 @item Eric Schulte and Dan Davison
19368 Eric and Dan are jointly responsible for the Org-babel system, which turns
19369 Org into a multi-language environment for evaluating code and doing literate
19370 programming and reproducible research.  This has become one of Org's killer
19371 features that define what Org is today.
19372 @item John Wiegley
19373 John has contributed a number of great ideas and patches directly to Org,
19374 including the attachment system (@file{org-attach.el}), integration with
19375 Apple Mail (@file{org-mac-message.el}), hierarchical dependencies of TODO
19376 items, habit tracking (@file{org-habits.el}), and encryption
19377 (@file{org-crypt.el}).  Also, the capture system is really an extended copy
19378 of his great @file{remember.el}.
19379 @item Sebastian Rose
19380 Without Sebastian, the HTML/XHTML publishing of Org would be the pitiful work
19381 of an ignorant amateur.  Sebastian has pushed this part of Org onto a much
19382 higher level.  He also wrote @file{org-info.js}, a Java script for displaying
19383 web pages derived from Org using an Info-like or a folding interface with
19384 single-key navigation.
19385 @end table
19387 @noindent See below for the full list of contributions!  Again, please
19388 let me know what I am missing here!
19390 @section From Bastien
19392 I (Bastien) have been maintaining Org between 2011 and 2013.  This appendix
19393 would not be complete without adding a few more acknowledgments and thanks.
19395 I am first grateful to Carsten for his trust while handing me over the
19396 maintainership of Org.  His unremitting support is what really helped me
19397 getting more confident over time, with both the community and the code.
19399 When I took over maintainership, I knew I would have to make Org more
19400 collaborative than ever, as I would have to rely on people that are more
19401 knowledgeable than I am on many parts of the code.  Here is a list of the
19402 persons I could rely on, they should really be considered co-maintainers,
19403 either of the code or the community:
19405 @table @i
19406 @item Eric Schulte
19407 Eric is maintaining the Babel parts of Org.  His reactivity here kept me away
19408 from worrying about possible bugs here and let me focus on other parts.
19410 @item Nicolas Goaziou
19411 Nicolas is maintaining the consistency of the deepest parts of Org.  His work
19412 on @file{org-element.el} and @file{ox.el} has been outstanding, and it opened
19413 the doors for many new ideas and features.  He rewrote many of the old
19414 exporters to use the new export engine, and helped with documenting this
19415 major change.  More importantly (if that's possible), he has been more than
19416 reliable during all the work done for Org 8.0, and always very reactive on
19417 the mailing list.
19419 @item Achim Gratz
19420 Achim rewrote the building process of Org, turning some @emph{ad hoc} tools
19421 into a flexible and conceptually clean process.  He patiently coped with the
19422 many hiccups that such a change can create for users.
19424 @item Nick Dokos
19425 The Org mode mailing list would not be such a nice place without Nick, who
19426 patiently helped users so many times.  It is impossible to overestimate such
19427 a great help, and the list would not be so active without him.
19428 @end table
19430 I received support from so many users that it is clearly impossible to be
19431 fair when shortlisting a few of them, but Org's history would not be
19432 complete if the ones above were not mentioned in this manual.
19434 @section List of contributions
19436 @itemize @bullet
19438 @item
19439 @i{Russel Adams} came up with the idea for drawers.
19440 @item
19441 @i{Suvayu Ali} has steadily helped on the mailing list, providing useful
19442 feedback on many features and several patches.
19443 @item
19444 @i{Luis Anaya} wrote @file{ox-man.el}.
19445 @item
19446 @i{Thomas Baumann} wrote @file{org-bbdb.el} and @file{org-mhe.el}.
19447 @item
19448 @i{Michael Brand} helped by reporting many bugs and testing many features.
19449 He also implemented the distinction between empty fields and 0-value fields
19450 in Org's spreadsheets.
19451 @item
19452 @i{Christophe Bataillon} created the great unicorn logo that we use on the
19453 Org mode website.
19454 @item
19455 @i{Alex Bochannek} provided a patch for rounding timestamps.
19456 @item
19457 @i{Jan Böcker} wrote @file{org-docview.el}.
19458 @item
19459 @i{Brad Bozarth} showed how to pull RSS feed data into Org mode files.
19460 @item
19461 @i{Tom Breton} wrote @file{org-choose.el}.
19462 @item
19463 @i{Charles Cave}'s suggestion sparked the implementation of templates
19464 for Remember, which are now templates for capture.
19465 @item
19466 @i{Pavel Chalmoviansky} influenced the agenda treatment of items with
19467 specified time.
19468 @item
19469 @i{Gregory Chernov} patched support for Lisp forms into table
19470 calculations and improved XEmacs compatibility, in particular by porting
19471 @file{nouline.el} to XEmacs.
19472 @item
19473 @i{Sacha Chua} suggested copying some linking code from Planner, and helped
19474 make Org popular through her blog.
19475 @item
19476 @i{Toby S. Cubitt} contributed to the code for clock formats.
19477 @item
19478 @i{Baoqiu Cui} contributed the first DocBook exporter.  In Org 8.0, we go a
19479 different route: you can now export to Texinfo and export the @file{.texi}
19480 file to DocBook using @code{makeinfo}.
19481 @item
19482 @i{Eddward DeVilla} proposed and tested checkbox statistics.  He also
19483 came up with the idea of properties, and that there should be an API for
19484 them.
19485 @item
19486 @i{Nick Dokos} tracked down several nasty bugs.
19487 @item
19488 @i{Kees Dullemond} used to edit projects lists directly in HTML and so
19489 inspired some of the early development, including HTML export.  He also
19490 asked for a way to narrow wide table columns.
19491 @item
19492 @i{Jason Dunsmore} has been maintaining the Org-Mode server at Rackspace for
19493 several years now.  He also sponsored the hosting costs until Rackspace
19494 started to host us for free.
19495 @item
19496 @i{Thomas S. Dye} contributed documentation on Worg and helped integrating
19497 the Org-Babel documentation into the manual.
19498 @item
19499 @i{Christian Egli} converted the documentation into Texinfo format, inspired
19500 the agenda, patched CSS formatting into the HTML exporter, and wrote
19501 @file{org-taskjuggler.el}, which has been rewritten by Nicolas Goaziou as
19502 @file{ox-taskjuggler.el} for Org 8.0.
19503 @item
19504 @i{David Emery} provided a patch for custom CSS support in exported
19505 HTML agendas.
19506 @item
19507 @i{Sean Escriva} took over MobileOrg development on the iPhone platform.
19508 @item
19509 @i{Nic Ferrier} contributed mailcap and XOXO support.
19510 @item
19511 @i{Miguel A. Figueroa-Villanueva} implemented hierarchical checkboxes.
19512 @item
19513 @i{John Foerch} figured out how to make incremental search show context
19514 around a match in a hidden outline tree.
19515 @item
19516 @i{Raimar Finken} wrote @file{org-git-line.el}.
19517 @item
19518 @i{Mikael Fornius} works as a mailing list moderator.
19519 @item
19520 @i{Austin Frank} works as a mailing list moderator.
19521 @item
19522 @i{Eric Fraga} drove the development of BEAMER export with ideas and
19523 testing.
19524 @item
19525 @i{Barry Gidden} did proofreading the manual in preparation for the book
19526 publication through Network Theory Ltd.
19527 @item
19528 @i{Niels Giesen} had the idea to automatically archive DONE trees.
19529 @item
19530 @i{Nicolas Goaziou} rewrote much of the plain list code.  He also wrote
19531 @file{org-element.el} and @file{org-export.el}, which was a huge step forward
19532 in implementing a clean framework for Org exporters.
19533 @item
19534 @i{Kai Grossjohann} pointed out key-binding conflicts with other packages.
19535 @item
19536 @i{Brian Gough} of Network Theory Ltd publishes the Org mode manual as a
19537 book.
19538 @item
19539 @i{Bernt Hansen} has driven much of the support for auto-repeating tasks,
19540 task state change logging, and the clocktable.  His clear explanations have
19541 been critical when we started to adopt the Git version control system.
19542 @item
19543 @i{Manuel Hermenegildo} has contributed various ideas, small fixes and
19544 patches.
19545 @item
19546 @i{Phil Jackson} wrote @file{org-irc.el}.
19547 @item
19548 @i{Scott Jaderholm} proposed footnotes, control over whitespace between
19549 folded entries, and column view for properties.
19550 @item
19551 @i{Matt Jones} wrote @i{MobileOrg Android}.
19552 @item
19553 @i{Tokuya Kameshima} wrote @file{org-wl.el} and @file{org-mew.el}.
19554 @item
19555 @i{Jonathan Leech-Pepin} wrote @file{ox-texinfo.el}.
19556 @item
19557 @i{Shidai Liu} ("Leo") asked for embedded @LaTeX{} and tested it.  He also
19558 provided frequent feedback and some patches.
19559 @item
19560 @i{Matt Lundin} has proposed last-row references for table formulas and named
19561 invisible anchors.  He has also worked a lot on the FAQ.
19562 @item
19563 @i{David Maus} wrote @file{org-atom.el}, maintains the issues file for Org,
19564 and is a prolific contributor on the mailing list with competent replies,
19565 small fixes and patches.
19566 @item
19567 @i{Jason F. McBrayer} suggested agenda export to CSV format.
19568 @item
19569 @i{Max Mikhanosha} came up with the idea of refiling and sticky agendas.
19570 @item
19571 @i{Dmitri Minaev} sent a patch to set priority limits on a per-file
19572 basis.
19573 @item
19574 @i{Stefan Monnier} provided a patch to keep the Emacs-Lisp compiler
19575 happy.
19576 @item
19577 @i{Richard Moreland} wrote MobileOrg for the iPhone.
19578 @item
19579 @i{Rick Moynihan} proposed allowing multiple TODO sequences in a file
19580 and being able to quickly restrict the agenda to a subtree.
19581 @item
19582 @i{Todd Neal} provided patches for links to Info files and Elisp forms.
19583 @item
19584 @i{Greg Newman} refreshed the unicorn logo into its current form.
19585 @item
19586 @i{Tim O'Callaghan} suggested in-file links, search options for general
19587 file links, and TAGS.
19588 @item
19589 @i{Osamu Okano} wrote @file{orgcard2ref.pl}, a Perl program to create a text
19590 version of the reference card.
19591 @item
19592 @i{Takeshi Okano} translated the manual and David O'Toole's tutorial
19593 into Japanese.
19594 @item
19595 @i{Oliver Oppitz} suggested multi-state TODO items.
19596 @item
19597 @i{Scott Otterson} sparked the introduction of descriptive text for
19598 links, among other things.
19599 @item
19600 @i{Pete Phillips} helped during the development of the TAGS feature, and
19601 provided frequent feedback.
19602 @item
19603 @i{Francesco Pizzolante} provided patches that helped speeding up the agenda
19604 generation.
19605 @item
19606 @i{Martin Pohlack} provided the code snippet to bundle character insertion
19607 into bundles of 20 for undo.
19608 @item
19609 @i{Rackspace.com} is hosting our website for free.  Thank you Rackspace!
19610 @item
19611 @i{T.V. Raman} reported bugs and suggested improvements.
19612 @item
19613 @i{Matthias Rempe} (Oelde) provided ideas, Windows support, and quality
19614 control.
19615 @item
19616 @i{Paul Rivier} provided the basic implementation of named footnotes.  He
19617 also acted as mailing list moderator for some time.
19618 @item
19619 @i{Kevin Rogers} contributed code to access VM files on remote hosts.
19620 @item
19621 @i{Frank Ruell} solved the mystery of the @code{keymapp nil} bug, a
19622 conflict with @file{allout.el}.
19623 @item
19624 @i{Jason Riedy} generalized the send-receive mechanism for Orgtbl tables with
19625 extensive patches.
19626 @item
19627 @i{Philip Rooke} created the Org reference card, provided lots
19628 of feedback, developed and applied standards to the Org documentation.
19629 @item
19630 @i{Christian Schlauer} proposed angular brackets around links, among
19631 other things.
19632 @item
19633 @i{Christopher Schmidt} reworked @code{orgstruct-mode} so that users can
19634 enjoy folding in non-org buffers by using Org headlines in comments.
19635 @item
19636 @i{Paul Sexton} wrote @file{org-ctags.el}.
19637 @item
19638 Linking to VM/BBDB/Gnus was first inspired by @i{Tom Shannon}'s
19639 @file{organizer-mode.el}.
19640 @item
19641 @i{Ilya Shlyakhter} proposed the Archive Sibling, line numbering in literal
19642 examples, and remote highlighting for referenced code lines.
19643 @item
19644 @i{Stathis Sideris} wrote the @file{ditaa.jar} ASCII to PNG converter that is
19645 now packaged into Org's @file{contrib} directory.
19646 @item
19647 @i{Daniel Sinder} came up with the idea of internal archiving by locking
19648 subtrees.
19649 @item
19650 @i{Dale Smith} proposed link abbreviations.
19651 @item
19652 @i{James TD Smith} has contributed a large number of patches for useful
19653 tweaks and features.
19654 @item
19655 @i{Adam Spiers} asked for global linking commands, inspired the link
19656 extension system, added support for mairix, and proposed the mapping API.
19657 @item
19658 @i{Ulf Stegemann} created the table to translate special symbols to HTML,
19659 @LaTeX{}, UTF-8, Latin-1 and ASCII.
19660 @item
19661 @i{Andy Stewart} contributed code to @file{org-w3m.el}, to copy HTML content
19662 with links transformation to Org syntax.
19663 @item
19664 @i{David O'Toole} wrote @file{org-publish.el} and drafted the manual
19665 chapter about publishing.
19666 @item
19667 @i{Jambunathan K} contributed the ODT exporter and rewrote the HTML exporter.
19668 @item
19669 @i{Sebastien Vauban} reported many issues with @LaTeX{} and BEAMER export and
19670 enabled source code highlighting in Gnus.
19671 @item
19672 @i{Stefan Vollmar} organized a video-recorded talk at the
19673 Max-Planck-Institute for Neurology.  He also inspired the creation of a
19674 concept index for HTML export.
19675 @item
19676 @i{Jürgen Vollmer} contributed code generating the table of contents
19677 in HTML output.
19678 @item
19679 @i{Samuel Wales} has provided important feedback and bug reports.
19680 @item
19681 @i{Chris Wallace} provided a patch implementing the @samp{QUOTE}
19682 keyword.
19683 @item
19684 @i{David Wainberg} suggested archiving, and improvements to the linking
19685 system.
19686 @item
19687 @i{Carsten Wimmer} suggested some changes and helped fix a bug in
19688 linking to Gnus.
19689 @item
19690 @i{Roland Winkler} requested additional key bindings to make Org
19691 work on a tty.
19692 @item
19693 @i{Piotr Zielinski} wrote @file{org-mouse.el}, proposed agenda blocks
19694 and contributed various ideas and code snippets.
19695 @item
19696 @i{Marco Wahl} wrote @file{org-eww.el}.
19697 @end itemize
19700 @node GNU Free Documentation License
19701 @appendix GNU Free Documentation License
19702 @include doclicense.texi
19705 @node Main Index
19706 @unnumbered Concept index
19708 @printindex cp
19710 @node Key Index
19711 @unnumbered Key index
19713 @printindex ky
19715 @node Command and Function Index
19716 @unnumbered Command and function index
19718 @printindex fn
19720 @node Variable Index
19721 @unnumbered Variable index
19723 This is not a complete index of variables and faces, only the ones that are
19724 mentioned in the manual.  For a complete list, use @kbd{M-x org-customize
19725 @key{RET}}.
19727 @printindex vr
19729 @bye
19731 @c Local variables:
19732 @c fill-column: 77
19733 @c indent-tabs-mode: nil
19734 @c paragraph-start:    "\b\\|^@[a-zA-Z]*[ \n]\\|^@x?org\\(key\\|cmd\\)\\|\f\\|[  ]*$"
19735 @c paragraph-separate: "\b\\|^@[a-zA-Z]*[ \n]\\|^@x?org\\(key\\|cmd\\)\\|[       \f]*$"
19736 @c End:
19739 @c  LocalWords:  webdavhost pre