我正在写一个R markdown(.rmd)的文档。我希望能够编织Word和PDF输出。我的图号编号有困难。使用PDF输出时,数字会自动编号(通过图.lp的Latex输出?)但数字未在Word中编号。
经过大量搜索后,我发现代码将在Word中提供图形编号 - 但现在我在编织PDF时得到双页编号。我是新手,所以无法插入图片。但数字标题看起来像:
图1.图1. Blah Blah Blah
有没有办法抑制PDF的自动编号?
提出了类似的问题here,但没有给出解决方案。 我的YAML标题和图号编号包含在下面。
YAML:
output:
pdf_document:
fig_caption: yes
keep_tex: yes
word_document:
fig_caption: yes
图编号代码(通过http://galahad.well.ox.ac.uk/repro/找到)
figRef <- local({
tag <- numeric()
created <- logical()
used <- logical()
function(label, caption, prefix = options("figcap.prefix"),
sep = options("figcap.sep"), prefix.highlight = options("figcap.prefix.highlight")) {
i <- which(names(tag) == label)
if (length(i) == 0) {
i <- length(tag) + 1
tag <<- c(tag, i)
names(tag)[length(tag)] <<- label
used <<- c(used, FALSE)
names(used)[length(used)] <<- label
created <<- c(created, FALSE)
names(created)[length(created)] <<- label
}
if (!missing(caption)) {
created[label] <<- TRUE
paste0(prefix.highlight, prefix, " ", i, sep, prefix.highlight,
" ", caption)
} else {
used[label] <<- TRUE
paste(prefix, tag[label])
}
}
})
然后在块选项中调用它,如下所示:
```{r, echo=FALSE, message=FALSE, fig.width=6, fig.cap=figRef("Ex-Airfoil", "Example NACA Airfoil")}
答案 0 :(得分:2)
有没有办法抑制PDF的自动编号?
不确定。为您的输出格式添加format
变量,并在figref
中为该格式添加处理程序。使用RStudio预览版,您可以使用format <- knitr::opts_knit$get("out.format")
,但在发布版本中,您需要手动设置它
然后在figref()
中添加您想要的输出...
if ( format == "latex" ) return( caption )
if (!missing(caption)) {
--- >8 ---
我个人会使用预览版和switch语句进行处理。沿着https://stackoverflow.com/a/27321367/173985。