2014-04-10 09:57:08 +02:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
math: false
|
2014-04-15 15:06:31 +02:00
|
|
|
lang: en
|
2019-03-22 12:33:22 +01:00
|
|
|
subtitle: 'Publications'
|
2014-04-10 09:57:08 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
{% assign authors = site.data.authors %}
|
|
|
|
|
2020-10-28 09:23:38 +01:00
|
|
|
{% if site.data.submitted %}
|
2019-03-22 12:33:22 +01:00
|
|
|
# Preprints
|
|
|
|
|
2024-03-12 09:54:11 +01:00
|
|
|
<ol class="publication-list" reversed id="list_submitted">
|
2019-03-22 12:33:22 +01:00
|
|
|
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
2019-02-18 09:11:17 +01:00
|
|
|
</ol>
|
2020-10-28 09:23:38 +01:00
|
|
|
{% endif %}
|
2019-02-18 09:11:17 +01:00
|
|
|
|
2020-10-28 09:23:38 +01:00
|
|
|
{% if site.data.accepted %}
|
2019-11-14 10:17:27 +01:00
|
|
|
# Articles accepted for publication
|
|
|
|
|
2024-03-12 09:54:11 +01:00
|
|
|
<ol class="publication-list" reversed id="list_accepted">
|
2019-11-14 10:17:27 +01:00
|
|
|
{% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
|
|
|
</ol>
|
2020-10-28 09:23:38 +01:00
|
|
|
{% endif %}
|
2019-11-14 10:17:27 +01:00
|
|
|
|
2020-10-28 09:23:38 +01:00
|
|
|
{% if site.data.published %}
|
2019-03-22 12:33:22 +01:00
|
|
|
# Published articles
|
2019-02-18 09:11:17 +01:00
|
|
|
|
2024-03-12 09:54:11 +01:00
|
|
|
<ol class="publication-list" reversed id="list_published">
|
2019-03-22 12:33:22 +01:00
|
|
|
{% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
2014-04-10 09:57:08 +02:00
|
|
|
</ol>
|
2020-10-28 09:23:38 +01:00
|
|
|
{% endif %}
|
2024-03-12 09:54:11 +01:00
|
|
|
|