제목의 줄바꿈이 헤더에 표시되지 않도록 방지

제목의 줄바꿈이 헤더에 표시되지 않도록 방지

저는 제목에 제거하고 싶지 않은 앰퍼샌드가 포함된 문서를 작성 중이며 좀 더 보기 좋게 만들기 위해 줄 바꿈을 삽입했습니다. 그러나 이제 모든 홀수 페이지에는 구분선이 큰 공백으로 표시됩니다. 이것을 제거할 수 있는 방법이 있나요?

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

여기에 이미지 설명을 입력하세요

관련 정보