Skip to content

Latest commit

 

History

History
87 lines (77 loc) · 3.33 KB

publications.md

File metadata and controls

87 lines (77 loc) · 3.33 KB
layout title header group weight menu
page
Publications
Publications
navigation
6
Publications

{% assign publications = site.posts | where_exp: "post","post.tags contains 'publication'" %}

Peer Reviewed Publications

{% assign peerreviewed = publications | where_exp: "post","post.thesort contains 'peerreviewed'" %} {% assign pubsperYear = peerreviewed | group_by_exp:"post", "post.date | date: '%Y'" %}
{% for year in pubsperYear %}
{{ year.name }}
    {% for post in year.items%} {% assign authors = post.authors | split:"," %} {% capture myauthors %}{% for author in authors%}{% if author contains 'Rahul Gopinath' %}Rahul Gopinath{% else %}{{author}}{% endif %}{% if forloop.last == true %}{% else %}, {% endif %}{% endfor %}{% endcapture %}
  • {{ post.title }}
    {{ myauthors}}
    {{ post.venue }} {{ post.date | date: "%Y"}}.
  • {% endfor %}
{% endfor %}

Technical Reports

{% assign techreports = publications | where_exp: "post","post.thesort contains 'techreport'" %} {% assign pubsperYear = techreports | group_by_exp:"post", "post.date | date: '%Y'" %}
{% for year in pubsperYear %}
{{ year.name }}
    {% for post in year.items%} {% assign authors = post.authors | split:"," %} {% capture myauthors %}{% for author in authors%}{% if author contains 'Rahul Gopinath' %}Rahul Gopinath{% else %}{{author}}{% endif %}{% if forloop.last == true %}{% else %}, {% endif %}{% endfor %}{% endcapture %}
  • {{ post.title }}
    {{ myauthors}}
    {{ post.venue }} {{ post.date | date: "%Y"}}.
  • {% endfor %}
{% endfor %}

Books

{% assign books = publications | where_exp: "post","post.thesort contains 'book'" %} {% assign pubsperYear = books | group_by_exp:"post", "post.date | date: '%Y'" %}
{% for year in pubsperYear %}
{{ year.name }}
    {% for post in year.items%} {% assign authors = post.authors | split:"," %} {% capture myauthors %}{% for author in authors%}{% if author contains 'Rahul Gopinath' %}Rahul Gopinath{% else %}{{author}}{% endif %}{% if forloop.last == true %}{% else %}, {% endif %}{% endfor %}{% endcapture %}
  • {{ post.title }}
    {{ myauthors}}
    {{ post.venue }} {{ post.date | date: "%Y"}}.
  • {% endfor %}
{% endfor %}

Thesis

{% assign thesis = publications | where_exp: "post","post.thesort contains 'thesis'" %} {% assign pubsperYear = thesis | group_by_exp:"post", "post.date | date: '%Y'" %}
{% for year in pubsperYear %}
{{ year.name }}
    {% for post in year.items%} {% assign authors = post.authors | split:"," %} {% capture myauthors %}{% for author in authors%}{% if author contains 'Rahul Gopinath' %}Rahul Gopinath{% else %}{{author}}{% endif %}{% if forloop.last == true %}{% else %}, {% endif %}{% endfor %}{% endcapture %}
  • {{ post.title }}
    {{ myauthors}}
    {{ post.venue }} {{ post.date | date: "%Y"}}.
  • {% endfor %}
{% endfor %}