This is my main.tex:
\documentclass[a4paper,12pt,parskip=full]{scrreprt}
\usepackage[utf8x]{inputenc}
% Paper layout
\usepackage[a4paper,top=2.5cm,right=2.5cm,bottom=2.5cm,left=2.5cm]{geometry}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
% use links for table of contents, citations, ...
\usepackage[colorlinks, linkcolor = black, citecolor = black, filecolor = black, urlcolor = black]{hyperref}
\usepackage{harvard}
\let\harvardleftorig\harvardleft
\newcommand\citevgl
{\def\harvardleft{(vgl.\ \global\let\harvardleft\harvardleftorig}%
\cite
}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\begin{document}
\chapter[some title]{some title}
some text \citevgl{NT}
\renewcommand{\thepage}{}
\listoffigures
\bibliography{literatur}
\bibliographystyle{alpha}
\end{document}
This is my literatur.bib:
@Article{NT,
title = {Management-Team},
year = {Abgerufen am 22 Juni 2018},
url = {https://www.exapmle.com}
}
My question is: how I have to solve this problem?


.logand.blgfiles for errors and warnings. – moewe Aug 24 '18 at 08:17.blgmessage suggests that a file calledliteratur.bibwas found (that is good), but that it does not contain the entries listed there. In particularNTcan't be found. Do you have several files calledliteratur.bib? Maybe BibTeX finds the wrong file. Try renaming the file to something more descriptive and try again. – moewe Aug 24 '18 at 08:22.bibfile: as others have said, it looks like one or other is wrong. – Joseph Wright Aug 24 '18 at 08:34i couldn't open database file literatur.bib ---line 25 of file main.aux: \bibdata{literatur: } I am skipping whatever remains of this command– Aug 24 '18 at 08:49\bibliography{literatur:}instead of\bibliography{literatur}? – moewe Aug 24 '18 at 08:52harvardcite package is not compatible\bibliographystyle{alpha}. – moewe Aug 24 '18 at 09:06harvardpackage use one of its styles:agsm,dcu,kluwer: https://ctan.org/pkg/harvard. Or just don't useharvard. – moewe Aug 24 '18 at 09:08\usepackage[utf8x]{inputenc}it can do more harm than good in some situations. Just use\usepackage[utf8]{inputenc}that should be enough for most intents and purposes (especially in German texts). – moewe Aug 24 '18 at 09:10