English 🇬🇧 - Français 🇫🇷 - Español 🇪🇸
<script> currentPage = window.location.href; beforeLang = currentPage.slice(0, currentPage.indexOf("content") - 3); afterLang = currentPage.slice(currentPage.indexOf("content")); document.getElementById("linken").href = beforeLang + "en/" + afterLang; document.getElementById("linkfr").href = beforeLang + "fr/" + afterLang; document.getElementById("linkes").href = beforeLang + "es/" + afterLang; </script>The repo for the notes of the Quantum Communications and Cryptography course by Antonio Acin.
This contains three folders containing the different versions: English (en/), French (fr/) and Spanish (es/). For each language we also have the folders containing the original markdown (enMd, frMd, esMd).
Each of these is a separate Jupyter-Book.
To compile the HTML files from the book, first install jupyter-book:
sudo apt-get install python3 python3-pip -y
pip install jupyter-book
and then run:
bash ./compileAll.sh
to compile everything. That script also has some stuff that can be used to ensure consistency of formating.