-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpublications.html
69 lines (57 loc) · 1.8 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
layout: page
title: Publications
order: 1
permalink: /publications/
---
<style>
/* TODO: Add styling to list with li */
</style>
<h2>{{site.data.publications.journal_list_title}}</h2>
<div class="entry-content">
<ul>
{% for item in site.data.publications.journal%}
<li>
{{item.authors}} ({{item.year}})
<b>{{item.title}}, </b>
{% if item.journal %} {%unless item.pages %} Submitted to {% endunless %}{{item.journal}}{%if item.pages %}, p.{{item.pages}}{% endif %}; {% endif %} {%if item.arxiv %} {{item.arxiv}}; {% endif %} {%if item.doi %} <a href="{{item.doi}}">{{item.doi}}</a> {% endif %}
</li><br>
{% endfor %}
</ul>
</div>
<h2>{{site.data.publications.conference_list_title}}</h2>
<div class="entry-content">
<ul>
{% for item in site.data.publications.conference %}
<li>
{{item.authors}} ({{item.year}})
<strong>{{item.title}}</strong>,
In proceedings of {{item.conference}}
</li><br>
{% endfor %}
</ul>
</div>
<h2>{{site.data.publications.chapter_list_title}}</h2>
<div class="entry-content">
<ul>
{% for item in site.data.publications.chapters %}
<li>
{{item.authors}} ({{item.year}})
<strong>{{item.title}}</strong>,
{%if item.book %}{{item.book}};{% endif %}{%if item.publisher%}{{item.publisher}};{% endif %}{%if item.other %}{{item.other}};{% endif %}
</li><br>
{% endfor %}
</ul>
</div>
<h2>{{site.data.publications.other_list_title}}</h2>
<div class="entry-content">
<ul>
{% for item in site.data.publications.others %}
<li>
{{item.authors}} ({{item.year}})
<strong>{{item.title}}</strong>,
{%if item.other %}{{item.other}};{% endif %}
</li><br>
{% endfor %}
</ul>
</div>