add org cheat sheet
This commit is contained in:
parent
c0a3ae4a24
commit
d993fbefdd
1 changed files with 75 additions and 0 deletions
75
org-mode-syntax-cheat-sheet-for-llms.txt
Normal file
75
org-mode-syntax-cheat-sheet-for-llms.txt
Normal file
|
@ -0,0 +1,75 @@
|
|||
#+TITLE: Org Mode Syntax Cheat Sheet
|
||||
#+OPTIONS: toc:nil
|
||||
# Adapted from http://karl-voit.at/2017/09/23/orgmode-as-markup-only/
|
||||
|
||||
* Top Level Heading
|
||||
** Second Level Heading
|
||||
*** Third Level Heading
|
||||
|
||||
# A comment line. This line will not be exported.
|
||||
|
||||
Paragraphs are separated by at least one empty line.
|
||||
|
||||
*bold* /italic/ _underlined_ +strikethrough+ =monospaced=
|
||||
|
||||
[[https://nickhigham.wordpress.com/][Link description]]
|
||||
|
||||
https://nickhigham.wordpress.com/ A link without a description.
|
||||
|
||||
A DOI (digital object identifier) link:
|
||||
[[doi:10.1093/comnet/cnv016][Matching Exponential-Based and Resolvent-Based Centrality Measures]]
|
||||
|
||||
A horizontal line, fill-width across the page:
|
||||
-----
|
||||
|
||||
- First item in a list.
|
||||
- Second item.
|
||||
- Sub-item
|
||||
1. Numbered item.
|
||||
2. Another item.
|
||||
- [ ] Item yet to be done.
|
||||
- [X] Item that has been done.
|
||||
|
||||
LaTeX macros can be included: $x_2 = \alpha + \beta^2 - \gamma$.
|
||||
|
||||
**** TODO A todo item.
|
||||
**** DONE A todo item that has been done.
|
||||
|
||||
#+BEGIN_QUOTE
|
||||
This text will be indented on both the left margin and the right margin.
|
||||
#+END_QUOTE
|
||||
|
||||
: Text to be displayed verbatim (as-is), without markup
|
||||
: (*bold* does not change font), e.g., for source code.
|
||||
: Line breaks are respected.
|
||||
|
||||
Some MATLAB source code:
|
||||
#+BEGIN_SRC matlab
|
||||
>> rand(1,3)
|
||||
ans =
|
||||
5.5856e-01 7.5663e-01 9.9548e-01
|
||||
#+END_SRC
|
||||
|
||||
Some arbitrary text to be typeset verbatim in monospace font:
|
||||
#+BEGIN_SRC text
|
||||
Apples, oranges,
|
||||
cucumbers, tomatoes
|
||||
#+END_SRC
|
||||
|
||||
# Table and spreadsheet. The column headed "Ratio" is automatically
|
||||
# calculated by hitting C-c C-c in Emacs on the #+TBLFM line.
|
||||
|
||||
|----------------+-----------+-----------+-------|
|
||||
| Country | Abstracts | Downloads | Ratio |
|
||||
|----------------+-----------+-----------+-------|
|
||||
| United States | 7 | 497 | 71.0 |
|
||||
| Unknown | 4 | 83 | 20.8 |
|
||||
| United Kingdom | 3 | 41 | 13.7 |
|
||||
| Germany | 3 | 29 | 9.7 |
|
||||
| Netherlands | 2 | 21 | 10.5 |
|
||||
| Japan | 1 | 18 | 18.0 |
|
||||
|----------------+-----------+-----------+-------|
|
||||
#+TBLFM: $4=$3/$2;%.1f
|
||||
|
||||
Include an image:
|
||||
file:nickhighamwordpress.jpg
|
Loading…
Add table
Reference in a new issue