我似乎与包裹发生了冲突amsbooka
,hyperref
我不明白。
我使用该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}