我需要将一些回归的结果导出到tex文件,但我在WAF(http://hmgaudecker.github.io/econ-project-templates/waf.html)中进行分配,当我构建项目时,当他到达Stata do文件时,程序卡住了 . 我的部分代码在这里:

preserve
drop if round == 0
drop if round > 10
eststo: quietly regress filters_applied q_female treatment
esttab using `"${PATH_OUT_TABLES}/filterss_applied.tex"', replace
eststo clear

并且显示的错误是:

esttab using `"${PATH_OUT_TABLES}/filterss_applied.tex"', replace
file C:\Users\utente\AppData\Local\Temp\ST_00000003.tmp already exists
r(602);

end of do-file
r(602);

但是,无法通过直接查看路径或通过搜索来找到临时文件 . 以前有没有人有类似的问题?

PS:我也可以尝试将输出输出到LaTeX的其他方法!