Go to the Format tab and select Export References.
In the drop-down menu, choose the folder that contains the references you'd like to export.
For the Export style, choose BibTeX Export, then click Save.
Open the file. Go to the File menu and select Save Page As. Change the name of the file to yourfilename.bib and save it to the same folder that contains your LaTeX files.
Add a citation key to each source by typing a unique code after the curly brackets. For example:
@article{key001 author = "" title = "" ...
To create your bibliography in your LaTeX file, enter two commands:
\bibliography{yourfilename} where yourfilename refers to the name of the .bib file you exported from EndNote Web. This command generates the bibliography.
To insert an in-text citation, enter this command:
\cite{key001} where key001 is the citation key assigned (in the .bib file) to the source you want to cite.