タイトルの改行がヘッダーに表示されないようにする

タイトルの改行がヘッダーに表示されないようにする

タイトルにアンパサンドが含まれている文書を作成していますが、このアンパサンドは削除したくありません。見た目を少し良くするために改行を挿入しました。しかし、奇数ページごとに改行が大きな空白として表示されます。これを削除する方法はありますか?

\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}  

答え1

この\titleコマンドは、ヘッダーに表示されるタイトル テキストを設定するためのオプションの引数を受け入れます。

\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}

ここに画像の説明を入力してください

関連情報