Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 1.07 KB

biblio_selected.md

File metadata and controls

38 lines (33 loc) · 1.07 KB
title layout permalink
page_select
bibliography/bestof.html

Selected publications of the {{site.title}}

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

{% for entry in biblio_sorted %} {% if entry.year > year and entry.bestof %}
  • • {% 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 %}