amsart 中的标题页:如何在标题页中包含图片?

amsart 中的标题页:如何在标题页中包含图片?

假设我有以下 .tex 文件(来自我的问题的答案这里):

\documentclass[titlepage]{amsart}
\usepackage{lipsum}% Just for this example
\begin{document}
\pagenumbering{gobble}% No page numbering

\title{The title}
\author{The author}
\maketitle

\tableofcontents

\clearpage

\pagenumbering{roman}% roman page numbering
\section{Introduction} % the 0 section

\lipsum[1-50]

\clearpage

\pagenumbering{arabic}% Arabic page numbering
\section{First section} % the second section

\lipsum[1-50]

\end{document}

我希望在尽可能小的修改下,在标题页中添加一张图片和一些文字。我希望它看起来像这样(完全尊重版权ETC):

在此处输入图片描述

答案1

不要使用titlepage选项,而是titlepage使用环境并在其中插入您想要的任何内容。

一个例子

\documentclass[]{amsart}

\usepackage{graphicx}

\usepackage{lipsum}% Just for this example
\begin{document}
\pagenumbering{gobble}% No page numbering

\begin{titlepage}
\centering

\includegraphics[width=5cm]{example-image}
\vspace*{1cm}

\title{The title}
\author{The author}
\maketitle
\vspace*{1cm}

Some text
\end{titlepage}

\tableofcontents

\clearpage

\pagenumbering{roman}% roman page numbering
\setcounter{page}{1}% Reset page number
\section{Introduction} % the 0 section

\lipsum[1-50]

\clearpage

\pagenumbering{arabic}% Arabic page numbering
\setcounter{page}{1}% Reset page number
\section{First section} % the second section

\lipsum[1-50]

\end{document} 

在此处输入图片描述

相关内容