Tutorial by Examples

Org provides a full markup language which helps structuring the document, and is reflected as accurately as possible when exporting to other formats (like HTML or LaTeX). Structure Document title #+TITLE: This is the title of the document Sectioning * First level ** Second level Lists Or...
To cycle the level of outline shown: Tab Cycle outline level for one heading Shift-Tab Cycle outline level for the whole document To cycle through TODO states: Shift-Right Arrow Shift-Left Arrow To increase or decrease hierarchical level for a heading Meta-Right Arrow Make lower le...
To add a code block, surround it with #+BEGIN_SRC language and #+END_SRC. language should correspond to the major mode for the language in question, e.g. the major mode for Emacs Lisp is emacs-lisp-mode, so write #+BEGIN_SRC emacs-lisp. #+BEGIN_SRC emacs-lisp (defun hello-world () (interactive)...
| Name | Phone | Age | |-------+-------+-----| | Peter | 1234 | 17 | | Anna | 4321 | 25 | To add a Table in org-mode, simply surround your columns with a bar (|) | column1 | column2 | this column is wider | When you press Return from inside a column, org-mode will automatically creat...

Page 1 of 1