I´m already using add_footnote but when using both with kable_styling (latex_options = "scale_dwon), the scale down doesn´t work (i.e doesn´t go down the scale) indeed, it goes up.
kable(data_1,
  booktabs = T,
  caption = "My Caption",
  col.names = c("1","2","3","4","5", "6", "7", "8"),
  format.args = list(big.mark = ","), 
  align = "lccccccc"
  ) %>% kable_styling(latex_options = "scale_down") %>%
        row_spec(0, bold = T) %>% 
           column_spec(1, bold = T) %>% add_footnote("My calcs")
I will really appreciate any help!
