homepage/en/publications.markdown

33 lines
671 B
Markdown
Raw Normal View History

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
2019-02-18 09:11:17 +01:00
<ol reversed>
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 accepted for publication
<ol reversed>
{% 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
# Published articles
2019-02-18 09:11:17 +01:00
2014-04-10 09:57:08 +02:00
<ol reversed>
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 %}