Skip to content

Latest commit

 

History

History
53 lines (45 loc) · 1.4 KB

biblio_other.md

File metadata and controls

53 lines (45 loc) · 1.4 KB
title layout permalink
page_select
bibliography.html

Publications of the {{site.title}}

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

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

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

{{year}}

{% assign section = "" %}

{% for entry in biblio_sorted %} {% if entry.year == year %} {% if section != entry.subcat %} {% assign section = entry.subcat %}
{{section|upcase}}:
{% endif %}
  • • {% if entry.doi %} {% capture title %}{{entry.title}}{% endcapture %} {% else %} {% assign title = {{entry.title}} %} {% endif %} {% if entry.journal %} {{entry.author}}: {{title}}, {{entry.journal}} ({{entry.year}}) {% elsif entry.booktitle %} {{entry.author}}: {{title}}, {{entry.booktitle}} ({{entry.year}}) {% else %} {{entry.author}}: {{title}} ({{entry.year}}) {% endif %}
  • {% endif %} {% endfor %}

    {% endfor %}