Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dhawangayash/c129d89e52c3bb6657268f7c46e06daa to your computer and use it in GitHub Desktop.
Save dhawangayash/c129d89e52c3bb6657268f7c46e06daa to your computer and use it in GitHub Desktop.
org-mode syntax - superscripts and subscripts example 1

org-mode syntax - superscripts and subscripts example 1

  • Add #+OPTIONS: ^:{} to your org-mode file to explicitly enable superscripts and subscripts.
superscripts
To create a superscript put ^{ characters at the start of the superscript text and } at the end of the superscript text, e.g. word^{superscript} will render as wordsuperscript.
subscripts
To create a subscript put _{ characters at the start of the subscript text and } at the end of the subscript text, e.g. word_{subscript} will render as wordsubscript.
Keychord to enable
To enable pretty entites toggle in org mode use M-x org-toggle-pretty-entities Default keychord is: C-c C-x \

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment