Latex reference, IEEE model

Asked

Viewed 4,751 times

2

Hello I am writing texts in latex by online editor Overleaf (https://www.overleaf.com/) which I think is very good. This one has several models of various articles, including in IEEE, which I am using (https://www.overleaf.com/latex/templates/preparation-of-papers-for-ieee-sponsored-conferences-and-symposia/zfnqfzzzxghk#. Vrc1xrirliu). The problem is that in this model the reference is direct, you have a References section.

I would like to make the indirect reference, with the use of the \cite{reference} and this reference would be in a ref.Bib file

Any idea how to do that?

1 answer

4


Yes, it does. Just open the "Project" tab (click on the respective name button in the top toolbar), and add your file ref.bib as a project resource. Use the "Add files..." button for this:

inserir a descrição da imagem aqui

Ah, in your main file (main.tex) do not forget to "point" to the reference file, replacing the manually made references with something like:

\bibliographystyle{IEEEconf}
\bibliography{ref}

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

  • I like to see questions and answers about Latex here at Sopt. :-)

  • Thanks to following these steps I got, but the reference with the cite{aj-js} did not work, he gave the error "Latex Warning: Citation `aj-jc' on page 1 Undefined on input line 52." no. Bib I have @ARTICLE{aj-jc, Author = {Andreas Junghanns and Jonathan Schaeffer}, title = {Sokoban: Enhancing general single-agent search methods using Domain Knowledge}, Journal = {Artificial Intelligence}, year = {2001}, volume = {129}, pages = {219-251} } some idea?

  • You can not know without details. Is the reference correct? (You mention that you use \cite{aj-js}, only in Bib you have the key as aj-jc - that is not the same!). Also, does it work on the local Latex, or just the Overleaf error? Anyway, if the problem is different, you should open a new question (and don’t forget to prepare a minimum example: http://meta.pt.stackoverflow.com/questions/1186/howto create a good example: m%C3%Adnimo-completo-e-verific%C3%A1vel).

Browser other questions tagged

You are not signed in. Login or sign up in order to post.