asdocx: Export from Stata to Word, Excel, LaTeX & HTML › Forums › asdocx Forum › Export only the table part of TEX › Reply To: Export only the table part of TEX
thks Professor.
so, a possible commands sequence would be,
asdocx tabulate x , save(asdocx_exported_table.tex) tableonly replace
file open dd using "TEXFile.tex", write replace
file write dd "\begin{frame}" _n
file write dd "\frametitle{TITLE}" _n
file write dd "\tiny" _n
file write dd "\input{asdocx_exported_table.tex}" _n
file write dd "\end{frame}" _n
file close dd