Welcome, and thanks for trying out org mode
- M-RET
- quick gen head line
- M-S-Up/Down
- move head line
- C-c C-x C-f
You can make words bold, italic, underlined,
code
,verbatim
, and, if you must,strike-through
- Ordered lists
- Start with a number and a dot.
- Unordered lists
- -, +, *
C-c C-x C-i && C-c C-x C-o this’s a drawer.
This is a list of abbreviation keys and values.
- C-c C-x f
- create footnote
- C-c C-c
- jump to definition
- C-c | (org-table-create-or-convert-from-region)
- C-c ` (org-table-edit-field)
- C-c + (org-table-sum)
- C-c - (org-table-insert-hline)
- C-c ^ (org-table-sort-lines)
a | b | c | d | |
<r> | <30> | <l> | <c> | |
/ | < | > | <> | <> |
---|---|---|---|---|
10 | 23 | 4 | awm | |
5 | 81 | 8 | sks | |
3 | 23 | 98k |
And, org-plot for graph.
- C-c C-o
- Open
- C-c l
- insert
- C-c C-l
- edit
Format: description or link The preferred match for a text link is a dedicated target: the same string in double angular brackets, like ‘<<dedicated target>>’.
Radio targets are enclosed by triple angular brackets. For example, a target ‘<<<My Target>>>’ causes each occurrence of ‘my target’ in normal text to become activated as a link.
Web site、files、shell command、elisp and so on.
- C-c C-t
- Rotate todo state
- C-c / t
- show todo tree
- Variable
- org-agenda-files
- C-c C-q
- (org-set-tags-command)
Everything should be made as simple as possible,
but not any simpler
a | b | c | d |
1 | 2 | 3 | 4 |
emacs is really amazing!
A ‘src’ block conforms to this structure:
<body>
-r means remove labels.
(save-excursion (ref:sc)
(goto-char (point-min))) (ref:jump)
In line (sc) we remember the current position. Line (jump) jumps to point-min. α
local add = function(x, y)
return x + y
end
return add(1, 9)
10
1 | a |
2 | b |
3 | c |
4 | d |
data
a = range(10)
return a
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |