blob: fbf657e04ad37b336681a783bc2092fa82f8714d [file] [log] [blame]
Hao Zhuf3155122018-04-11 12:55:51 -04001auto_set_format <- function() {
2 if (knitr::is_latex_output()) {
3 options(knitr.table.format = "latex")
4 } else {
5 options(knitr.table.format = "html")
6 }
7}