I'm using \usepackage[authoryear]{natbib} package to use an external .bib file for my bibliography. However, some fields of the entries are not shown in the bibliography. This is my code:
\documentclass[12pt, a4paper]{article}
\usepackage[top=2.5cm, bottom=2.5cm, left=2.5cm, right=2.5cm]{geometry}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[hyphens]{url}
\usepackage{hyperref,graphicx,array}
\usepackage{anyfontsize}
\usepackage{scrextend}
\usepackage{framed,svg,float,tabularx,eurosym,changepage,cite}
\usepackage[authoryear]{natbib}
\begin{document}
\section{Introduction}
\citep{EUROHS14}
\bibliography{biblio}
\bibliographystyle{dinat}
\end{document}
With the following biblio.bib file:
@article{EUROHS14,
author = {Milanovski, Dragan},
title = {eBriefing for ATC training},
journaltitle = {Hindsight 14},
year = {2011/2012},
editor = {EUROCONTROL},
pages = {60-65},
url = {https://www.eurocontrol.int/sites/default/files/publication/files/111215-hs14.pdf},
}
This results in:
Thus, leaving out the journaltitle and editor, which to me, seems to be vital information. Can anyone point out how to display this information in the bibliography?

natbib/BibTeX and notbiblatex, so I have removed the tag and corrected the title (see https://tex.stackexchange.com/q/25701/35864 for additional explanations). Because you are not usingbiblatexthe field for the journal title is called simplyjournaland notjournaltitle. Traditionally the bibliography styles do not show theeditorfor@articles. – moewe Jul 06 '18 at 15:23editor = {EUROCONTROL},tonote = {Editor: {EUROCONTROL}},? – Mico Jul 06 '18 at 17:38l2tabusuggests to usenatdininstead ofdinat. – moewe Jul 06 '18 at 22:23