Difference between revisions of "Automating BibTeX"

From assela Pathirana
Jump to navigationJump to search
 
Line 3: Line 3:
The downside (Ah! There always is one!!) is one has to spend countless hours preparing the list of BibTeX entries (called the ''BibTeX database'') in a format like:<nowiki>
The downside (Ah! There always is one!!) is one has to spend countless hours preparing the list of BibTeX entries (called the ''BibTeX database'') in a format like:<nowiki>
</nowiki><pre><nowiki>
</nowiki><pre><nowiki>
x
@ARTICLE{Dawkins05,
        author      = {Dawkins, R.},
        title      = {UNINTELLIGENT DESIGN - How could these medicore
          theorists be allowed to expose a great science power to worldwide
          ridicule?},
        journal    = {Newsweek},
        year        = {2005},
        volume      = {15-DEC-2005},
        number      = {SPI},
        pages      = {88-89}
}
</nowiki></pre>
</nowiki></pre>

Revision as of 00:33, 14 April 2006

is a very versatile tool which help one regularly writing articles to scientific journals, to save a huge amount of time. On of the important tool in this application is the management of wikipedia:bibliography. Hardworking people first write the manuscript and then write the references on by one. Lazy ones (e.g. myself) use a specialized tool to automatically generate the list. BibTeX(LNK) is such a tool that works with LaTeX. It can produce beautiful error free list of bibliography formatted to the exact specifications of the targeted publication. 

The downside (Ah! There always is one!!) is one has to spend countless hours preparing the list of BibTeX entries (called the BibTeX database) in a format like:

@ARTICLE{Dawkins05,
        author      = {Dawkins, R.},
        title       = {UNINTELLIGENT DESIGN - How could these medicore
          theorists be allowed to expose a great science power to worldwide
          ridicule?},
        journal     = {Newsweek},
        year        = {2005},
        volume      = {15-DEC-2005},
        number      = {SPI},
        pages       = {88-89}
}