Format text in EML

Currently, only certain fields (abstracts, methods) support text formatting in EML. Check out this demo for a full example. Additional info is also available here.

Many of these formatting functions only work when enclosed by <para></para>

You can insert these tags directly into the EML document using syntax that looks like this:

doc$dataset$abstract <- eml$abstract(para = "Some abstracts require subscripts like CO<subscript>2</subscript>")

Type-setting

Subscripts, superscripts, and italics:

<subscript>You can do subscripts</subscript>
<superscript>or superscipts</superscript>
<emphasis>or even italics.</emphasis> 

Lists

Unordered (bulleted) lists:

<itemizedlist>
    <listitem>
        <para>Paragraphs</para>
    </listitem>
    <listitem>
        <para>Sections w/ subsections (w/ titles)</para>
    </listitem>
</itemizedlist>

Ordered lists (1, 2, 3)…

<orderedlist>
    <listitem>
        <para>something</para>
    </listitem>
    <listitem>
        <para>something else</para>
    </listitem>
</orderedlist>