I've written my bibliography as a standard bib entry; e.g.:
@ARTICLE{Imanishi1960,
AUTHOR="Kinji Imanishi",
TITLE="Social Organization of Subhuman Primates in Their Natural Habitat",
JOURNAL="Current Anthropology",
VOLUME="1",
ISSUE="5",
PAGES="393--407",
YEAR="1960",
}
However, I wish the bibliography to be printed in Spanish, not English. I understand I need to use the biblatex package, and I've done so. Here is a copy of my preamble:
\documentclass[notitlepage]{article}
\newcommand{\keywords}[1]{\textbf{Palabras clave:}\quad #1}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{latexsym}
\usepackage{textcomp}
\usepackage[multiple]{footmisc}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{breakcites}
\usepackage[fixlanguage]{babelbib}
\selectbiblanguage{spanish}
\setbtxfallbacklanguage{spanish}
\setcounter{section}{-1}
\title{El animalismo es un humanismo}
\author{Javier García-Salcedo \textemdash{ Ana Amezcua Ferrer}}
\date{Agosto 2016}
\begin{document}
...
\end{document}
However, after a couple of compilations, the language of my bibliography is still being English--e.g. the computer prints "Bekoff, M. and Pierce, J." au lieu de "Bekoff, M. y Pierce, J.", etc.
What am I doing wrong?? Thanks in advance!

biblatex, but thebabelbibpackage, which uses standardbibtex. Since I think it's a good idea to usebiblatexperhaps you should look at biblatex in a nutshell (for beginners). – Alan Munn Aug 02 '16 at 04:26