标题后第二段的缩进 APA6 类

标题后第二段的缩进 APA6 类

我无法缩进我的 apa6 类文档中的段落。对于我的硕士论文,导师希望缩进除标题后的第一个段落之外的所有段落。到目前为止,我尝试了以下命令,但尚未奏效:

\setlength{\parindent}{15pt}
\indent

我的最小工作示例:

\documentclass[12pt, onecolumn]{apa6}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style= apa, backend=biber]{biblatex}
\bibliography{/Applications/TeX/library}
\DeclareLanguageMapping{american}{american-apa}

\begin{document}
\setlength{\parindent}{1.27cm}
\section{Section1}
Paragraph one (not indented)

Paragraph two (should be indented but isnt)

\end{document}

我很高兴收到关于这方面的任何建议:) 干杯!

答案1

该类的问题apa6与您提到的完全相反:默认情况下,第一行全部段落(包括分段单元后的第一段的第一行)均缩进。

\section为了抑制类型和的分段单元后第一行的缩进\subsection,您可以重新定义类定义的一些跳过的值(在我的示例中,我抑制了一些与讨论的问题无关的包):

\documentclass[12pt,onecolumn]{apa6}
\usepackage[utf8]{inputenc}
\usepackage[american]{babel}

\makeatletter
\b@level@one@skip=-2.5ex plus -1ex minus -.2ex
\b@level@two@skip=-2.5ex plus -1ex minus -.2ex
\makeatother

\setlength\parindent{1.27cm}

\newcommand\Text{Some test text for the example }

\begin{document}

\section{Test section}
\Text\Text\Text\Text\Text

\Text\Text\Text\Text\Text

\subsection{Test subsection}
\Text\Text\Text\Text\Text

\Text\Text\Text\Text\Text

\end{document}

在此处输入图片描述

如果可能的话(即,如果您的主管允许的话),我建议您使用不同的文档类别;就我个人而言,我不喜欢提供的设置apa6

相关内容