Here is simple RMarkdown document with two sections and two images.
---
output:
bookdown::html_document2: default
bookdown::word_document2: default
bookdown::pdf_document2: default
---
\newpage
# Part 1
Part 1 starts here. See Figure \@ref(fig:fig1-1)

# Part 2
Part 2 starts here. See Figure \@ref(fig:fig2-1)

I expect that two images will render with Knit to the following numbering - first is Figure 1.1, second is Figure 2.1. But I get this rendering only in html_document2
(see image below):
I use latest RStudio 1.1.414 with latest bookdown from Git (38efc82). I have two questions here:
- Why I don't have Figure 1.1 and Figure 2.1 in Word or PDF?
- How can I get Figure 1.1 and Figure 2.1 in Word or PDF?