-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpublications.html
36 lines (33 loc) · 981 Bytes
/
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
---
layout: default
title: Publications
---
<script src="https://pettanjs.github.io/dfcjs/dfc.js" type="text/javascript"></script>
<script src="{{ site.base }}/js/biblio.js" type="text/javascript"></script>
<div id="pubs"></div>
<script type="text/javascript">
(function () {
window.addEventListener('load', function () {
var bib = new BiblioLoader([
"hai",
"crowdlab", /** Legacy Tag **/
"ai-crowd-train-test",
"crowd-argumentation",
"ai-bootstrapping-communities",
"ai-crowd-task-routing",
"ai-crowd-multi-label",
"crowd-task-design"]);
if(window.location.hash && window.location.hash.substring(1) == 'grouped') {
bib.createBiblioDOM(document.getElementById('pubs'), dfc, [
'Conference Paper',
'Journal Article',
'Workshop Paper',
'Book Chapter',
'Thesis'
]);
} else {
bib.createBiblioDOM(document.getElementById('pubs'), dfc);
}
});
})();
</script>