使用 \documentclass{APA} 删除作者和所属机构以进行盲审

使用 \documentclass{APA} 删除作者和所属机构以进行盲审

我使用 \documentclass{APA} 向需要 APA 格式的期刊投稿。投稿是双盲的,所以我需要对文档进行盲审。我这样做的方式如下

\fourauthors{.}{.}{.}{.}
\fouraffiliations{.}{.}{.}{.}

这可行,但当然会在标题页上放置点。我只想让标题页空白,但简单地删除命令不起作用。非常感谢您的建议。谢谢,

大卫

答案1

如果你把一些不可见的字符或空格放进去,你的解决方案就会起作用

\fourauthors{\,}{\,}{\,}{\,}
\fouraffiliations{\,}{\,}{\,}{\,}

为了获得更通用的方法而不改变您的文档,请将此代码添加到您的序言中:

\makeatletter
    \long\def\@author{\,}
    \long\def\@affil{\,}
    \long\def\@authorOne{\,}
    \long\def\@affilOne{\,}
    \long\def\@authorTwo{\,}        
    \long\def\@affilTwo{\,} 
    \long\def\twoauthors#1#2{}
    \long\def\twoaffiliations#1#2{}
    \long\def\threeauthors#1#2#3{}
    \long\def\threeaffiliations#1#2#3{}
    \long\def\fourauthors#1#2#3#4{} 
    \long\def\fouraffiliations#1#2#3#4{}
\makeatother

一位、两位、三位和四位作者及其所属单位的参赛作品将被取消。标题页不会受到任何其他影响。

补丁前

A

补丁后

b

\documentclass[man]{apa}

%%%************************************** added <<<<<<<<<<<<<<<
\makeatletter
    \long\def\@author{\,}
    \long\def\@affil{\,}
    \long\def\@authorOne{\,}
    \long\def\@affilOne{\,}
    \long\def\@authorTwo{\,}        
    \long\def\@affilTwo{\,} 
    \long\def\twoauthors#1#2{}
    \long\def\twoaffiliations#1#2{}
    \long\def\threeauthors#1#2#3{}
    \long\def\threeaffiliations#1#2#3{}
    \long\def\fourauthors#1#2#3#4{} 
    \long\def\fouraffiliations#1#2#3#4{}
\makeatother
%%%**************************************

\title{Example of an APA-style manuscript}

%\author{Myself Author1}
%\affiliation{My Department}

%
%\twoauthors{Myself Author1}{Author2}
%\twoaffiliations{My Department}{The other place2}
%
%\threeauthors{Myself Author1}{Author2}{ Author3}
%\threeaffiliations{My Department}{The other place2}{Department3}
%
\fourauthors{Myself Author1}{Author2}{ Author3}{Author4}
\fouraffiliations{My Department}{The other place2}{Department3}{The other place4} 

\abstract{This is an example of a minimal ``manuscript'' using the \LaTeX\ apa.cls document class to typeset manuscripts according to the Americal Psychological Association (APA) manual, fifth edition.}

\acknowledgements{Written at the request of the Prac\TeX\ journal editors.

Comments may be sent to the author at [email protected].}

\shorttitle{APA style manuscript}
\rightheader{APA style manuscript}
\leftheader{A.\ Protopapas}

\begin{document}
\maketitle                            
Here goes the text of the article. Note that the content begins immediately after \texttt{maketitle} and there is no blank line between the title command and the article text. This first section of the article is typically the introduction and, according to APA style, should not bear a section heading.\footnote{That is, there is no ``Introduction'' section.} Subsequent sections, however, are titled according to the psychological conventions.

\section{Experiment 1} 
Manuscripts in APA style often contain descriptions of experiments.  The APA manual specifications for referring to experiments are to use a lowercase ``e'' when speaking generally, as in the previous phrase, but an uppercase ``E'' when mentioning a particular experiment (as in the following phrase), such as Experiment~1. 

\end{document}

相关内容