leftflush 作者的所属机构,但不是作者,在“authblk”中

leftflush 作者的所属机构,但不是作者,在“authblk”中

在以下 MWE 中,我想清除作者的affil注释,但不清除标题或作者姓名。此外,我需要能够在环境中添加段落affil。如何实现?

\documentclass[12pt,abstract,titlepage]{scrartcl}

\usepackage{geometry}
\geometry{top=1in, bottom=1in, left=1in, right=1in}

\usepackage[affil-it]{authblk}
\linespread{2}

\usepackage[manualmark]{scrlayer-scrpage}
\setkomafont{pageheadfoot}{}% not special font for page head and foot
\clearpairofpagestyles
\ihead{\headmark}
\ohead{\pagemark}
\begin{document}

\markright{Running Head: This header to be only on title page}
\titlehead{\thispagestyle{headings}}
\title{mytitle}
\author{Donald Duck}
\affil{Entenhausen University, Department of Ornithological Affairs, 
Chair of Breadcrumb Allocation Optimization. 
Correspondence on this article should be directed addressed to: 
Donald Duck, 251 Pond Blvd, 90210 Ducky \\ Contact: [email protected]}

\maketitle

\markright{This header to appear from abstract page onward}
\begin{abstract}
\thispagestyle{headings}
Abstract text...
\end{abstract}

\section{Introduction}

Begin text here.

\end{document}

它应该看起来与我收到的这个样本很接近: 在此处输入图片描述

答案1

如果你想按照美国心理学会的规则写一份文件,只需使用一个合适的类。命名apa6。一切都已经定义好,可以直接使用。

maiepApa标题

\documentclass[man,12pt]{apa6}

\usepackage{blindtext}
\begin{document}

\title{Investigating the Relationship between Quails and Ducks with special respect of mating rituals}
\shorttitle{Relationship between Quails and Ducks in mating}
\author{Donald Duck}
\affiliation{Entenhausen University, Department of Ornithological Affairs, 
Chair of Breadcumb Allocation Optimization. }
\authornote{Correspondence on this article should be directed addressed to: 
Donald Duck, 251 Pond Blvd, 90210 Ducky \\ Contact: [email protected]}
\abstract{\blindtext
}

\maketitle
\section{Introduction}

\blindtext

\end{document}

相关内容