VCS - Exposé
Author:
León Rheinert
Last Updated:
5 years ago
License:
Creative Commons CC BY 4.0
Abstract:
ASW Exposé
Dient auch als Vorlage
\begin
Discover why 18 million people worldwide trust Overleaf with their work.
ASW Exposé
Dient auch als Vorlage
\begin
Discover why 18 million people worldwide trust Overleaf with their work.
% Referenzprojekt: https://www.overleaf.com/project/51fa85c3db89c3c351085071
% aus Tutorial-Serie: https://de.overleaf.com/learn/latex/How_to_Write_a_Thesis_in_LaTeX_(Part_1):_Basic_Structure
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
% Deutsch: https://de.overleaf.com/learn/German
% "` Left double quotes
% "' Right double quotes
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{csquotes}
% documentation: https://ctan.kako-dev.de/macros/latex/contrib/biblatex/doc/biblatex.pdf
\usepackage[style=authoryear,sorting=nyt]{biblatex}
\addbibresource{references.bib}
% um Grafiken einzubinden, {Angabe des Pfades der Bilder}
\usepackage{graphicx}
\graphicspath{ {images/} }
% Nützliches Online Tool zur Tabellengenerierung: TablesGenerator.com
% zur korreten Platzierung der Bilder im Titelblatt
\usepackage{chngpage}
\usepackage{calc}
\usepackage{geometry}
% Automatisches Generieren von Hyperlinks bei Verweisen (ref / cite)
\usepackage{hyperref}
\hypersetup{
colorlinks = true, % Colours links instead of ugly boxes
urlcolor = blue, % Colour for external hyperlinks
linkcolor = black, % Colour of internal links
citecolor = red % Colour of citations
}
% Infos über Dokument
\title{Version Control System}
\author{León Rheinert}
\date{\today}
\begin{document}
\input{titlepage}
\newpage
\pagenumbering{Roman}
\tableofcontents
\newpage
\pagenumbering{arabic}
\section{Einleitung}
\input{sections/einleitung}
\section{Was ist ein Version Control System}
\input{sections/was_ist_vcs}
\section{Centralized vs Distributed}
\input{sections/c_v_d}
\section{Praxis}
\input{sections/praxis}
\section{Fazit}
\input{sections/fazit}
\newpage
\printbibliography
\end{document}