So, I have an .tex and .bib files and I need my bibliography list to be on right order - appearance in text (now it is like in .bib file). How to do it? .tex file: \bibliography{texfile}{} Honestly, I've tried to use search, but didn't succeed. Thanks in advance.
Try using
\bibliographystyle{unsrt}
\bibliography{your_bib_file_without_extension}
The unsrt
option orders the references as they appear in text.