{% extends "home.html" %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Publications

Monographs and book Chapters

    {% for p in papers.books %}
  1. {{ p.title }} {% if p.handle is defined %}{% endif %}
    {{ p.authors }}
    {{ p.journal }}
    DOI: {{ p.DOI }} {% if p.arXiv is defined %} {{ p.arXiv }}
    {% else %}
    {% endif %}
    {%- if p.notes is defined -%} {{ p.notes | safe }}
    {%- endif -%}
  2. {% endfor %}
{% if papers.preprint is defined %}

Pre-prints

    {% for p in papers.preprint %}
  1. {{ p.title }} {% if p.handle is defined %}{% endif %}
    {{ p.authors }}
    {{ p.arXiv }}

    {% if p.notes is defined %} {{ p.notes|safe }}
    {% endif %}
  2. {% endfor %}
{% endif %}

Journal Papers

    {% for p in papers.journal %}
  1. {{ p.title }} {% if p.handle is defined %}{% endif %}
    {{ p.authors }}
    {{ p.journal }}
    DOI: {{ p.DOI }} {% if p.arXiv is defined %} {{ p.arXiv }}
    {% else %}
    {% endif %}
    {%- if p.notes is defined -%} {{ p.notes | safe }}
    {%- endif -%}
  2. {% endfor %}
{% endblock %}