-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpapers.html
More file actions
64 lines (53 loc) · 1.65 KB
/
papers.html
File metadata and controls
64 lines (53 loc) · 1.65 KB
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
---
layout: default
---
<div id="program">
<div class="row">
<p>For each paper being presented at the workshop, we will host (1) the pre-recorded presentation from SlidesLive, (2) a Rocket.Chat chatroom for text-based discussion, and (3) a Zoom meeting room. All of these can be found from each paper's landing page (which you can access by clicking on the title of the relevant paper).</p>
<p>The Zoom meeting rooms will be open only during the poster session timeslots (see the <a href="/schedule.html">Schedule</a>), during which authors will join the meeting rooms to allow you to ask them questions face-to-face. We encourage you to first watch the presentation associated with the paper, and then join the Zoom meeting room to ask questions and engage in further discussion.</p>
</div>
{% for session in site.data.sessions %}
<div class="row">
<a name="session-{{ session.id }}"></a>
<h3>{{ session.title }}</h3>
<table class="table table-striped">
<thead>
<tr>
<th>Title</th>
<th>Authors</th>
<th>Track</th>
<th>PDF</th>
</thead>
<tbody>
{% for paper in session.papers %}
<tr>
<td>
<span><b><a href="/program/baics_{{ paper.id }}.html">{{ paper.title }}</a></b></span>
{% if paper.kind == "oral" %}
<span> (Oral)</span>
{% elsif paper.kind == "spotlight" %}
<span> (Spotlight)</span>
{% endif %}
</td>
<td>
{{ paper.authors }}
</td>
<td>
{% if paper.track == "blue_sky" %}
Blue Sky Ideas
{% elsif paper.track == "research" %}
Research
{% endif %}
</td>
<td>
{% if paper.camera_ready %}
<a href="/pdf/BAICS_{{ paper.id }}.pdf" target="_blank">PDF</a>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endfor %}
</div>