-
Notifications
You must be signed in to change notification settings - Fork 0
/
publist.html
66 lines (44 loc) · 1.4 KB
/
publist.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
---
permalink: /publications/
layout: pages
title: Publications
---
<div class = "publist">
<h2>Scientific articles</h2>
<div class = "publist">
<ul>
{% for publication in site.pages %}
{% if publication.categories contains 'article'%}
<li>
<a href= "{{ BASE_PATH }}{{publication.url}}">{{ publication.authors }} ({{ publication.date | date: "%Y"}}), {{ publication.title }}, <i>{{ publication.journal }}</i>, {{publication.volume}}:{{ publication.pages }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<h2>Dissertation</h2>
<div class = "publist">
<ul>
{% for publication in site.pages %}
{% if publication.categories contains 'dissertation'%}
<li>
<a href= "{{ BASE_PATH }}{{publication.URL}}">{{ publication.authors }} ({{ publication.date | date: "%Y"}}), {{ publication.title }}, <i>{{ publication.journal }}</i>, {{publication.publisher}}, {{ publication.city }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<h2>Conference contributions</h2>
<h3>Presentations</h3>
<div class = "publist">
<ul>
{% for publication in site.pages %}
{% if publication.categories contains 'talk'%}
<li>
{{ publication.authors }}, {{ publication.title }}, <i>{{ publication.conference }}</i>, {{publication.city}}, {{ publication.date }}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>