Ausarbeitungsvorlage für die Uni
uni
Go to file Use this template
2020-01-03 08:09:00 +00:00
.vscode #28 added VS Code snippet for chapters, sections and subsections 2020-01-03 08:09:00 +00:00
additionals #15 cleaned up file structure #16 improved list of references 2018-06-29 20:07:51 +02:00
chapter Initial Commit + Docs 2018-01-31 23:23:53 +01:00
library Initial Commit + Docs 2018-01-31 23:23:53 +01:00
resources Initial Commit + Docs 2018-01-31 23:23:53 +01:00
.gitignore #22 added VS Code snippets to repo and updated docs 2019-04-15 17:34:08 +02:00
.gitlab-ci.yml #19 changed hunspell dictionary to de_DE_neu 2018-12-02 11:27:03 +00:00
.hunspellignore #3 Hunspell Spellcheck, Docs 2018-04-10 01:35:16 +02:00
.latexmkrc #8 migrated code listings to minted 2018-04-26 20:26:36 +02:00
config.tex #25 moved cleverref include behind amsmath 2019-07-24 15:45:40 +00:00
LICENSE LICENSE 2018-04-04 14:05:49 +02:00
main.tex #15 cleaned up file structure #16 improved list of references 2018-06-29 20:07:51 +02:00
README.md #24 refactored readme and migrated contents to wiki 2019-04-23 09:25:48 +02:00

LaTex Boilerplate

This is a simple preconfigured boilerplate for medium-sized LaTex projects including continuous integration for GitLab CI. It's based on the scrbook document class and currently layed out for german scientiefic documents.

Getting Started

To use this template in a new project, either download the ZIP directly from GitLab or clone it using Git:

git@gitlab.com:fastexitlane/latex-boilerplate.git
# now set up your own Git workspace:
git remote remove origin
git remote add origin git@your-own-gitlab.host:path/to/repo.git
git push origin master

If you already have set up an empty Git workspace for your project, add it as additional remote and then fetch and pull:

git remote add boilerplate git@gitlab.com:fastexitlane/latex-boilerplate.git
git fetch boilerplate
git pull boilerplate master
# if you don't want to keep the remote for pulling future updates, remove it:
git remote remove boilerplate

In order to use the preconfigured continuous integration, make sure your GitLab CI meets the Basic Requirements.

If you know what you're doing, simply start adding your content files in chapter/ as LaTex \chapters and \input them into main.tex. If you do not know what you're doing or get into trouble, you may want to consider the wiki ;-)