Hi there -- I've searched the official Stata18 manual for the better part of an hour to find an answer, but haven't got it yet. Help Statalisters!
I've just upgraded to Stata18, and I love the flexibility of the dtable command. I've worked out most customization for my current needs -- all except for text style changes. I had hoped setting the font for the entire created table would be intuitive, but that doesn't seem to be the case. While I've been successful in manipulating the table, column, and row headers in a single command (tedious, by the way!), the one part of the table that never gets modified by the text style options is the cells themselves. I can get column headers to look the way I want, individual row headers, etc -- but not the results themselves.
Here's a sample code I'm working from:
Any help would be appreciated!
Thanks,
Kevin
I've just upgraded to Stata18, and I love the flexibility of the dtable command. I've worked out most customization for my current needs -- all except for text style changes. I had hoped setting the font for the entire created table would be intuitive, but that doesn't seem to be the case. While I've been successful in manipulating the table, column, and row headers in a single command (tedious, by the way!), the one part of the table that never gets modified by the text style options is the cells themselves. I can get column headers to look the way I want, individual row headers, etc -- but not the results themselves.
Here's a sample code I'm working from:
Code:
clear all sysuse auto dtable price i.foreign, column( summary(, font(Garamond)) ) sample(, font(Garamond)) continuous(, font(Garamond)) factor(, font(Garamond)) titlestyles( font(Garamond) ) notestyles( font(Garamond) ) export("/Users/default/Downloads/Test.docx", as(docx) replace)
Thanks,
Kevin
Comment