Skip to content

Latest commit

 

History

History
134 lines (122 loc) · 3.75 KB

org-note.org

File metadata and controls

134 lines (122 loc) · 3.75 KB

welcome to org

Welcome, and thanks for trying out org mode

About head line

M-RET
quick gen head line
M-S-Up/Down
move head line

Emphasis for marker or tag

  • C-c C-x C-f You can make words bold, italic, underlined, code, verbatim, and, if you must, strike-through

Kind of lists

Ordered lists
Start with a number and a dot.
Unordered lists
-, +, *

CLOCK

C-c C-x C-i && C-c C-x C-o this’s a drawer.

Varible: org-structure-template-alist

This is a list of abbreviation keys and values.

fn

C-c C-x f
create footnote
C-c C-c
jump to definition

Tables

  • 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)
abcd
<r><30><l><c>
/<><><>
10234awm
5818sks
32398k

And, org-plot for graph.

Hyperlinks

Key

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

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.

External links

Web site、files、shell command、elisp and so on.

Todo Item

C-c C-t
Rotate todo state
C-c / t
show todo tree
Variable
org-agenda-files

Tags

C-c C-q
(org-set-tags-command)

Properties and columns

MarkUp

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


abcd
1234

emacs is really amazing!

Working with src block

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
1a
2b
3c
4d
data
a = range(10)
return a
0123456789