在文章类中将顶级标题居中并将底部标题左对齐

在文章类中将顶级标题居中并将底部标题左对齐

我有一份 类型的文档article。我正在尝试创建 APA 样式,我需要将所有顶级标题置于中心(顶级标题是指所有标题\section),并将所有其他底层标题左对齐。这是我当前的设置:

\documentclass[12pt, letterpaper]{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage[document]{ragged2e}
\usepackage{indentfirst}
\graphicspath{ {images/} }
\usepackage{setspace,caption}
\captionsetup{font=doublespacing}% Double-spaced float captions
\doublespacing% Double-spaced document text

\usepackage{fancyhdr}

\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyhead[R]{\thepage}
\lhead{RUNNING HEAD}

\title{my title}
\author{my name}

我想知道我该怎么做。我知道使用\section*{\hfil Introduction\hfil},但是,显然它不适用于article文档。

相关内容