main.Rmd 654 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # h1
  2. ```{r knitr_options, include=FALSE}
  3. opts_chunk$set(fig.path='figures/')
  4. ```
  5. ```{sh}
  6. date
  7. git rev-parse --verify HEAD
  8. git status --porcelain
  9. ```
  10. ## font style
  11. **bold**
  12. _italics_
  13. *emph*
  14. `code`
  15. ## list
  16. ### unordered
  17. - a
  18. - b
  19. ### numbered
  20. 1. a
  21. 2. b
  22. ## code
  23. ```cpp
  24. int main() {
  25. return 0;
  26. }
  27. ```
  28. ## quote
  29. > quote
  30. ## links
  31. [Fabian Peter Hammerle](http://fabian.hammerle.me/)
  32. [Repository][1]
  33. [//]: references
  34. [1]: https://git.hammerle.me/fphammerle/template-markdown
  35. ## R
  36. ```{r}
  37. 1+1
  38. ```
  39. Pi is `r pi`.
  40. ### plot
  41. ```{r}
  42. plot(1:10)
  43. ```
  44. ## R session info
  45. ```{r session_info}
  46. sessionInfo()
  47. ```
  48. <!--
  49. https://yihui.name/knitr/options/
  50. -->