在 Memoir LaTeX 书中使用 \textohm 时出错

在 Memoir LaTeX 书中使用 \textohm 时出错

这是错误:

./LibroOrange.tex:3961: Package textcomp Error: Symbol \textohm not provided by

(textcomp)                font family bch in TS1 encoding.
(textcomp)                Default family used instead.

答案1

您可以使用 textcomp 的 warn 选项。它仍会用另一种字体的字形替换 \textohm,但不会给出错误消息,而只会在日志中发出警告:

\documentclass{article}
\usepackage{charter}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[warn]{textcomp}
\begin{document}
\textohm blblbl
\end{document}


Package textcomp Warning: Symbol \textohm not provided by
(textcomp)                font family bch in TS1 encoding.
(textcomp)                Default family used instead on input line 78.

在此处输入图片描述

相关内容