Talks will be 30 minutes long with a break of 10 minutes for discussion.
The registration will be open on 17 June at 9:00, and at 9:30 we will have the opening of the conference. The room is 124 Anile, located in the Department of Mathematics and Computer Science of the University of Catania.
Blackboard and overhead projector will be available for the talks (but not both simultaneously).
Coffee breaks will be at 11:00 and lunch will be between 13:00 and 15:00.
Code
MathJax = {
const MathJax = await require ('https://cdn.jsdelivr.net/npm/mathjax@4/tex-svg.js' )
. catch (() => window . MathJax )
return MathJax
}
wm= window ['MathJax' ] = {
tex : {
inlineMath : {'[+]' : [['$' , '$' ], [' \\ (' , ' \\ )' ]]}
},
output : {
font : 'mathjax-fira' ,
displayOverflow : 'scroll'
}
};
//file = FileAttachment("talks.xlsx").xlsx()
//data = file.sheet("talks", {range:"A1:G21",headers: true})
// data = [
// {Name: "Alice", Affiliation: "University A", Title: "Talk on $x^2$"},
// {Name: "Bob", Affiliation: "University B", Title: "Talk on $y^2$"}
// ]
dataf = FileAttachment ("talks.tsv" ). tsv ()
data= dataf. sort ((a, b) => a. Day . localeCompare (b. Day ) || a. Hour . localeCompare (b. Hour ))
muestra = function (){
var code = "<div id='talks'>"
var day= ""
data. forEach (d => {
if (d. Day !== day) {
day = d. Day ;
code = code + "<h3>" + day. toLocaleString ("en-UK" , {
day : "numeric" ,
month : "long" ,
year : "numeric"
}) + "</h3>"
}
code = code + "<p> " + d. Hour + " <strong>" + d. Name + "</strong>, " + d. Affiliation + ", <em>" + d. Title + " </em></p>"
code = code + "<details><summary>Abstract</summary><p>" + d. Abstract + "</p></details>"
code = code + "</div>"
});
return code
}
//html`${data.map(d => html`<p>${d.Name} ${d.Affiliation} ${d.Title}</p>`)}`
//html`<p>${data[0].Title.val}</p>`
// blah ="$x^2$"
// ble = data[0].Title
// blu = ble + " $x^2$"
// example = html`${blah}`
// ex = html`${blu}`
html ` ${ muestra ()} `
Back to top