// StartMathJax Script window.MathJax = {loader: {load: [ 'input/asciimath', 'ui/lazy', 'output/chtml', 'ui/menu']} }; (function() { var script = document.createElement('script'); script.src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/startup.js"; script.async = true; document.head.appendChild(script); })(); ---------- (Different files) ---------- // UpdateTypeset Script config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed callback = (mutationList, observer) => { for (mutation of mutationList) { if (mutation.type === 'childList') { console.log('A child node has been added or removed.'); MathJax.typeset(); } else if (mutation.type === 'attributes') { console.log(`The ${mutation.attributeName} attribute was modified.`); } } }; // Create an observer instance linked to the callback function observer = new MutationObserver(callback); document.onreadystatechange = () => { if (document.readyState === 'complete') { console.log("Loaded fully according to readyState") targetNode = document.getElementById('content-wrapper') console.log(targetNode) // Start observing the target node for configured mutations observer.observe(targetNode, config); } }
top of page

The Lean, Mean Tower of Pisa

#8 Science in History


15th December 2001


On this day, 2001, the iconic Leaning Tower of Pisa is reopened following years of restoration.



The Leaning Tower of Pisa is one of the most famous landmarks in the world and has been a source of fascination for centuries. However, it was closed to visitors for many years due to its precarious state.










In 2001, after an extensive restoration project, the tower was reopened to the public. The restoration project was a massive undertaking that took more than a decade, and $27 million, to complete. The goal was to realign and stabilize the tower to make it safe for visitors while preserving its historical integrity.


Engineers used a combination of techniques, including soil extraction and lead counterweights, to slowly correct the tilt of the tower. They also added a new foundation and reinforced existing walls with steel cables.


The Tower began to lean shortly after construction began in 1173. The builders attempted to compensate for the lean by making the upper stories slightly taller on one side than the other. It was completed, nearly 200 years later, in 1372.


The tower remains one of Italy’s most popular tourist attractions. Visitors can climb the 294 steps to the top of the tower and take in breathtaking views of the surrounding city. The reopening marked an important milestone in the tower’s history, serving as a reminder that even ancient structures can be preserved and enjoyed by future generations.



bottom of page