![VCS - Exposé](https://writelatex.s3.amazonaws.com/published_ver/10242.jpeg?X-Amz-Expires=14400&X-Amz-Date=20250116T205713Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWJBOALPNFPV7PVH5/20250116/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=828dffe7c7b65c14965867c1ce9b80cb95581d7db59b0ac13283fd053aee3bb2)
VCS - Exposé
Author:
León Rheinert
Last Updated:
před 6 lety
License:
Creative Commons CC BY 4.0
Abstract:
ASW Exposé
Dient auch als Vorlage
![VCS - Exposé](https://writelatex.s3.amazonaws.com/published_ver/10242.jpeg?X-Amz-Expires=14400&X-Amz-Date=20250116T205713Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAWJBOALPNFPV7PVH5/20250116/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=828dffe7c7b65c14965867c1ce9b80cb95581d7db59b0ac13283fd053aee3bb2)
\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}