skeleton.Rmd 654 B

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. title: "Untitled"
  3. short_title: "Untitled"
  4. author: "Author 1"
  5. short_author: "Author 1 et. al."
  6. affiliation: "Affiliation"
  7. address: "Address"
  8. city: "City"
  9. country: "Country"
  10. email: "email1\\@example.com"
  11. author2: "Author 2"
  12. affiliation2: "Affiliation"
  13. address2: "Address"
  14. city2: "Los Angeles"
  15. country2: "Country"
  16. email2: "email2\\@example.com"
  17. abstract: |
  18. Abstract goes here
  19. keywords: keywords
  20. bibliography: "bibliography"
  21. output: rticles::rss_article
  22. ---
  23. # Introduction
  24. This template demonstrates some of the basic latex you'll need to know to create a RSS article.
  25. # R code
  26. Can be inserted in regular R markdown blocks.
  27. ```{r}
  28. x <- 1:10
  29. x
  30. ```