Skip to content

Latest commit

 

History

History
3087 lines (2153 loc) · 118 KB

emacs_orgguide.org

File metadata and controls

3087 lines (2153 loc) · 118 KB
[Top][Contents][Index][?]

Org Mode Guide

Copyright © 2010 Free Software Foundation

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover texts being “A GNU Manual,” and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled “GNU Free Documentation License.”

(a) The FSF’s Back-Cover Text is: “You have the freedom to copy and modify this GNU manual. Buying copies from the FSF supports it in developing GNU and promoting software freedom.”

This document is part of a collection distributed under the GNU Free Documentation License. If you want to distribute this document separately from the collection, you can do so by adding a copy of the license to the document, as described in section 6 of the license.

1. Introduction

Getting started

2. Document Structure

A tree works like your brain

3. Tables

Pure magic for quick formatting

4. Hyperlinks

Notes in context

5. TODO Items

Every tree branch can be a TODO item

6. Tags

Tagging headlines and matching sets of tags

7. Properties

8. Dates and Times

Making items useful for planning

9. Capture - Refile - Archive

The ins and outs for projects

10. Agenda Views

Collecting information into views

11. Markup for rich export

Prepare text for rich export

12. Exporting

Sharing and publishing of notes

13. Publishing

Create a web site of linked Org files

14. Working with source code

Source code snippets embedded in Org

15. Miscellaneous

All the rest which did not fit elsewhere

 — The Detailed Node Listing —

Introduction

1.1 Preface

Welcome

1.2 Installation

How to install a downloaded version of Org

1.3 Activation

How to activate Org for certain buffers

1.4 Feedback

Bug reports, ideas, patches etc.

Document Structure

2.1 Outlines

Org is based on Outline mode

2.2 Headlines

How to typeset Org tree headlines

2.3 Visibility cycling

Show and hide, much simplified

2.4 Motion

Jumping to other headlines

2.5 Structure editing

Changing sequence and level of headlines

2.6 Sparse trees

Matches embedded in context

2.7 Plain lists

Additional structure within an entry

2.8 Footnotes

How footnotes are defined in Org’s syntax

Hyperlinks

4.1 Link format

How links in Org are formatted

4.2 Internal links

Links to other places in the current file

4.3 External links

URL-like links to the world

4.4 Handling links

Creating, inserting and following

4.5 Targeted links

Point at a location in a file

TODO Items

5.1 Using TODO states

Setting and switching states

5.2 Multi-state workflows

More than just on/off

5.3 Progress logging

Dates and notes for progress

5.4 Priorities

Some things are more important than others

5.5 Breaking tasks down into subtasks

Splitting a task into manageable pieces

5.6 Checkboxes

Tick-off lists

Progress logging

Closing items

When was this entry marked DONE?

Tracking TODO state changes

When did the status change?

Tags

6.1 Tag inheritance

Tags use the tree structure of the outline

6.2 Setting tags

How to assign tags to a headline

6.3 Tag searches

Searching for combinations of tags

Dates and Times

8.1 Timestamps

Assigning a time to a tree entry

8.2 Creating timestamps

Commands which insert timestamps

8.3 Deadlines and scheduling

Planning your work

8.4 Clocking work time

Tracking how long you spend on a task

Capture - Refile - Archive

9.1 Capture

9.2 Refiling notes

Moving a tree from one place to another

9.3 Archiving

What to do with finished projects

Capture

Setting up a capture location

Where notes will be stored

Using capture

Commands to invoke and terminate capture

Capture templates

Define the outline of different note types

Agenda Views

10.1 Agenda files

Files being searched for agenda information

10.2 The agenda dispatcher

Keyboard access to agenda views

10.3 The built-in agenda views

What is available out of the box?

10.4 Commands in the agenda buffer

Remote editing of Org trees

10.5 Custom agenda views

Defining special searches and views

The built-in agenda views

10.3.1 The weekly/daily agenda

The calendar page with current tasks

10.3.2 The global TODO list

All unfinished action items

10.3.3 Matching tags and properties

Structured information with fine-tuned search

10.3.4 Timeline for a single file

Time-sorted view for single file

10.3.5 Search view

Find entries by searching for text

Markup for rich export

11.1 Structural markup elements

The basic structure as seen by the exporter

11.2 Images and Tables

Tables and Images will be included

11.3 Literal examples

Source code examples with special formatting

11.4 Include files

Include additional files into a document

11.5 Embedded LaTeX

LaTeX can be freely used inside Org documents

Structural markup elements

• Document title

Where the title is taken from

• Headings and sections

The document structure as seen by the exporter

• Table of contents

The if and where of the table of contents

• Paragraphs

• Emphasis and monospace

Bold, italic, etc.

• Comment lines

What will not be exported

Exporting

12.1 Export options

Per-file export settings

12.2 The export dispatcher

How to access exporter commands

12.3 ASCII/Latin-1/UTF-8 export

Exporting to flat files with encoding

12.4 HTML export

Exporting to HTML

12.5 LaTeX and PDF export

Exporting to LaTeX, and processing to PDF

12.6 DocBook export

Exporting to DocBook

12.7 iCalendar export

Miscellaneous

15.1 Completion

M-TAB knows what you need

15.2 A cleaner outline view

Getting rid of leading stars in the outline

15.3 MobileOrg

Org-mode on the iPhone



[<][>][<<][Up][>>][Top][Contents][Index][?]

1. Introduction

1.1 PrefaceWelcome
1.2 InstallationHow to install a downloaded version of Org
1.3 ActivationHow to activate Org for certain buffers
1.4 FeedbackBug reports, ideas, patches etc.

[<][>][<<][Up][>>][Top][Contents][Index][?]

1.1 Preface

Org is a mode for keeping notes, maintaining TODO lists, and doing project planning with a fast and effective plain-text system. It is also an authoring and publishing system.

/This document is a much compressed derivative of the comprehensive Org-mode manual. It contains all basic features and commands, along with important hints for customization. It is intended for beginners who would shy back from a 200 page manual because of sheer size./


[<][>][<<][Up][>>][Top][Contents][Index][?]

1.2 Installation

Important: /If you are using a version of Org that is part of the Emacs distribution or an XEmacs package, please skip this section and go directly to Activation./

If you have downloaded Org from the Web, either as a distribution ‘=.zip=’ or ‘=.tar=’ file, or as a Git archive, it is best to run it directly from the distribution directory. You need to add the ‘=lisp=’ subdirectories to the Emacs load path. To do this, add the following line to ‘=.emacs=’:

(setq load-path (cons "~/path/to/orgdir/lisp" load-path))
(setq load-path (cons "~/path/to/orgdir/contrib/lisp" load-path))

For speed you should byte-compile the Lisp files with the shell command:

make

Then add the following line to ‘=.emacs=’. It is needed so that Emacs can autoload functions that are located in files not immediately loaded when Org-mode starts.

(require 'org-install)

[<][>][<<][Up][>>][Top][Contents][Index][?]

1.3 Activation

Add the following lines to your ‘=.emacs=’ file. The last three lines define global keys for some commands — please choose suitable keys yourself.

;; The following lines are always needed.  Choose your own keys.
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(add-hook 'org-mode-hook 'turn-on-font-lock) ; not needed when global-font-lock-mode is on
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)

With this setup, all files with extension ‘.org’ will be put into Org mode.


[<][>][<<][Up][>>][Top][Contents][Index][?]

1.4 Feedback

If you find problems with Org, or if you have questions, remarks, or ideas about it, please mail to the Org mailing list emacs-orgmode@gnu.org. For information on how to submit bug reports, see the main manual.


[<][>][<<][Up][>>][Top][Contents][Index][?]

2. Document Structure

Org is based on Outline mode and provides flexible commands to edit the structure of the document.

2.1 OutlinesOrg is based on Outline mode
2.2 HeadlinesHow to typeset Org tree headlines
2.3 Visibility cyclingShow and hide, much simplified
2.4 MotionJumping to other headlines
2.5 Structure editingChanging sequence and level of headlines
2.6 Sparse treesMatches embedded in context
2.7 Plain listsAdditional structure within an entry
2.8 FootnotesHow footnotes are defined in Org’s syntax

[<][>][<<][Up][>>][Top][Contents][Index][?]

2.1 Outlines

Org is implemented on top of Outline mode. Outlines allow a document to be organized in a hierarchical structure, which (at least for me) is the best representation of notes and thoughts. An overview of this structure is achieved by folding (hiding) large parts of the document to show only the general document structure and the parts currently being worked on. Org greatly simplifies the use of outlines by compressing the entire show/hide functionality into a single command, org-cycle, which is bound to the <TAB> key.


[<][>][<<][Up][>>][Top][Contents][Index][?]

2.2 Headlines

Headlines define the structure of an outline tree. The headlines in Org start with one or more stars, on the left margin(1). For example:

* Top level headline
** Second level
*** 3rd level
    some text
*** 3rd level
    more text

* Another top level headline

Some people find the many stars too noisy and would prefer an outline that has whitespace followed by a single star as headline starters. A cleaner outline view, describes a setup to realize this.


[<][>][<<][Up][>>][Top][Contents][Index][?]

2.3 Visibility cycling

Outlines make it possible to hide parts of the text in the buffer. Org uses just two commands, bound to <TAB> and S-<TAB> to change the visibility in the buffer.

<TAB>
Subtree cycling: Rotate current subtree among the states
,-> FOLDED -> CHILDREN -> SUBTREE --.
'-----------------------------------'
    

When called with a prefix argument (C-u <TAB>) or with the shift key, global cycling is invoked.

S-<TAB> and C-u <TAB>
Global cycling: Rotate the entire buffer among the states
,-> OVERVIEW -> CONTENTS -> SHOW ALL --.
'--------------------------------------'
    
C-u C-u C-u <TAB>
Show all, including drawers.

When Emacs first visits an Org file, the global state is set to OVERVIEW, i.e. only the top level headlines are visible. This can be configured through the variable org-startup-folded, or on a per-file basis by adding a startup keyword overview, content, showall, like this:

#+STARTUP: content

[<][>][<<][Up][>>][Top][Contents][Index][?]

2.4 Motion

The following commands jump to other headlines in the buffer.

C-c C-n
Next heading.
C-c C-p
Previous heading.
C-c C-f
Next heading same level.
C-c C-b
Previous heading same level.
C-c C-u
Backward to higher level heading.

[<][>][<<][Up][>>][Top][Contents][Index][?]

2.5 Structure editing

M-<RET>
Insert new heading with same level as current. If the cursor is in a plain list item, a new item is created (see section Plain lists). When this command is used in the middle of a line, the line is split and the rest of the line becomes the new headline(2).
M-S-<RET>
Insert new TODO entry with same level as current heading.
<TAB> in new, empty entry
In a new entry with no text yet, <TAB> will cycle through reasonable levels.
M-<left>/<right>
Promote/demote current heading by one level.
M-S-<left>/<right>
Promote/demote the current subtree by one level.
M-S-<up>/<down>
Move subtree up/down (swap with previous/next subtree of same level).
C-c C-w
Refile entry or region to a different location. See section Refiling notes.
C-x n s/w
Narrow buffer to current subtree / widen it again

When there is an active region (Transient Mark mode), promotion and demotion work on all headlines in the region.


[<][>][<<][Up][>>][Top][Contents][Index][?]

2.6 Sparse trees

An important feature of Org mode is the ability to construct sparse trees for selected information in an outline tree, so that the entire document is folded as much as possible, but the selected information is made visible along with the headline structure above it(3). Just try it out and you will see immediately how it works.

Org mode contains several commands creating such trees, all these commands can be accessed through a dispatcher:

C-c /
This prompts for an extra key to select a sparse-tree creating command.
C-c / r
Occur. Prompts for a regexp and shows a sparse tree with all matches. Each match is also highlighted; the highlights disappear by pressing C-c C-c.

The other sparse tree commands select headings based on TODO keywords, tags, or properties and will be discussed later in this manual.


[<][>][<<][Up][>>][Top][Contents][Index][?]

2.7 Plain lists

Within an entry of the outline tree, hand-formatted lists can provide additional structure. They also provide a way to create lists of checkboxes (see section Checkboxes). Org supports editing such lists, and the HTML exporter (see section Exporting) parses and formats them.

Org knows ordered lists, unordered lists, and description lists.

  • Unordered list items start with ‘-’, ‘+’, or ‘*’ as bullets.
  • Ordered list items start with ‘1.’ or ‘1)’.
Description list use ‘
’ to separate the term from the description.

Items belonging to the same list must have the same indentation on the first line. An item ends before the next line that is indented like its bullet/number, or less. A list ends when all items are closed, or before two blank lines. An example:

** Lord of the Rings
   My favorite scenes are (in this order)
   1. The attack of the Rohirrim
   2. Eowyn's fight with the witch king
      + this was already my favorite scene in the book
      + I really like Miranda Otto.
   Important actors in this film are:
   - Elijah Wood :: He plays Frodo
   - Sean Austin :: He plays Sam, Frodo's friend.

The following commands act on items when the cursor is in the first line of an item (the line with the bullet or number).

<TAB>
Items can be folded just like headline levels.
M-<RET>
Insert new item at current level. With a prefix argument, force a new heading (see section Structure editing).
M-S-<RET>
Insert a new item with a checkbox (see section Checkboxes).
M-S-<up>/<down>
Move the item including subitems up/down (swap with previous/next item of same indentation). If the list is ordered, renumbering is automatic.
M-<left>/M-<right>
Decrease/increase the indentation of an item, leaving children alone.
M-S-<left>/<right>
Decrease/increase the indentation of the item, including subitems.
C-c C-c
If there is a checkbox (see section Checkboxes) in the item line, toggle the state of the checkbox. Also verify bullets and indentation consistency in the whole list.
C-c -
Cycle the entire list level through the different itemize/enumerate bullets (‘-’, ‘+’, ‘*’, ‘1.’, ‘1)’).

[<][>][<<][Up][>>][Top][Contents][Index][?]

2.8 Footnotes

A footnote is defined in a paragraph that is started by a footnote marker in square brackets in column 0, no indentation allowed. The footnote reference is simply the marker in square brackets, inside text. For example:

The Org homepage[fn:1] now looks a lot better than it used to.
...
[fn:1] The link is: http://orgmode.org

The following commands handle footnotes:

C-c C-x f
The footnote action command. When the cursor is on a footnote reference, jump to the definition. When it is at a definition, jump to the (first) reference. Otherwise, create a new footnote. When this command is called with a prefix argument, a menu of additional options including renumbering is offered.
C-c C-c
Jump between definition and reference.

Further reading Chapter 2 of the manual Sacha Chua’s tutorial


[<][>][<<][Up][>>][Top][Contents][Index][?]

3. Tables

Org comes with a fast and intuitive table editor. Spreadsheet-like calculations are supported in connection with the Emacs ‘=calc=’ package (see the Emacs Calculator manual for more information about the Emacs calculator).

Org makes it easy to format tables in plain ASCII. Any line with ‘|’ as the first non-whitespace character is considered part of a table. ‘|’ is also the column separator. A table might look like this:

| Name  | Phone | Age |
|-------+-------+-----|
| Peter |  1234 |  17 |
| Anna  |  4321 |  25 |

A table is re-aligned automatically each time you press <TAB> or <RET> or C-c C-c inside the table. <TAB> also moves to the next field (<RET> to the next row) and creates new table rows at the end of the table or before horizontal lines. The indentation of the table is set by the first line. Any line starting with ‘|-’ is considered as a horizontal separator line and will be expanded on the next re-align to span the whole table width. So, to create the above table, you would only type

|Name|Phone|Age|
|-

and then press <TAB> to align the table and start filling in fields. Even faster would be to type |Name|Phone|Age followed by C-c <RET>.

When typing text into a field, Org treats <DEL>, <Backspace>, and all character keys in a special way, so that inserting and deleting avoids shifting other fields. Also, when typing immediately after the cursor was moved into a new field with <TAB>, S-<TAB> or <RET>, the field is automatically made blank.

  • Creation and conversion C-c | :: Convert the active region to table. If every line contains at least one TAB character, the function assumes that the material is tab separated. If every line contains a comma, comma-separated values (CSV) are assumed. If not, lines are split at whitespace into fields. If there is no active region, this command creates an empty Org table. But it’s easier just to start typing, like |Name|Phone|Age C-c <RET>.
  • Re-aligning and field motion C-c C-c :: Re-align the table without moving the cursor.
<TAB>
Re-align the table, move to the next field. Creates a new row if necessary.
S-<TAB>
Re-align, move to previous field.
<RET>
Re-align the table and move down to next row. Creates a new row if necessary.
  • Column and row editing M-<left> M-<right> :: Move the current column left/right.
M-S-<left>
Kill the current column.
M-S-<right>
Insert a new column to the left of the cursor position.
  • M-<up> M-<down> :: Move the current row up/down.
M-S-<up>
Kill the current row or horizontal line.
M-S-<down>
Insert a new row above the current row. With a prefix argument, the line is created below the current one.
C-c -
Insert a horizontal line below current row. With a prefix argument, the line is created above the current line.
C-c <RET>
Insert a horizontal line below current row, and move the cursor into the row below that line.
C-c \^
Sort the table lines in the region. The position of point indicates the column to be used for sorting, and the range of lines is the range between the nearest horizontal separator lines, or the entire table.

Further reading Chapter 3 of the manual Bastien’s table tutorial

Bastien’s spreadsheet tutorial Eric’s plotting tutorial


[<][>][<<][Up][>>][Top][Contents][Index][?]

4. Hyperlinks

Like HTML, Org provides links inside a file, external links to other files, Usenet articles, emails, and much more.

4.1 Link formatHow links in Org are formatted
4.2 Internal linksLinks to other places in the current file
4.3 External linksURL-like links to the world
4.4 Handling linksCreating, inserting and following
4.5 Targeted linksPoint at a location in a file

[<][>][<<][Up][>>][Top][Contents][Index][?]

4.1 Link format

Org will recognize plain URL-like links and activate them as clickable links. The general link format, however, looks like this:

[[link][description]]       or alternatively           [[link]]

Once a link in the buffer is complete (all brackets present), Org will change the display so that ‘description’ is displayed instead of ‘description’ and ‘link’ is displayed instead of ‘link’. To edit the invisible ‘link’ part, use C-c C-l with the cursor on the link.


[<][>][<<][Up][>>][Top][Contents][Index][?]

4.2 Internal links

If the link does not look like a URL, it is considered to be internal in the current file. The most important case is a link like ‘#my-custom-id’ which will link to the entry with the CUSTOM_ID property ‘my-custom-id’.

Links such as ‘My Target’ or ‘Find my target’ lead to a text search in the current file for the corresponding target which looks like ‘<<My Target>>’.


[<][>][<<][Up][>>][Top][Contents][Index][?]

4.3 External links

Org supports links to files, websites, Usenet and email messages, BBDB database entries and links to both IRC conversations and their logs. External links are URL-like locators. They start with a short identifying string followed by a colon. There can be no space after the colon. Here are some examples:

http://www.astro.uva.nl/~dominik          on the web
file:/home/dominik/images/jupiter.jpg     file, absolute path
/home/dominik/images/jupiter.jpg          same as above
file:papers/last.pdf                      file, relative path
file:projects.org                         another Org file
docview:papers/last.pdf::NNN              open file in doc-view mode at page NNN
id:B7423F4D-2E8A-471B-8810-C40F074717E9   Link to heading by ID
news:comp.emacs                           Usenet link
mailto:adent@galaxy.net                   Mail link
vm:folder                                 VM folder link
vm:folder#id                              VM message link
wl:folder#id                              WANDERLUST message link
mhe:folder#id                             MH-E message link
rmail:folder#id                           RMAIL message link
gnus:group#id                             Gnus article link
bbdb:R.*Stallman                          BBDB link (with regexp)
irc:/irc.com/#emacs/bob                   IRC link
info:org:External%20links                 Info node link (with encoded space)

A link should be enclosed in double brackets and may contain a descriptive text to be displayed instead of the URL (see section Link format), for example:

[[http://www.gnu.org/software/emacs/][GNU Emacs]]

If the description is a file name or URL that points to an image, HTML export (see section HTML export) will inline the image as a clickable button. If there is no description at all and the link points to an image, that image will be inlined into the exported HTML file.


[<][>][<<][Up][>>][Top][Contents][Index][?]

4.4 Handling links

Org provides methods to create a link in the correct syntax, to insert it into an Org file, and to follow the link.

C-c l
Store a link to the current location. This is a global command (you must create the key binding yourself) which can be used in any buffer to create a link. The link will be stored for later insertion into an Org buffer (see below).
C-c C-l
Insert a link. This prompts for a link to be inserted into the buffer. You can just type a link, or use history keys <up> and <down> to access stored links. You will be prompted for the description part of the link. When called with a C-u prefix argument, file name completion is used to link to a file.
C-c C-l (with cursor on existing link)
When the cursor is on an existing link, C-c C-l allows you to edit the link and description parts of the link.
C-c C-o or mouse-1 or mouse-2
Open link at point.
C-c &
Jump back to a recorded position. A position is recorded by the commands following internal links, and by C-c %. Using this command several times in direct succession moves through a ring of previously recorded positions.

[<][>][<<][Up][>>][Top][Contents][Index][?]

4.5 Targeted links

File links can contain additional information to make Emacs jump to a particular location in the file when following a link. This can be a line number or a search option after a double colon.

Here is the syntax of the different ways to attach a search to a file link, together with an explanation:

[[file:~/code/main.c::255]]                 Find line 255
[[file:~/xx.org::My Target]]                Find ‘<<My Target>>’
[[file:~/xx.org::#my-custom-id]]            Find entry with custom id

Further reading Chapter 4 of the manual


[<][>][<<][Up][>>][Top][Contents][Index][?]

5. TODO Items

Org mode does not maintain TODO lists as separate documents(4). Instead, TODO items are an integral part of the notes file, because TODO items usually come up while taking notes! With Org mode, simply mark any entry in a tree as being a TODO item. In this way, information is not duplicated, and the entire context from which the TODO item emerged is always present.

Of course, this technique for managing TODO items scatters them throughout your notes file. Org mode compensates for this by providing methods to give you an overview of all the things that you have to do.

5.1 Using TODO statesSetting and switching states
5.2 Multi-state workflowsMore than just on/off
5.3 Progress loggingDates and notes for progress
5.4 PrioritiesSome things are more important than others
5.5 Breaking tasks down into subtasksSplitting a task into manageable pieces
5.6 CheckboxesTick-off lists

[<][>][<<][Up][>>][Top][Contents][Index][?]

5.1 Using TODO states

Any headline becomes a TODO item when it starts with the word ‘TODO’, for example:

*** TODO Write letter to Sam Fortune

The most important commands to work with TODO entries are:

C-c C-t
Rotate the TODO state of the current item among
,-> (unmarked) -> TODO -> DONE --.
'--------------------------------'
    

The same rotation can also be done “remotely” from the timeline and agenda buffers with the t command key (see section Commands in the agenda buffer).

S-<right>/<left>
Select the following/preceding TODO state, similar to cycling.
C-c / t
View TODO items in a sparse tree (see section Sparse trees). Folds the buffer, but shows all TODO items and the headings hierarchy above them.
C-c a t
Show the global TODO list. Collects the TODO items from all agenda files (see section Agenda Views) into a single buffer. See section The global TODO list, for more information.
S-M-<RET>
Insert a new TODO entry below the current one.

Changing a TODO state can also trigger tag changes. See the docstring of the option org-todo-state-tags-triggers for details.


[<][>][<<][Up][>>][Top][Contents][Index][?]

5.2 Multi-state workflows

You can use TODO keywords to indicate different sequential states in the process of working on an item, for example:

(setq org-todo-keywords
  '((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED")))

The vertical bar separates the TODO keywords (states that need action) from the DONE states (which need no further action). If you don’t provide the separator bar, the last state is used as the DONE state. With this setup, the command C-c C-t will cycle an entry from TODO to FEEDBACK, then to VERIFY, and finally to DONE and DELEGATED.

Sometimes you may want to use different sets of TODO keywords in parallel. For example, you may want to have the basic TODO=/=DONE, but also a workflow for bug fixing, and a separate state indicating that an item has been canceled (so it is not DONE, but also does not require action). Your setup would then look like this:

(setq org-todo-keywords
      '((sequence "TODO(t)" "|" "DONE(d)")
        (sequence "REPORT(r)" "BUG(b)" "KNOWNCAUSE(k)" "|" "FIXED(f)")
        (sequence "|" "CANCELED(c)")))

The keywords should all be different, this helps Org mode to keep track of which subsequence should be used for a given entry. The example also shows how to define keys for fast access of a particular state, by adding a letter in parenthesis after each keyword - you will be prompted for the key after C-c C-t.

To define TODO keywords that are valid only in a single file, use the following text anywhere in the file.

#+TODO: TODO(t) | DONE(d)
#+TODO: REPORT(r) BUG(b) KNOWNCAUSE(k) | FIXED(f)
#+TODO: | CANCELED(c)

After changing one of these lines, use C-c C-c with the cursor still in the line to make the changes known to Org mode.


[<][>][<<][Up][>>][Top][Contents][Index][?]

5.3 Progress logging

Org mode can automatically record a timestamp and possibly a note when you mark a TODO item as DONE, or even each time you change the state of a TODO item. This system is highly configurable, settings can be on a per-keyword basis and can be localized to a file or even a subtree. For information on how to clock working time for a task, see Clocking work time.

Closing itemsWhen was this entry marked DONE?
Tracking TODO state changesWhen did the status change?

[<][>][<<][Up][>>][Top][Contents][Index][?]

Closing items

The most basic logging is to keep track of when a certain TODO item was finished. This is achieved with(5).

(setq org-log-done 'time)

Then each time you turn an entry from a TODO (not-done) state into any of the DONE states, a line ‘CLOSED: [timestamp]’ will be inserted just after the headline. If you want to record a note along with the timestamp, use(6)

(setq org-log-done 'note)

You will then be prompted for a note, and that note will be stored below the entry with a ‘Closing Note’ heading.


[<][>][<<][Up][>>][Top][Contents][Index][?]

Tracking TODO state changes

You might want to keep track of TODO state changes. You can either record just a timestamp, or a time-stamped note for a change. These records will be inserted after the headline as an itemized list. When taking a lot of notes, you might want to get the notes out of the way into a drawer. Customize the variable org-log-into-drawer to get this behavior.

For state logging, Org mode expects configuration on a per-keyword basis. This is achieved by adding special markers ‘!’ (for a timestamp) and ‘@’ (for a note) in parentheses after each keyword. For example:

#+TODO: TODO(t) WAIT(w@/!) | DONE(d!) CANCELED(c@)

will define TODO keywords and fast access keys, and also request that a time is recorded when the entry is set to DONE, and that a note is recorded when switching to WAIT or CANCELED. The same syntax works also when setting org-todo-keywords.


[<][>][<<][Up][>>][Top][Contents][Index][?]

5.4 Priorities

If you use Org mode extensively, you may end up with enough TODO items that it starts to make sense to prioritize them. Prioritizing can be done by placing a priority cookie into the headline of a TODO item, like this

*** TODO [#A] Write letter to Sam Fortune

Org mode supports three priorities: ‘A’, ‘B’, and ‘C’. ‘A’ is the highest, ‘B’ the default if none is given. Priorities make a difference only in the agenda.

C-c ,
Set the priority of the current headline. Press ‘A’, ‘B’ or ‘C’ to select a priority, or <SPC> to remove the cookie.
  • S-<up> S-<down> :: Increase/decrease priority of current headline

[<][>][<<][Up][>>][Top][Contents][Index][?]

5.5 Breaking tasks down into subtasks

It is often advisable to break down large tasks into smaller, manageable subtasks. You can do this by creating an outline tree below a TODO item, with detailed subtasks on the tree. To keep the overview over the fraction of subtasks that are already completed, insert either ‘[/]’ or ‘[%]’ anywhere in the headline. These cookies will be updated each time the TODO status of a child changes, or when pressing C-c C-c on the cookie. For example:

* Organize Party [33%]
** TODO Call people [1/2]
*** TODO Peter
*** DONE Sarah
** TODO Buy food
** DONE Talk to neighbor

[<][>][<<][Up][>>][Top][Contents][Index][?]

5.6 Checkboxes

Every item in a plain list (see section Plain lists) can be made into a checkbox by starting it with the string ‘[ ]’. Checkboxes are not included into the global TODO list, so they are often great to split a task into a number of simple steps. Here is an example of a checkbox list.

* TODO Organize party [1/3]
  - [-] call people [1/2]
    - [ ] Peter
    - [X] Sarah
  - [X] order food
  - [ ] think about what music to play

Checkboxes work hierarchically, so if a checkbox item has children that are checkboxes, toggling one of the children checkboxes will make the parent checkbox reflect if none, some, or all of the children are checked.

The following commands work with checkboxes:

C-c C-c
Toggle checkbox status or (with prefix arg) checkbox presence at point.
M-S-<RET>
Insert a new item with a checkbox. This works only if the cursor is already in a plain list item (see section Plain lists).

Further reading Chapter 5 of the manual David O’Toole’s introductory tutorial

Charles Cave’s GTD setup


[<][>][<<][Up][>>][Top][Contents][Index][?]

6. Tags

An excellent way to implement labels and contexts for cross-correlating information is to assign tags to headlines. Org mode has extensive support for tags.

Every headline can contain a list of tags; they occur at the end of the headline. Tags are normal words containing letters, numbers, ‘\_’, and ‘@’. Tags must be preceded and followed by a single colon, e.g., ‘:work:’. Several tags can be specified, as in ‘:work:urgent:’. Tags will by default be in bold face with the same color as the headline.

6.1 Tag inheritanceTags use the tree structure of the outline
6.2 Setting tagsHow to assign tags to a headline
6.3 Tag searchesSearching for combinations of tags

[<][>][<<][Up][>>][Top][Contents][Index][?]

6.1 Tag inheritance

Tags make use of the hierarchical structure of outline trees. If a heading has a certain tag, all subheadings will inherit the tag as well. For example, in the list

* Meeting with the French group      :work:
** Summary by Frank                  :boss:notes:
*** TODO Prepare slides for him      :action:

the final heading will have the tags ‘:work:’, ‘:boss:’, ‘:notes:’, and ‘:action:’ even though the final heading is not explicitly marked with those tags. You can also set tags that all entries in a file should inherit just as if these tags were defined in a hypothetical level zero that surrounds the entire file. Use a line like this(7):

#+FILETAGS: :Peter:Boss:Secret:

[<][>][<<][Up][>>][Top][Contents][Index][?]

6.2 Setting tags

Tags can simply be typed into the buffer at the end of a headline. After a colon, M-<TAB> offers completion on tags. There is also a special command for inserting tags:

C-c C-q
Enter new tags for the current headline. Org mode will either offer completion or a special single-key interface for setting tags, see below. After pressing <RET>, the tags will be inserted and aligned to org-tags-column. When called with a C-u prefix, all tags in the current buffer will be aligned to that column, just to make things look nice.
C-c C-c
When the cursor is in a headline, this does the same as C-c C-q.

Org will support tag insertion based on a list of tags. By default this list is constructed dynamically, containing all tags currently used in the buffer. You may also globally specify a hard list of tags with the variable org-tag-alist. Finally you can set the default tags for a given file with lines like

#+TAGS: @work @home @tennisclub
#+TAGS: laptop car pc sailboat

By default Org mode uses the standard minibuffer completion facilities for entering tags. However, it also implements another, quicker, tag selection method called fast tag selection. This allows you to select and deselect tags with just a single key press. For this to work well you should assign unique letters to most of your commonly used tags. You can do this globally by configuring the variable org-tag-alist in your ‘=.emacs=’ file. For example, you may find the need to tag many items in different files with ‘:@home:’. In this case you can set something like:

(setq org-tag-alist '(("@work" . ?w) ("@home" . ?h) ("laptop" . ?l)))

If the tag is only relevant to the file you are working on, then you can instead set the TAGS option line as:

#+TAGS: @work(w)  @home(h)  @tennisclub(t)  laptop(l)  pc(p)

[<][>][<<][Up][>>][Top][Contents][Index][?]

6.3 Tag searches

Once a system of tags has been set up, it can be used to collect related information into special lists.

  • C-c \ C-c / m :: Create a sparse tree with all headlines matching a tags search. With a C-u prefix argument, ignore headlines that are not a TODO line.
C-c a m
Create a global list of tag matches from all agenda files. See section Matching tags and properties.
C-c a M
Create a global list of tag matches from all agenda files, but check only TODO items and force checking subitems (see variable org-tags-match-list-sublevels).

These commands all prompt for a match string which allows basic Boolean logic like ‘+boss+urgent-project1’, to find entries with tags ‘boss’ and ‘urgent’, but not ‘project1’, or ‘Kathy|Sally’ to find entries which are tagged, like ‘Kathy’ or ‘Sally’. The full syntax of the search string is rich and allows also matching against TODO keywords, entry levels and properties. For a complete description with many examples, see Matching tags and properties.

Further reading Chapter 6 of the manual

Sacha Chua’s article about tagging in Org-mode


[<][>][<<][Up][>>][Top][Contents][Index][?]

7. Properties

Properties are key-value pairs associates with and entry. They live in a special drawer with the name PROPERTIES. Each property is specified on a single line, with the key (surrounded by colons) first, and the value after it:

* CD collection
** Classic
*** Goldberg Variations
    :PROPERTIES:
    :Title:     Goldberg Variations
    :Composer:  J.S. Bach
    :Publisher: Deutsche Grammophon
    :NDisks:    1
    :END:

You may define the allowed values for a particular property ‘:Xyz:’ by setting a property ‘:Xyz\_ALL:’. This special property is inherited, so if you set it in a level 1 entry, it will apply to the entire tree. When allowed values are defined, setting the corresponding property becomes easier and is less prone to typing errors. For the example with the CD collection, we can predefine publishers and the number of disks in a box like this:

* CD collection
  :PROPERTIES:
  :NDisks_ALL:  1 2 3 4
  :Publisher_ALL: "Deutsche Grammophon" Philips EMI
  :END:

or globally using org-global-properties, or file-wide like this:

#+PROPERTY: NDisks_ALL 1 2 3 4
C-c C-x p
Set a property. This prompts for a property name and a value.
C-c C-c d
Remove a property from the current entry.

To create sparse trees and special lists with selection based on properties, the same commands are used as for tag searches (see section Tag searches). The syntax for the search string is described in Matching tags and properties.

Further reading Chapter 7 of the manual

Bastien Guerry’s column view tutorial


[<][>][<<][Up][>>][Top][Contents][Index][?]

8. Dates and Times

To assist project planning, TODO items can be labeled with a date and/or a time. The specially formatted string carrying the date and time information is called a timestamp in Org mode.

8.1 TimestampsAssigning a time to a tree entry
8.2 Creating timestampsCommands which insert timestamps
8.3 Deadlines and schedulingPlanning your work
8.4 Clocking work timeTracking how long you spend on a task

[<][>][<<][Up][>>][Top][Contents][Index][?]

8.1 Timestamps

A timestamp is a specification of a date (possibly with a time or a range of times) in a special format, either ‘<2003-09-16 Tue>’ or ‘<2003-09-16 Tue 09:39>’ or ‘<2003-09-16 Tue 12:00-12:30>’. A timestamp can appear anywhere in the headline or body of an Org tree entry. Its presence causes entries to be shown on specific dates in the agenda (see section The weekly/daily agenda). We distinguish:

Plain timestamp; Event; Appointment A simple timestamp just assigns a date/time to an item. This is just like writing down an appointment or event in a paper agenda.

* Meet Peter at the movies <2006-11-01 Wed 19:15>
* Discussion on climate change <2006-11-02 Thu 20:00-22:00>

Timestamp with repeater interval A timestamp may contain a repeater interval, indicating that it applies not only on the given date, but again and again after a certain interval of N days (d), weeks (w), months (m), or years (y). The following will show up in the agenda every Wednesday:

* Pick up Sam at school <2007-05-16 Wed 12:30 +1w>

Diary-style sexp entries For more complex date specifications, Org mode supports using the special sexp diary entries implemented in the Emacs calendar/diary package. For example

* The nerd meeting on every 2nd Thursday of the month
  <%%(diary-float t 4 2)>

Time/Date range Two timestamps connected by ‘–’ denote a range.

** Meeting in Amsterdam
   <2004-08-23 Mon>--<2004-08-26 Thu>

Inactive timestamp Just like a plain timestamp, but with square brackets instead of angular ones. These timestamps are inactive in the sense that they do not trigger an entry to show up in the agenda.

* Gillian comes late for the fifth time [2006-11-01 Wed]

[<][>][<<][Up][>>][Top][Contents][Index][?]

8.2 Creating timestamps

For Org mode to recognize timestamps, they need to be in the specific format. All commands listed below produce timestamps in the correct format.

C-c .
Prompt for a date and insert a corresponding timestamp. When the cursor is at an existing timestamp in the buffer, the command is used to modify this timestamp instead of inserting a new one. When this command is used twice in succession, a time range is inserted. With a prefix, also add the current time.
C-c !
Like C-c ., but insert an inactive timestamp that will not cause an agenda entry.
S-<left>/<right>
Change date at cursor by one day.
S-<up>/<down>
Change the item under the cursor in a timestamp. The cursor can be on a year, month, day, hour or minute. When the timestamp contains a time range like ‘15:30-16:30’, modifying the first time will also shift the second, shifting the time block with constant length. To change the length, modify the second time.

When Org mode prompts for a date/time, it will accept any string containing some date and/or time information, and intelligently interpret the string, deriving defaults for unspecified information from the current date and time. You can also select a date in the pop-up calendar. See the manual for more information on how exactly the date/time prompt works.


[<][>][<<][Up][>>][Top][Contents][Index][?]

8.3 Deadlines and scheduling

A timestamp may be preceded by special keywords to facilitate planning:

DEADLINE Meaning: the task (most likely a TODO item, though not necessarily) is supposed to be finished on that date.

C-c C-d
Insert ‘DEADLINE’ keyword along with a stamp, in the line following the headline.

On the deadline date, the task will be listed in the agenda. In addition, the agenda for today will carry a warning about the approaching or missed deadline, starting org-deadline-warning-days before the due date, and continuing until the entry is marked DONE. An example:

*** TODO write article about the Earth for the Guide
    The editor in charge is [[bbdb:Ford Prefect]]
    DEADLINE: <2004-02-29 Sun>

SCHEDULED Meaning: you are planning to start working on that task on the given date(8).

C-c C-s
Insert ‘SCHEDULED’ keyword along with a stamp, in the line following the headline.

The headline will be listed under the given date(9). In addition, a reminder that the scheduled date has passed will be present in the compilation for today, until the entry is marked DONE. I.e. the task will automatically be forwarded until completed.

*** TODO Call Trillian for a date on New Years Eve.
    SCHEDULED: <2004-12-25 Sat>

Some tasks need to be repeated again and again. Org mode helps to organize such tasks using a so-called repeater in a DEADLINE, SCHEDULED, or plain timestamp. In the following example

** TODO Pay the rent
   DEADLINE: <2005-10-01 Sat +1m>

the +1m is a repeater; the intended interpretation is that the task has a deadline on <2005-10-01> and repeats itself every (one) month starting from that time.


[<][>][<<][Up][>>][Top][Contents][Index][?]

8.4 Clocking work time

Org mode allows you to clock the time you spend on specific tasks in a project.

C-c C-x C-i
Start the clock on the current item (clock-in). This inserts the CLOCK keyword together with a timestamp. When called with a C-u prefix argument, select the task from a list of recently clocked tasks.
C-c C-x C-o
Stop the clock (clock-out). This inserts another timestamp at the same location where the clock was last started. It also directly computes the resulting time in inserts it after the time range as ‘=> HH:MM’.
C-c C-x C-e
Update the effort estimate for the current clock task.
C-c C-x C-x
Cancel the current clock. This is useful if a clock was started by mistake, or if you ended up working on something else.
C-c C-x C-j
Jump to the entry that contains the currently running clock. With a C-u prefix arg, select the target task from a list of recently clocked tasks.
C-c C-x C-r
Insert a dynamic block containing a clock report as an Org-mode table into the current file. When the cursor is at an existing clock table, just update it.
#+BEGIN: clocktable :maxlevel 2 :emphasize nil :scope file
#+END: clocktable
    

For details about how to customize this view, see the manual.

C-c C-c
Update dynamic block at point. The cursor needs to be in the #+BEGIN line of the dynamic block.

The l key may be used in the timeline (see section Timeline for a single file) and in the agenda (see section The weekly/daily agenda) to show which tasks have been worked on or closed during a day.

Further reading Chapter 8 of the manual Charles Cave’s Date and Time tutorial Bernt Hansen’s clocking workflow


[<][>][<<][Up][>>][Top][Contents][Index][?]

9. Capture - Refile - Archive

An important part of any organization system is the ability to quickly capture new ideas and tasks, and to associate reference material with them. Org defines a capture process to create tasks. It stores files related to a task (attachments) in a special directory. Once in the system, tasks and projects need to be moved around. Moving completed project trees to an archive file keeps the system compact and fast.

9.1 Capture
9.2 Refiling notesMoving a tree from one place to another
9.3 ArchivingWhat to do with finished projects

[<][>][<<][Up][>>][Top][Contents][Index][?]

9.1 Capture

Org’s method for capturing new items is heavily inspired by John Wiegley excellent remember package. It lets you store quick notes with little interruption of your work flow. Org lets you define templates for new entries and associate them with different targets for storing notes.

Setting up a capture locationWhere notes will be stored
Using captureCommands to invoke and terminate capture
Capture templatesDefine the outline of different note types

[<][>][<<][Up][>>][Top][Contents][Index][?]

Setting up a capture location

The following customization sets a default target(10) file for notes, and defines a global key(11) for capturing new stuff.

(setq org-default-notes-file (concat org-directory "/notes.org"))
(define-key global-map "\C-cc" 'org-capture)

[<][>][<<][Up][>>][Top][Contents][Index][?]

Using capture

C-c c
Start a capture process. You will be placed into a narrowed indirect buffer to edit the item.
C-c C-c
Once you are done entering information into the capture buffer, C-c C-c will return you to the window configuration before the capture process, so that you can resume your work without further distraction.
C-c C-w
Finalize by moving the entry to a refile location (see section Refiling notes).
C-c C-k
Abort the capture process and return to the previous state.

[<][>][<<][Up][>>][Top][Contents][Index][?]

Capture templates

You can use templates to generate different types of capture notes, and to store them in different places. For example, if you would like to store new tasks under a heading ‘Tasks’ in file ‘=TODO.org=’, and journal entries in a date tree in ‘=journal.org=’ you could use:

(setq org-capture-templates
 '(("t" "Todo" entry (file+headline "~/org/gtd.org" "Tasks")
        "* TODO %?\n  %i\n  %a")
   ("j" "Journal" entry (file+datetree "~/org/journal.org")
        "* %?\nEntered on %U\n  %i\n  %a")))

In these entries, the first string is the key to reach the template, the second is a short description. Then follows the type of the entry and a definition of the target location for storing the note. Finally, the template itself, a string with %-escapes to fill in information based on time and context.

When you call M-x org-capture, Org will prompt for a key to select the template (if you have more than one template) and then prepare the buffer like

* TODO
  [[file:link to where you were when initiating capture]]

During expansion of the template, special %-escapes(12) allow dynamic insertion of content. Here is a small selection of the possibilities, consult the manual for more.

%a          annotation, normally the link created with org-store-link
%i          initial content, the region when remember is called with C-u.
%t          timestamp, date only
%T          timestamp with date and time
%u, %U      like the above, but inactive timestamps

[<][>][<<][Up][>>][Top][Contents][Index][?]

9.2 Refiling notes

When reviewing the captured data, you may want to refile some of the entries into a different list, for example into a project. Cutting, finding the right location, and then pasting the note is cumbersome. To simplify this process, you can use the following special command:

C-c C-w
Refile the entry or region at point. This command offers possible locations for refiling the entry and lets you select one with completion. The item (or all items in the region) is filed below the target heading as a subitem. By default, all level 1 headlines in the current buffer are considered to be targets, but you can have more complex definitions across a number of files. See the variable org-refile-targets for details.
C-u C-c C-w
Use the refile interface to jump to a heading.
C-u C-u C-c C-w
Jump to the location where org-refile last moved a tree to.

[<][>][<<][Up][>>][Top][Contents][Index][?]

9.3 Archiving

When a project represented by a (sub)tree is finished, you may want to move the tree out of the way and to stop it from contributing to the agenda. Archiving is important to keep your working files compact and global searches like the construction of agenda views fast. The most common archiving action is to move a project tree to another file, the archive file.

C-c C-x C-a
Archive the current entry using the command specified in the variable org-archive-default-command.
C-c C-x C-s or short C-c $
Archive the subtree starting at the cursor position to the location given by org-archive-location.

The default archive location is a file in the same directory as the current file, with the name derived by appending ‘=_archive=’ to the current file name. For information and examples on how to change this, see the documentation string of the variable org-archive-location. There is also an in-buffer option for setting this variable, for example

#+ARCHIVE: %s_done::

Further reading Chapter 9 of the manual Charles Cave’s remember tutorial

Sebastian Rose’s tutorial for capturing from a web browser


[<][>][<<][Up][>>][Top][Contents][Index][?]

10. Agenda Views

Due to the way Org works, TODO items, time-stamped items, and tagged headlines can be scattered throughout a file or even a number of files. To get an overview of open action items, or of events that are important for a particular date, this information must be collected, sorted and displayed in an organized way. There are several different views, see below.

The extracted information is displayed in a special agenda buffer. This buffer is read-only, but provides commands to visit the corresponding locations in the original Org files, and even to edit these files remotely. Remote editing from the agenda buffer means, for example, that you can change the dates of deadlines and appointments from the agenda buffer. The commands available in the Agenda buffer are listed in Commands in the agenda buffer.

10.1 Agenda filesFiles being searched for agenda information
10.2 The agenda dispatcherKeyboard access to agenda views
10.3 The built-in agenda viewsWhat is available out of the box?
10.4 Commands in the agenda bufferRemote editing of Org trees
10.5 Custom agenda viewsDefining special searches and views

[<][>][<<][Up][>>][Top][Contents][Index][?]

10.1 Agenda files

The information to be shown is normally collected from all agenda files, the files listed in the variable org-agenda-files.

C-c [
Add current file to the list of agenda files. The file is added to the front of the list. If it was already in the list, it is moved to the front. With a prefix argument, file is added/moved to the end.
C-c ]
Remove current file from the list of agenda files.
C-,
Cycle through agenda file list, visiting one file after the other.

[<][>][<<][Up][>>][Top][Contents][Index][?]

10.2 The agenda dispatcher

The views are created through a dispatcher, which should be bound to a global key—for example C-c a (see section Installation). After pressing C-c a, an additional letter is required to execute a command:

a
The calendar-like agenda (see section The weekly/daily agenda).
t / T
A list of all TODO items (see section The global TODO list).
m / M
A list of headlines matching a TAGS expression (see section Matching tags and properties).
L
The timeline view for the current buffer (see section Timeline for a single file).
s
A list of entries selected by a boolean expression of keywords and/or regular expressions that must or must not occur in the entry.

[<][>][<<][Up][>>][Top][Contents][Index][?]

10.3 The built-in agenda views

10.3.1 The weekly/daily agendaThe calendar page with current tasks
10.3.2 The global TODO listAll unfinished action items
10.3.3 Matching tags and propertiesStructured information with fine-tuned search
10.3.4 Timeline for a single fileTime-sorted view for single file
10.3.5 Search viewFind entries by searching for text

[<][>][<<][Up][>>][Top][Contents][Index][?]

10.3.1 The weekly/daily agenda

The purpose of the weekly/daily agenda is to act like a page of a paper agenda, showing all the tasks for the current week or day.

C-c a a
Compile an agenda for the current week from a list of Org files. The agenda shows the entries for each day.

Emacs contains the calendar and diary by Edward M. Reingold. Org-mode understands the syntax of the diary and allows you to use diary sexp entries directly in Org files:

* Birthdays and similar stuff
#+CATEGORY: Holiday
%%(org-calendar-holiday)   ; special function for holiday names
#+CATEGORY: Ann
%%(diary-anniversary  5 14 1956)(13) Arthur Dent is %d years old
%%(diary-anniversary 10  2 1869) Mahatma Gandhi would be %d years old

Org can interact with Emacs appointments notification facility. To add all the appointments of your agenda files, use the command org-agenda-to-appt. See the docstring for details.


[<][>][<<][Up][>>][Top][Contents][Index][?]

10.3.2 The global TODO list

The global TODO list contains all unfinished TODO items formatted and collected into a single place. Remote editing of TODO items lets you can change the state of a TODO entry with a single key press. The commands available in the TODO list are described in Commands in the agenda buffer.

C-c a t
Show the global TODO list. This collects the TODO items from all agenda files (see section Agenda Views) into a single buffer.
C-c a T
Like the above, but allows selection of a specific TODO keyword.

[<][>][<<][Up][>>][Top][Contents][Index][?]

10.3.3 Matching tags and properties

If headlines in the agenda files are marked with tags (see section Tags), or have properties (see section Properties), you can select headlines based on this metadata and collect them into an agenda buffer. The match syntax described here also applies when creating sparse trees with C-c / m. The commands available in the tags list are described in Commands in the agenda buffer.

C-c a m
Produce a list of all headlines that match a given set of tags. The command prompts for a selection criterion, which is a boolean logic expression with tags, like ‘+work+urgent-withboss’ or ‘work|home’ (see section Tags). If you often need a specific search, define a custom command for it (see section The agenda dispatcher).
C-c a M
Like C-c a m, but only select headlines that are also TODO items.

Match syntax

A search string can use Boolean operators ‘&’ for AND and ‘|’ for OR. ‘&’ binds more strongly than ‘|’. Parentheses are currently not implemented. Each element in the search is either a tag, a regular expression matching tags, or an expression like PROPERTY OPERATOR VALUE with a comparison operator, accessing a property value. Each element may be preceded by ‘-’, to select against it, and ‘+’ is syntactic sugar for positive selection. The AND operator ‘&’ is optional when ‘+’ or ‘-’ is present. Here are some examples, using only tags.

‘+work-boss’
Select headlines tagged ‘:work:’, but discard those also tagged ‘:boss:’.
‘work|laptop’
Selects lines tagged ‘:work:’ or ‘:laptop:’.
‘work|laptop+night’
Like before, but require the ‘:laptop:’ lines to be tagged also ‘:night:’.

You may also test for properties at the same time as matching tags, see the manual for more information.


[<][>][<<][Up][>>][Top][Contents][Index][?]

10.3.4 Timeline for a single file

The timeline summarizes all time-stamped items from a single Org mode file in a time-sorted view. The main purpose of this command is to give an overview over events in a project.

C-c a L
Show a time-sorted view of the Org file, with all time-stamped items. When called with a C-u prefix, all unfinished TODO entries (scheduled or not) are also listed under the current date.

[<][>][<<][Up][>>][Top][Contents][Index][?]

10.3.5 Search view

This agenda view is a general text search facility for Org mode entries. It is particularly useful to find notes.

C-c a s
This is a special search that lets you select entries by matching a substring or specific words using a boolean logic.

For example, the search string ‘computer equipment’ will find entries that contain ‘computer equipment’ as a substring. Search view can also search for specific keywords in the entry, using Boolean logic. The search string ‘+computer +wifi -ethernet -{8.11[bg]}’ will search for note entries that contain the keywords computer and wifi, but not the keyword ethernet, and which are also not matched by the regular expression 8\.11[bg], meaning to exclude both 8.11b and 8.11g.

Note that in addition to the agenda files, this command will also search the files listed in org-agenda-text-search-extra-files.


[<][>][<<][Up][>>][Top][Contents][Index][?]

10.4 Commands in the agenda buffer

Entries in the agenda buffer are linked back to the Org file or diary file where they originate. Commands are provided to show and jump to the original entry location, and to edit the Org files “remotely” from the agenda buffer. This is just a selection of the many commands, explore the Agenda menu and the manual for a complete list.

  • Motion n :: Next line (same as <up> and C-p).
p
Previous line (same as <down> and C-n).
  • View/Go to Org file mouse-3 <SPC> :: Display the original location of the item in another window. With prefix arg, make sure that the entire entry is made visible in the outline, not only the heading.
<TAB>
Go to the original location of the item in another window. Under Emacs 22, mouse-1 will also works for this.
<RET>
Go to the original location of the item and delete other windows.
  • Change display o :: Delete other windows.
d / w
Switch to day/week view.
f and b
Go forward/backward in time to display the following org-agenda-current-span days. For example, if the display covers a week, switch to the following/previous week.
.
Go to today.
j
Prompt for a date and go there.
v l or short l
Toggle Logbook mode. In Logbook mode, entries that were marked DONE while logging was on (variable org-log-done) are shown in the agenda, as are entries that have been clocked on that day. When called with a C-u prefix, show all possible logbook entries, including state changes.
r or g
Recreate the agenda buffer, to reflect the changes.
s
Save all Org buffers in the current Emacs session, and also the locations of IDs.
  • Secondary filtering and query editing / :: Filter the current agenda view with respect to a tag. You are prompted for a letter to select a tag. Press ‘-’ first to select against the tag.
\
Narrow the current agenda filter by an additional condition.
  • Remote editing (see the manual for many more commands) 0-9 :: Digit argument.
t
Change the TODO state of the item, in the agenda and in the org file.
C-k
Delete the current agenda item along with the entire subtree belonging to it in the original Org file.
C-c C-w
Refile the entry at point.
C-c C-x C-a or short a
Archive the subtree corresponding to the entry at point using the default archiving command set in org-archive-default-command.
C-c C-x C-s or short $
Archive the subtree corresponding to the current headline.
C-c C-s
Schedule this item, with prefix arg remove the scheduling timestamp
C-c C-d
Set a deadline for this item, with prefix arg remove the deadline.
S-<right> and S-<left>
Change the timestamp associated with the current line by one day.
I
Start the clock on the current item.
O / X
Stop/cancel the previously started clock.
J
Jump to the running clock in another window.

[<][>][<<][Up][>>][Top][Contents][Index][?]

10.5 Custom agenda views

The main application of custom searches is the definition of keyboard shortcuts for frequently used searches, either creating an agenda buffer, or a sparse tree (the latter covering of course only the current buffer). Custom commands are configured in the variable org-agenda-custom-commands. You can customize this variable, for example by pressing C-c a C. You can also directly set it with Emacs Lisp in ‘=.emacs=’. The following example contains all valid search types:

(setq org-agenda-custom-commands
      '(("w" todo "WAITING")
        ("u" tags "+boss-urgent")
        ("v" tags-todo "+boss-urgent")))

The initial string in each entry defines the keys you have to press after the dispatcher command C-c a in order to access the command. Usually this will be just a single character. The second parameter is the search type, followed by the string or regular expression to be used for the matching. The example above will therefore define:

C-c a w
as a global search for TODO entries with ‘WAITING’ as the TODO keyword
C-c a u
as a global tags search for headlines marked ‘:boss:’ but not ‘:urgent:’
C-c a v
as the same search as C-c a u, but limiting the search to headlines that are also TODO items

Further reading Chapter 10 of the manual

Mat Lundin’s tutorial about custom agenda commands

John Wiegley’s setup


[<][>][<<][Up][>>][Top][Contents][Index][?]

11. Markup for rich export

When exporting Org-mode documents, the exporter tries to reflect the structure of the document as accurately as possible in the backend. Since export targets like HTML, LaTeX, or DocBook allow much richer formatting, Org mode has rules on how to prepare text for rich export. This section summarizes the markup rules used in an Org-mode buffer.

11.1 Structural markup elementsThe basic structure as seen by the exporter
11.2 Images and TablesTables and Images will be included
11.3 Literal examplesSource code examples with special formatting
11.4 Include filesInclude additional files into a document
11.5 Embedded LaTeXLaTeX can be freely used inside Org documents

[<][>][<<][Up][>>][Top][Contents][Index][?]

11.1 Structural markup elements

• Document titleWhere the title is taken from
• Headings and sectionsThe document structure as seen by the exporter
• Table of contentsThe if and where of the table of contents
• Paragraphs
• Emphasis and monospaceBold, italic, etc.
• Comment linesWhat will not be exported

Document title

The title of the exported document is taken from the special line

#+TITLE: This is the title of the document

Headings and sections

The outline structure of the document as described in Document Structure, forms the basis for defining sections of the exported document. However, since the outline structure is also used for (for example) lists of tasks, only the first three outline levels will be used as headings. Deeper levels will become itemized lists. You can change the location of this switch globally by setting the variable org-export-headline-levels, or on a per-file basis with a line

#+OPTIONS: H:4

Table of contents

The table of contents is normally inserted directly before the first headline of the file.

#+OPTIONS: toc:2          (only to two levels in TOC)
#+OPTIONS: toc:nil        (no TOC at all)

Paragraphs, line breaks, and quoting

Paragraphs are separated by at least one empty line. If you need to enforce a line break within a paragraph, use ‘\’ at the end of a line.

To keep the line breaks in a region, but otherwise use normal formatting, you can use this construct, which can also be used to format poetry.

Great clouds overhead
Tiny black birds rise and fall
Snow covers Emacs

    -- AlexSchroeder

When quoting a passage from another document, it is customary to format this as a paragraph that is indented on both the left and the right margin. You can include quotations in Org-mode documents like this:

Everything should be made as simple as possible,
but not any simpler -- Albert Einstein

If you would like to center some text, do it like this:

Everything should be made as simple as possible, \\
but not any simpler

Emphasis and monospace

You can make words **bold**, //italic//, \_underlined\_, ==code== and ~verbatim~, and, if you must, ‘+strike-through+’. Text in the code and verbatim string is not processed for Org-mode specific syntax, it is exported verbatim. To insert a horizontal rules, use a line consisting of only dashes, and at least 5 of them.

Comment lines

Lines starting with ‘#’ in column zero are treated as comments and will never be exported. If you want an indented line to be treated as a comment, start it with ‘#+ ’. Also entire subtrees starting with the word ‘COMMENT’ will never be exported. Finally, regions surrounded by ‘#+BEGIN\_COMMENT’ … ‘#+END\_COMMENT’ will not be exported.

C-c ;
Toggle the COMMENT keyword at the beginning of an entry.

[<][>][<<][Up][>>][Top][Contents][Index][?]

11.2 Images and Tables

For Org mode tables, the lines before the first horizontal separator line will become table header lines. You can use the following lines somewhere before the table to assign a caption and a label for cross references, and in the text you can refer to the object with \ref{tab:basic-data}:

#+CAPTION: This is the caption for the next table (or link)
#+LABEL:   tbl:basic-data
   | ... | ...|
   |-----|----|

Some backends (HTML, LaTeX, and DocBook) allow you to directly include images into the exported document. Org does this, if a link to an image files does not have a description part, for example [[./img/a.jpg]]. If you wish to define a caption for the image and maybe a label for internal cross references, you sure that the link is on a line by itself precede it with:

#+CAPTION: This is the caption for the next figure link (or table)
#+LABEL:   fig:SED-HR4049
[[./img/a.jpg]]

You may also define additional attributes for the figure. As this is backend-specific, see the sections about the individual backends for more information.


[<][>][<<][Up][>>][Top][Contents][Index][?]

11.3 Literal examples

You can include literal examples that should not be subjected to markup. Such examples will be typeset in monospace, so this is well suited for source code and similar examples.

Some example from a text file.

For simplicity when using small examples, you can also start the example lines with a colon followed by a space. There may also be additional whitespace before the colon:

Here is an example
   : Some example from a text file.

For source code from a programming language, or any other text that can be marked up by font-lock in Emacs, you can ask for it to look like the fontified Emacs buffer

(defun org-xor (a b)
   "Exclusive or."
   (if a (not b) b))

To edit the example in a special buffer supporting this language, use C-c ’ to both enter and leave the editing buffer.


[<][>][<<][Up][>>][Top][Contents][Index][?]

11.4 Include files

During export, you can include the content of another file. For example, to include your ‘=.emacs=’ file, you could use:

#+INCLUDE: "~/.emacs" src emacs-lisp

The optional second and third parameter are the markup (e.g. ‘quote’, ‘example’, or ‘src’), and, if the markup is ‘src’, the language for formatting the contents. The markup is optional, if it is not given, the text will be assumed to be in Org mode format and will be processed normally. C-c ’ will visit the included file.


[<][>][<<][Up][>>][Top][Contents][Index][?]

11.5 Embedded LaTeX

For scientific notes which need to be able to contain mathematical symbols and the occasional formula, Org-mode supports embedding LaTeX code into its files. You can directly use TeX-like macros for special symbols, enter formulas and entire LaTeX environments.

Angles are written as Greek letters \alpha, \beta and \gamma.  The mass if
the sun is M_sun = 1.989 x 10^30 kg.  The radius of the sun is R_{sun} =
6.96 x 10^8 m.  If $a^2=b$ and $b=2$, then the solution must be either
$a=+\sqrt{2}$ or $a=-\sqrt{2}$.

\begin{equation}
x=\sqrt{b}
\end{equation}

With special setup, LaTeX snippets will be included as images when exporting to HTML.

Further reading Chapter 11 of the manual


[<][>][<<][Up][>>][Top][Contents][Index][?]

12. Exporting

Org-mode documents can be exported into a variety of other formats: ASCII export for inclusion into emails, HTML to publish on the web, LaTeX/PDF for beautiful printed documents and DocBook to enter the world of many other formats using DocBook tools. There is also export to iCalendar format so that planning information can be incorporated into desktop calendars.

12.1 Export optionsPer-file export settings
12.2 The export dispatcherHow to access exporter commands
12.3 ASCII/Latin-1/UTF-8 exportExporting to flat files with encoding
12.4 HTML exportExporting to HTML
12.5 LaTeX and PDF exportExporting to LaTeX, and processing to PDF
12.6 DocBook exportExporting to DocBook
12.7 iCalendar export

[<][>][<<][Up][>>][Top][Contents][Index][?]

12.1 Export options

The exporter recognizes special lines in the buffer which provide additional information. These lines may be put anywhere in the file. The whole set of lines can be inserted into the buffer with C-c C-e t.

C-c C-e t
Insert template with export options, see example below.
#+TITLE:       the title to be shown (default is the buffer name)
#+AUTHOR:      the author (default taken from user-full-name)
#+DATE:        a date, fixed, of a format string for format-time-string
#+EMAIL:       his/her email address (default from user-mail-address)
#+DESCRIPTION: the page description, e.g. for the XHTML meta tag
#+KEYWORDS:    the page keywords, e.g. for the XHTML meta tag
#+LANGUAGE:    language for HTML, e.g. ‘en’ (org-export-default-language)
#+TEXT:        Some descriptive text to be inserted at the beginning.
#+TEXT:        Several lines may be given.
#+OPTIONS:     H:2 num:t toc:t \n:nil @:t ::t |:t ^:t f:t TeX:t ...
#+LINK_UP:     the ``up'' link of an exported page
#+LINK_HOME:   the ``home'' link of an exported page
#+LATEX_HEADER: extra line(s) for the LaTeX header, like \usepackage{xyz}

[<][>][<<][Up][>>][Top][Contents][Index][?]

12.2 The export dispatcher

All export commands can be reached using the export dispatcher, which is a prefix key that prompts for an additional key specifying the command. Normally the entire file is exported, but if there is an active region that contains one outline tree, the first heading is used as document title and the subtrees are exported.

C-c C-e
Dispatcher for export and publishing commands.

[<][>][<<][Up][>>][Top][Contents][Index][?]

12.3 ASCII/Latin-1/UTF-8 export

ASCII export produces a simple and very readable version of an Org-mode file, containing only plain ASCII. Latin-1 and UTF-8 export augment the file with special characters and symbols available in these encodings.

C-c C-e a
Export as ASCII file.
C-c C-e n and C-c C-e N
Like the above commands, but use Latin-1 encoding.
C-c C-e u and C-c C-e U
Like the above commands, but use UTF-8 encoding.

[<][>][<<][Up][>>][Top][Contents][Index][?]

12.4 HTML export

C-c C-e h
Export as HTML file ‘=myfile.html=’.
C-c C-e b
Export as HTML file and immediately open it with a browser.

To insert HTML that should be copied verbatim to the exported file use either

#+HTML: Literal HTML code for export

or

All lines between these markers are exported literally

[<][>][<<][Up][>>][Top][Contents][Index][?]

12.5 LaTeX and PDF export

C-c C-e l
Export as LaTeX file ‘=myfile.tex=’.
C-c C-e p
Export as LaTeX and then process to PDF.
C-c C-e d
Export as LaTeX and then process to PDF, then open the resulting PDF file.

By default, the LaTeX output uses the class article. You can change this by adding an option like #+LaTeX_CLASS: myclass in your file. The class must be listed in org-export-latex-classes.

Embedded LaTeX as described in Embedded LaTeX, will be correctly inserted into the LaTeX file. Similarly to the HTML exporter, you can use #+LaTeX: and #+BEGIN_LaTeX ... #+END_LaTeX construct to add verbatim LaTeX code.


[<][>][<<][Up][>>][Top][Contents][Index][?]

12.6 DocBook export

C-c C-e D
Export as DocBook file.

Similarly to the HTML exporter, you can use #+DocBook: and #+BEGIN_DocBook ... #+END_DocBook construct to add verbatim LaTeX code.


[<][>][<<][Up][>>][Top][Contents][Index][?]

12.7 iCalendar export

C-c C-e i
Create iCalendar entries for the current file in a ‘=.ics=’ file.
C-c C-e c
Create a single large iCalendar file from all files in org-agenda-files and write it to the file given by org-combined-agenda-icalendar-file.

Further reading Chapter 12 of the manual

Sebastian Rose’s image handling tutorial Thomas Dye’s LaTeX export tutorial Eric Fraga’s BEAMER presentation tutorial


[<][>][<<][Up][>>][Top][Contents][Index][?]

13. Publishing

Org includes a publishing management system that allows you to configure automatic HTML conversion of projects composed of interlinked org files. You can also configure Org to automatically upload your exported HTML pages and related attachments, such as images and source code files, to a web server. For detailed instructions about setup, see the manual.

Here is an example:

(setq org-publish-project-alist
      '(("org"
         :base-directory "~/org/"
         :publishing-directory "~/public_html"
         :section-numbers nil
         :table-of-contents nil
         :style "<link rel=\"stylesheet\"
                href=\"../other/mystyle.css\"
                type=\"text/css\"/>")))
C-c C-e C
Prompt for a specific project and publish all files that belong to it.
C-c C-e P
Publish the project containing the current file.
C-c C-e F
Publish only the current file.
C-c C-e E
Publish every project.

Org uses timestamps to track when a file has changed. The above functions normally only publish changed files. You can override this and force publishing of all files by giving a prefix argument to any of the commands above.

Further reading Chapter 13 of the manual

Sebastian Rose’s publishing tutorial Ian Barton’s Jekyll/blogging setup


[<][>][<<][Up][>>][Top][Contents][Index][?]

14. Working with source code

Org-mode provides a number of features for working with source code, including editing of code blocks in their native major-mode, evaluation of code blocks, tangling of code blocks, and exporting code blocks and their results in several formats.

Structure of Code Blocks

The structure of code blocks is as follows:

#+srcname: <name>
  <body>

Where <name> is a string used to name the code block, <language> specifies the language of the code block (e.g. emacs-lisp, shell, R, python, etc…), <switches> can be used to control export of the code block, <header arguments> can be used to control many aspects of code block behavior as demonstrated below, and <body> contains the actual source code.

Editing source code

Use C-c ’ to edit the current code block. This brings up a language major-mode edit buffer containing the body of the code block. Saving this buffer will write the new contents back to the Org buffer. Use C-c ’ again to exit the edit buffer.

Evaluating code blocks

Use C-c C-c to evaluate the current code block and insert its results in the Org-mode buffer. By default, evaluation is only turned on for emacs-lisp code blocks, however support exists for evaluating blocks in many languages. For a complete list of supported languages see the manual. The following shows a code block and its results.

  (+ 1 2 3 4)

#+results:
: 10

Extracting source code

Use C-c C-v t to create pure source code files by extracting code from source blocks in the current buffer. This is referred to as “tangling”—a term adopted from the literate programming community. During “tangling” of code blocks their bodies are expanded using org-babel-expand-src-block which can expand both variable and “noweb” style references. In order to tangle a code block it must have a :tangle header argument, see the manual for details.

Library of Babel

Use C-c C-v l to load the code blocks from an Org-mode files into the “Library of Babel”, these blocks can then be evaluated from any Org-mode buffer. A collection of generally useful code blocks is distributed with Org-mode in contrib/library-of-babel.org.

Header Arguments

Many aspects of the evaluation and export of code blocks are controlled through header arguments. These can be specified globally, at the file level, at the outline subtree level, and at the individual code block level. The following describes some of the header arguments.

:var
The :var header argument is used to pass arguments to code blocks. The values passed to arguments can be literal values, values from org-mode tables and literal example blocks, or the results of other named code blocks.
:results
The :results header argument controls the collection, type, and handling of code block results. Values of output or value (the default) specify how results are collected from a code block’s evaluation. Values of vector, scalar file raw html latex and code specify the type of the results of the code block which dictates how they will be incorporated into the Org-mode buffer. Values of silent, replace, prepend, and append specify handling of code block results, specifically if and how the results should be inserted into the Org-mode buffer.
:session
A header argument of :session will cause the code block to be evaluated in a persistent interactive inferior process in Emacs. This allows for persisting state between code block evaluations, and for manual inspection of the results of evaluation.
:exports
Any combination of the code or the results of a block can be retained on export, this is specified by setting the :results header argument to code results none or both.
:tangle
A header argument of :tangle yes will cause a code block’s contents to be tangled to a file named after the filename of the Org-mode buffer. An alternate file name can be specified with :tangle filename.
:cache
A header argument of :cache yes will cause associate a hash of the expanded code block with the results, ensuring that code blocks are only re-run when their inputs have changed.
:noweb
A header argument of :noweb yes will expand “noweb” style references on evaluation and tangling.
:file
Code blocks which output results to files (e.g. graphs, diagrams and figures) can accept a :file filename header argument in which case the results are saved to the named file, and a link to the file is inserted into the Org-mode buffer.

Further reading Chapter 11.3 of the manual The Babel site on Worg


[<][>][<<][Up][ >> ][Top][Contents][Index][?]

15. Miscellaneous

15.1 CompletionM-TAB knows what you need
15.2 A cleaner outline viewGetting rid of leading stars in the outline
15.3 MobileOrgOrg-mode on the iPhone

[<][>][<<][Up][ >> ][Top][Contents][Index][?]

15.1 Completion

Org supports in-buffer completion with M-<TAB>. This type of completion does not make use of the minibuffer. You simply type a few letters into the buffer and use the key to complete text right there. For example, this command will complete TeX symbols after ‘\’, TODO keywords at the beginning of a headline, and tags after ‘:’ in a headline.


[<][>][<<][Up][ >> ][Top][Contents][Index][?]

15.2 A cleaner outline view

Some people find it noisy and distracting that the Org headlines start with a potentially large number of stars, and that text below the headlines is not indented. While this is no problem when writing a book-like document where the outline headings are really section headings, in a more list-oriented outline, indented structure is a lot cleaner:

* Top level headline             |    * Top level headline
** Second level                  |      * Second level
*** 3rd level                    |        * 3rd level
some text                        |          some text
*** 3rd level                    |        * 3rd level
more text                        |          more text
* Another top level headline     |    * Another top level headline

If you are using at least Emacs 23.1.50.3 and version 6.29 of Org, this kind of view can be achieved dynamically at display time using org-indent-mode, which will prepend intangible space to each line. You can turn on org-indent-mode for all files by customizing the variable org-startup-indented, or you can turn it on for individual files using

#+STARTUP: indent

If you want a similar effect in earlier version of Emacs and/or Org, or if you want the indentation to be hard space characters so that the plain text file looks as similar as possible to the Emacs display, Org supports you by helping to indent (with <TAB>) text below each headline, by hiding leading stars, and by only using levels 1, 3, etc to get two characters indentation for each level. To get this support in a file, use

#+STARTUP: hidestars odd

[<][ > ][<<][Up][ >> ][Top][Contents][Index][?]

15.3 MobileOrg

MobileOrg is an application originally developed for the iPhone/iPod Touch series of devices, developed by Richard Moreland. There is also an independent implementation for Android devices, by Matt Jones. For details, see the Org-mode manual.

Further reading Chapter 15 of the manual Appendix B of the manual Key reference card


[Top][Contents][Index][?]

Footnotes

See the variable org-special-ctrl-a/e to configure special behavior of C-a and C-e in headlines.

If you do not want the line to be split, customize the variable org-M-RET-may-split-line.

See also the variables org-show-hierarchy-above, org-show-following-heading, org-show-siblings, and org-show-entry-below for detailed control on how much context is shown around each match.

Of course, you can make a document that contains only long lists of TODO items, but this is not required.

The corresponding in-buffer setting is: #+STARTUP: logdone

The corresponding in-buffer setting is: #+STARTUP: lognotedone

As with all these in-buffer settings, pressing C-c C-c activates any changes in the line.

This is quite different from what is normally understood by scheduling a meeting, which is done in Org-mode by just inserting a time stamp without keyword.

It will still be listed on that date after it has been marked DONE. If you don’t like this, set the variable org-agenda-skip-scheduled-if-done.

Using capture templates, you can define more fine-grained capture locations, see Capture templates.

Please select your own key, C-c c is only a suggestion.

If you need one of these sequences literally, escape the % with a backslash.

Note that the order of the arguments (month, day, year) depends on the setting of calendar-date-style.


[Top][Contents][Index][?]

Short Table of Contents


[Top][Contents][Index][?]

About This Document

This document was generated by Stefan Otte on August 4, 2011 using /texi2html 1.82/.

The buttons in the navigation panels have the following meaning:

ButtonNameGo toFrom 1.2.3 go to
[ < ]BackPrevious section in reading order1.2.2
[ > ]ForwardNext section in reading order1.2.4
[ << ]FastBackBeginning of this chapter or previous chapter1
[ Up ]UpUp section1.2
[ >> ]FastForwardNext chapter2
[Top]TopCover (top) of document
[Contents]ContentsTable of contents
[Index]IndexIndex
[ ? ]AboutAbout (help)

where the Example assumes that the current position is at Subsubsection One-Two-Three of a document of the following structure:

  • 1. Section One
    • 1.1 Subsection One-One
    • 1.2 Subsection One-Two
      • 1.2.1 Subsubsection One-Two-One
      • 1.2.2 Subsubsection One-Two-Two
      • 1.2.3 Subsubsection One-Two-Three <== Current Position
      • 1.2.4 Subsubsection One-Two-Four
    • 1.3 Subsection One-Three
    • 1.4 Subsection One-Four

This document was generated by Stefan Otte on August 4, 2011 using /texi2html 1.82/.