The function
chapter
creates new chapters.
(
chapter
:title
[
:number
#t
] [
:toc
#t
] [
:file
] [
:info-node
] [
:html-title
] [
:class
"chapter"
] [
:ident
]
node...
)
node...
The nodes of the chapter.... produces:
These functions create new sections.
(
section
:info-node
:title
[
:number
#t
] [
:toc
#t
] [
:file
] [
:class
"section"
] [
:ident
]
node...
)
(
subsection
:info-node
:title
[
:number
#t
] [
:toc
#t
] [
:file
] [
:class
"subsection"
] [
:ident
]
node...
)
(
subsubsection
:info-node
:title
[
:number
#t
] [
:toc
] [
:file
] [
:class
"subsubsection"
] [
:ident
]
node...
)
node...
The nodes of the section.
The function
paragraph
(also aliased
p
) creates
paragraphs.
(
paragraph [
:class
] [
:ident
]
node...
)
node...
The nodes of the paragraph.
The function
p
is an alias for
paragraph
.
(
p
:ident
[
:class
]
node...
)
node...
The nodes of the paragraph.
The function
blockquote
can be used for text
quotations. A text quotation is generally renderd as an indented block
of text.
(
blockquote [
:class
] [
:ident
]
node...
)
node...
The nodes of the quoted text.