使用 \chapter* 时 hyperref 和 amsbooka 出现错误

使用 \chapter* 时 hyperref 和 amsbooka 出现错误

我似乎与包裹发生了冲突amsbookahyperref我不明白。

我使用该amsbooka软件包是为了能够为各个章节添加作者姓名,但我不希望章节被编号。我使用了\chapter*[Test]{Test\author{Me}}但它在章节标题中显示为“[”,并在正文中显示文本“Test]TestMe”。

但如果我使用\chapter而不是\chapter*,则不会出错。如果我删除 ,\hyperref则不会出错\chapter*

TeXShop以下是一个最小的工作示例。我在 Mac 上使用,TeXLive 2021以防万一。

\documentclass{amsbook}

\usepackage{amsbooka}
\usepackage{hyperref}

\title{Minimal worked example}
\author{A person}

\begin{document}

\maketitle

\chapter*[Test]{Test\author{Me}}

\chapter[2nd test]{2nd test\author{Also me}}

\end{document}

相关内容