in the last second I realized we shouldn't have numbers in our bibliography (such [1] Smith, J. ..). The bibliography is created with \printbibliography in the biblatex environment.
As I'm in an extreme hurry I hope someone has a solution/hint without a MWE, otherwise I'll update that.
Thanks a lot!
/Edit: That's a (not very short) MWE and I'm not sure how to include the external bib.-file, thats why I posted it seperately. Hope that's fine! Thanks again
%Dokumentklasse
\documentclass[a4paper,12pt]{scrreprt}
\usepackage[left= 3cm,right = 3cm, top = 2.5cm, bottom = 2cm]{geometry}
\usepackage[onehalfspacing]{setspace}
% ============= Packages =============
%test
\RedeclareSectionCommand[
style=section,% <- change the style to section
indent=0pt,
beforeskip=1.5cm,
afterindent=false,
afterskip=1cm
]{chapter}
% Dokumentinformationen
\usepackage[
pdftitle={xxx},
pdfsubject={},
pdfauthor={xxx},
pdfkeywords={},
%Links nicht einrahmen
hidelinks
]{hyperref}
% Standard Packages
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{graphicx, subfig}
\graphicspath{{img/}}
\usepackage{fancyhdr}
\usepackage{lmodern}
\usepackage{color}
% zusätzliche Schriftzeichen der American Mathematical Society
\usepackage{amsfonts}
\usepackage{amsmath}
%nicht einrücken nach Absatz
\setlength{\parindent}{0pt}
%Abkürzungsverzeichnis
\usepackage{acronym}
%biblatex
\usepackage[backend=biber,citestyle=authoryear, maxcitenames=2, sorting=nyt]{biblatex}
\DefineBibliographyStrings{ngerman}{andothers={et\ al\adddot}} % aus u.a. zu et al. machen
\addbibresource{Quellenverzeichnis.bib}
%captions
\usepackage[font=small,skip=2pt]{caption}
%times new roman
\renewcommand{\rmdefault}{ptm}
\addtokomafont{disposition}{\rmfamily}
%Arabische und Romanische Numerierung
\usepackage{chngcntr}
\counterwithout{equation}{chapter}
%Abbildungszählweise
\usepackage{chngcntr}
\counterwithout{figure}{chapter}
%Excel2Latex packages
\usepackage{booktabs, multicol, multirow}
%appendix
\usepackage{appendix}
%adjust caption font size
\usepackage{caption}
%tabellenunterschrift
\usepackage{threeparttable}
%rotieren tabelle
\usepackage{rotating}
%cellcolor
\usepackage{colortbl}
\usepackage{array}
%rand vermeiden
\usepackage{microtype}%
%%%%%%%Dokumentenbeginn%%%%%
\begin{document}
lalala \textcite{Black}
\newpage
\printbibliography
\end{document}
and the bib.file:
@article{Black,
title={The capital asset pricing model: Some empirical tests},
author={Black, Fischer and Jensen, Michael C and Scholes, Myron and others},
journal={Studies in the theory of capital markets},
volume={81},
number={3},
pages={79--121},
year={1972},
publisher={Praeger, New York}
}


style=authoryear,, but without knowing what you want (we only know that you don't want numbers) and what you are doing (an MWE) we can't really say anything useful. – moewe Jan 09 '20 at 18:59style=authoryear,instead ofcitestyle=authoryear,. – moewe Jan 09 '20 at 19:30dahed=false. Since there is an indentation you don't actually need gaps between the entries, but you can get them with\setlength{\bibitemsep}{\itemsep}or some such. I'm just writing an answer. – moewe Jan 09 '20 at 19:35