Bookdown 中的图编号消失了
Figure numbering in Bookdown disappears
我正在尝试 auto-number 图片与 Bookdown。当我的部分 headers 被编号时它工作正常,但是当我删除部分中的编号时,图号也消失了:
## This is a subheading {-}
```{r hp, fig.cap="Relationship between horsepower and miles per gallon",
echo = FALSE}
plot(mtcars$hp, mtcars$mpg)
```
This is some text where I want to refer to the figure (Figure \@ref(fig:hp))
.
是否可以有 un-numbered 个子标题,并且在整个文档中仍然有数字 auto-number(即,而不是调用 "Figure 1.1"、"Figure 1.2" 等., 你只得到 "Figure 1", "Figure 2")?
章节标题在文档中必须全局编号或不编号。您没有告诉我们您使用的是哪种输出格式,但通常它是一个名为 number_sections
的选项,您可以将其设置为 false
,例如
output:
bookdown::html_document2:
number_sections: false
然后数字将编号为图 1、2、...、N。请参阅 ?bookdown::html_document2
或您正在使用的特定输出格式功能的帮助页面。
我正在尝试 auto-number 图片与 Bookdown。当我的部分 headers 被编号时它工作正常,但是当我删除部分中的编号时,图号也消失了:
## This is a subheading {-}
```{r hp, fig.cap="Relationship between horsepower and miles per gallon",
echo = FALSE}
plot(mtcars$hp, mtcars$mpg)
```
This is some text where I want to refer to the figure
(Figure \@ref(fig:hp))
.
是否可以有 un-numbered 个子标题,并且在整个文档中仍然有数字 auto-number(即,而不是调用 "Figure 1.1"、"Figure 1.2" 等., 你只得到 "Figure 1", "Figure 2")?
章节标题在文档中必须全局编号或不编号。您没有告诉我们您使用的是哪种输出格式,但通常它是一个名为 number_sections
的选项,您可以将其设置为 false
,例如
output:
bookdown::html_document2:
number_sections: false
然后数字将编号为图 1、2、...、N。请参阅 ?bookdown::html_document2
或您正在使用的特定输出格式功能的帮助页面。