Skip to content

Latest commit

 

History

History
86 lines (67 loc) · 2.18 KB

publications.md

File metadata and controls

86 lines (67 loc) · 2.18 KB
title layout excerpt sitemap permalink
Publications
gridlay
Publications
false
/publications/

Related Publications

{% assign sorted_pubs = site.data.publist | sort: "year" | reverse %}

{% for publi in sorted_pubs %}

{% assign author_list = publi.author %} {% assign sep_string = "," %} {% assign split_auth = author_list | split:sep_string %}

{% if split_auth.size > 4 %} {% assign author_list = split_auth[0] | append: ", " | append: split_auth[1] |append: ", " | append: split_auth[2] |append: ", " | append: split_auth[3] %} {% assign author_list = author_list | append: ", " | append: " et. al." %} {% endif %} {% assign pubinfo = "" %} {% if publi.journal.size > 1 %} {% assign pubinfo = publi.journal | append: " " | append: publi.volume | append: " " | append: publi.pages %} {% endif %}

{{ author_list }}, {{ publi.title}} {{pubinfo}} ({{publi.year}}). {% if publi.abstract.size > 7 %}

  • {{publi.abstract}} {% endif %} {% if publi.link %}

    Read More

{% endif %} {% endfor %}