3.3.1 Chapter
The function chapter creates new chapters.
| prototype |
(chapter :title [:number #t] [:toc #t] [:file] [:info-node] [:html-title] [:class "chapter"] [:ident] node...) |
| :ident | html lout latex context info xml | The node identifier. |
| :class | html lout latex context info xml | The node class. |
| :title | html lout latex context info | The title of the chapter. |
| :html-title | html | The title of window of the HTML browser. |
| :info-node | info | The title of the Info node (see Section about the Info engine). |
| :number | html lout latex context info | This argument controls the chapter number.
A value of #t means that Skribilo computes the chapter
number. A value of #f means that the chapter has no number. A
number or string specifies a number to be used in lieu of the
automatically computed number. |
| :toc | html lout latex context info | This argument controls if the chapter must
be referenced in the table of contents. |
| :file | html lout latex context info | The argument must be a boolean or a string. A
value of #t tells the compiler to store that chapter in a
separate file; a value of #f tells the compiler to embed the
chapter in the main target file. When the argument is a string, it is
used as the name of the file for this chapter. |
node... | The nodes of the chapter. |
document section toc |
Ex. 6: The chapter markup
... produces:
| This is a simple chapter
Its body is just one sentence. |
|
3.3.2 Sections
These functions create new sections.
| prototype |
(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...) |
| :ident | html lout latex context info xml | The node identifier. |
| :class | html lout latex context info xml | The node class. |
| :title | html lout latex context info | The title of the chapter. |
| :info-node | info | The title of the Info node (see Section about the Info engine). |
| :number | html lout latex context info | This argument controls the chapter number.
A value of #t means that Skribilo computes the chapter
number. A value of #f means that the chapter has no number. A
number or string specifies a number to be used in lieu of the
automatically computed number. |
| :toc | html lout latex context info | This argument controls if the chapter must
be referenced in the table of contents. |
| :file | html lout latex context info | The argument must be a boolean or a string. A
value of #t tells the compiler to store that section in a
separate file; a value of #f tells the compiler to embed the
section in the main target file. When the argument is a string, it is
used as the name of the file for this section. |
node... | The nodes of the section. |
document chapter paragraph toc |
3.3.3 Paragraph
The function paragraph (also aliased p) creates
paragraphs.
The function p is an alias for paragraph.
3.3.4 Blockquote
The function blockquote can be used for text
quotations. A text quotation is generally renderd as an indented block
of text.