The citation is outside of the text area. Seems like this has to do with custom margin and parindent specification. Any way to keep custom settings but still have citations wrap as expected?
Thanks.
Here is a MWE .tex file:
\documentclass[11 pt]{article}
\usepackage{apacite}
\setlength{\textwidth}{6.5in}\setlength{\textheight}{9.2in}
\setlength{\oddsidemargin}{-.05in} \setlength{\topmargin}{-.5in}
\setlength{\parindent}{30pt}
\begin{document}
\par Text text text text text text text text text text text text text text text text textsss \cite{mweauth}. Text text text text text text text text text text text text text. Text text text text text text text text text text text text text. Text text text text text text text text text text text text text. Text text text text text text text text text text text text text. Text text text text text text text text text text text text text. Text text text text text text text text text text text text text. Text text text text text text text text text text text text text. Text text text text text text text text text text text text text.
\bibliographystyle{apacite}
\bibliography{mwe_bib}
\end{document}
and the MWE .bib file:
@book{mweauth,
Author={Firstname Longlastname},
Title={Book Title},
Publisher={Publishing Company},
Address={City, State},
Year={2015} }

