run_autonum
auto number
Create an autonumbered chunk, i.e. a string representation of a sequence, each item will be numbered. These runs can also be bookmarked and be used later for cross references.
Usage
run_autonum(
seq_id = "table",
pre_label = "Table ",
post_label = ": ",
bkm = NULL,
bkm_all = FALSE,
prop = NULL
)
Arguments
- seq_id
sequence identifier
- pre_label, post_label
text to add before and after number
- bkm
bookmark id to associate with autonumber run. If NULL, no bookmark is added. Value can only be made of alpha numeric characters, '-' and '_'.
- bkm_all
if TRUE, the bookmark will be set on the whole string, if FALSE, the bookmark will be set on the number only. Default to FALSE. As an effect when a reference to this bookmark is used, the text can be like "Table 1" or "1" (pre_label is not included in the referenced text).
- prop
formatting text properties returned by fp_text.
See Also
Other run functions for reporting:
external_img()
,
ftext()
,
run_columnbreak()
,
run_linebreak()
,
run_pagebreak()
,
run_reference()
,
run_seqfield()
Examples
# NOT RUN {
run_autonum()
run_autonum(seq_id = "fig", pre_label = "fig. ")
run_autonum(seq_id = "tab", pre_label = "Table ", bkm = "anytable")
# }