-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (63 loc) · 2.16 KB
/
index.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
---
layout: default
---
<b>PUBLICATIONS</b><br>
<p>Below you can find a list of my publications including preprints. Authors are listed alphabetically by last name, except where indicated by an asterisk.
</p>
<p><span class="downloadpdf"><a href="#publications"><i class="fa fa-file-pdf"></i></a> Full Version </span><span class="download"><a href="#publications"><i class="fa fa-book"></i></a> Publisher Version </span><span class="downloadpdf"><a href="#publications"><i class="fa fa-television"></i></a> Slides </span><span class="download"><a href="#publications"><i class="fa fa-globe"></i></a> Web <a href="#publications"><i class="fa fa-link"></i></a> Bibtex <a href="#publications"><i class="fa fa-code"></i></a> Additional Material</span></p>
<table class="pubtable">
<thead>
<tr><th colspan="3" >Preprints</th></tr>
</thead>
{% for post in site.preprints reversed %}
{% include pubentry.html %}
{% endfor %}
</table>
<table class="pubtable">
<thead>
<tr><th colspan="3" >Conference Papers</th></tr>
</thead>
{% for post in site.proc reversed %}
{% include pubentry.html %}
{% endfor %}
</table>
<table class="pubtable">
<thead>
<tr><th colspan="3" >Journal Papers</th></tr>
</thead>
{% for post in site.articles reversed %}
{% include pubentry.html %}
{% endfor %}
</table>
<table class="pubtable">
<thead>
<tr><th colspan="3" >Articles</th></tr>
</thead>
{% for post in site.articlesworeview reversed %}
{% include pubentry.html %}
{% endfor %}
</table>
<table class="pubtable">
<thead>
<tr><th colspan="3" >Books</th></tr>
</thead>
{% for post in site.books reversed %}
{% include pubentry.html %}
{% endfor %}
</table>
<table class="pubtable">
<thead>
<tr><th colspan="3" >Theses</th></tr>
</thead>
{% for post in site.theses reversed %}
{% include pubentry.html %}
{% endfor %}
</table>
<table class="pubtable">
<thead>
<tr><th colspan="3" >Selected Project Deliverables</th></tr>
</thead>
{% for post in site.deli reversed %}
{% include pubentry.html %}
{% endfor %}
</table>