Generate Bibliography using Bibtex:

You can generate bibliography using the Bibtex. It is recommended to use Bibtex for creating bibliography. You are suggested to follow some hints given below:

                                                       @article{SIE

                                                ,title = "A New Approach for Parallel Simulation of VLSI circuits on a Transistor level"

                                                ,author = "Norbert Frohlich and Bernhard M. Riess and Utz A. wever and Qinghau Zheng"

                                                ,journal = "IEEE Transaction on Circuits and system -1:Fundamental Theory and Applications"

                                                ,volume = 45

                                                ,number = "6"

                                                ,pages = "601-613"

                                                ,year = 1998

                                                }

                                                @book{HN

                                                ,author = "H. Narayanan"

                                                ,title = "Submodular Function and Electrical Networks, Annals of Discrete Mathematics"

                                                ,volume = 54

                                                ,publisher = "North Holland, Amsterdam, The Netherlands"

                                                ,year = 1997

                                                }

For these formats you can refer Latex Manual or view the given template file (Click Here).   

Note: Whenever a reference has more than one author, separate their names by an and. The same is shown as an example above in the format of an article.

Some sites are given for the help on bibliographic references in the section Really Useful Links.

            \bibliographystyle{Style_You_Want}

       e.g. I used the command in the way given below as I wanted bibliography in the ACM format. There are many formats given, you can choose a format you want.

            \bibliographystyle{acm}

    latex Main_Latex_File_Name

e.g. My main Latex file is Report.tex, so I compiled the file in following way:

    latex Report.tex

            bibtex Name_Of_Auxiliary_File

        e.g. I used the command bibtex Report to generate my bibliographic database.