2019-09-30 13:29:44 +02:00
|
|
|
---
|
2019-10-10 09:53:04 +02:00
|
|
|
title: "Publications"
|
2019-09-30 13:29:44 +02:00
|
|
|
date: 2019-09-30 11:30
|
|
|
|
draft: false
|
|
|
|
---
|
2019-10-10 12:17:34 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="/css/publi.css" />
|
2019-10-07 10:23:21 +02:00
|
|
|
<script src="/js/data.js" type="text/javascript"></script>
|
2020-02-15 11:19:36 +01:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/3.13.1/js-yaml.min.js"></script>
|
2019-10-07 10:23:21 +02:00
|
|
|
<script src="/js/loadAllData.js" type="text/javascript"></script>
|
|
|
|
<script src="/js/getFullDataPath.js" type="text/javascript"></script>
|
|
|
|
<script src="/js/getTextFromFile.js" type="text/javascript"></script>
|
|
|
|
<script src="/js/trueTypeOf.js" type="text/javascript"></script>
|
|
|
|
<script src="/js/uniq.js"></script>
|
2020-02-15 11:19:36 +01:00
|
|
|
<script src="/js/getPublis.js"></script>
|
2019-10-07 10:23:21 +02:00
|
|
|
<script src="/js/websiteFile.js"></script>
|
2020-02-07 10:16:33 +01:00
|
|
|
<script src="/js/numberUtils.js"></script>
|
2020-02-08 14:48:40 +01:00
|
|
|
<script src="/js/createPubliUI.js"></script>
|
2019-09-30 13:29:44 +02:00
|
|
|
{{< getDataFilesName >}}
|
|
|
|
<script>
|
|
|
|
window.onload = async function () {
|
2019-10-10 12:17:34 +02:00
|
|
|
var div = document.getElementById("publis_div")
|
2019-10-06 17:31:40 +02:00
|
|
|
const Cite = require("citation-js")
|
2020-03-18 15:34:16 +01:00
|
|
|
const sdois = uniq(Object.values(await loadAllData()).flat().map(d => d.DOI.string))
|
|
|
|
const spubliscite = await Cite.async(sdois)
|
2020-02-15 11:19:36 +01:00
|
|
|
const pubs = await getPublis()
|
2020-05-04 14:13:25 +02:00
|
|
|
const uospublis = spubliscite.format('data', { format: 'object' })
|
|
|
|
const spublis = uospublis.sort((puba,pubb)=>pubUtils.getIssuedDate(puba) - pubUtils.getIssuedDate(pubb))
|
2020-03-18 15:34:16 +01:00
|
|
|
for (const publi of spublis) {
|
2020-02-15 11:19:36 +01:00
|
|
|
art=createPubliUI(publi,pubs.sets,true)
|
2020-03-19 18:06:29 +01:00
|
|
|
$(art).appendTo("#publis_sets")
|
2020-02-15 11:19:36 +01:00
|
|
|
}
|
2020-03-18 15:34:16 +01:00
|
|
|
const odois=Array.from(pubs.others.keys())
|
|
|
|
const opubliscite = await Cite.async(odois)
|
2020-05-04 14:13:25 +02:00
|
|
|
const uoopublis = opubliscite.format('data', { format: 'object' })
|
|
|
|
const opublis = uoopublis.sort((puba,pubb)=>pubUtils.getIssuedDate(puba) - pubUtils.getIssuedDate(pubb))
|
2020-03-18 15:34:16 +01:00
|
|
|
for (const publi of opublis) {
|
2020-02-15 11:19:36 +01:00
|
|
|
art=createPubliUI(publi,pubs.others,true)
|
2020-03-19 18:06:29 +01:00
|
|
|
$(art).appendTo("#publis_others")
|
2019-10-10 09:38:19 +02:00
|
|
|
}
|
2019-09-30 13:29:44 +02:00
|
|
|
}
|
|
|
|
</script>
|
2020-03-19 18:06:29 +01:00
|
|
|
<section class="publis-list" id="publis_sets">
|
|
|
|
<header>
|
|
|
|
<h2>Sets</h2>
|
|
|
|
</header>
|
|
|
|
</section>
|
|
|
|
<section class="publis" id="publis_others">
|
|
|
|
<header>
|
|
|
|
<h2>Others</h2>
|
|
|
|
</header>
|
|
|
|
</section>
|