我需要\wideparen
在一本用类准备的书中找一个符号amsbook
。我知道有几个包提供这个命令,但是...
ymath
不适用于当前版本的 AMS 类MnSymbol, mathabx, fourier
- 全部替换默认数学字体,这不是我需要的(也是出版商允许的)。我需要保留其他所有字体的标准字体,但只添加这个符号。
有什么想法可以做到这一点吗?
答案1
这是一个不小的测试文件,它将说明如何mathx
使用 包含来自字体的宽括号(以及宽检查) amsart
。由于amsbook
是 的兄弟amsart
,因此它也可以在那里工作。(这是 ams 内部“操作方法”文件之一;为了简洁起见,我没有对其进行编辑。)
\documentclass{amsart}
\nofiles
\usepackage{verbatim}
%% code from mathabx.sty and mathabx.dcl
\DeclareFontFamily{U}{mathx}{\hyphenchar\font45}
\DeclareFontShape{U}{mathx}{m}{n}{
<5> <6> <7> <8> <9> <10>
<10.95> <12> <14.4> <17.28> <20.74> <24.88>
mathx10
}{}
\DeclareSymbolFont{mathx}{U}{mathx}{m}{n}
\DeclareFontSubstitution{U}{mathx}{m}{n}
\DeclareMathAccent{\widecheck}{0}{mathx}{"71}
\DeclareMathAccent{\wideparen}{0}{mathx}{"75}
\def\cs#1{\texttt{\char`\\#1}}
\begin{document}
A wide check should match a wide hat, but inverted. Observe that
the forms provided have a maximum width. Some other wide accents
in \verb|mathx| aren't available otherwise.
\begin{align*}
\cs{widehat}:\quad & \widehat{A}\quad\widehat{AB}\quad
\widehat{ABC}\quad\widehat{ABCD}\quad\widehat{ABCDE}\\
\cs{widecheck}:\quad & \widecheck{A}\quad\widecheck{AB}\quad
\widecheck{ABC}\quad\widecheck{ABCD}\quad\widecheck{ABCDE}\\
\cs{wideparen}:\quad & \wideparen{A}\quad\wideparen{AB}\quad
\wideparen{ABC}\quad\wideparen{ABCD}\quad\wideparen{ABCDE}
\end{align*}
\vspace{2\baselineskip}
\verbatiminput{\jobname.tex}
\end{document}