generated from just-the-docs/just-the-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublications.html
35 lines (32 loc) · 953 Bytes
/
publications.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: Publications
has_children: true
has_toc: false
child_nav_order: reversed
nav_order: 10
---
<section class="section">
<div class="container">
<h1 class="title is_primary"><b>Publications</b></h1>
{% for y in site.data.publications %}
{% for p in y.publications %}
<div class="article-container" style="margin-bottom: 30px;">
<div>
[<b>{{ p.venue-acronym }} {{ y.year }}</b>]
<u>{{ p.title }}</u>
{% if p.doi %} <a href="https://dx.doi.org/{{ p.doi }}" style="opacity: 50%;">{{ p.doi }}</a> {% endif %}
</div>
<div>
{% for a in p.authors %}
<i>{{ a.name }}</i>{% if forloop.last %}{% else %},{% endif %}
{% endfor %}
</div>
<div>{{ p.venue }}</div>
{%- include paper_artifacts.html paper=p -%}
{%- include paper_links.html paper=p nutshell=true -%}
</div>
{% endfor %}
{% endfor %}
</div>
</section>