在页面顶部放置不同的标题

在页面顶部放置不同的标题

我正在写一篇论文。由于标题太长,我需要为首页写一个简短的标题。例如,这张纸标题很长,但首页的标题不同。有人能帮我吗?

我还有一个问题。如何将某个页面的标题放到其他页面,然后将某个页面的另一个标题放到末尾?

这是一个演示:

\documentclass[a4paper,12pt]{amsart}
\usepackage{amsfonts,amsthm,amsmath,amssymb,graphicx}
%\usepackage[polish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
 \usepackage[utf8]{inputenc}
\usepackage{float}
\usepackage{showkeys}
\floatplacement{figure}{H}
\usepackage[T1]{fontenc}
\usepackage{tikz}


\usepackage{scalefnt}
\usepackage{geometry}
\usepackage{pdflscape}
\usepackage{afterpage}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{decorations.pathmorphing}

\usepackage{hyperref}


\theoremstyle{plain}
\newtheorem{lem}{Lemma}[section]
\newtheorem{prop}[lem]{Proposition}
\newtheorem{thm}[lem]{Theorem}
\newtheorem{cor}[lem]{Corollary}
\newtheorem{rem}{Remark}
\newtheorem{fact}[lem]{Fact}

\theoremstyle{definition}
\newtheorem{defn}[lem]{Definition}
\newtheorem{ex}[lem]{Example}

\theoremstyle{remark}

\newtheorem*{notat}{Notation}



\numberwithin{equation}{section}


\DeclareMathOperator{\cl}{cl}
\DeclareMathOperator{\diam}{diam}
\DeclareMathOperator{\vol}{vol}
\DeclareMathOperator{\dist}{dist}
\DeclareMathOperator{\var}{var}


\renewcommand{\C}{\mathbb C} 

\newcommand{\clC}{\widehat \C}

\newcommand{\R}{\mathbb R}

\newcommand{\Z}{\mathbb Z}

\newcommand{\N}{\mathbb N}

\newcommand{\bd}{\partial}

\renewcommand{\epsilon}{\varepsilon}
%opening
%opening
\title{EQUILIBRIUM STATES OF GENERALISED SINGULARVALUE POTENTIALS AND APPLICATIONS TO AFFINEITERATED FUNCTION SYSTEMS}

\address{}
\date{}
\email{}

\begin{document}

\maketitle



\end{document}

答案1

您需要选择一个简短的标题:

\documentclass[a4paper,12pt]{amsart}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[british]{babel}
\usepackage{amsfonts,amsthm,amsmath,amssymb,graphicx}
\usepackage{tikz}

\usepackage{showkeys,lipsum} % remove for production version

%\usepackage{scalefnt} % what for?
\usepackage[heightrounded]{geometry}
%\usepackage{pdflscape}
%\usepackage{afterpage}
\usetikzlibrary{shapes.geometric}
\usetikzlibrary{decorations.pathmorphing}

\usepackage{hyperref}

%\floatplacement{figure}{H} % this is sure to ruin pagination

\theoremstyle{plain}
\newtheorem{lem}{Lemma}[section]
\newtheorem{prop}[lem]{Proposition}
\newtheorem{thm}[lem]{Theorem}
\newtheorem{cor}[lem]{Corollary}
\newtheorem{rem}{Remark}
\newtheorem{fact}[lem]{Fact}

\theoremstyle{definition}
\newtheorem{defn}[lem]{Definition}
\newtheorem{ex}[lem]{Example}

\theoremstyle{remark}

\newtheorem*{notat}{Notation}



\numberwithin{equation}{section}


\DeclareMathOperator{\cl}{cl}
\DeclareMathOperator{\diam}{diam}
\DeclareMathOperator{\vol}{vol}
\DeclareMathOperator{\dist}{dist}
\DeclareMathOperator{\var}{var}


\newcommand{\C}{\mathbb{C}} % \renewcommand?

\newcommand{\clC}{\widehat{\C}}

\newcommand{\R}{\mathbb{R}}

\newcommand{\Z}{\mathbb{Z}}

\newcommand{\N}{\mathbb{N}}

\newcommand{\bd}{\partial}

\renewcommand{\epsilon}{\varepsilon}

%opening

\title[Equilibrium states of generalised singular value potentials]
  {Equilibrium states of generalised singular value potentials, 
   with applications to affine iterated function systems}

\address{}
\date{}
\email{}

\begin{document}

\maketitle

\lipsum[1-30]

\end{document}

我还添加了一些修改。请注意,这\floatplacement{H}是非常危险的事情,因为它肯定会使分页变得不可能。

同样重要的heightroundedgeometry,为了避免在每一页上都出现警告(第一页将总是发出警告amsart

在此处输入图片描述

相关内容