I am putting together a big document based in many other small ones, and, as it is, I have a lot of references, much more than I wish to order by hand.
Is there a way to number these references by order of their appearance and not in the order I wrote them in the bibliography?
Let's say something like this:
...
The code is amazing (\cite{FirstGuy}) because it rules (\cite{SecondGuy}) and this is proven in \cite{ThirdGuy}
...
\begin{thebibliography}{99}
\bibitem{ThirdGuy} \textbf{G. Third}. \emph{Consistent proves of amazing code}
\bibitem{FirstGuy} \textbf{G. First}. \emph{Comments on amazing code}
\bibitem{SecondGuy} \textbf{G. Second}. \emph{Code that rules}
should produce something like this:
...
The code is amazing ([1]) because it rules ([2]) and this is proven in [3]}
...
[1] G.First. Comments on amazing code.
[2] G.Second. Code that rules.
[3] G.Third. Consistent proves of amazing code.
Is there a way to achieve this without using BibTex or similar tools? (because the effort required to import them is similar to sorting them by hand).
Thanks!