BibTeX, biblatex and biberUndefined reference in Citing refworks refrences

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
netman
Posts: 2
Joined: Thu Feb 06, 2014 8:19 pm

Undefined reference in Citing refworks refrences

Post by netman »

Hi

I am very new to latex and it is the first document I am creating with latex.
I am trying to cite the references I have from my refworks account.
  1. I exported my references in .bib file -> references.bib
  2. I added the following in my .tex file:

    Code: Select all

    \begin{document}
    
    my text .... \cite{RefWorks:62}
    
    \bibliographystyle{alpha} 
    \bibliography{references}
    
    \end{document}
  3. here is what I have in references.bib:

    Code: Select all

    @book{RefWorks:62,
    	author={A.M. Feldman},
    	year={1980},
    	title={Welfare Economics and Social Choice Theory},
    	publisher={Kluwer Academic},
    	address={Boston}
    }
    
After compiling the file, I receive:

Code: Select all

Citation `RefWorks:62' on page 1 undefined
and there is [?] in my generated pdf

I followed the instruction I found about referencing refworks in Latex but i am not sure why references don't show up.

I will appreciate if you can help me.

Thanks
Last edited by cgnieder on Thu Feb 06, 2014 9:09 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Undefined reference in Citing refworks refrences

Post by Johannes_B »

You need to run/call bibtex on you main file (without extension). There will definitely be a button in your editor, but it is unknown to us.

Question mark instead of citation number
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
netman
Posts: 2
Joined: Thu Feb 06, 2014 8:19 pm

Re: Undefined reference in Citing refworks refrences

Post by netman »

please forgive me if i did not understand you correctly.
I am using texmaker and after editing my file, i use the menu bar to build (tools/quick build) the file.
i assumed when i build the file, it will run the bib file as well.
is there any other step i should take in texmaker to run the bib file?
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Undefined reference in Citing refworks refrences

Post by Johannes_B »

Go to tools and run BibTeX or press the F11 button on your keyboard.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply