I am currently having problems importing my .bib file to my latex file.
the bib file's name is reference.bib, it was compiled using JabRef and it contains the following
@Book{alexander2009market,
Title = {Market Risk Analysis, Value at Risk Models},
Author = {Alexander, Carol},
Publisher = {John Wiley \& Sons},
Year = {2009},
Volume = {4}
}
I made sure that the reference.bib was in the same directory as the tex file.
When inputing
\bibliographystyle{plain}
\bibliography{reference}
nothing happens. Additionally, the font changes when I input the \bibliography command to bold blue unlike the \bibliographystyle that remains with the standard command font.
latex3tag is relevant here. – daleif Oct 09 '14 at 10:35\begin{document}
\bibliographystyle{plain} \bibliography{refs}
\end{document}
In which the \bibliography command appears in bold blue but \bibliographystyle appears in red-ish font.
I have compiled my database in JabRef and opened this same database in LaTeX as "reference.bib". Is this what you mean by running bibtex?
Thirdly, the tag was a typo, please disregard!
\bibliographystyle{plain} \bibliography{refs}
– John Oct 09 '14 at 10:49documentclass, plus it also does not contain any references toalexander2009market. Remember that RabRef has nothing to do with LaTeX or BibTeX. JabRef is a tool to edit.bibfiles. You still physically need to runbibtexto extract the data from the.biband format something for LaTeX to use. – daleif Oct 09 '14 at 11:06.bibfile, you run LaTeX, BibTeX, LaTeX and LaTeX again on the.texfile. – Joseph Wright Oct 09 '14 at 16:28