33 lines
806 B
Markdown
33 lines
806 B
Markdown
---
|
|
layout: default
|
|
math: false
|
|
lang: en
|
|
subtitle: 'Publications'
|
|
---
|
|
|
|
{% assign authors = site.data.authors %}
|
|
|
|
{% if site.data.submitted %}
|
|
# Preprints
|
|
|
|
<ol class="publication-list" reversed id="list_submitted">
|
|
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
|
</ol>
|
|
{% endif %}
|
|
|
|
{% if site.data.accepted %}
|
|
# Articles accepted for publication
|
|
|
|
<ol class="publication-list" reversed id="list_accepted">
|
|
{% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
|
</ol>
|
|
{% endif %}
|
|
|
|
{% if site.data.published %}
|
|
# Published articles
|
|
|
|
<ol class="publication-list" reversed id="list_published">
|
|
{% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
|
</ol>
|
|
{% endif %}
|
|
|