The Problem
When attempting to use the APA6 package, I received this error:
! LaTeX Error: File `apa6.sty' not found.
And a little later, I see the following warnings:
Class apa6 Warning: Short title not defined.
Class apa6 Warning: Affiliation not defined.
Class apa6 Warning: Abstract not defined.
Fairly self-explanatory, or so I thought...
What I've Tried
I've reviewd the following, including the comments, and none of the provided ideas/solutions have worked:
Installing packages (that don't include a .sty file) with BSD
tracklang.sty missing in miktex
I have already tried using the package manager to uninstall and reinstall the apa6 package. Additionally, I have also attempted installing the package manually. But upon processing the files, no .sty file is produced, using either latex or pdflatex.
Additional Info and MCVE
I am using MiKTeX 2.9, on a 64-bit Windows 7 Professional machine, and the only other interesting thing that I've noted was that the value of TEXMFMAIN does not correspond to a path that actually exists on my system:
ß kpsewhich -var-value TEXMFMAIN
C:/Program Files/MiKTeX 2.9
I am thinking that could be the issue, but I have yet to locate any information on how to affect that variable's value.
MCVE:
\documentclass[12pt]{apa6}
\usepackage[american]{babel}
\usepackage{apa6}
\setcounter{secnumdepth}{-1}
\title{My Title}
\date{}
\author{My name}
\begin{document}
\maketitle
\begin{center}\section{Section 1}\end{center}
\subsection{subsection}
\paragraph{para title} paragraph 1\textsuperscript{\cite{ref1}}.
\begin{center}\section{Section 2}\end{center}
\subsection{subsection}
\paragraph{para title} paragraph 2\textsuperscript{\cite{ref2}}.
\flushleft
\begin{thebibliography}{10}
\bibitem{ref1}
\bibitem{ref2}
\bibitem{ref3}
\end{thebibliography}
\end{document}
% % % % % % Sources to add to References
%
% % % % % % % % % % % % % % % % % % % % %
Is the apa6 package supposed to have a sty file and, if so, how can I go about getting a hold of a copy of it?
apa6.sty, as far as I know. – egreg Oct 25 '15 at 20:58