Home | Archive | Resources | Github | About | RSS

Org Export Demo

Posted: 2020-01-16 Updated: 2022-03-20

Welcome

This page is demo page created by org-mode.

Org-mode Elements

Ordered lists

  1. A
  2. B
  3. C

Unordered lists

  • A
  • B
  • C

Links

Images(Which are responsive!)

onlinestats.gif
bearsshow.png

Tables(Which are responsive!)

N N2 N3 N4 sqrt(n) sqrt[4](N) Sum Doubled
1 1 1 1 1 1 6 12
2 4 8 16 1.4142 1.1892 32.6034 65.2068
3 9 27 81 1.7321 1.3161 123.0482 246.0964

Latex

\[\int_{a}^{b} x^2 dx\]

Code

def fact(n):
    "Returns the factorial of a number"
    if(n <= 1): return 1
    else: return n*fact(n-1)

print(fact(3))
uname
Linux

Quotes

Insanity: doing the same thing over and over again and expecting different results.

Albert Einstein

Checkboxes

  • [X] Checked
  • [ ] Unchecked

TODO An item that needs done

DONE An item that is done

Tags   tag1 tag2

Font styling

*Bold* /italic/ _underlined_ =verbatim= ~code~ +strike-through+ 中文文本

Bold italic underlined verbatim code strike-through 中文文本

Tags: org-mode
Creative Commons License
zsxh.github.io by ZSXH is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.