manual
Go to file
Brain 72d0012f33
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
Separate pipelines for PRs and releases
2022-11-22 13:57:12 +01:00
source feat: add use case `Paketmitnahne` to introduction section 2022-11-17 14:15:15 +01:00
.drone.yml Separate pipelines for PRs and releases 2022-11-22 13:57:12 +01:00
.gitignore feat: enable <make html> generation instruction 2022-11-14 15:28:07 +01:00
LICENSE Initial commit 2022-11-14 14:32:41 +01:00
Makefile feat: enable <make html> generation instruction 2022-11-14 15:28:07 +01:00
readme.md feat: enable <make latexpdf> generation instruction 2022-11-14 15:34:37 +01:00
requirements.txt feat: add requirements 2022-11-14 15:09:15 +01:00

readme.md

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.

Clean up

  1. Deactivate the virtual Python environment: deactivate
  2. Clean up the build sources: make clean and rm -r build bundle

File System

  • build: build directory
  • make.bat:
  • Makefile:
  • readme.md: this file
  • source: source directory