Hi,
I am trying to export regression results from Stata to Latex and I want to add a latex formula to the output. The code is the following:
The $\times$ is the latex formula. When storing the local Stata cuts off the second "$" and the following "Y", so the output only contains "C$\times".
I tried to escape the "$"
but the results are the same.
Does anyone have an idea how to fix this?
Thanks!
I am trying to export regression results from Stata to Latex and I want to add a latex formula to the output. The code is the following:
Code:
reghdfe y x1 x2 x3, absorb(C#Y) estadd local fe "C$\times$Y"
I tried to escape the "$"
Code:
estadd local fe "C\$\times\$Y"
Does anyone have an idea how to fix this?
Thanks!
Comment