Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 1.12 KB

biblio_other.md

File metadata and controls

46 lines (38 loc) · 1.12 KB
title layout permalink
page
/bibliography/other

Publications of the {{site.title}} group

{% assign today = site.time | date: '%Y' %} {% assign biblio_sorted = (site.biblio | sort: 'year' | reverse %}

{% for idx in (0..5) %}

{% assign year = today | minus: idx %}

{{year}}

{% for entry in biblio_sorted %} {% if entry.year == year %}
  • {% if entry.journal %} {{entry.author}} {{entry.title}}, {{entry.journal}} ({{entry.year}}) {% elsif entry.booktitle %} {{entry.author}} {{entry.title}}, {{entry.booktitle}} ({{entry.year}}) {% else %} {{entry.author}} {{entry.title}} ({{entry.year}}) {% endif %} {% if entry.doi %} DOI {% endif %} {% if entry.pdf %} PDF {% endif %}
  • {% endif %} {% endfor %}

    {% endfor %}