I'm using BibTex to make my bibliography. However, I did not use in-text citations, so am manually inputting all of my entries in Latex using \nocite{Reference} in the order I specifically want them in. I have lots of different reference types, including misc for citing webistes. When I generate my bibliography using LaTex, all of the misc references are bumped to the top of the bibliography, although the order of the rest are preserved. Any way to address this?
Reference example:
@misc{file2},
title = "XXXX (2013). XXX.",
}
Latex code (I'm using a non-numbered reference list):
\bibliographystyle{plain}
\renewcommand\@biblabel[1]{}
\makeatother
\nocite{file1}
\nocite{file2}
\nocite{file3}
\bibliography{Bibliography}
If file1 and file3 are @book references or whatever, the output is
file2
file1
file3
keyto give BibTeX some help sorting non-standard entries. – cfr Jun 20 '15 at 18:09biblatexwith the optionsorting=nonewould probably make things easier. – Bernard Jun 20 '15 at 18:26