无法在 latex 中打印 fi

无法在 latex 中打印 fi

纤维段落中的文本在 pdf 中打印为比特在 latex 中“fi 已被消除,如何修复它。

段落中的纤维在 pdf 中显示为 ber,如何修复它。

\documentclass[12pt,a4paper,oneside]{article}
\begin{document}
\thispagestyle{empty}

\section{Introduction}
connectivity, which can be either X-DSL or fiber. 
\end{document}

在此处输入图片描述

答案1

您正在将 fi 输入为 unicode 字符 U+FB01。请将其替换为“fi”,或使用 inputenc 并定义合适的替换:

\documentclass[12pt,a4paper,oneside]{article} 
\usepackage[utf8]{inputenc}
\DeclareUnicodeCharacter{FB01}{fi}
\begin{document} \thispagestyle{empty}

\section{Introduction} connectivity, which can be either X-DSL or fiber. 

\end{document}

在此处输入图片描述

相关内容