-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (95 loc) · 4.74 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
<!DOCTYPE html>
<html>
<head>
<title>Matteo Pagliero</title>
<link rel="shortcut icon" type="image/x-icon" href="asterisk.png">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="nav-links">
<ul>
<li><a href="index.html">About</a></li>
<li><a href="#Publications">Publications</a></li>
<!-- <li><a href="#Talks">Talks</a></li> -->
</ul>
</div>
</nav>
<div class="wrapper">
<div class="left">
<img src="profile-photo.jpeg" class="profile-picture" width="300px"/>
<p class="roboto-title"> Matteo Pagliero </p>
<a href="mailto:[email protected]" class="roboto-links"><tt>matteo.pagliero [at] kuleuven.be</tt></a>
</div>
<div class="right">
<p class="roboto-light">
I am a PhD student in Mathematics at <a href="https://www.kuleuven.be/english/kuleuven/index.html" class="roboto-links">KU Leuven</a>, under the supervision of Gábor Szabó.
My research is supported by a PhD-grant from the <a href="https://www.fwo.be/en/" class="roboto-links">Research Foundation Flanders</a> (FWO).<br>
<br>I am primarily interested in structure theory and classification of C*-algebras and C*-dynamical systems.
My current work focuses on the classification of amenable actions of locally compact groups on non-simple C*-algebras.<br>
<!-- <br>Download my CV<br>
<a href="location of the file" class="roboto-links" download><tt>cv_matteo</tt></a> -->
</p>
</div>
</div>
</header>
<main>
<div class="papers-list">
<h2 class="roboto-light" id="Publications"> <center> Publications </center> </h2>
<ol reversed>
<li class="roboto-light"><b>Classification of equivariantly O2-stable amenable actions on nuclear C*-algebras</b> (co-authored with Gábor Szabó).
<br> <i>Journal of Functional Analysis</i>, 288 no. 2 (2025). Article 110683. 50 pp.
<br> <a href="https://arxiv.org/abs/2309.12472" target="_blank" rel="noopener noreferrer" class="roboto-links">arxiv</a>   <a href="https://www.sciencedirect.com/science/article/abs/pii/S0022123624003719" target="_blank" rel="noopener noreferrer" class="roboto-links">journal</a></li>
<li class="roboto-light"><b>Continuous actions on primitive ideal spaces lift to C*-actions.</b>
<br> To appear in <i>Bulletin of the London Mathematical Society</i>, (2024). 19 pp.
<br> <a href="https://arxiv.org/abs/2406.04297" target="_blank" rel="noopener noreferrer" class="roboto-links">arxiv</a></li>
</ol>
</div>
<!--
<div class="talks-list">
<h2 class="roboto-light" id="Talks"> <center> Talks (selected) </center> </h2>
<table class="roboto-light">
<tr>
<td> 14.02.2024 </td>
<td> <b>Equivariantly O2-stable actions: classification and range of the invariant.</b> <i>Functional Analysis Seminar.</i> University of Oxford, UK</td>
</tr>
<tr>
<td> 28.09.2023 </td>
<td> <b>Classification of equivariantly O2-stable amenable actions on nuclear C*-algebras.</b> <i>Analysis Seminar.</i> University of Waterloo, Canada</td>
</tr>
<tr>
<td> 6.10.2022 </td>
<td> <b>On the classification of equivariantly O2-stable actions on nuclear C*-algebras.</b> <i>Analysis Seminar.</i> University of Southern Denmark, Denmark</td>
</tr>
</table>
</div>
-->
</main>
<footer>
<p class="roboto-light"> Last update: November 2024 </p>
</footer>
<!---JavaScript for Toggle Menu------->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
/* JavaScript for transparent top bar */
window.addEventListener('scroll', function() {
var scrollY = window.scrollY;
if (scrollY > 600) { // Adjust the threshold based on your preference
document.getElementById('fixed-top-bar').classList.add('active');
} else {
document.getElementById('fixed-top-bar').classList.remove('active');
}
});
</script>
</body>
</html>