为同行评审的论文创建与作者姓名大小相同的空白区域

为同行评审的论文创建与作者姓名大小相同的空白区域

我正在撰写一篇会议论文,要求为了匿名评审而省略作者姓名。除了省略作者姓名和所属机构之外,我还想添加一个大小相同的空白区域,以便文档其余部分的格式保持不变。

我在这个网站和其他网站上找到了关于使用 \protect 和 \phantom 的参考资料,但当我在作者区块中使用它们时,它们似乎不起作用;我收到有关“缺少 } 插入”的错误。我使用的是 MikTex 2.9。有什么建议吗?

最小工作示例(包含额外的包以防发生冲突):

\documentclass[twocolumn, a4paper,10pt]{article}

\usepackage{bm}
\usepackage{nopageno}
\usepackage{graphicx}
\usepackage{natbib}
\usepackage{enumitem}

\usepackage{amsmath, amssymb}
\usepackage{color}
\usepackage{tikz}
\usepackage{pgfplots}

\usepackage[top=2.5cm, bottom=2.5cm, left=2.0cm, right=2.0cm,
columnsep=0.8cm]{geometry}

\setlength{\abovecaptionskip}{0.2cm}
\setlength{\belowcaptionskip}{0cm}
\setlength{\parindent}{0pt}
\setcounter{secnumdepth}{-1}

\usepackage{lipsum}

\title{My Paper}

\author{
   \protect\phantom{
   John Doe, Joe Blow, Jo Schmo \\
   Some Random Company, USA \\
   \texttt{jd,jb,js}\@company.com}}

\date{\today}

\begin{document}
\maketitle
\lipsum[1-5]

\end{document}

答案1

您必须分别“幻化”每一行。

\author{
   \phantom{John Doe, Joe Blow, Jo Schmo} \\
   \phantom{Some Random Company, USA} \\
   \phantom{\texttt{jd,jb,js}\@company.com}}

在此处输入图片描述

相关内容