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.

{% set ns = namespace(year='3000') %} {% for id, p in papers.items() %} {% set year = id.split('-')[0] %} {% if ns.year > year %} {% set ns.year = year %} {% endif %} {% endfor %}
ID Title Authors arXiv Journal
{{ year }}
{{ 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') }}