2014-04-10 09:57:08 +02:00
|
|
|
{% assign pub = include.pub %}{% assign authors = include.authors %}
|
|
|
|
<li>
|
|
|
|
<p class="left">
|
|
|
|
<strong>{{pub.title}}</strong>
|
|
|
|
<span class="right">
|
|
|
|
{% for a in pub.authors %}
|
|
|
|
{% assign ca = authors[a] %}
|
|
|
|
{% if ca.home %}
|
|
|
|
<a href="{{ca.home)}}">{{ca.name}}</a>
|
|
|
|
{%else%}
|
|
|
|
{{ca.name}}
|
|
|
|
{%endif%}
|
|
|
|
{% if forloop.last %}{%else%}, {% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
<p class="clear">
|
|
|
|
{% if pub.journal %}<em>{{pub.journal}}</em> {{pub.issue}}{% else %} <em>preprint</em> {% endif %}
|
|
|
|
<span class="right">
|
|
|
|
{% if pub.arxiv %}
|
|
|
|
<span class="paper_link"><a href="http://arxiv.org/abs/{{pub.arxiv}}">arXiv</a></span>
|
|
|
|
{% endif %}
|
|
|
|
{% if pub.hal %}
|
|
|
|
<span class="paper_link"><a href="http://hal.archives-ouvertes.fr/hal-{{pub.hal}}">HAL</a></span>
|
|
|
|
{% endif %}
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
</li>
|