manual
Go to file
dancingCycle b1e9f67ba0 feat: work on beamer slides 2023-04-13 15:04:46 +02:00
source feat: work on beamer slides 2023-04-13 15:04:46 +02:00
.drone.yml fix: add PLUGIN_HOSTNAME: in Drone.io pipeline step html 2022-12-14 21:15:04 +01:00
.gitignore feat: extend .gitignore 2022-12-15 15:48:16 +01:00
LICENSE Initial commit 2022-11-14 14:32:41 +01:00
makefile feat: adjust makefile 2022-12-15 15:25:48 +01:00
readme.md feat: extend readme 2022-12-15 15:44:04 +01:00
requirements.txt feat: work on beamer slides 2023-04-13 15:04:46 +02:00

readme.md

General

Build Status

Introduction

Call sphinx-quickstart to setup the project.

You can follow this guide to install Sphinx.

https://www.sphinx-doc.org/en/master/usage/installation.html

You can follow this guid to get started with Sphinx.

https://www.sphinx-doc.org/en/master/usage/quickstart.html#

Build Documentation

Python Dependencies

In order to generate the documentation, first create a Python virtual environment using the venv module included in Python like this.

  • Create a virtual Python environment in the directory venv like this.
python3 -m venv venv
  • Activate the virtual Python environment like this.
source venv/bin/activate
pip install -r requirements.txt

Running Generator via Make

The top level directory contains a Makefile. Generate HTML output like this.

make html

Generate PDF output like this.

make latexpdf

The output files of the final handbook can be found in the subfolder ./build.

All generated intermediate artifacts and the final output files can be found in the ./build subfolder.

Generate all output like this.

make bundle

Clean up

  1. Deactivate the virtual Python environment: deactivate
  2. Clean up the build sources: make clean

File System

  • build: build directory
  • Makefile: build configuration
  • readme.md: this file
  • source: source directory