Hi, I'm trying to create a numbered list of publications for a scientific website. Unfortunately, some entries refer to isotopes using notation in which a superscripted Atomic Number and a subscripted Neutron Number immediately precede the element symbol, i.e. one above the other in the same character position. I have come across a method using tables to implement this notation successfully, but not in the context of a numbered list; combining the two techniques has so far proved impossible. The line number appears above or below the text, possibly aligned with the lowest/highest cell in the table(s) - nothing I have tried works!
In IE7 the following code shows what it should look like, with the numbers hard-coded in (see below for the required result, give or take a few spaces between the numbers and the text!):
<body marginheight=2 marginwidth=2 topmargin=2 leftmargin=0>
1) First item in numbered list
<table border=0 cellspacing=0 cellpadding=0 valign=top>
<tr>
<td align=left>
<table cellpadding=0 border=0 cellspacing=0 align=left>
<tr>
<td>2) Second item in numbered list showing Isotope  </td>
<td>
<table cellpadding=0 border=0 cellspacing=0>
<tr>
<td class=chart align=left><font size="2">96<br>40</font></td>
<td class=chart>Zr</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td> Unnumbered second line of second entry</td>
</tr>
</table>
3)    Next item in numbered list
</body>
In this layout, imagine the 96 above the 40, without the slash, both in sub/superscript fontsize:
1) First item in numbered list
2) Second item in numbered list showing Isotope 96/40Zr
Unnumbered second line of second entry
3) Next item in numbered list
I have seen references to an add-on called MathML, which offers this functionality, but I'd prefer not to have to go down that route. Am I overlooking something simple?
Any ideas and/or different approaches much appreciated! Thanks.
In IE7 the following code shows what it should look like, with the numbers hard-coded in (see below for the required result, give or take a few spaces between the numbers and the text!):
<body marginheight=2 marginwidth=2 topmargin=2 leftmargin=0>
1) First item in numbered list
<table border=0 cellspacing=0 cellpadding=0 valign=top>
<tr>
<td align=left>
<table cellpadding=0 border=0 cellspacing=0 align=left>
<tr>
<td>2) Second item in numbered list showing Isotope  </td>
<td>
<table cellpadding=0 border=0 cellspacing=0>
<tr>
<td class=chart align=left><font size="2">96<br>40</font></td>
<td class=chart>Zr</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td> Unnumbered second line of second entry</td>
</tr>
</table>
3)    Next item in numbered list
</body>
In this layout, imagine the 96 above the 40, without the slash, both in sub/superscript fontsize:
1) First item in numbered list
2) Second item in numbered list showing Isotope 96/40Zr
Unnumbered second line of second entry
3) Next item in numbered list
I have seen references to an add-on called MathML, which offers this functionality, but I'd prefer not to have to go down that route. Am I overlooking something simple?
Any ideas and/or different approaches much appreciated! Thanks.