Publications
------------
.. jinja:: data
.. raw:: html
Since 2010, the EOS Collaboration has published a total of {{ papers.keys() | length }} publications.
The full list of publications is given in the table below.
| ID |
Title |
Authors |
arXiv |
Journal |
{% set ns = namespace(year='3000') %}
{% for id, p in papers.items() %}
{% set year = id.split('-')[0] %}
{% if ns.year > year %}
| {{ year }} |
{% set ns.year = year %}
{% endif %}
| {{ id }} |
{{ p.title }} |
{{ ', '.join(p.authors) }} |
{{ '' + p.arxiv + '' if 'arxiv' in p else 'N/A' }} |
{{ '' + p.journal.ref + '' if 'doi' in p.journal else (p.journal.ref if 'ref' in p.journal else 'N/A') }} |
{% endfor %}