{% if site.author.googlescholar %}
You can also find my articles on my Google Scholar profile.
{% endif %} {% include base_path %} New style rendering if publication categories are defined {% if site.publication_category %} {% for category in site.publication_category %} {% assign conference_shown = false %} {% assign journal_shown = false %} {% assign other_shown = false %}

{{ category[1].title }}


{% for post in site.publications reversed %} {% if post.type != "conference" or post.category != category[0] %} {% continue %} {% endif %} {% unless conference_shown %} {% if post.type == "conference" %}

Conference


{% assign conference_shown = true %} {% endif %} {% endunless %} {% include archive-single.html %} {% endfor %} {% for post in site.publications reversed %} {% if post.type != "journal" or post.category != category[0] %} {% continue %} {% endif %} {% unless journal_shown %} {% if post.type == "journal" %}

Journal


{% assign journal_shown = true %} {% endif %} {% endunless %} {% include archive-single.html %} {% endfor %} {% for post in site.publications reversed %} {% if post.type != "other" or post.category != category[0] %} {% continue %} {% endif %} {% unless other_shown %} {% if post.type == "other" %}

Poster/Demo/Workshop Papers


{% assign other_shown = true %} {% endif %} {% endunless %} {% include archive-single.html %} {% endfor %} {% endfor %} {% else %} {% for post in site.publications reversed %} {% include archive-single-pub.html %} {% endfor %} {% endif %}