Ausarbeitungsvorlage für die Uni
uni
Go to file Use this template
2020-05-18 23:24:13 +02:00
.vscode #38 basic pandoc workflow 2020-05-18 23:24:13 +02:00
additionals #33 removed additional line spacing for references 2020-04-14 22:39:35 +00:00
appendix #14 #34 added manual appendix handling 2020-04-30 16:36:12 +00: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 #38 basic pandoc workflow 2020-05-18 23:24:13 +02:00
.gitlab-ci.yml #38 basic pandoc workflow 2020-05-18 23:24:13 +02: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 #34 added rotating package for sidewaystables 2020-04-30 16:26:43 +00:00
LICENSE LICENSE 2018-04-04 14:05:49 +02:00
main.tex #38 basic pandoc workflow 2020-05-18 23:24:13 +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 ;-)