Journal Articles
{% assign pubs = site.publications | sort: "year" | reverse -%}
{% for pub in pubs -%}
{%- if pub.category == "journal" -%}
{% include publication.html pub=pub %}
{%- endif -%}
{%- endfor %}
Conference Articles
{% for pub in pubs -%}
{%- if pub.category == "conference" -%}
{% include publication.html pub=pub %}
{%- endif -%}
{%- endfor %}
Workshop and Poster Articles
{% for pub in pubs -%}
{%- if pub.category == "poster" or pub.category == "workshop" -%}
{% include publication.html pub=pub %}
{%- endif -%}
{%- endfor %}
Patents
{% for pub in pubs -%}
{%- if pub.category == "patent" -%}
{% include publication.html pub=pub %}
{%- endif -%}
{%- endfor %}
Theses
{% for pub in pubs -%}
{%- if pub.category == "thesis" -%}
{% include publication.html pub=pub %}
{%- endif -%}
{%- endfor %}
Other
{% for pub in pubs -%}
{%- if pub.category == "other" -%}
{% include publication.html pub=pub %}
{%- endif -%}
{%- endfor %}