27 lines
550 B
Markdown
27 lines
550 B
Markdown
---
|
|
layout: default
|
|
math: false
|
|
lang: en
|
|
subtitle: 'Publications'
|
|
---
|
|
|
|
{% assign authors = site.data.authors %}
|
|
|
|
# Preprints
|
|
|
|
<ol reversed>
|
|
{% for pub in site.data.submitted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
|
</ol>
|
|
|
|
# Articles accepted for publication
|
|
|
|
<ol reversed>
|
|
{% for pub in site.data.accepted %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
|
</ol>
|
|
|
|
# Published articles
|
|
|
|
<ol reversed>
|
|
{% for pub in site.data.published %}{% include publi_row.html pub=pub authors=authors %}{% endfor %}
|
|
</ol>
|
|
|