layout | title |
---|---|
article |
{% if site.data.preprints != blank %}
{% 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 %}
{% 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 %}
{% 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 %}