Including Further Field Values

In this example the creation date of the file and the value of a custom field Abstract are both read out, separated from the title by a line break, and formatted differently:

<npsobj list="toclist">
  <p>
    <!-- Insert creation date-->
    <font size="-1">
      Created on: <npsobj name="validFrom" insertvalue="var"/>
    </font>
    <br>

    <!-- Insert linked title-->
    <b><npsobj name="self" insertvalue="anchor">
      <npsobj name="title" insertvalue="var"/>
    </npsobj></b>
    <br>

    <!-- Insert Abstract-->
    <i>
      <npsobj name="Abstract" insertvalue="var"/>
    </i>
  </p>
</npsobj>