我正在使用apa6
文档类来处理一篇文章,但需要将章节标题左对齐而不是居中。有没有办法覆盖此格式,使章节标题左对齐?
答案1
您可以修补基本\section
命令
\renewcommand{\section}{\@startsection {section}{1}{\z@}%
{\b@level@one@skip}{\e@level@one@skip}%
{\centering\normalfont\normalsize\bfseries}}
不使用\centering
:
\documentclass{apa6}
\usepackage{lipsum}
\usepackage{etoolbox}
\patchcmd{\section}% <cmd>
{\centering}% <search>
{\raggedright}% <replace>
{}{}% <success><failure>
\begin{document}
\section{A section}
\lipsum[1-10]
\end{document}