用于 AMS 回忆录的 amsbooka 包和 memo-l 类之间的交互

用于 AMS 回忆录的 amsbooka 包和 memo-l 类之间的交互

我正在尝试使用用于《AMS 回忆录》的样式文件 memo-l 编写一本书。我还需要为书中的不同章节指定不同的作者,因此我尝试使用 amsbooka 包。

但是,我最终得到的目录写得很小,摘要也是用小字体写的,并且排在右边。有人知道如何解决这个问题吗?这可能与版权命令有关,因为它出现在问题之前。

无论如何,这里有一些最简单的例子:

\documentclass{memo-l}

\usepackage{amsbooka} %to be able to specify authors by chapter 

\begin{document}

\title{My great book}

\author{My Own Self}
\address{My Home}

\date{\today}
\begin{abstract}
Why is my abstract written so small and right justified? Why is the 
table of contents written so small?
\end{abstract}

\frontmatter

\maketitle

\tableofcontents

\mainmatter

\chapter[My short title]{My long title}

\section*{Introduction}

Blu blu

\section{My main section}

Bli bli

\end{document}

相关内容