I am trying to use ShareLaTex to compile my bibliography in the Astrophysical Journal (ApJ) format. The document compiles in ApJ format just fine, but the bibliography is compiled in some generic format and \cite{} and \citep{} do not work as expected, with my references replaced by the usual question marks. Here is my preamble:
\documentclass[apj]{emulateapj}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{natbib}
\usepackage[backend=bibtex]{biblatex}
\bibliographystyle{apj}
\bibliography{P1640_AGES}
\begin{document}
...
\printbibliography
\end{document}
natbibandbiblatex. – Guido Mar 21 at 3:34biblatexyou should move the\bibliographycommand in place of\printbibliography. – egreg Mar 28 at 0:03