0

When i'm trying to execute this code:

\documentclass[a4paper, 12pt]{article}

\usepackage{filecontents}

\begin{filecontents*}{trial.bib}
    @article{paper,
    author={name},
    title="{title}",
    journal={J. Phys. Conf. Ser.},
    volume={67},
    number={},
    pages={23},
    year={2007}
}
\end{filecontents*}

\begin{document}
\title{Autumn Term Report}
\author{myself}
\date{\today}
\maketitle

HI \cite{paper}

\bibliographystyle{unsrt}
\bibliography{trial}
\end{document}

I get the following:

enter image description here

I can not understand why my BibTex does not work. I'm using TeXstudio and tried to execute that by XeLaTeX and PdfLaTeX compilers.

Thanks in advance!

1 Answers1

1

Thanks to you all, i just did not used to compile bibliography separately. F8 before compilation is helped (or Tools->Bibliography).