how to format authors to the abstract of a paper
There is a 'special' html format allowing to style nicely the authors of a paper when you add them to the abstract. Technically this serves a couple of purposes - better control over how they are rendered, it is good for improving the accessibility, for example a sreen reader will explicitly sepaparete the listed authors when pronouncing them.
the html code is not very involved:
<ul class="authors-list" > <li>author1 </li> <li>author2 </li> </ul>
which is rendered as:
It is a good practice to add the authors to the abstracts. That is not only curteous, but could be quite useful as well.
login or register to download the paper.
Who's online
There are currently 0 users and 165 guests online.










I´ve simply extended this approach to link an author´s real name to their username on the site.
Look at at this paper to see what I mean :)
<ul class="authors-list">
<li><a href=http://conference.iproms.org/user/mekid>A. Khalid </a></li>
<li><a href=mailto://s.mekid@manchester.ac.uk>S. Mekid</a> </li>
</ul>
Which gets rendered as this:
Clicking on the first name takes you to the author´s page on the IPROMS site. The second author hasn´t registered, or hasn´t supplied their name, but they did publish their email address, so that´s what I´ve linked to :)