I almost have it figured out. I am just not sure about one final thing. My annotation after the citation is indented way to far to the right. I would like to be able to move the indent of just the annotation.
Here is my main.tex file
\documentclass[man,donotrepeattitle]{apa6}
\usepackage[utf8]{inputenc}
\usepackage{geometry}
\geometry{letterpaper, margin=1in}
\usepackage[natbibapa]{apacite}
\usepackage{mathptmx}% http://ctan.org/pkg/mathptmx
\bibliographystyle{apacannx}
\usepackage{fancyhdr}
\pagestyle{fancy}
\title{Your APA6-Style Manuscript}
\shorttitle{Your APA6-Style Manuscript}
\author{Me}
\affiliation{University}
%\abstract{Your abstract here}
\begin{document}
\maketitle
\renewcommand{\refname}{Annotated bibliography}
\nocite{carlson1984s}
\bibliography{sample}
\end{document}
}
Here is my sample.bib file
@article{carlson1984s,
title={},
author={},
journal={},
volume={},
number={},
pages={},
year={},
publisher={},
doi={},
annote={},
annotate={}
}
apalikeis based on APA standards of the early 1980s. To implement APA6 standards, one should load theapacitecitation management package and theapacitebibliography style. – Mico Feb 06 '17 at 18:19apa6document class, it shouldn't be necessary to load theapaciteandgeometrypackages manually. Just add the optionsmargin=1inandnatbibapato the list of options stated in the\documentclassdirective. – Mico Feb 07 '17 at 06:41