Skip to content

Latest commit

 

History

History
200 lines (186 loc) · 7.12 KB

publications.md

File metadata and controls

200 lines (186 loc) · 7.12 KB
layout title
article

{% if site.data.preprints != blank %}

Preprints

{% endif %}

{% for paper in site.data.preprints %} {% if paper.international == true %}

{{paper.title}}
{% for author in paper.authors %} {% if forloop.last == true %} and {{ author }} {% else %} {{ author }}, {% endif %} {% endfor %}
{% if paper.publisher.link != nil %} {{ paper.publisher.venue }} {% else %} {{ paper.publisher.venue }} {% endif %}
{% if paper.type == "conference" %} Conference {% elsif paper.type == "journal" %} Journal {% elsif paper.type == "arxiv" %} Preprint {% endif %} {{ paper.month }} {{ paper.year }} {% if paper.pdf != nil %} Paper {% endif %} {% if paper.bib != nil %} BibTex {% endif %} {% if paper.slide != nil %} Slide {% endif %} {% if paper.code != nil %} Code {% endif %}
{% endif %} {% endfor %}

International Publications

{% for paper in site.data.papers %} {% if paper.international == true %}

{{paper.title}}
{% for author in paper.authors %} {% if forloop.last == true %} and {{ author }} {% else %} {{ author }}, {% endif %} {% endfor %}
{% if paper.publisher.link != nil %} {{ paper.publisher.venue }} {% else %} {{ paper.publisher.venue }} {% endif %}
{% if paper.type == "conference" %} Conference {% elsif paper.type == "journal" %} Journal {% endif %} {{ paper.month }} {{ paper.year }} {% if paper.pdf != nil %} Paper {% endif %} {% if paper.bib != nil %} BibTex {% endif %} {% if paper.slide != nil %} Slide {% endif %} {% if paper.code != nil %} Code {% endif %}
{% endif %} {% endfor %}

Domestic Publications

{% for paper in site.data.papers %} {% if paper.international == false %}

{{paper.title}}
{% for author in paper.authors %} {% if forloop.last == true %} and {{ author }} {% else %} {{ author }}, {% endif %} {% endfor %}
{% if paper.publisher.link != nil %} {{ paper.publisher.venue }} {% else %} {{ paper.publisher.venue }} {% endif %}
{% if paper.type == "conference" %} Conference {% elsif paper.type == "journal" %} Journal {% endif %} {{ paper.month }} {{ paper.year }} {% if paper.pdf != nil %} Paper {% endif %} {% if paper.bib != nil %} BibTex {% endif %} {% if paper.slide != nil %} Slide {% endif %} {% if paper.code != nil %} Code {% endif %}
{% endif %} {% endfor %}