0

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>&plusmn 0.001<MATH></td>
</tr>
szczor1
  • 151
  • 1
  • 10
  • Does this answer your question? [How to write equations in html?](https://stackoverflow.com/questions/12431339/how-to-write-equations-in-html) – Roy Apr 23 '20 at 13:19

1 Answers1

2

You missing ; should be &plusmn;

<tr>
    <td>Mean of y</td>
    <td>7.5</td>
    <td><MATH>&plusmn; 0.001<MATH></td>
</tr>
Hien Nguyen
  • 23,011
  • 7
  • 48
  • 55