| title | Publications |
|---|---|
| layout | default |
| excerpt | All Publications. |
{% assign this_year = site.time | date: "%Y" %}
{% assign current_year = nil %}
{% for pub in site.data.publications.dblp_generated %}
{% if pub.year != current_year %} {% unless pub.year == this_year %}
{{ pub.year }}
{% endunless %}
{% assign current_year = pub.year %}
{% endif %}
{{ pub.authors | join: ", " }}
{{ pub.venue }}{% if pub.year %}, {{ pub.year }}{% endif %} | {{ pub.type | capitalize }}
{% endfor %}