Bookdown は素晴らしいパッケージで、それがどのように発展するか楽しみにしていますが、現在pdf_document2
、図が付録にある場合に図番号をフォーマットでレンダリングするのに苦労しています。具体的には、キャプション付きの図が付録にある場合、図番号は A.1、A.2、B.1、B.2 などの形式にする必要がありますが、代わりに図番号は番号 3.1 の通常のセクションとして扱われます。 3.2、4.1、4.2 など。付録はそれぞれ 3 番目と 4 番目のセクションです。以下に例を示します。
---
title: "Untitled"
author: "John Doe"
date: "November 18, 2016"
documentclass: article
output:
bookdown::pdf_document2:
toc: yes
fig_caption: yes
number_sections: yes
linkcolor: blue
---
# Chapter One
```{r a, fig.cap="rabble rabble"}
plot(cars) # a scatterplot
```
```{r b, fig.cap="rabble rabble"}
plot(cars) # a scatterplot
```
# Chapter Two
# (APPENDIX) Appendix {-}
# Appendix A
```{r c, fig.cap="rabble rabble"}
plot(cars) # a scatterplot
```
# Appendix B
```{r d, fig.cap="rabble rabble"}
plot(cars) # a scatterplot
```
これはブックダウン自体の問題ですか、それとも何か間違っていますか?