R/setCaptionNumberingKnitrHook.R
, R/setFigCapNumbering.R
, R/setTabCapNumbering.R
setCaptionNumberingKnitrHook.Rd
Set a knitr hook to automatically number captions for, e.g., figures
and tables. setCaptionNumberingKnitrHook()
is the general purpose
function; you normally use setFigCapNumbering()
or setTabCapNumbering()
.
setCaptionNumberingKnitrHook(
captionName = "fig.cap",
prefix = "Figure %s: ",
suffix = "",
optionName = paste0("setCaptionNumbering_", captionName),
resetCounterTo = 1
)
setFigCapNumbering(
captionName = "fig.cap",
prefix = "Figure %s: ",
suffix = "",
optionName = paste0("setCaptionNumbering_", captionName),
resetCounterTo = 1
)
setTabCapNumbering(
captionName = "tab.cap",
prefix = "Table %s: ",
suffix = "",
optionName = paste0("setCaptionNumbering_", captionName),
resetCounterTo = 1
)
The name of the caption; for example, fig.cap
or tab.cap
.
The prefix and suffix; any occurrences of
\%s
will be replaced by the number.
THe name to use for the option that keeps track of the numbering.
Whether to reset the counter (as stored in the
options), and if so, to what value (set to FALSE
to prevent resetting).
NULL
, invisibly.
### To start automatically numbering figure captions
setFigCapNumbering();
### To start automatically numbering table captions
setTabCapNumbering();