标题格式超出了页面范围

标题格式超出了页面范围

我正在用 LaTeX 写一篇简短的笔记,标题在顶部。虽然它出现在页面中,但它超出了页面顶部。您能告诉我如何控制(某些命令)以使标题不超出页面吗?

代码

\documentclass[reqno]{amsart} 
\usepackage{hyperref} 
\usepackage{amssymb} 

\begin{document} 

\title{\hfilneg \hfilneg \small{A note on the surjectivity of a class of weighted operator with the Muckenhoupt class Ap for p between one and infinity}} 

 \end{document}

答案1

\title在.MWE的可选参数中使用短标题版本:

\documentclass[reqno]{amsart} 
\usepackage{lipsum} 
\begin{document} 
\title[Muckenhoupt weights $Ap$ between 0 and $\infty$]{A note 
on the sujectivity of a class of weighted operator with the 
Muckenhoupt class Ap for p between one and infinity} 
\maketitle
\lipsum[1-20]
\end{document}

相关内容