writing my research proposal, have trouble to define the reference section at the end of the my latex file, I export .bib file from JabRef, and the Latex upload the .bib file well, but when I run the Latex I don't see the Reference section at the end, however I haven't cited any reference in the passage. I have run the Latex several times haven'y seen the ref section yet. When I cite a ref in the passage, in the output pdf file it gives me the question mark.
This is how I call the *.bib file
\bibliographystyle{plain}
\bibliography{Research Proposal}
biblatexpackage?\bibliographystyle{<style>}is not abiblatexcommand. But, regardless, your problem sounds like you are not running the normal sequence oflatex file.tex,bibtex file.aux,latex file.tex,latex file.tex(where 'file.tex' is the name of your actual.texfile). – jon Jun 30 '14 at 04:08.aux" in the bibtex-ing instruction;bibtex filesuffices. – Mico Jun 30 '14 at 04:54\nocite{*}? This is the canonical way to make every item of the .bib file appear in the Reference section, even if it is not cited in the text. – Bernard Jun 30 '14 at 07:40bibtex bibliography.bib, which I've certainly seen before. It may not be necessary, but why not let people know which file is getting processed? – jon Jun 30 '14 at 11:30bibtex filerather thanbibtex file.aux. If there's a risk of confusion over which file(s) BibTeX operates on, it may be necessary to state explicitly that one must not runbibtex somefile.bib. – Mico Jun 30 '14 at 11:33[ This is BibTex, The top-level auxiliary file: proposal.aux The style file plain.bst White space in argument--line 14 of plain Proposal.aux :\bibdata{Ref:Test} I'm skipping whatever remains of this command I found no database files--while reading file proposal.aux warning-- I didn't fid a database entry for "AbedonHymanThomas2003" (There were two error messages).]
– Mori Jul 01 '14 at 02:54latex file.tex(orlatex file-- it is clever enough to look for the file extension itself), it will, on a successful run, createfile.aux, which is the 'target' file that BibTeX reads (viabibtex file.auxorbibtex file-- BibTeX, too, is clever). What happens, briefly, is that when LaTeX reads the command\cite{<bibkey>}, it writes in the.auxfile that that citation was cited; BibTeX then writes information to a file ending.bbl, which LaTeX then uses to write the correct information to the outputted.dvior.pdf. – jon Jul 01 '14 at 14:36