Rmarkdown / Bookdown:补充部分的单独编号

时间:2018-05-07 22:07:40

标签: latex r-markdown bookdown

某些类型的文件,例如期刊文章,通常都有一个补充部分,其中数字的编号与主体不同。

例如,在主体中,您可能有图1-5。但是,对于补充部分,编号重新开始,如图S1,S2,S3等。

Bookdown允许交叉引用(\@ref(fig:label),但我不确定如何在单独的部分重新开始编号。是否有一个好方法可以做到这一点?

1 个答案:

答案 0 :(得分:3)

您可以在.rmd文件的YAML标头中定义一个新的LaTeX function,如下所示:

\newcommand{\beginsupplement}{
  \setcounter{table}{0}  
  \renewcommand{\thetable}{S\arabic{table}} 
  \setcounter{figure}{0} 
  \renewcommand{\thefigure}{S\arabic{figure}}
}

当您准备开始使用S1,S2 ...等标记图形和表格时,键入\beginsupplement。如果仅导出为PDF,此解决方案可以很好地工作,因为它使用LaTeX命令来格式化格式。输出。因此,它不适用于HTML或Word输出。

---
title: "title"
author:
- My Namington*
- '*\textit{email@example.com} \vspace{5mm}'
output: 
  bookdown::pdf_document2
fontsize: 12pt
header-includes: 
  \usepackage{float} \floatplacement{figure}{H} 
  \newcommand{\beginsupplement}{\setcounter{table}{0}  \renewcommand{\thetable}{S\arabic{table}} \setcounter{figure}{0} \renewcommand{\thefigure}{S\arabic{figure}}}
---

```{r, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library(ggplot2)
```


# Main text
Here is the main text of my paper, and a link to a normally-labelled Figure \@ref(fig:irisPlot).

```{r irisPlot, fig.cap="This is a figure caption."}

ggplot(iris, aes(Species, Sepal.Length, colour = Species)) + geom_jitter()
```

\newpage
# Supplementary material {-}

\beginsupplement


Here is the supplement, including a link to a figure prefixed with the letter S Figure \@ref(fig:irisPlot2).

```{r irisPlot2, echo=FALSE, fig.cap= "This is a supplementary figure caption."}
ggplot(iris, aes(Sepal.Width, Sepal.Length, colour = Species)) + 
    geom_point() + 
    stat_smooth(method = "lm")
```

enter image description here