gitextract_oid3vs_r/ ├── .aspell.conf ├── .aspell.de.pws ├── .aspell.en.pws ├── .dockerignore ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── _config.yml │ ├── dependabot.yml │ └── workflows/ │ ├── check.yml │ ├── gh-pages.yml │ └── update-files.yml ├── .gitignore ├── .gitmodules ├── .vscode/ │ └── extensions.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── Texlivefile ├── _latexmkrc ├── abbreviations.tex ├── bibliography.bib ├── commands.tex ├── config.tex ├── data/ │ └── data.csv ├── docs/ │ ├── adr/ │ │ ├── 0000-use-markdown-architectural-decision-records.md │ │ ├── 0001-offer-tex-files-instead-of-a-package.md │ │ ├── 0002-use-cc0-as-license.md │ │ ├── 0003-use-minted-for-code-highlithing.md │ │ ├── 0005-use-lualatex-as-default.md │ │ ├── index.md │ │ └── template.md │ ├── latex-setup.md │ └── overleaf/ │ └── overleaf.md ├── latexhints-english.tex ├── latexhints-german-plantuml.tex ├── latexhints-german.tex ├── latexhints-minted-german.tex ├── localSettings.yaml ├── pre-documentclass.tex ├── stfloats.sty ├── tikz-uml.sty └── vscode.settings.json