TAB
: Toggle current sub-tree;S-TAB
: Toggle whole buffer visibilityM-RET
: Add new item at the current level;M-→
: Demote section level.M-←
: Promote section level.C-c C-l
: Insert a link./italic/
, *bold*
, =verbatim=
::
between item header and body.|
are considered to be part of a table.TAB
: Reformat table.C-c -
: (org-table-insert-hline
) Inserts an horizontal line.C-c RET
: Insert horizontal line, and go into the row below.S-M-<left>
: (org-table-delete-column
) Delete column.C-c +
: (org-table-sum
) Sum numbers in the current column, or in
the rectangle defined by the current region.See also http://orgmode.org/manual/Tables.html#Tables for more details.
C-c C-l
to insert a link.[[ ... ]]
notation can be used to insert any link. The link can be
internal (use heading text, #+NAME
property, or add ref
`=[]{#ref}=), or external and link to a local file, a URL, a shell
command etc.See also http://orgmode.org/manual/External-links.html
C-c C-t
: Cycles through unmarked, TODO, DONE.C-c C-c
: Add tag to headline.C-c $
: Archive current subtree.C-c a m
: Find all the items that match a rule. Match:
(e.g.
CLOSED<"<-60d>"
, all the DONE items older than 60 days). In the
Agenda view, items can then be archived using $
.See also http://orgmode.org/worg/org-tutorials/org-latex-preview.html
C-c C-x C-l
: LaTeX preview on current line;C-u C-c C-x C-l
: LaTeX preview on sub-tree;C-u C-u C-c C-x C-l
: LaTeX preview on the whole buffer;C-c C-c
: Stop LaTeX preview.< e TAB
: Insert example block< s TAB
: Insert source code blockC-c '
: Edit block code in buffer with relevant modeAdd language to org-babel-load-languages
(using customize
), and
execute C-c C-c
.
C-c C-e l o
: Export to LaTeX, Compile and open PDF.Example of a header that can be used:
#+STARTUP: showall
#+TITLE: Links
#+AUTHOR: Sébastien Le Callonnec
#+LaTeX_CLASS: memoir
#+LaTeX_CLASS_OPTIONS: [a4paper, twoside]
A sample header can be added by using C-c C-e #
.
org-odt
required, document can be exported to an odt file.Jekyll uses Markdown, but you can use Pandoc to convert Org-Mode files to Markdown:
pandoc --atx-headers -f org -t markdown org-mode.org -o org-mode.md