\hyphenation 指定的连字例外对某些单词进行不同的连字

\hyphenation 指定的连字例外对某些单词进行不同的连字

跟随这本书英文数学写作经过尼古拉斯·海厄姆§8.22,我试图将连字符例外添加到我的 LaTeX 模板中。但是\hyphenation在某些情况下,宏似乎不起作用。在下面的例子中,单词被连字符化为分散式惩罚。关于如何强制指定连字符,您有什么想法吗?

\documentclass[12pt]{article}
    
\usepackage[english]{babel}
\usepackage{inputenc}
\usepackage{hyphenat}
\usepackage{testhyphens}

\hyphenation{dis-tribut-ed pen-al-ty}

\begin{document}

\begin{checkhyphens}
distributed penalty
\end{checkhyphens}

\end{document}

相关内容