commit | c1f3841ceaffd90692e3f8d22cf99f8eb36a0ad1 | [log] [tgz] |
---|---|---|
author | Hao Zhu <haozhu233@gmail.com> | Thu Feb 23 12:13:48 2017 -0500 |
committer | Hao Zhu <haozhu233@gmail.com> | Thu Feb 23 12:13:48 2017 -0500 |
tree | e4e15f560f34fdf42ced760aa46bb0db7beb51cd | |
parent | 981933bb61b34cf95fdc87cf7cb108fda438d150 [diff] [blame] |
reorganize folder
diff --git a/test/visual_tests/kable_styling_pdf.Rmd b/test/visual_tests/kable_styling_pdf.Rmd new file mode 100644 index 0000000..2ea01a2 --- /dev/null +++ b/test/visual_tests/kable_styling_pdf.Rmd
@@ -0,0 +1,20 @@ +--- +title: "kable_styling - PDF" +output: + pdf_document: + keep_tex: true +--- + +```{r, include=FALSE} +library(knitr) +library(kableExtra) +dt <- mtcars[1:5, 1:2] + +kable(dt) +``` + +```{r} +kable(dt, format = "latex") +``` + +