Is there a simple way to suppress the \addlinespace between covariate rows when outputting regression results from Stata to latex using esttab/estout?
Here is an example that results in a tex file with those spaces.
Here is an example that results in a tex file with those spaces.
Code:
clear
mata: mata clear
estimates clear
eststo clear
sysuse auto
eststo: regress price weight mpg
eststo: regress price weight mpg foreign
esttab using "/${LATEX}/Tables/TEST.tex", label style(tex) ///
booktabs noconstant fragment depvars replace

Comment