More problems with APA format.
I'm not clear on how to properly use apacite from LyX. When I select my
.bib file, am I supposed to browse to the apacite .bst file under Style?
It's not in the list.
I'm using apa document class so I it seems that it should already be
loaded without the need for a bibliographyStyle, so should I backspace
out "plain"?
When I select any combination of settings with the APA class, it seems
that my citations all come up as (?,?) or (?)... this happens with
natbib selected in the document settings also.
I have created the .bib file in pybliographic.
Here is the testbib.bib file:
@Article{Giglio:2001,
Author = {Giglio, J},
Title = {Doing things with stuff, a guide.},
Journal = {Journal of the Gigs},
month = {1 } # dec,
year = 2005
}
And the LaTeX export of my LyX file:
\documentclass[english]{apa}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[authoryear]{natbib}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\helvetica
\author{Author} % hack around some bugs in apa.cls
\affiliation{Affiliation} % hack around some bugs in apa.cls
\usepackage{babel}
\makeatother
\begin{document}
test\citep{Giglio:2001}
\bibliographystyle{plain}
\bibliography{/home/jgiglio/testbib}
\end{document}