Files
2026-08-12 12:26:03 -03:00

30 lines
841 B
HTML

---
title: Publications
description: My research papers
permalink: /publications/
listing: true
---
{% for pub in site.data.publications %}
<article id="{{ pub.slug }}">
<header>
<p>
<time datetime="{{ pub.date | date_to_xmlschema }}">
{{ pub.date | date_to_long_string: "ordinal" }}
</time>
</p>
<h2><a href="{% if pub.web %}{{ pub.web }}{% else %}{{ pub.file }}{% endif %}">{{ pub.title }}</a></h2>
</header>
<section>
{% if pub.venue %}<p>{{ pub.venue }}</p>{% endif %}
</section>
<footer>
<p>
{% if pub.web %}<a href="{{ pub.web }}">Web edition</a> · {% endif %}
<a class="file" href="{{ pub.file }}">PDF</a> ·
<a class="doi" href="https://doi.org/{{ pub.doi }}">{{ pub.doi }}</a>
</p>
</footer>
</article>
{% endfor %}