You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, thank you so much for your terrific work.
The issue: In the cookbook references example here there is a super useful way of separating References from two Appendices, Appendix A and Appendix B.
Titles work great, but if one adds tables in the appendix the coding keeps naming tables from Appendix A.
I added the simplest example below, building on the bookdown.org example.
# References
<div id="refs"></div>
# (APPENDIX) Appendix {-}
# More information
```{r}
t1 <- c(1,2,3)
kable(t1, caption = "This table is Table A1", format = "latex")
This will be Appendix A.
# One more thing
This will be Appendix B
```{r}
t2 <- c(1,2,3)
kable(t2, caption = "This table is Table A2 and I want it to be Table B1", format = "latex")
The text was updated successfully, but these errors were encountered:
Hi,
First of all, thank you so much for your terrific work.
The issue: In the cookbook references example here there is a super useful way of separating References from two Appendices, Appendix A and Appendix B.
Titles work great, but if one adds tables in the appendix the coding keeps naming tables from Appendix A.
I added the simplest example below, building on the bookdown.org example.
The text was updated successfully, but these errors were encountered: