Guest User

Untitled

a guest
Jul 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. ---
  2. title: "Untitled"
  3. output: bookdown::pdf_document2
  4. references:
  5. - id: fenner2012a
  6. title: One-click science marketing
  7. author:
  8. - family: Fenner
  9. given: Martin
  10. container-title: Nature Materials
  11. volume: 11
  12. URL: 'http://dx.doi.org/10.1038/nmat3283'
  13. DOI: 10.1038/nmat3283
  14. issue: 4
  15. publisher: Nature Publishing Group
  16. page: 261-263
  17. type: article-journal
  18. issued:
  19. year: 2012
  20. month: 3
  21. ---
  22.  
  23. ```{r setup, include=FALSE}
  24. knitr::opts_chunk$set(echo = TRUE)
  25. library(magrittr)
  26. ```
  27.  
  28. # Introduction
  29.  
  30. Here is a citation [@fenner2012a]
  31.  
  32. # References {-}
  33.  
  34. <div id="refs"></div>
  35.  
  36. newpage
  37.  
  38. # (APPENDIX) Appendix {-}
  39.  
  40. # Appendix A
  41.  
  42. Here is your table
  43.  
  44. ```{r table, fig.pos="H"}
  45. knitr::kable(mtcars[1:5, 1:5], caption = "A table") %>%
  46. kableExtra::kable_styling(latex_options = "HOLD_position")
  47. ```
Add Comment
Please, Sign In to add comment