{% assign working_papers = site.data.papers | where_exp: "paper", "paper.journal_status != 'published'" %} {% for paper in working_papers %}
- {{ paper.title }}{% if paper.coauthors %} (with {{ paper.coauthors | join: ", " }}){% endif %}
{% if paper.journal_status %}
- {{ paper.journal_status }} {% endif %}
- Show Abstract
{{ paper.abstract }} {% if paper.links %} - {% for link in paper.links %}{{ link.name }}{% if forloop.last == false %}, {% endif %}{% endfor %} {% endif %} {% endfor %}
{% assign published_papers = site.data.papers | where: "journal_status", "published" %} {% for paper in published_papers %}
- {{ paper.title }}{% if paper.coauthors %} (with {{ paper.coauthors | join: ", " }}){% endif %}
{% if paper.journal %}
- {{ paper.journal }}{% if paper.year %}, {{ paper.year }}{% endif %} {% endif %}
- Show Abstract
{{ paper.abstract }} {% if paper.links %} - {% for link in paper.links %}{% if link.name == 'Cite' %}Cite{% else %}{{ link.name }}{% endif %}{% if forloop.last == false %}, {% endif %}{% endfor %} {% endif %} {% endfor %}
{% if site.data.wip and site.data.wip.size > 0 %}
{% for wip in site.data.wip %}
- {{ wip.title }}{% if wip.coauthors %} (with {{ wip.coauthors | join: ", " }}){% endif %} {% endfor %} {% endif %}
You can find my CV here.