Italicize and superscript help
How do I put in italicize text and superscript numbers if do not choose to use the built in javascript editor to add your abstract header information or abstract?
You should use HTML formating. HTML uses tags that come in pairs. A start tag and a end tag. For example to italicize a phrase using HTML you would put the following tag at the start of the word or phrase you want to be in italic <i> and put the ending tag at the end of the word or phrase </i> to stop the italics
Example: Colaptes auratus would need the following markup: <i> Colaptes auratus </i> to result in Colaptes auratus
For a superscript just put a start tag of <sup> at the front, followed by the number and end it with </sup>
Example: Hews<sup>1</sup> results in Hews1
Remember they always come in paris, one to start <i> and one to end </i> or <sup> and </sup>

