-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpapers.html
35 lines (35 loc) · 1.41 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
30
31
32
33
34
35
---
layout: default
title: Papers
section: papers
permalink: /papers/
---
<h2>Papers</h2>
<ul class="listing">
{% for p in site.papers reversed %}
<li>
<cite>{{ p.title | escape }}</cite>
{% assign others = p.authors | where_exp: "name", "name != 'F. G. Dorais'" %}
{% if others[0] %}
(With {% for name in others %}{% if forloop.first %}{% elsif forloop.last %} and {% else %}, {% endif %}{{ name | replace: " ", " "}}{% endfor %})
{% endif %}
<ul class="hlist">
<li><a href="{{ p.url }}">abstract</a></li>
{% if p.arxiv %}<li>arxiv: <a href="https://arxiv.org/abs/{{ p.arxiv }}">{{ p.arxiv }}</a></li>{% endif %}
{% if p.cite %}<li><a href="{% if p.doi %}https://doi.org/{{ p.doi }}{%elsif p.ref %}https://{{ p.ref }}{% endif %}">{{ p.cite | smartify}}</a></li>{% endif %}
{% comment %}
{% if p.doi %}<li>doi: <a href="https://doi.org/{{ p.doi }}">{{ p.doi }}</a></li>
{% elsif p.ref %}
<li>url: <a href="https://{{ p.ref }}">{{ p.ref }}</a></li>
{% endif %}
{% endcomment %}
</ul>
</li>
{% endfor %}
</ul>
<h4>Coauthors</h4>
<ul class="listing">
{% for a in site.data.coauthors %}
<li><a{% if a.url %} href="{{ a.url }}"{% endif %} target="_blank">{{ a.name }}</a> (MR Author ID: <a href="http://www.ams.org/mathscinet/MRAuthorID/{{ a.mrauthorid }}" target="_blank">{{ a.mrauthorid }}</a>)</li>
{% endfor %}
</ul>