Hi Stata community,

I have several regressions that I would ideally put in one table, but there are 21 of them and they can't be fit in one table, even if I rotate the Table. So, I want to split it into two tables. I can do that easily by running esttab two times in each set separately. But I want to be able to continue column numbering in the second table from the frist table. Say, I have until column 12 in the first table and I want to start column numbers in the continuing table from 13, not 1. How can do that? Below is my code form producing my table:

Code:
#delimit;
esttab model* using "$tab_fig\mpdid_so_1_1_am15.tex", f 
    keep(mpschool post postmp _cons) 
    order(mpschool post postmp _cons)
    varlabels(mpschool "Treated" post "Post" postmp "DID" _cons Constant) 
    cells(b(star fmt(2)) se(par fmt(2)))
    stats(N , fmt(%9.0fc) label("Total Obs")) 
    mlabels(,titles) collabels(none) numbers 
    style(tex) starlevels("*" 0.10 "**" 0.05 "***" 0.01) replace;
#delimit cr
Briefly, my question is how can I control the "numbers" option in the above table so that I can start the number from 13, not 1.

Thanks!