Skip to content

Latest commit

 

History

History
185 lines (177 loc) · 6.55 KB

publications.md

File metadata and controls

185 lines (177 loc) · 6.55 KB
layout title
page
Publications

The most accurate list of publications can be found on Google Scholar

<script> function showhide(d) { var x = document.getElementById(d); if (x.style.display === "none") { x.style.display = "block"; } else { x.style.display = "none"; } } </script>

{% assign has_preprints = false %} {% for pub in site.data.publications %} {% if pub.type == "preprint" %} {% assign has_preprints = true %} {% break %} {% endif %} {% endfor %}

{% if has_preprints == true %}

Preprints

{% for pub in site.data.publications %} {% if pub.type == "preprint" %} {% assign authors = {{pub.authors}} | split: ", " %} {% endif %} {% endfor %}

{% for author in authors %} {% if forloop.index == authors.size %} {{ author }} {% else %} {{ author }}, {% endif %} {% endfor %}
{{pub.venue}}, {{pub.year}} {% if pub.awards %} {{pub.awards}} {% endif %}

{% if pub.pdf %} [PDF] {% endif %} {% if pub.projectpage %} [Project Page] {% endif %} {% if pub.code %} [Code] {% endif %} {% if pub.bibtex %} [Bibtex] {% endif %} {% if pub.abstract %} [Abstract] {% endif %} {% if pub.video %} [Video] {% endif %}

{{pub.bibtex}}

{{pub.abstract}}

{% endif %}

{% assign has_pubs = false %} {% for pub in site.data.publications %} {% if pub.type != "preprint" %} {% assign has_pubs = true %} {% break %} {% endif %} {% endfor %}

{% if has_pubs == true %} {% if has_preprints == true %}

Peer-Reviewed Publications

{% endif %}

{% for pub in site.data.publications %} {% if pub.type != "preprint" %} {% assign authors = {{pub.authors}} | split: ", " %} {% endif %} {% endfor %}

{% for author in authors %} {% if forloop.index == authors.size %} {{ author }} {% else %} {{ author }}, {% endif %} {% endfor %}
{{pub.venue}}, {{pub.year}} {% if pub.awards %} {{pub.awards}} {% endif %}

{% if pub.pdf %} [PDF] {% endif %} {% if pub.projectpage %} [Project Page] {% endif %} {% if pub.code %} [Code] {% endif %} {% if pub.bibtex %} [Bibtex] {% endif %} {% if pub.abstract %} [Abstract] {% endif %} {% if pub.video %} [Video] {% endif %} {% if pub.news %} [In The News] {% endif %} {% if pub.news2 %} [In The News 2] {% endif %}

{{pub.bibtex}}

{{pub.abstract}}

{% endif %}