我正在写一篇数学论文,论文开头是
\documentclass{amsart}
\usepackage{geometry}
\geometry{letterpaper}
\usepackage{graphicx}
\usepackage{amssymb}
\begin{document}
\title{Title of Paper}
\author{My Name}
\subjclass[2020]{Primary 11D09, 11D25; Secondary 12D15}
\maketitle
\begin{abstract}
Blah blah blah
\end{abstract}
\newpage
Text and formulas including
\begin{table}
\caption{A Sample of blah blah blah }
\end{table}
\begin{align*}
\end{align*}
\begin{figure}
\begin{center}
\includegraphics[scale=0.30]{venndiagram.jpg}
\end{center}
\caption{Venn diagram of non-primitive triples for $Set_{53}$ where $(2n-1)=105$}
\end{figure}
\bibliographystyle{amsplain}
\begin{thebibliography}{10}
\bibitem {A} https://math.stackexchange.com/questions/3369742/looking-for-references-to-pythagorean-triple-subsets
\end{thebibliography}
\end{document}
第一页包含标题、作者、摘要和主题类别,看起来像我从 AMS 找到的样本。(我添加了 \newpage,因为 \subjclass 过去出现在第 1 页中间,就在表格之前。)现在我担心的是“我的名字”也出现在第 2 页,“论文标题”出现在第 3 页,“我的名字”出现在第 4 页,依此类推。
这是一个功能还是我做错了什么?
答案1
您反对在每页顶部添加页眉吗?您可以通过在
\pagestyle{plain}
之前添加 来取消此操作\begin{document}
。
答案2
由于您已将此标记为“journal-publishing”,如果您计划将您的文章提交给 AMS(您正在使用amsart
),请删除geometry
重置。
页面宽度在决定换行和显示布局时非常重要。如果您更改页面宽度,尤其是将其加宽(如您在此处所做的那样),如果您将文章提交给页面较窄的期刊,则您面临严重的风险,即不熟悉文章内容的文字编辑会做出不同的换行决定,甚至可能改变受影响的数学表达式的含义。实际上,只有作者确切知道意图是什么;因此作者应该做出这样的决定。
您关于重复作者和标题作为页眉的问题已得到解答。(指定\pagestyle{plain}
将页眉/页脚信息缩减为仅页码。)
两个浮动元素 --table
和figure
-- 确实不应该出现在第一页底部的脚注下方;这是一个“缺陷”,我已将其报告给 AMS 技术支持小组。但是,无需请求分页符,只需将选项添加[ht]
到此类浮动元素即可。如果“此处”没有空间,这会将它们移动到下一页。