You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$$
\underbrace{E[Y_i|D_i=1]- E[Y_i|D_i=0]}_\text{Observed difference in average health} =
\underbrace{E[Y_{1i}|D_i=1]- E[Y_{0i}|D_i=1]}_\text{Average treatment effect on the treated} +
\underbrace{E[Y_{0i}|D_i=1]- E[Y_{0i}|D_i=0]}_\text{Selection Bias}
$$
Yet to make it work here in github, I must escape _\ to \_\
$$
\underbrace{E[Y_i|D_i=1]- E[Y_i|D_i=0]}\_\text{Observed difference in average health} =
\underbrace{E[Y_{1i}|D_i=1]- E[Y_{0i}|D_i=1]}\_\text{Average treatment effect on the treated} +
\underbrace{E[Y_{0i}|D_i=1]- E[Y_{0i}|D_i=0]}\_\text{Selection Bias}
$$
After escaping the underscores it does work
$$
\underbrace{E[Y_i|D_i=1]- E[Y_i|D_i=0]}_\text{Observed difference in average health} = \underbrace{E[Y_{1i}|D_i=1]- E[Y_{0i}|D_i=1]}_\text{Average treatment effect on the treated} + \underbrace{E[Y_{0i}|_i=1]- E[_{0i}|_i=0]}_\text{Selection Bias}
$$
Any idea if this can be resolved as it appears to be similar in root cause to the issue when trying to render this
This latex is correct
Yet to make it work here in github, I must escape
_\
to\_\
After escaping the underscores it does work
$$
\underbrace{E[Y_i|D_i=1]- E[Y_i|D_i=0]}_\text{Observed difference in average health} = \underbrace{E[Y_{1i}|D_i=1]- E[Y_{0i}|D_i=1]}_\text{Average treatment effect on the treated} + \underbrace{E[Y_{0i}|_i=1]- E[_{0i}|_i=0]}_\text{Selection Bias}
$$
Any idea if this can be resolved as it appears to be similar in root cause to the issue when trying to render this
Resulting in this error
$$
\begin{aligned}
Y_i &= \left {
\begin{array}{ll}
Y_{1i} & \text{if } D_i = 1 \
Y_{0i} & \text{if } D_i = 0 \
\end{array}
\right. \
&= Y_{0i} + (Y_{1i} - Y_{0i})D_{i*}
\end{aligned}
$$
Change the latex like this
Amending the original
\{
to\\{
and the\\
to\\\\
resolves the issueMathjax correctly renders the latex and I can extract it for use elsewhere.
With thanks
The text was updated successfully, but these errors were encountered: