Skip to content

Latest commit

 

History

History
75 lines (67 loc) · 2.97 KB

techreports.md

File metadata and controls

75 lines (67 loc) · 2.97 KB
layout title section_id
default
Technical Reports
techreports
{% include section-header.html title="Technical Reports" tagline="" color="#000000" class="big" %}

COPYRIGHT NOTICE

The documents here are provided as a means to ensure timely dissemination of technical work on a noncommercial basis. Copyright and all rights therein are maintained by the authors or by other copyright holders. It is understood that anyone copying the papers from this page will adhere to the terms and constraints invoked by the copyright.


{% assign current_year = site.time | date: "%Y" %} {% assign months = "unknown,January,February,March,April,May,June,July,August,September,October,November,December" | split: "," %} {% for year in (1997..current_year) reversed %} {% assign is_publication_for_year = false %} {% for pub in site.data.publications %} {% if pub.type == "techreport" %} {% if pub.year == year %} {% assign is_publication_for_year = true %} {% endif %} {% endif %} {% endfor %}

{% if is_publication_for_year %}

{{ year }}

    {% for month in months reversed %} {% for pub in site.data.publications %} {% assign pub_month_downcase = pub.month | downcase %} {% assign month_downcase = month | downcase %} {% if pub.year == year and pub_month_downcase == month_downcase %} {% if pub.type == "techreport" or pub.type == "internet-draft" %}
  • {{ pub.authors }}
    "{{ pub.title }}"
    {% if pub.type == "techreport" %} {{ pub.institution }}, Technical Report {{ pub.number }}, {% if month != "unknown" %} {{ month }} {% endif %}{{ year }}.
    {% elsif pub.type == "internet-draft" %} {{ pub.group }}, Internet-Draft, {% if month != "unknown" %} {{ month }} {% endif %}{{ year }}.
    {% endif %} {% if pub.note %} {{ pub.note }}
    {% endif %} {% if pub.pdf %} PDF {% elsif pub.pdfext %} PDF {% endif %} {% if pub.html %} HTML {% endif %}
  • {% endif %} {% endif %} {% endfor %} {% endfor %}
{% endif %} {% endfor %}