|
Mini-courses:
- Bernhelm Booss-Bavnbek
Spectral Invariants for Symmetry and Asymmetry: Mini-course on the Functional
Analysis of Index, Eta-invariant, and Spectral Flow of Elliptic
Problems on Manifolds with Boundary -
with Emphasis on the General Spectral Flow Formula
tex
pdf
- Alexander S. Mishchenko
Topological K-theory from the point of view of C*-algebras and Fredholm
representations
tex
ps
- Nicolae Teleman
Algebra Extensions and Characteristic Classes
tex
pdf
Lectures:
$con = mysql_connect("localhost", "witek", "witek");
$db = mysql_select_db("krynica2004", $con);
if(mysql_errno($con)){
echo "brak połączenia";
exit;
}
$query = "select imie, nazwisko, login, tytul from partic where wyklad='k' or wyklad='w' order by nazwisko";
$result = mysql_query($query, $con);
$pNum = mysql_num_rows($result);
if($pNum == 0)
echo "No abstracts sent yet.";
while($row = mysql_fetch_array($result)){
$nazwisko = $row["nazwisko"];
$imie = $row["imie"];
$tytul = $row["tytul"];
$login = $row["login"];
echo "- ";
echo "$imie"." "."$nazwisko";
echo "
$tytul ";
$ext = array("tex", "dvi", "ps", "pdf", "doc");
for($i=0; $i<=4; $i++){
$fn = "abstracts/".$login.".".$ext[$i];
if(file_exists($fn) == true)
echo "$ext[$i] ";
}
echo " ";
echo " ";
}
mysql_close($con);
?>
|
|