layout | title | header | group | weight | menu |
---|---|---|---|---|---|
page |
Publications |
Publications |
navigation |
6 |
Publications |
{% assign publications = site.posts | where_exp: "post","post.tags contains 'publication'" %}
{% 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 %}
{% assign techreports = publications | where_exp: "post","post.thesort contains 'techreport'" %}
{% assign pubsperYear = techreports | group_by_exp:"post", "post.date | date: '%Y'" %}
-
{% 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 %}
{% for year in pubsperYear %}
{% assign books = publications | where_exp: "post","post.thesort contains 'book'" %}
{% assign pubsperYear = books | group_by_exp:"post", "post.date | date: '%Y'" %}
-
{% 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 %}
{% for year in pubsperYear %}
{% assign thesis = publications | where_exp: "post","post.thesort contains 'thesis'" %}
{% assign pubsperYear = thesis | group_by_exp:"post", "post.date | date: '%Y'" %}
-
{% 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 %}
{% for year in pubsperYear %}
-
{% 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 %}