-
Notifications
You must be signed in to change notification settings - Fork 2
/
publications.html
169 lines (119 loc) · 4.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
---
layout: page
title: Publications
---
{% assign sorted_articles = site.articles | reverse %}
{% assign sorted_abstracts = site.abstracts | reverse %}
{% assign sorted_conferences = site.conferences | reverse %}
<div class="container mt-5">
<ul class="nav nav-tabs mb-5" id="nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="journals-tab" data-bs-toggle="tab" href="#journals" role="tab" aria-controls="journals" aria-selected="true">
Journal Articles
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="conferences-tab" data-bs-toggle="tab" href="#conferences" role="tab" aria-controls="conferences" aria-selected="false">
Conference Papers (Peer-reviewed)
</a>
</li>
<li class="nav-item">
<a class="nav-link" id="abstracts-tab" data-bs-toggle="tab" href="#abstracts" role="tab" aria-controls="abstracts" aria-selected="false">
Conference Abstracts
</a>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="journals" role="tabpanel" aria-labelledby="journals-tab">
<h1 class="pub-header">Journal Articles</h1>
{% assign current_year = "" %}
{% for article in sorted_articles %}
{% assign year = article.date | date: "%Y" %}
{% if year <= "2016" %}
{% if current_year != "2016 and earlier" %}
<h2>2016 and before</h2>
{% assign current_year = "2016 and earlier" %}
{% endif %}
{% else %}
{% if year != current_year %}
<h2>{{ year }}</h2>
{% assign current_year = year %}
{% endif %}
{% endif %}
<div class="journal-item my-4">
{% for author in article.authors %}
{{ author }},
{% endfor %}
<a href="https://doi.org/{{ article.DOI }}">
<b>{{ article.title }}</b>
</a>
<i>
{{ article.journal }},
</i>
<!-- {{ article.misc }}. -->
{{ article.date | date: "%B %Y" }}
</div>
{% endfor %}
</div>
<div class="tab-pane fade" id="conferences" role="tabpanel" aria-labelledby="conferences-tab">
<h1 class="pub-header">Conference Papers</h1>
{% assign current_year = "" %}
{% for article in sorted_abstracts %}
{% assign year = article.date | date: "%Y" %}
{% if year <= "2016" %}
{% if current_year != "2016 and earlier" %}
<h2>2016 and before</h2>
{% assign current_year = "2016 and earlier" %}
{% endif %}
{% else %}
{% if year != current_year %}
<h2>{{ year }}</h2>
{% assign current_year = year %}
{% endif %}
{% endif %}
<div class="journal-item my-4">
{% for author in article.authors %}
{{ author }},
{% endfor %}
<b>{{ article.title }}</b>
<i>
{{ article.conference }},
</i>
{{ article.location }}
<!-- {{ article.misc }}. -->
{{ article.conference_dates }}
</div>
{% endfor %}
</div>
<div class="tab-pane fade" id="abstracts" role="tabpanel" aria-labelledby="abstracts-tab">
<h1 class="pub-header">Conference Abstracts</h1>
{% assign current_year = "" %}
{% for article in sorted_conferences %}
{% assign year = article.date | date: "%Y" %}
{% if year <= "2016" %}
{% if current_year != "2016 and earlier" %}
<h2>2016 and before</h2>
{% assign current_year = "2016 and earlier" %}
{% endif %}
{% else %}
{% if year != current_year %}
<h2>{{ year }}</h2>
{% assign current_year = year %}
{% endif %}
{% endif %}
<div class="journal-item my-4">
{% for author in article.authors %}
{{ author }},
{% endfor %}
<b>{{ article.title }}</b>
<i>
{{ article.conference }},
</i>
{{ article.location }}
<!-- {{ article.misc }}. -->
{{ article.conference_dates }}
</div>
{% endfor %}
</div>
</div>
</div>