Hello!
When assigning coefficient labels on esttab, I'm writing the following:
(...)
(...)
But the resulting export to .tex is the following:
So, esttab is adding an extra \ before _{t -1}. If I export to .rtf, it gives me: name_t - 1, so the \ isn't added.
Not sure if it matters, but this happens when exporting results from a logit model. The variable is continuous. The reason that I want the_{t -1}, is that it automatically becomes a subscript in latex code, indicating that the variable is lagged.
Does anyone know how to avoid the \ getting added?
Thanks in advance for your time!
Hélder Costa
When assigning coefficient labels on esttab, I'm writing the following:
(...)
Code:
coeflabel(var1 "\(\text{name}_{t - 1}\)")
But the resulting export to .tex is the following:
Code:
\(\text{name}\_{t - 1}\)
Not sure if it matters, but this happens when exporting results from a logit model. The variable is continuous. The reason that I want the_{t -1}, is that it automatically becomes a subscript in latex code, indicating that the variable is lagged.
Does anyone know how to avoid the \ getting added?
Thanks in advance for your time!
Hélder Costa
Comment