figCapNo | R Documentation |
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)
figCapNo(
str,
roman = getOption("fig_caption_no_roman", default = FALSE),
sprintf_str = getOption("fig_caption_no_sprintf", default = "Fig. %s: %s")
)
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 |
Other figure caption functions:
figCapNoLast()
,
figCapNoNext()
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.