使用 {} 手动抑制连字符在整个文档中不起作用

使用 {} 手动抑制连字符在整个文档中不起作用

我决定写一篇文档没有使用microtype因为我还没想出如何解决字距调整问题。但当我不使用 microtype 时,我也不能使用\DisableLigatures{encoding = *, family = * }

因此,我尝试手动抑制连字。例如,我写f{}ind而不是find等。

有时,这种方法有效,但有时却无效。我不知道这是为什么。

我已多次编译我的文档并一次又一次地重新启动我的 PDF 查看器 - 但我仍然时不时地看到这些令人讨厌的连字符。

编辑:我的代码:

\documentclass[12pt,a4paper]{report}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1,T3,T4]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{enumitem}
\usepackage{ae,aecompl}
\usepackage{color}
\usepackage{etoolbox}
\usepackage{geometry}
\usepackage[bottom,hang]{footmisc}
\usepackage{tabularx}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{hyperref}
\usepackage{zref-perpage}
\clubpenalty10000
\widowpenalty10000
\displaywidowpenalty=10000
\zmakeperpage{footnote}
% Remove counter "footnote" from the reset counter list
% of counter "chapter".
\usepackage{remreset}
\makeatletter
\@removefromreset{footnote}{chapter}
\makeatother
\usepackage[labelfont=bf]{caption}
\geometry{
    left=2cm,
    right=2cm,
    top=2cm,
    bottom=2cm,
    bindingoffset=0mm
}
\begin{document}
    \chapter*{Einleitung}
    \addcontentsline{toc}{chapter}{Einleitung} {}
    of{}fen

    Footnote\footnote{text}

    of{}fen

    Doch häuf{}ig \dots\\
\end{document}

enter image description here

答案1

使用xelatexlualatex

\documentclass{article}
\usepackage{fontspec}
\usepackage{libertine}
\begin{document}    
find

\addfontfeatures{Ligatures=NoCommon}
find
\end{document}

enter image description here

相关内容