-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaccepted-papers.html
83 lines (67 loc) · 1.52 KB
/
accepted-papers.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
---
layout: default
---
<div class="section">
<h2>Papers accepted for publication</h2>
<p>EMNLP 2017 accepted a total of 323 papers. Of these 216 are long papers,
and 107 are short papers.
</p>
<p>Jump to <a href="#short-papers">short papers</a>,
<a href="#long-papers">long papers</a>,
<a href="#demo-papers">demo papers</a>.
</p>
<h3 id="short-papers">Short papers</h3>
<table class="striped">
<col style="width:35%">
<col style="width:65%">
<thead>
<th>Authors</th>
<th>Title</th>
</thead>
<tbody>
{% assign papers = site.data.accepted_papers | where: "submission_type", "Short" %}
{% for paper in papers %}
<tr>
<td>{{ paper.authors }}</td>
<td><em>{{ paper.title }}</em></td>
</tr>
{% endfor %}
</tbody>
</table>
<h3 id="long-papers">Long papers</h3>
<table class="striped">
<col style="width:35%">
<col style="width:65%">
<thead>
<th>Authors</th>
<th>Title</th>
</thead>
<tbody>
{% assign papers = site.data.accepted_papers | where: "submission_type", "Long" %}
{% for paper in papers %}
<tr>
<td>{{ paper.authors }}</td>
<td><em>{{ paper.title }}</em></td>
</tr>
{% endfor %}
</tbody>
</table>
<h3 id="demo-papers">Demo papers</h3>
<table class="striped">
<col style="width:35%">
<col style="width:65%">
<thead>
<th>Authors</th>
<th>Title</th>
</thead>
<tbody>
{% assign papers = site.data.accepted_demo_papers %}
{% for paper in papers %}
<tr>
<td>{{ paper.authors }}</td>
<td><em>{{ paper.title }}</em></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>