为了满足大学的要求,我需要在论文中强调“摘要”一词?有人能指导我如何最好地利用课堂来做到这一点吗apa6
?提前感谢您的帮助。
答案1
您可以使用该etoolbox
包来修补\maketitle
负责排版摘要的命令:
\documentclass[doc]{apa6}
\usepackage{etoolbox}
\title{The Title}
\threeauthors{John and Jim}{Mary and Sue}{Nick}
\threeaffiliations{U of A}{U of B}{U of C}
\abstract{text}
\patchcmd{\maketitle}{\abstractname}{\underline{\abstractname}}{}{}
\begin{document}
\maketitle
\end{document}
答案2
你可以这样做
\renewcommand{\abstractname}{\underline{Abstract}}
这可能与其他语言设置(即自动适应)不太兼容,但它不需要任何包。