homepage/publications.markdown

34 lines
765 B
Markdown
Raw Normal View History

2014-04-10 09:57:08 +02:00
---
layout: default
math: false
2019-03-22 12:33:22 +01:00
subtitle: Publications
2014-04-10 09:57:08 +02:00
---
{% assign authors = site.data.authors %}
{% assign journals = site.data.journals %}
2014-04-10 09:57:08 +02:00
2020-10-28 09:23:38 +01:00
{% if site.data.submitted %}
2019-03-22 12:33:22 +01:00
# Articles soumis (preprints)
2023-10-25 08:15:38 +02:00
<ol 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 %}
# Articles acceptés
2023-10-25 08:15:38 +02:00
<ol reversed id="list_accepted">
{% 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 %}
2020-10-28 09:23:38 +01:00
{% if site.data.published %}
2019-03-22 12:33:22 +01:00
# Articles publiés
2019-02-18 09:11:17 +01:00
2023-10-25 08:15:38 +02:00
<ol 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 %}