Dear all,
I am trying to change the font of my tables that I export to word. I use the command esttab and I can export the table just fine, but it appears always in Times New Roman, which is apparently the default. I found the command fonttbl(string) in the documentation, but it does not work for me in the way described there. I always get the error message: option fonttbl() not allowed r(198);
This is the code I use. Without the part: fonttbl(\f0\fnil Arial; ) it works fine.
Thank you very much in advance. Any help would be appreciated!
Kind regards
Johannes
I am trying to change the font of my tables that I export to word. I use the command esttab and I can export the table just fine, but it appears always in Times New Roman, which is apparently the default. I found the command fonttbl(string) in the documentation, but it does not work for me in the way described there. I always get the error message: option fonttbl() not allowed r(198);
This is the code I use. Without the part: fonttbl(\f0\fnil Arial; ) it works fine.
Code:
*exporting the table
esttab mod1 mod2 mod3 mod4 using Reg1.rtf , label replace obslast /*
*/ order($list1A) r2 compress star(* 0.10 ** 0.05 *** 0.01) /*
*/ fonttbl(\f0\fnil Arial; ) /*
*/ nogaps nonotes t(3) b(%8.3f) addnotes("Control variables" "Time variables") /*
*/ drop(var1 var2)
Kind regards
Johannes

Comment