--- layout: default title: "Publications" permalink: /publications.html description: "List of academic publications by Your Name" ---

Total Publications

{{ site.data.publications | size }}

Total Citations

{% assign total_citations = 0 %} {% for pub in site.data.publications %} {% assign total_citations = total_citations | plus: pub.citations %} {% endfor %} {{ total_citations }}+

h-index

{% assign citations = site.data.publications | map: 'citations' | sort | reverse %} {% assign h_index = 0 %} {% for citation in citations %} {% if citation > forloop.index %} {% assign h_index = forloop.index %} {% endif %} {% endfor %} {{ h_index }}
{% assign sorted_pubs = site.data.publications | sort: 'year' | reverse %} {% for pub in sorted_pubs %}
{{ pub.year }} {{ pub.type | capitalize }} {% if pub.featured %} Featured {% endif %}

{{ pub.title }}

{{ pub.authors }}
{{ pub.venue }} {% if pub.volume %} , Volume {{ pub.volume }} {% endif %} {% if pub.pages %} , pp. {{ pub.pages }} {% endif %}
{% if pub.abstract %}

{{ pub.abstract | truncate: 200 }}

{% endif %}
{% if pub.citations %} {{ pub.citations }} citations {% endif %} {% if pub.doi %} DOI: {{ pub.doi | truncate: 20 }} {% endif %}
{% if pub.keywords %}
{% for keyword in pub.keywords %} {{ keyword }} {% endfor %}
{% endif %}
{% endfor %}

Export Publications