In apa6e, tabular environments indent automatically. This does not match APA's guidelines.
One can work around this by putting a \noindent in front of every \begin{tabular}{...} line.
How can I stop the indenting of tabular environments (without using the work-around)?
Example:
\documentclass{apa6e}
\shorttitle{}
\begin{document}
\begin{table}
\caption{Caption}
\begin{tabular}{l}
\hline
This appears indented. \\
\hline
\end{tabular}
\end{table}
\end{document}