I want to add the bibliography at the end of this article so I wrote the following code:
\documentclass[chapterprefix=true]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[english,greek]{babel}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{booktabs}
\usepackage{siunitx}
\usepackage{mathdots}
\usepackage{enumerate}
\newtheorem{mylemma}{Λήμμα}
\newtheorem{mytheorem}{Θεώρημα}
\newtheorem{mydef}{Ορισμός}[section]
\newtheorem{example}{Παράδειγμα}
\begin{document}
\title{ }
\author{ M }
\date{ }
\maketitle
\clearpage
\tableofcontents
....
\clearpage
....
\nocite{*}
\medskip
\bibliographystyle{plain}
\bibliography{mybibliography}
\end{document}
At the file mybibliography.bib I added the following:
@article{
author = "\foreignlanguage{english}{TP}",
title = "{\foreignlanguage{english}{Extensions}}",
journal = "\foreignlanguage{english}{The Journal}",
volume = "18",
number = "2",
pages = "372-397",
year = "1994",
DOI = "..."
}
At the output the bibliography isn't displayed. Why? Have I done something wrong?
EDIT:
Having added the command \nocite{*} the output is the following:
Just the numbers are appeared but not the name of the article... What else could I change?

\nocite{*}before calling the bibliography. – Bernard Sep 02 '15 at 00:20biblatex): Automatically citing all entries in a class in a.bibfile – Werner Sep 02 '15 at 00:27\nocite{*}did you run the cycle again? That is(pdf)latex -> bibtex -> (pdf)latex -> (pdf)latex? Although the output looks odd, even if you didn't. Do you get any errors or warnings when you run BibTeX? – cfr Sep 02 '15 at 01:28@article{tp,....– David Carlisle Sep 09 '15 at 06:56