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 %}
{% 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.abstract}} |
{% 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 %}
{% 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.abstract}} |