When rendering math containing only letters and other symbols without ascenders (e.g. "x") inside a <td>
tag, the text does not align on the baseline (tested with Chrome 56 and Firefox 52 on Windows 1.
Example:
<html>
<head>
<script src='https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script>
<style>
td {border:1pt solid gray;}
table {border-collapse: collapse;}
</style>
</head>
<body>
<table><tr>
<td>reference</td>
<td>\(x\)</td>
<td>\(x\)x</td>
<td>\(xx\)</td>
<td>\(\cdot\)</td>
<td>\(\cdot t\)</td>
<td>\(=\)</td>
<td>\(=t\)</td>
</tr></table>
</body>
<html>
Is there an easy way to correct this?