figCapNo {Gmisc} | R Documentation |
Adds a figure caption number
Description
The function relies on options("fig_caption_no")
in order to keep track of the last number. If
you want to force the caption function to skip
captions while still using it in the knitr fig.cap option
then simply set options(fig_caption_no = FALSE)
Usage
figCapNo(
str,
roman = getOption("fig_caption_no_roman", default = FALSE),
sprintf_str = getOption("fig_caption_no_sprintf", default = "Fig. %s: %s")
)
Arguments
str |
The string that is to be prepended with string |
roman |
Whether or not to use roman numbers instead
of Arabic. Can also be set through |
sprintf_str |
An |
See Also
Other figure caption functions:
figCapNoLast()
,
figCapNoNext()
Examples
## Not run:
```{r, fig.cap = pigCapNo("My nice plot")}
plot(1:10 + rnorm(10), 1:10)
```
## End(Not run)
org_opts <- options(fig_caption_no = 2,
fig_caption_no_sprintf = "Figure %s: %s")
figCapNo("A plot with caption number = 3")
org_opts <- options(fig_caption_no = TRUE)
figCapNo("A plot with caption number = 1")
# Use default setting
options(fig_caption_no_sprintf = NULL)
figCapNo("A plot with caption number = 2")
# Return the original settings
options(org_opts)
[Package Gmisc version 3.0.3 Index]