This is my first time trying to create citations and a bibliography. I have read plenty of information online and watched numerous videos. I still am not sure if I understand it. I am using TexMaker since it is the only software that works well for me.
- Following and online guide here is how my main document looks.
\documentclass[11pt, letterpaper]{article} \usepackage[margin=0.5in]{geometry}\begin{document}
\begin{titlepage} \title{Homework 1: Annotated Bibliography} \author{Author Name} \end{titlepage} \maketitle
Game Theory \cite{test}
\bibliography{anbib} \bibliographystyle{plain}
\end{document}
- I created a file called anbib.bib and placed in the same folder.
@article{test,
title={A general theory of equilibrium selection in games}, author={Harsanyi, John C and Selten, Reinhard},
journal={MIT Press Books}, volume={1}, year={1988},
publisher={The MIT Press} }
- I try to compile the main file using quickquick build in TexMaker and the title shows up fine. Then I get in the main text Game Theory [?]. Furthermore I do not see a bibliography in my document.
What am I doing wrong? I read somewhere that I can download software called BibTex to make a bibliography document. I cannot find it for download anywhere.
Sorry about the formatting. Normally all my code shows up fine in StackExchange. For some reason not so much here.
bibtex. I'm not sure if TeXmaker's Quick Build does this. You can check in the Options menu. – Sigur Jun 20 '15 at 19:37latex+latex+bibtex+latex+vieworpdflatexif you wish a pdf output. If I'm not wrong: F6 F6 F11 (F12) F6 F7 – Sigur Jun 20 '15 at 19:45bibtexinstead ofbiblatex? – Sigur Jun 20 '15 at 19:51bibtexonly if you cite a new reference. – Sigur Jun 20 '15 at 20:07\cite[Theorem~3.2]{test}– Sigur Jun 20 '15 at 20:08.bblfile, then you will get the result you describe. so, instead of "quick build", simply run latex again, and then view the output. – barbara beeton Jun 20 '15 at 20:12.bibfile, and if it's there, run bibtex from the "quick build"? (not a user, so i'm not going to report it, but the op could, if this turns out to be the problem.) – barbara beeton Jun 20 '15 at 20:19note = {Annotation appended to entry in bibliography.}to the relevant entry in your.bibfile. – cfr Jun 20 '15 at 23:43