CINXE.COM

International Symposium on Graph Drawing and Network Visualization

<!DOCTYPE html> <html lang="en"><head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Expires" content="-1"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="style/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous"> <link rel="stylesheet" href="style/style.css"> <title>International Symposium on Graph Drawing and Network Visualization</title> <script> document.addEventListener("DOMContentLoaded", function() { fetch('menu.html') .then(response => response.text()) .then(data => { document.getElementById('menu-container').innerHTML = data; }) .then(fetch('footer.html') .then(response => response.text()) .then(data => { document.getElementById('footer-container').innerHTML = data; }) ) .then(fetch('news.json') .then(response => response.json()) .then(data => writeContent(data.filter(item => item.visible),"news-content")) ) .then(fetch('lastEditions.json') .then(response => response.json()) .then(data => writeContent(data.filter((item,i)=>i<=2),"editions-content")) ); }); </script> </head> <body class="bg-main"> <div id="menu-container"></div> <!-- container for the menu --> <br> <br> <main role="main"> <div class="background-index"> <div class="container mt-4 pt-5 mb-2"> <div class="row"> <div class="col-md-12"> <div class="jumbotron"> <div class="row"> <div class="col-lg-2"><img class="logo" src="img/gdorglogo.png" alt="GD.org"> </div> <div class="col-10"><br><br> <h2>The International Symposium on Graph Drawing and Network Visualization</h2> </div> </div> <p class="pt-1"> <em>Graph Drawing</em> is concerned with the geometric representation of graphs and networks and is motivated by those applications where it is crucial to visualize structural information as graphs. Since graph drawing methods form the algorithmic core of network visualization, bridging the gap between theoretical advances and implemented solutions is an important aspect. This site is a collection of resources mostly related to the annual <em>International Symposium on Graph Drawing and Network Visualization</em> and to the area of Graph Drawing and Network Visualization more in general. </p> </div> </div> </div> <div class="row jumbotron-container"> <div class="col-md-6 d-flex"> <div class="jumbotron"> <h3 class="display-6">News</h3> <div id="news-content"> <div class="block"> <p class="pt-1"><b>{{date}} - {{title}}</b> {{body}}</p> </div> </div> </div> </div> <div class="col-md-6 d-flex"> <div class="jumbotron"> <h3 class="display-6">Recent and future GD editions</h3> <div id="editions-content"> <div class="block"> <p class="pt-1 {{class}}"> {{body}}</p> </div> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="jumbotron home-div-img"> <img class="img-fluid home-img" src="img/home1.png"> <img class="img-fluid home-img" src="img/home2.png"> </div> </div> </div> </div> </div> <div id="footer-container"></div> <!-- container for the footer --> </main> <!-- jQuery first, then Popper.js, then Bootstrap JS --> <script src="js/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> <script src="js/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script> <script src="js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script> <script src="js/script.js" crossorigin="anonymous"></script> </body></html>