Hi everyone!
I am trying to export the result of my regression to Latex, and I am following this The Stata-to-LaTeX guide. The guide provides a set of templates… | by Asjad Naqvi | The Stata Guide | Medium. I am trying to run this code they have in webpage
esttab using "./graphs/guide80/regression1_1.tex", replace ///
b(3) se(3) nomtitle label star(* 0.10 ** 0.05 *** 0.01) ///
booktabs ///
title("Basic regression table \label{reg1}") ///
addnotes("Data: websuse nlswork" "Second line note")
by doing this,
esttab using ".D:\Documents\Silvana Master\Daniel Salinas-Tesis\Inequality of Opportunities\regression1_1.tex", replace \\\
b(3) se(3) nomtitle label star(* 0.10 ** 0.05 *** 0.01) ///
booktabs ///
title("Basic regression table \label{reg1}") ///
addnotes("Data: websuse nlswork" "Second line note")
but after the first line esttab using ".D:\Documents\Silvana Master\Daniel Salinas-Tesis\Inequality of Opportunities\regression1_1.tex", replace \\\, i get an error
option \ not allowed. i have tried changing the backslashes, but it does not work.
I appreciate if anyone can help me
I am trying to export the result of my regression to Latex, and I am following this The Stata-to-LaTeX guide. The guide provides a set of templates… | by Asjad Naqvi | The Stata Guide | Medium. I am trying to run this code they have in webpage
esttab using "./graphs/guide80/regression1_1.tex", replace ///
b(3) se(3) nomtitle label star(* 0.10 ** 0.05 *** 0.01) ///
booktabs ///
title("Basic regression table \label{reg1}") ///
addnotes("Data: websuse nlswork" "Second line note")
by doing this,
esttab using ".D:\Documents\Silvana Master\Daniel Salinas-Tesis\Inequality of Opportunities\regression1_1.tex", replace \\\
b(3) se(3) nomtitle label star(* 0.10 ** 0.05 *** 0.01) ///
booktabs ///
title("Basic regression table \label{reg1}") ///
addnotes("Data: websuse nlswork" "Second line note")
but after the first line esttab using ".D:\Documents\Silvana Master\Daniel Salinas-Tesis\Inequality of Opportunities\regression1_1.tex", replace \\\, i get an error
option \ not allowed. i have tried changing the backslashes, but it does not work.
I appreciate if anyone can help me
Comment