
\sectionなどの見出しコマンドは、\@startsectionコマンドを組み合わせて次のように生成されているようです。
| コマンド | パラメータの説明 |
|---|---|
| \newcommand\section{\@startsection
{section}{1}% {\z@}% {-3.5ex \@plus -1ex \@minus -.2ex}% {2.3ex \@plus.2ex}% {\normalfont\Large\bfseries}} |
<---インデント大きさ(長さを指定) <---見出しの前のスペース(長さを指定) <---見出しの後のスペース(長さを指定) <---見出しの書式 |
変更の必要なパラメータを書き換え、\newcommand を \renewcommand に置き換えてプリアンブルで定義すれば良いと思います。@を含んだコマンドを使用しているので、\makeatletter と \makeatother で囲むことを忘れずに。