benjann / estout

Stata module to make regression tables
http://repec.sowi.unibe.ch/stata/estout/index.html
MIT License
70 stars 17 forks source link

Is that possible to set a gap between tables? #38

Closed fredericky123 closed 2 years ago

fredericky123 commented 2 years ago

Right now, different tables only have one line space, difficult to locate each table. Can we set a second table begins from next page in Word? Thanks a ton!

benjann commented 2 years ago

Hi, to add page breaks between tables you could include RFT command \pagebb in the title() option. Example:

sysuse auto
reg price weight foreign
esttab . using ~/mytable.rtf, title(Table 1) replace
esttab . using ~/mytable.rtf, title(\pagebb Table 2) append
esttab . using ~/mytable.rtf, title(\pagebb Table 3) append

ben

fredericky123 commented 2 years ago

Thanks Ben!