I have a fixed-effects OLS model:
mod1_fe <- feols(inst_hold ~ Treated + bm + roa + debt_assets + at | mvsw(year, ticker), df3)
and I am trying to output it to a table using etable:
etable(mod1_fe, style.tex = style.tex("aer"), tex = TRUE)
However, it throws the error message:
I was unable to find any missing LaTeX packages from the error log tex_tempDoc.log.
! Undefined control sequence.
<recently read> \checkmark
Error: LaTeX failed to compile tex_tempDoc.tex. See https://yihui.org/tinytex/r/#debugging for debugging tips. See tex_tempDoc.log for more info.
Any help would be appreciated with this.