Skip to content

Latest commit

 

History

History
179 lines (171 loc) · 6.22 KB

File metadata and controls

179 lines (171 loc) · 6.22 KB
layout page
title Publications

Our lab began in Fall 2021! Publications and preprints from our group will show up here soon.

<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 %}

{{pub.bibtex}}

{{pub.abstract}}

{% endif %}