Fix #105
diff --git a/tests/visual_tests/footnote_latex.Rmd b/tests/visual_tests/footnote_latex.Rmd
new file mode 100644
index 0000000..2f6e558
--- /dev/null
+++ b/tests/visual_tests/footnote_latex.Rmd
@@ -0,0 +1,18 @@
+---
+title: "add_footnote_adv"
+author: "Hao"
+date: "1/5/2018"
+output: html_document
+---
+
+```{r}
+library(knitr)
+library(kableExtra)
+
+mtcars[1:5, 1:5] %>%
+ kable("html", caption = paste0("test", footnote_marker_symbol(1))) %>%
+ kable_styling() %>%
+ footnote("ccc", c("number 1; ", "number 2. "), c("a 1; ", "a 2."), c("s 1; ", "s 2."),
+ number_title = "special: ", alphabet_title = "abc: ",
+ footnote_as_chunk = T)
+```