Latex reference, IEEE model

2

Hello, I'm writing latex texts by the online publisher Overleaf ( link ) which I think is very good. This has several templates for various articles, including IEEE, which I'm using (. The problem is that in this model the reference is direct, you have a References section.

I'd like to make the indirect reference using \cite{reference} and this reference would be in a ref.bib file

Any ideas how to do this?

    
asked by anonymous 02.02.2016 / 14:59

1 answer

4

Yes, it does. You just open the "Project" tab (click its name button on the top toolbar), and add your ref.bib file as a project resource. Use the "Add files ..." button to do this:

Ah,inyourmainfile(main.tex)donotforgetto"point" to the references file, replacing the references manually made by something like:

\bibliographystyle{IEEEconf}
\bibliography{ref}

(where ref is the name of the bibliography file, without the extension).

    
02.02.2016 / 15:06