diff --git a/Makefile b/Makefile
index 6832e1bdfdd250853fb00179b3b82ba091d25656..d3577ee83546627ff14357a063f08fc21a93a084 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,12 @@
 # Makefile for Latex project
 
-NAME = project
-LATEX = pdflatex
-BIB = biber
+NAME = project 		# Name of your file
+LATEX = pdflatex	# command you use
 
-OUTDIR = .\build
+OUTDIR = .\build	# all latex-ggenerated files will be stored here
 
-export TEXINPUTS:=.\src
 
+export TEXINPUTS:=.\src # edit env-variable for sub processes (only neede if not miktex)
 
 pdf: $(NAME).tex
 	$(LATEX) -synctex=1 -interaction=nonstopmode -file-line-error -include-directory=.\src -output-directory=$(OUTDIR) $(NAME).tex
diff --git a/src/config.tex b/src/config.tex
index 98423800d5412c5be5d9d82e26ed4fe536727399..380c9f74184965c3a562e08fbf8c613cf605affd 100644
--- a/src/config.tex
+++ b/src/config.tex
@@ -1,4 +1,4 @@
-\renewcaptionname{ngerman}{\abstractname}{Abstract} %Abstract
+\renewcaptionname{ngerman}{\abstractname}{Abstract} % Abstract
 \@ifpackageloaded{biblatex}{
 	\ExecuteBibliographyOptions{
 		sorting=nyt,
diff --git a/src/localBibliography.bib b/src/localBibliography.bib
new file mode 100644
index 0000000000000000000000000000000000000000..7df63bb4a147a4df6fc2ba920cc2bf20f31bda11
--- /dev/null
+++ b/src/localBibliography.bib
@@ -0,0 +1,82 @@
+%-----------------------Templates--------------------------------------------------------
+% A single-volume book with one or more authors
+@book{1,
+	author		= {},
+	title		= {},
+	date		= {},
+	year		= {},
+	edition		= {},
+	publisher	= {},
+	isbn		= {},
+	language	= {},
+	location	= {},
+	series		= {},
+	abstract	= {},
+	pagetotal	= {},
+	url			= {},
+	urldate		= {}
+}
+
+% article in a journal, magazine, newspaper, or other periodical
+@article{2,
+	author		= {},
+	title		= {},
+	journaltitle= {},
+	date		= {},
+	year		= {},
+	journalsubtitle= {},
+	issuetitle	= {},
+	series		= {},
+	language	= {},
+	origlanguage= {},
+	translator	= {},
+	pages		= {},
+	url			= {},
+	urldate		= {}
+}
+% technical report/paper, published by a university
+@report{3,
+	author		= {},
+	title		= {},
+	type		= {},
+	institution	= {},
+	date		= {},
+	year		= {},
+	url			= {},
+	urldate		= {},
+	version		= {},
+	language	= {}
+}
+% technical or other documentation, not necessarily in printed form
+@manual{4,
+	author		= {},
+	editor		= {},
+	title		= {},
+	date		= {},
+	year		= {},
+	url			= {},
+	urldate		= {},
+	language	= {}
+}
+% websites which are intrinsically online resources
+@online{5,
+	author		= {},
+	title		= {},
+	date		= {},
+	year		= {},
+	url			= {},
+	urldate		= {},
+	language	= {}
+}
+% a thesis found somewhere
+@phdthesis{6,
+	author		= {},
+	title		= {},
+	school		= {},
+	date		= {},
+	year		= {},
+	address		= {},
+	month		= {},
+	note		= {},
+}
+%--------------------------------------------------------------------------------------
\ No newline at end of file
diff --git a/src/personal.tex b/src/personal.tex
index c49f78a9baeb094702df896d90dc06d5dba34743..16cf10906ba6395c494db46de79454f6b20ae2f3 100644
--- a/src/personal.tex
+++ b/src/personal.tex
@@ -1,13 +1,9 @@
 \author{
-	Max Mustermann\thanks{test},
-	Mira Musterfrau\thanks{temp},
 	Max Mustermann,
-	Mira Musterfrau,
-	Max Mustermann
+	Mira Musterfrau
 }
 \titlehead{Fachbereich}
 \subject{Grund der Arbeit}
 \title{Mustertitel}
 \subtitle{Untertitle}
 \date{\today}
-\publishers{HERAUSGEBER}