我正在使用背面广告来编辑我的文章。这是我的内容:
\documentclass{article}
% if you need to pass options to natbib, use, e.g.:
% \PassOptionsToPackage{numbers, compress}{natbib}
% before loading neurips_2019
% ready for submission
% \usepackage{neurips_2019}
% to compile a preprint version, e.g., for submission to arXiv, add add the
% [preprint] option:
% \usepackage[preprint]{neurips_2019}
% to compile a camera-ready version, add the [final] option, e.g.:
\usepackage[]{neurips_2019}
% to avoid loading the natbib package, add option nonatbib:
% \usepackage[nonatbib]{neurips_2019}
\usepackage[utf8]{inputenc} % allow utf-8 input
\usepackage[T1]{fontenc} % use 8-bit T1 fonts
\usepackage{hyperref} % hyperlinks
\usepackage{url} % simple URL typesetting
\usepackage{booktabs} % professional-quality tables
\usepackage{amsfonts} % blackboard math symbols
\usepackage{nicefrac} % compact symbols for 1/2, etc.
\usepackage{microtype} % microtypography
\usepackage{graphicx}
\begin{document}
\title{On the General Molecular Theory of Heat}
\author{A. Einstein}
\maketitle
\end{document}
如您所见,我已经将作者设置为A. Einstein,但是它仍然显示默认的匿名作者。我想知道为什么会发生这种情况,我该如何解决?
谢谢!
答案 0 :(得分:-1)
看起来neurips_2019
包使作者设置混乱。不使用该程序包,作者将按预期显示。
查看该neurips_2019.sty样式文件,它具有“匿名提交”的概念。如果已设置,它将重新定义@maketitle
以使用您看到的硬编码值。您可以通过将文档标记为最终文档来将其关闭:
\documentclass{article}
\usepackage[final]{neurips_2019} % <-- note "final" here
\title{On the General Molecular Theory of Heat}
\author{A. Einstein}
\begin{document}
\maketitle
\end{document}
final
选项会将会议地点放在第一页的底部。您可以将final
替换为preprint
,然后将“预印本进行审核”。在第一页底部。
我不了解这种行为的动机,因此最好与软件包维护者/会议组织者联系,以确定您应该使用什么。