Babel 简写对 \bm 包有问题

Babel 简写对 \bm 包有问题

使用 babel 命令\useshorthands{"}会导致\bm包无法正常工作。

\documentclass{report}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\useshorthands{"}
\usepackage{bm}
\begin{document}
    $\Gamma \bm{\Gamma}$
\end{document}

答案1

移至\useshorthands{"}所有\usepackage行的后面。或者使用\AtBeginDocument{\useshorthands{"}}

相关内容