
Estou escrevendo um documento que contém um E comercial no título que prefiro não remover e inseri uma quebra de linha apenas para deixar as coisas um pouco mais bonitas. No entanto, cada página ímpar agora exibe a quebra como um grande espaço em branco. Existe alguma maneira de remover isso?
\documentclass[11pt]{amsart}
\usepackage[margin=1in]{geometry}
\title{This is the first part of my title \&\\ This is the second}
\author{Author}
\begin{document}
\maketitle
This is my document page 1.
\newpage
This is my document page 2.
\newpage
This is my document page 3.
\end{document}
Responder1
O \title
comando aceita um argumento opcional para definir o texto do título a ser exibido no cabeçalho:
\documentclass[11pt]{amsart}
\usepackage[margin=1in]{geometry}
\title[This is the first part of my title \& This is the second]
{This is the first part of my title \&\\ This is the second}
\author{Author}
\begin{document}
\maketitle
This is my document page 1.
\newpage
This is my document page 2.
\newpage
This is my document page 3.
\end{document}