1. Sections ๐
To add a section to your document, put one or more #
at the start of the line, followed a space and the name of your section.
Which will render as:
2. Section name ๐
2.1. Subsection ๐
Unnumbered section ๐
2.2. Unnumbered section ๐
2. This section is not in the ToC ๐
Given by the following:
# Section name |
## Subsection |
#* Unnumbered section |
#+ This section is not in the ToC |
3. Sections references ๐
You can create a referenceable section by using #{refname}
, where refname is an internal reference name for use only within this document. You can then create a clickable reference to this section: ยง{refname}
or ยง{refname}[caption=Click me!]
. Below is an example of this in action:
Section ๐
ยง{refname}[caption=Click me!] or ยง{first}[caption=First section]
###{refname}+* Section |
ยง{refname}[caption=Click me!] or ยง{first}[caption=First section] |
4. Table of Content ๐
Section can be automatically exported to a table of content, such as shown at the top of this document. To create a table of content, simply add #+TABLE_OF_CONTENT
somewhere in your document and it will be displayed there.
5. Section styling ๐
The styling for the section link is controlled by the style key style.section
link_pos
: Before|After|None Position of the section link.link
: [Before, Link, After] 3 strings-array
1 | { |
2 | "link_pos": "Before", |
3 | "link": ["", "๐", " "] |
4 | } |