我正在使用 overleaf 写一篇论文,并且使用了期刊模板,其序言部分包含以下内容:
%
\documentclass[%
reprint,
amsmath,amssymb,
aps,
]{revtex4-1}
\usepackage{float}
\usepackage{gensymb}
\usepackage{mathtools}
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\begin{document}
\preprint{APS/123-QED}
\title{Classifying Overlapping Galaxies For Weak Lensing Surveys}
标题上的输出是
"Classifying Overlapping Galaxies For Weak Lensing Surveys*"
我该如何去掉星号?
答案1
尽管您没有显示这一点,但请删除\thanks
后面的,因为它以脚注的形式\title
用作 的注释。\title
\documentclass[%
reprint,
amsmath,amssymb,
aps,
]{revtex4-1}
\begin{document}
\preprint{APS/123-QED}
\title{Classifying Overlapping Galaxies For Weak Lensing Surveys}
%\thanks{Some title footnote}% This inserts a title-related footnote
\maketitle
\end{document}