You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.4KB

  1. ---
  2. title: "Title"
  3. subtitle: "A minimal Bulma RMarkdown Template"
  4. author:
  5. - name: First Author
  6. url: https://rstudio.com
  7. extra:
  8. - "First Affiliation"
  9. - "@tweeter345"
  10. - name: Second Author
  11. url: https://duckduckgo.com
  12. extra:
  13. - "Second Affiliation"
  14. - "Very Cool Guy"
  15. date: '`r strftime(Sys.time(), "%A, %B %e, %Y")`'
  16. bulma:
  17. hero: ["info"]
  18. hero_body: "has-text-left"
  19. hero_button: "outlined"
  20. hero_links:
  21. - name: Github
  22. url: https://github.com/gerkelab
  23. icon: '`r bulma::fa_icon("github")`'
  24. - name: Home
  25. url: https://gerkelab.com
  26. icon: '`r bulma::fa_icon("home")`'
  27. output: bulma::bulma_document
  28. ---
  29. ```{r setup, include=FALSE}
  30. knitr::opts_chunk$set(echo = TRUE)
  31. ```
  32. ## R Markdown
  33. This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
  34. When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
  35. ```{r cars}
  36. summary(cars)
  37. ```
  38. ## Including Plots
  39. You can also embed plots, for example:
  40. ```{r pressure, echo=FALSE}
  41. plot(pressure)
  42. ```
  43. Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.