I am fairly new to LaTeX and am just learning how to use this terrific tool. Because of this newness I lack the vocabulary to search properly or edit code within LaTeX files. That places me in a bad spot because there are three things I'd like to perform using LaTeX using apa6e but am unable to as the use of apa6e gives me the format I want but restricts what I can do:
- How can I suppress the abstract page from
apa6e? - How can I suppress the author notes in ape6e?
- How can I suppress the warning generated in
apa6ewhen I add[leavefloats]to the document class?
I don't know if this is something I do from within my tex editor or if I have to alter the apa6e file containing the code for the package. I'm thinking there's an apa6e.sty file that I could alter to bring about these changes. If that's the case I'd greatly appreciate knowing how to locate and alter this file. In either case I'd greatly appreciate direction with regard to these alterations.
MWE example (this produces the warning message from the '[leavefloats]'):
\documentclass[leavefloats]{apa6e}
\usepackage[american]{babel}
\usepackage{csquotes}
\abstract{This is an example of of an abstract in APA. }
\begin{document}
\title{A Template for APA Papers}
\shorttitle{APA: A Template}
\author{John}
\authornote{\dots}
\date{\today} % or \date{24Jan11} for example
\maketitle
\section{Literature Review}
Stuff
\end{document}
MWE in which I try to leave out the abstract and author note:
\documentclass[leavefloats]{apa6e}
\usepackage[american]{babel}
\usepackage{csquotes}
\abstract{This is an example of of an abstract in APA. }
\begin{document}
\title{A Template for APA Papers}
\shorttitle{APA: A Template}
\author{John}
\authornote{\dots}
\date{\today} % or \date{24Jan11} for example
\maketitle
\section{Literature Review}
Stuff
\end{document}

\documentclassso that those trying to help don't have to recreate it. – Peter Grill Oct 1 '11 at 22:45