Section hierarchy
#########
Heading 1
#########
*********
Heading 2
*********
Heading 3
=========
Heading 4
---------
Heading 5
^^^^^^^^^
On MacOS I recommend to use Brew for installing Python3.
brew install [email protected]
Setup a Python virtual environment.
pip install virtualenv
virtualenv -p python3.8 venv
source venv/bin/activate
pip install -r requirements.txt
Then if there are no errors, run:
make livehtml
helpful! https://ljvmiranda921.github.io/notebook/2018/02/04/continuous-integration-for-latex/
(source of \.deploy_scripts\tlsetup.sh
)
Travis-CI docs for Building a Python Project and GitHub Pages Deployment. Personal access token with 'public_repo - Access public repositories' permissions created and used it in travis encrypt GH_TOKEN=my_github_token --add env.matrix
as described in the Travis-CI docs.