I would like to use math mode inside the table in HTML, how can I do that? I tried with that, but it does not work.
<tr>
<td>Mean of y</td>
<td>7.5</td>
<td><MATH>± 0.001<MATH></td>
</tr>
I would like to use math mode inside the table in HTML, how can I do that? I tried with that, but it does not work.
<tr>
<td>Mean of y</td>
<td>7.5</td>
<td><MATH>± 0.001<MATH></td>
</tr>
You missing ; should be ±
<tr>
<td>Mean of y</td>
<td>7.5</td>
<td><MATH>± 0.001<MATH></td>
</tr>