forked from ANSR-UofU/ANSR-UofU.github.io
-
Notifications
You must be signed in to change notification settings - Fork 2
/
papers.html
29 lines (27 loc) · 1.52 KB
/
papers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: default
title: Papers
permalink: /papers.html
---
{% for x in site.data.years %}
<p> <h3> {{ x.year }} </h3> </p>
<ul>
{% for paper in site.data.papers %}
{% if paper.year == x.year %}
<li>
{% if paper.url %}
<p>{{ paper.authors }}, <a href="{{ paper.url }}">{{ paper.title }}</a>, {{ paper.conference }}.
{% else %}
<p>{{ paper.authors }}, "{{ paper.title }}", {{ paper.conference }}.
{% endif %}
{% if paper.extra_title %}
(<a href="{{ paper.extra_url }}">{{ paper.extra_title }}</a>).
{% endif %}
</p>
</li>
{% endif %}
{% endfor %}
</ul>
{% endfor %}
<h5> Copyright notices </h5>
<small> IEEE Copyrighted material: Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works, must be obtained from the IEEE. Contact: Manager, Copyrights and Permissions / IEEE Service Center / 445 Hoes Lane / P.O. Box 1331 / Piscataway, NJ 08855-1331, USA. Telephone: +1-908-562-3966. ACM Copyrighted material: Copyright ACM. This is the author's version of the work. It is posted here by permission of ACM for your personal use. Not for redistribution. The definitive version was published by the ACM.</small>