I tried different bibliographystyles styles but they all produce the same result. In the text the references are cited as [1] where the number refers to the position of the reference in the list as i put them. But I would like to have the numbers in the correct order as they appear in the text.
For the following example i got always
"blablablablubb [2] and also blubbluubbbla [1]"
not matter what style i used. How can I get the references ordered as they appear in the text?
Code: Select all
\documentclass[a4paper,12pt]{scrreprt}
\usepackage{lingmacros}
\usepackage{tree-dvips}
\usepackage{graphicx}
\usepackage{bbm}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{braket}
\usepackage{ifthen}
\usepackage{sidecap}
\usepackage{hyperref}
%\bibliographystyle{alpha}
%\bibliographystyle{ieeetr}
\bibliographystyle{abstract}
\begin{document}
blablablablubb \cite{Daub} and also blubbluubbbla \cite{NR}
\begin{thebibliography}{99}
\bibitem{NR}
A. Randomname
\emph{A Great Book}
Unlimited Edition,
Universal University Press, 2020
\bibitem{Daub}
X.Y. Lophon
\emph{An even greater book}
ABC Prints, 2020
\end{thebibliography}
\end{document}
