layout | title | permalink | lang | page_order |
---|---|---|---|---|
page |
Publications |
/en/publications/ |
en |
4 |
- All publications
- Publications of the last 3 years
{% if site.publication_filter %} Only the publications of the last {{ site.publication_filter }} years are displayed. {% endif %}
{% assign strudel_members = site.data.lastig.people | where: "team", "STRUDEL" %}
{%- capture ids -%} {%- for m in strudel_members -%} {%- if forloop.first != true -%},{%- endif -%} {%- if m.HAL and m.HAL.size > 0 -%} authIdHal_s:{{ m.HAL }} {%- else -%} {%- assign lastname = m.lastname | strip -%} authFullName_s:"{{ m.firstname | strip | append: " " | append: lastname | strip | url_encode }}" {%- endif -%} {%- endfor -%} {%- endcapture -%} {%- assign clean = ids | strip_newlines | split: "," | append: "" | join: ", " -%}
<script src="{{ site.baseurl }}/assets/js/hal.js" charset="utf-8"></script> <script> function showAllPublications() { getPublicationsAuthor({{ clean }}, "{{ site.baseurl }}/assets/images"); } function showLatestPublications() { var currentYear = new Date().getFullYear() var firstYearToDisplay = currentYear - 3 getPublicationsAuthor({{ clean }}, "{{ site.baseurl }}/assets/images", "["+firstYearToDisplay+" TO "+currentYear+"]"); } </script> <script defer> {% if site.publication_filter %} var currentYear = new Date().getFullYear() var firstYearToDisplay = currentYear - parseInt({{ site.publication_filter }}) getPublicationsAuthor({{ clean }}, "{{ site.baseurl }}/assets/images", "["+firstYearToDisplay+" TO "+currentYear+"]"); {% else %} getPublicationsAuthor({{ clean }}, "{{ site.baseurl }}/assets/images"); {% endif %} </script>