I'm having some slight issues with citation styles. I want Harvard style citations, in the form of (Bethe, 1939). Here is my code:
\documentclass[11pt,a4paper]{article}
%\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{comment}
%\usepackage{natbib}
\usepackage{amsmath}
\usepackage[
backend=bibtex,
style=authoryear,
sorting=nty
]{biblatex}
\usepackage{float}
%\usepackage{cite}
\bibliography{biblio} \addbibresource{biblio.bib}
%\bibliographystyle{alpha}
\begin{document}
Document here \cite{EPS}
\end{document}
Sorry for the clutter. Experimented a lot trying to get the bibliography to work. Here is my bibliography:
http://www.filedropper.com/biblio
Using the citestyle definition in the preamble, this should display Harvard style, if the manual is to believed. Instead I get the title of the paper. Perhaps it has to do with the warnings given? Here:
\bibliography{biblio}. (but leave the\addbibresource...) Right now the.bibis being loaded twice, which will only cause problems. Plust\bibliographyis deprecated inbiblatex– PTNobel Dec 02 '15 at 02:26Doesn't like that. That for example is used to make a subsubsubsection. But there's nothing on line 19.
– Joshua Dec 02 '15 at 05:32I'm also getting all of the old warnings about the biblipgraphy being empty.
– Joshua Dec 02 '15 at 05:39Is this what I'm missing?
– Joshua Dec 02 '15 at 06:00.bcffile, not the.texfile. The sequence is:latex myfile.tex,biber myfile.bcf,latex myfile.tex(wherelatexcould bepdflatex). Biber should also be installed by default by now (even on Windows, I'd imagine). How your editor calls Biber is a different question. But your comment suggests the real problem: a preamble you don't understand. Fix that above all. *TeX is not supposed to be a black box of mystery like (MS) Word. – jon Dec 02 '15 at 06:01latex,biber, and indeedbibtexfrom the command prompt / command line. – jon Dec 02 '15 at 06:02It's alive! Finally working. I couldn't understand how to set up Biber, as it doesn't come installed with Texmaker. Thank you two for all the support you've given over the past few days. I really appreciate it!
– Joshua Dec 02 '15 at 16:58