// 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 HMS Beagle Sets Sail on a Historic Voyage

Updated: Dec 27, 2022

#14 Science in History

27 December 1831


HMS Beagle leaves Plymouth harbour on December 27th 1831 under Captain Robert FitzRoy. Its 73-man crew included the young 22-year-old Charles Darwin, whose role on the Beagle was to serve as a companion to the captain, naturalist and geologist. He was responsible for collecting specimens, making observations, and recording his findings in journals. This work helped him develop his theory of evolution by natural selection which he later published in ‘On The Origin Of Species’.

HMS Beagle in the Straits of Magellan R. T. Pritchett - The Popular Science Monthly, Volume 57 p. 87, reproduction of frontispiece from Darwin, Charles (1890),

During their five-year voyage, Darwin and Fitzroy developed a strong friendship that lasted for many years after their return to England. As time went on, their views began to diverge; while Fitzroy became increasingly religious and conservative, Darwin's ideas about evolution were becoming more radical. Despite this difference in opinion, they remained friends until Fitzroy's death in 1865.





bottom of page