GeneralThe bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Marek
Posts: 20
Joined: Wed Jan 30, 2008 3:36 pm

The bibliography

Post by Marek »

Hi,
by now I have used in my document the citation like below:
\thebibliography
...
\bibitem{...}
\bibitem{...}.

But now my task is to write the bibliography list suitable to the order of citing sequence. Is there any method to do so without using BibTeX which is far to much that I need (and, as I know, requires many changes in my long bibliography)?
Marek.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Marek
Posts: 20
Joined: Wed Jan 30, 2008 3:36 pm

Re: The bibliography

Post by Marek »

I have found myself the solution:
If you have

\bibitem{label1} A.~Bcd: Review, 2008
\bibitem{label2} E.~Fgh: Paper, vol, 1891

transform each of items in the form:
@misc{label1,
note = "A.~Bcd: Review, 2008"}
@misc{label2,
note = "E.~Fgh: Paper, vol, 1891"}
then write the list as *.bib, then use it to read by BibTeX in a common way and forget about all the time which could be (was) lost on finding some modification of \thebibliography somewhere in the internet.
Post Reply